/* =========================
   Brand + Base
   ========================= */
   :root{
    --yellow:#FEB500;   /* logo yellow */
    --blue:#3E9FB2;     /* logo blue  */
    --magenta:#B41D6C;  /* logo magenta */
  
    --bg:#0a0f16;
    --bg2:#101826;
    --panel:rgba(255,255,255,.06);
    --ink:#eaf1f8;
    --muted:#a9b6c7;
    --max:1100px;
    --r:16px;
  }
  
  *{box-sizing:border-box}
  html,body{margin:0}
  body{
    font-family:"Ubuntu Nerd","Ubuntu",system-ui,Segoe UI,Roboto,Arial,"Apple Color Emoji","Segoe UI Emoji";
    line-height:1.6;color:var(--ink);
    background:
      radial-gradient(60rem 60rem at 10% -10%, rgba(254,181,0,.18), transparent 60%),
      radial-gradient(60rem 60rem at 90% 10%, rgba(62,159,178,.14), transparent 55%),
      linear-gradient(180deg,#0b0f16, #101827 45%, #0b1220);
  }
  
  /* If you have local Ubuntu Nerd font files, uncomment and serve from /fonts
  @font-face{
    font-family:"Ubuntu Nerd";
    src:url("/fonts/UbuntuNerdFont-Regular.woff2") format("woff2");
    font-weight:400; font-style:normal; font-display:swap;
  }
  @font-face{
    font-family:"Ubuntu Nerd";
    src:url("/fonts/UbuntuNerdFont-Bold.woff2") format("woff2");
    font-weight:700; font-style:normal; font-display:swap;
  }
  */
  
  /* Utilities */
  .wrap{max-width:var(--max);margin:0 auto;padding:0 18px}
  .center{text-align:center}
  .small{font-size:.9rem}
  .muted{color:var(--muted)}
  .lead{font-size:1.05rem;color:var(--ink)}
  .t-blue{color:var(--blue)}
  .t-magenta{color:var(--magenta)}
  
  /* Headings */
  h1,h2,h3,h4,h5{ color:var(--yellow); margin-top:0 }
  .subtle{ color:var(--yellow); font-weight:700; margin:0 0 .5rem; letter-spacing:.2px }
  
  /* =========================
     Header / Nav
     ========================= */
  .site-header{
    position:sticky; top:0; z-index:10;
    background:rgba(10,15,21,.7); backdrop-filter:saturate(140%) blur(8px);
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .site-header .wrap{
    display:flex; align-items:center; justify-content:space-between; gap:16px; min-height:68px;
  }
  .brand{
    display:flex; align-items:center; gap:.55rem;
    color:var(--ink); text-decoration:none; font-weight:700;
  }
  .brand-mark{ height:50px; width:auto; filter:drop-shadow(0 0 10px rgba(254,181,0,.25)) }
  .nav a{
    color:var(--ink); text-decoration:none; margin-left:16px; transition:color .15s ease; font-weight:700;
  }
  .nav .active{ color:var(--blue); border-bottom:2px solid var(--yellow); font-weight:700; }
  .nav a:hover{ color:var(--blue); font-weight:700; } /* hover = color change only */
  
  /* Buttons */
  .btn{
    display:inline-block;
    border:1px solid rgba(255,255,255,.25);
    padding:.25rem .5rem;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    color:#0b0f14;
    background:var(--blue);
    box-shadow:none;
    transition:background-color .15s ease, color .15s ease, border-color .15s ease;
  }
  .btn:hover{ background:var(--yellow); }
  .btn.ghost{
    color:var(--ink);
    background:transparent;
    border-color:rgba(255,255,255,.28);
  }
  .btn.ghost:hover{ color:var(--blue); border-color:var(--blue); }
  .btn.active{ outline:2px solid var(--blue) }  /* focus accent */
  
  .btn-current{
    display:inline-block;
    border:1px solid rgba(255,255,255,.25);
    padding:.25rem .5rem;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    color:#ffffff !important;
    background:var(--yellow);
    box-shadow:none;
}
  /* =========================
     Hero
     ========================= */
  .hero{ padding:52px 0 }
  .hero-grid{
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr .8fr;   /* copy left, highlights right */
    grid-auto-rows: auto;
  }
    .hero-copy h1{ margin:0 0 .6rem; font-size:2rem; line-height:1.25 }
  .why{
    margin-top:14px; padding:14px; border-radius:12px;
    border:1px dashed rgba(255,255,255,.2);
    background:
      linear-gradient(180deg, rgba(62,159,178,.12), transparent 60%),
      linear-gradient(0deg,  rgba(180,29,108,.10), transparent 70%);
  }
  
  .hero-card{
    background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12);
    border-radius:var(--r); padding:20px;
  }
  .checklist{ margin:0; padding-left:20px }
  .checklist li{ margin:.25rem 0 }
  .logos{ display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:14px }
  .logos img{
    width:100%; height:64px; object-fit:contain;
    border-radius:10px; 
    /*padding:6px; background:rgba(0,0,0,.15);*/
  }
  
  /* =========================
     Testimonials
     ========================= */
  .testimonials{ padding:26px 0 }
  .cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px }
  .card{
    padding:18px; border-radius:12px; background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
  }
  .card .quote{ margin:.25rem 0; color:#fff }
  
  /* =========================
     Page Sections / Panels
     ========================= */
  .page-head{
    padding:30px 0 12px; border-bottom:1px solid rgba(255,255,255,.12); margin-bottom:18px;
  }
  .two-col{ display:grid; grid-template-columns:1.1fr .9fr; gap:24px }
  .profile{ display:grid; grid-template-columns:120px 1fr; gap:16px; align-items:start; margin:12px 0 2px }
  .headshot{
    width:120px; height:120px; object-fit:cover; border-radius:999px;
    border:3px solid var(--blue); box-shadow:0 8px 22px rgba(62,159,178,.2);
  }
  .panel{
    background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.12);
    border-radius:12px; padding:18px; margin:16px 0;
  }
  .bullets{ padding-left:18px }
  .tags{ display:flex; flex-wrap:wrap; gap:8px; padding:0; margin:8px 0 }
  .tags li{
    list-style:none; border:1px solid rgba(255,255,255,.18);
    padding:.25rem .5rem; border-radius:999px; background:rgba(255,255,255,.05)
  }
  .note{
    background:
      linear-gradient(180deg, rgba(62,159,178,.12), transparent 90%),
      linear-gradient(0deg,  rgba(254,181,0,.10), transparent 90%);
    border:1px dashed rgba(62,159,178,.45);
    border-radius:12px; padding:14px;
  }
  
  /* =========================
     Gallery
     ========================= */
  .gallery{ padding:30px 0 }
  .section-head{ display:flex; justify-content:space-between; align-items:baseline; gap:16px; margin-bottom:12px }
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:10px;
  }
  .gallery-grid .thumb{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 5px 18px rgba(0,0,0,.25);
    cursor:zoom-in;
    transition: box-shadow .15s ease, border-color .15s ease;
  }
  .gallery-grid .thumb:hover{
    border-color:var(--magenta);
    box-shadow:0 5px 20px rgba(180,29,108,.28);
  }
  @media (max-width:900px){ .gallery-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
  @media (max-width:560px){ .gallery-grid{ grid-template-columns:1fr; } }
  
  /* =========================
     Lightbox Modal
     ========================= */
  #lightbox{
    position:fixed; inset:0; display:none; align-items:center; justify-content:center;
    background:rgba(0,0,0,.85); z-index:9999; padding:24px;
  }
  #lightbox.open{ display:flex; }
  
  #lightbox .lb-figure{
    margin:0; position:relative; max-width:96vw; max-height:92vh;
    display:flex; flex-direction:column; align-items:center; gap:10px;
  }
  #lightbox #lb-img{
    max-width:96vw; max-height:85vh; width:auto; height:auto;
    border-radius:10px; box-shadow:0 12px 32px rgba(0,0,0,.6);
    background:#111;
  }
  #lightbox .lb-caption{ color:#cfd8e3; font-size:.95rem; text-align:center; }
  
  #lightbox .lb-close,
  #lightbox .lb-prev,
  #lightbox .lb-next{
    position:absolute;
    background:rgba(20,20,20,.45);
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    cursor:pointer;
    line-height:1;
    box-shadow:0 6px 16px rgba(0,0,0,.35);
    user-select:none;
    transition:background-color .15s ease;
  }
  #lightbox .lb-close{
    top:14px; right:14px; font-size:22px; padding:.35rem .6rem;
  }
  #lightbox .lb-prev,
  #lightbox .lb-next{
    top:50%; transform:translateY(-50%);
    font-size:28px; padding:.45rem .7rem;
  }
  #lightbox .lb-prev{ left:16px; }
  #lightbox .lb-next{ right:16px; }
  #lightbox .lb-prev:hover, #lightbox .lb-next:hover{ background:rgba(62,159,178,.35) }  /* blue */
  #lightbox .lb-close:hover{ background:rgba(180,29,108,.35) }                             /* magenta */
  
  /* =========================
     Footer
     ========================= */
  .site-footer{
    padding:22px 0; margin-top:32px; border-top:1px solid rgba(255,255,255,.12);
  }
  .site-footer .wrap{
    display:flex; justify-content:space-between; align-items:center; gap:12px;
  }
  
 /* ----- Pricing Packages button in header nav ----- */
.site-header .nav .btn {
    background: var(--magenta);
    color: #fff;
    border: 1px solid var(--magenta);
    padding: .25rem .5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
  }
  
  /* Hover: solid blue with white text */
  .site-header .nav .btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: #fff;
  }
  
  /* --- Linked logos hover enlarge --- */

  .logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, filter 0.25s ease;
  }
  
  .logos img {
    width: 100%;
    height: 64px;
    object-fit: contain;
    background: rgba(0,0,0,.15);
    border-radius: 10px;
    padding: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .logos a:hover img {
    transform: scale(1.12);
    box-shadow: 0 0 20px rgba(62,159,178,.4);
    filter: brightness(1.1);
  }
  
  /* --- Logos inside testimonials --- */
.testimonials .logos {
    display: flex;
    justify-content: center;      /* centers logo horizontally */
    align-items: center;          /* centers vertically if needed */
    margin-top: 30px;
  }
  
  .testimonials .logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, filter 0.25s ease;
  }
  
  .testimonials .logos img {
    width: 140px;                 /* slightly larger inside testimonials */
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(0,0,0,.15);
    padding: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .testimonials .logos a:hover img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(62,159,178,.4);
    filter: brightness(1.1);
  }
  
  /* Different headshot style for about.html */
body.about .headshot {
    width: 320px;
    height: auto;
    border-radius: 18px;                  /* rectangular with rounded corners */
    border: 4px solid var(--blue);
    box-shadow: 0 10px 28px rgba(62,159,178,.25);
    object-fit: cover;
  }
  
  /* keep index.html headshot small and circular */
  body.index .headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--blue);
    box-shadow: 0 8px 22px rgba(62,159,178,.2);
  }

  /* ---------- About page layout (no overlap) ---------- */
  .about-top {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    align-items: start;       /* ensures both start at the top */
  }
  
  /* Headshot style already set for body.about .headshot; ensure it fills its column nicely */
body.about .headshot {
    width: 85%;              /* reduces width but keeps full column look */
    max-width: 240px;        /* smaller than previous 300px */
    height: auto;
    border-radius: 18px;
    border: 4px solid var(--blue);
    box-shadow: 0 10px 24px rgba(62,159,178,.25);
    object-fit: cover;
    justify-self: center;    /* keeps it centered in its grid column */
    align-self: start;       /* aligns top with bio */
  }
  
  
  /* Bottom two-column grid */
  .about-bottom{ margin-top:18px; }
  .about-bottom .grid{
    display:grid;
    grid-template-columns: 1fr 1fr; /* left column + right column */
    gap:24px;
  }
  
  /* Ensure panels stack nicely in left col */
  .about-bottom .left-col .panel + .panel{ margin-top:16px; }
  
  /* Responsive: stack on smaller screens */
  @media (max-width: 980px){
    .about-top{ grid-template-columns: 1fr; }
    body.about .headshot{ max-width:300px; justify-self:center; }
    .about-bottom .grid{ grid-template-columns: 1fr; }
  }
  
/* fine-tune vertical alignment if padding causes shift */
.about-top img.headshot {
    align-self: start;
    margin-top: 0;
  }
  .about-top .bio-panel {
    align-self: start;
    margin-top: 0;
  }

  /* --- About page: make the bio panel size to its content and align to top --- */
.about-top{
    display:grid;
    grid-template-columns: 260px 1fr;  /* narrower photo column; tweak as desired */
    gap:24px;
    align-items:start;                 /* top align both items */
  }

  /* Ensure the bio panel expands with its content (no clipping/short box) */
.about-top .bio-panel{
    display:block;                     /* make sure it isn't treated as flex/inline */
    align-self:start;                  /* top align in the grid cell */
    height:auto;                       /* grow to fit content */
    min-height:unset;
    max-height:none;
    overflow:visible;                  /* no hidden overflow */
    margin:0;                          /* avoid stray margins affecting height */
    padding-top:18px;                  /* keep your existing panel padding look */
  }

  .about-top{ align-items:stretch; }
.about-top .bio-panel{ align-self:stretch; }

/* --- Align recommendation bylines with their quotes --- */
.note .quote {
    margin: 0 0 0.5rem 0;
    padding-left: 1rem;          /* slight indent for text block */
    border-left: 3px solid rgba(255,255,255,0.1);
  }
  
  .note .byline {
    display: block;
    margin: 0 0 1.5rem 1rem;     /* match quote indentation */
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .note .quote + .byline {
    margin-top: 0.25rem;
  }

/* --- HERO MONITORS (full width across both columns) --- */
.monitors-hero{
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    max-width: 1200px;          /* stays inside .wrap */
    height: auto;
    display: block;
    margin: 0 auto 1.25rem;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.25));
  }
  
  /* Put the two columns on row 2 */
  .hero-copy{  grid-column: 1; grid-row: 2; }
  .hero-card{  grid-column: 2; grid-row: 2; }
  
  /* Stack cleanly on mobile */
  @media (max-width: 900px){
    .hero-grid{ grid-template-columns: 1fr; }
    .monitors-hero{ grid-column: 1; max-width: 100%; margin-bottom: 1rem; }
    .hero-copy{ grid-column: 1; grid-row: auto; }
    .hero-card{ grid-column: 1; grid-row: auto; }
  }