:root{
    --navy-950:#0E1130;
    --navy-800:#1B1F44;
    --navy-700:#262B5C;
    --violet-500:#6C5CE7;
    --violet-600:#5A48D6;
    --violet-100:#ECE9FB;
    --gold-500:#D9A441;
    --gold-100:#FBF1DE;
    --paper:#F7F8FC;
    --paper-alt:#FFFFFF;
    --ink-900:#14162B;
    --ink-700:#2B2E4A;
    --ink-400:#6B6F8C;
    --ink-300:#9A9DBB;
    --line:#E2E4F0;
    --line-dark:#34397A;
    --radius-sm:8px;
    --radius:0px;
    --radius-lg:0px;
    --maxw:1180px;
    --font-display:'Fraunces', serif;
    --font-body:'Manrope', sans-serif;
    --font-mono:'IBM Plex Mono', monospace;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--font-body);
    color:var(--ink-700);
    background:var(--paper);
    -webkit-font-smoothing:antialiased;
    line-height:1.5;
  }
  img,svg{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  section{position:relative;}
  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}

  ::selection{background:var(--violet-500); color:#fff;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- typography helpers ---------- */
  .eyebrow{
    font-family:var(--font-mono);
    font-size:12.5px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--violet-500);
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:500;
  }
  .eyebrow::before{
    content:"";
    width:7px; height:7px; border-radius:50%;
    background:var(--violet-500);
    display:inline-block;
  }
  .eyebrow.on-dark{ color:var(--gold-500); }
  .eyebrow.on-dark::before{ background:var(--gold-500); }

  h1,h2,h3,h4{
    font-family:var(--font-display);
    color:var(--navy-800);
    font-weight:600;
    line-height:1.08;
    letter-spacing:-0.01em;
  }
  h2{ font-size:clamp(28px,3.4vw,42px); font-weight:600; }
  h3{ font-size:22px; font-weight:600; }
  p{ color:var(--ink-400); }
  .lede{ font-size:18px; line-height:1.6; color:var(--ink-400); max-width:56ch; }

  .btn{
    font-family:var(--font-body);
    font-weight:700;
    font-size:14.5px;
    padding:14px 26px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    border:1.5px solid transparent;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    white-space:nowrap;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{ background:var(--navy-800); color:#fff; box-shadow:0 8px 20px -8px rgba(27,31,68,.55);}
  .btn-primary:hover{ background:var(--violet-600); box-shadow:0 10px 24px -8px rgba(108,92,231,.55);}
  .btn-ghost{ border-color:var(--line-strong,#C9CCE6); color:var(--navy-800); background:transparent; }
  .btn-ghost:hover{ border-color:var(--violet-500); color:var(--violet-600); }

  /* ---------- panel (OS window) motif ---------- */
  .panel{
    position:relative;
    border:1px solid var(--line);
    background:var(--paper-alt);
    border-radius:var(--radius);
  }
  .panel-label{
    position:absolute;
    top:-11px; left:20px;
    background:var(--paper-alt);
    padding:0 8px;
    font-family:var(--font-mono);
    font-size:11px;
    letter-spacing:.08em;
    color:var(--ink-300);
    text-transform:uppercase;
  }

  /* ================= NAV ================= */
  header#nav{
    position:sticky; top:0; z-index:100;
    background:rgba(247,248,252,.86);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav-row{
    display:flex; align-items:center; justify-content:space-between;
    height:74px;
  }
  .brand{ display:flex; align-items:center; gap:11px; }
  .brand-mark{ width:34px; height:34px; flex:none; }
  .brand-word{ font-family:var(--font-display); font-weight:700; font-size:19px; color:var(--navy-800); letter-spacing:.01em; }
  .brand-tag{ font-family:var(--font-mono); font-size:10px; color:var(--ink-300); letter-spacing:.04em; margin-top:-2px; }

  nav.main-links{ display:flex; align-items:center; gap:34px; }
  nav.main-links a{
    font-family:var(--font-mono);
    font-size:13px;
    color:var(--ink-400);
    letter-spacing:.02em;
    position:relative;
    padding:6px 0;
  }
  nav.main-links a::after{
    content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
    background:var(--violet-500); transform:scaleX(0); transform-origin:left;
    transition:transform .2s ease;
  }
  nav.main-links a:hover{ color:var(--navy-800); }
  nav.main-links a:hover::after{ transform:scaleX(1); }
  nav.main-links a.active{ color:var(--navy-800); font-weight:700; }
  nav.main-links a.active::after{ transform:scaleX(1); }

  .nav-cta{ display:flex; align-items:center; gap:14px; }
  .nav-burger{ display:none; }

  /* ================= LANGUAGE SWITCH ================= */
  .lang-switch{
    display:flex;
    border:1.5px solid var(--line-strong,#D7D9EC);
    border-radius:999px;
    padding:3px;
    gap:2px;
  }
  .lang-btn{
    font-family:var(--font-mono);
    font-size:11.5px;
    font-weight:600;
    letter-spacing:.03em;
    border:none;
    background:transparent;
    color:var(--ink-400);
    padding:6px 12px;
    border-radius:999px;
    cursor:pointer;
    transition:background .18s ease, color .18s ease;
  }
  .lang-btn:hover{ color:var(--navy-800); }
  .lang-btn.active{ background:var(--navy-800); color:#fff; }
  .lang-btn.active:hover{ color:#fff; }

  /* ================= I18N READY FADE-IN ================= */
  /* Normal path: JS adds .i18n-ready within milliseconds → instant correct-language fade-in.
     Safety-net path: if script.js/i18n.js fail to load for ANY reason (missing file,
     wrong folder, renamed file, etc.), this animation forces the page visible after
     1.5s regardless — so the site is NEVER stuck permanently blank. */
  body{ opacity:0; animation:forceReveal 0s 1.5s forwards; }
  @keyframes forceReveal{ to{ opacity:1; } }
  body.i18n-ready{ animation:none; opacity:1; transition:opacity .3s ease; }

  /* ================= STATUS TICKER ================= */
  .ticker{
    background:var(--navy-950);
    border-bottom:1px solid var(--line-dark);
    overflow:hidden;
    white-space:nowrap;
    position:relative;
  }
  .ticker-track{
    display:inline-flex;
    align-items:center;
    gap:56px;
    padding:9px 0;
    animation:scroll-left 32s linear infinite;
    will-change:transform;
  }
  .ticker-track span{
    font-family:var(--font-mono);
    font-size:12px;
    color:#B9BCE0;
    letter-spacing:.02em;
    display:inline-flex; align-items:center; gap:10px;
  }
  .ticker-track span b{ color:var(--gold-500); font-weight:500; }
  .ticker-dot{ width:5px; height:5px; border-radius:50%; background:#4A4F8A; display:inline-block; }
  @keyframes scroll-left{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
  }

  /* ================= HERO (kontras gelap vs header terang) ================= */
  #beranda{
    background:
      radial-gradient(1100px 480px at 82% -10%, rgba(108,92,231,.28), transparent 60%),
      var(--navy-950);
    padding:76px 0 64px;
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:56px;
    align-items:center;
  }
  #beranda .eyebrow{ color:var(--gold-500); }
  #beranda .eyebrow::before{ background:var(--gold-500); }
  .hero-copy h1{
    font-size:clamp(38px,5vw,60px);
    margin:18px 0 22px;
    color:#fff;
  }
  .hero-copy h1 em{
    font-style:italic; color:var(--gold-500);
  }
  #beranda .lede{ color:#B9BCE0; }
  .hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
  #beranda .btn-primary{ background:var(--gold-500); color:var(--navy-950); box-shadow:0 8px 20px -8px rgba(217,164,65,.45); }
  #beranda .btn-primary:hover{ background:#E8B75A; box-shadow:0 10px 24px -8px rgba(217,164,65,.55); }
  #beranda .btn-ghost{ border-color:#3A3F80; color:#fff; }
  #beranda .btn-ghost:hover{ border-color:var(--gold-500); color:var(--gold-500); }

  .hero-stats{
    display:flex;
    gap:0;
    margin-top:46px;
    border-top:1px solid var(--line-dark);
    padding-top:22px;
  }
  .hero-stats div{
    flex:1;
    min-width:0;
    padding:0 20px;
    border-right:1px solid var(--line-dark);
  }
  .hero-stats div:first-child{ padding-left:0; }
  .hero-stats div:last-child{ border-right:none; padding-right:0; }
  .hero-stats strong{
    display:block;
    font-family:var(--font-display);
    font-size:22px;
    color:#fff;
    font-weight:700;
    white-space:nowrap;
  }
  .hero-stats span{
    font-family:var(--font-mono);
    font-size:10.5px;
    color:#9599C4;
    letter-spacing:.03em;
    line-height:1.4;
    display:block;
    margin-top:4px;
  }

  /* hero system-map visual */
  .hero-visual{
    position:relative;
    aspect-ratio:1/1;
    max-width:480px;
    justify-self:end;
  }
  .hero-visual svg{ width:100%; height:100%; overflow:visible; }
  .hero-visual text{ font-family:var(--font-mono); font-size:12px; fill:#D6D8F0; }
  .node-pulse{ animation:pulse 2.6s ease-in-out infinite; transform-origin:center; }
  .node-pulse:nth-child(2){ animation-delay:.4s; }
  .node-pulse:nth-child(3){ animation-delay:.8s; }
  @keyframes pulse{
    0%,100%{ opacity:.55; }
    50%{ opacity:1; }
  }
  .orbit-line{
    stroke-dasharray:4 7;
    animation:dash-move 22s linear infinite;
  }
  @keyframes dash-move{
    to{ stroke-dashoffset:-500; }
  }

  /* ================= PAGE BANNER (halaman internal) ================= */
  .page-banner{
    background:
      radial-gradient(900px 400px at 85% -20%, rgba(108,92,231,.25), transparent 60%),
      var(--navy-950);
    padding:64px 0 56px;
  }
  .page-banner .eyebrow{ color:var(--gold-500); }
  .page-banner .eyebrow::before{ background:var(--gold-500); }
  .page-banner h1{
    color:#fff;
    font-size:clamp(32px,4vw,46px);
    margin-top:14px;
  }
  .page-banner p{
    color:#B9BCE0;
    margin-top:14px;
    max-width:60ch;
    font-size:15.5px;
    line-height:1.6;
  }
  .page-banner .crumb{
    font-family:var(--font-mono);
    font-size:11.5px;
    color:#7377AE;
    margin-bottom:16px;
    display:block;
  }
  .page-banner .crumb a{ color:#B9BCE0; }
  .page-banner .crumb a:hover{ color:var(--gold-500); }

  /* ================= MASALAH ================= */
  #masalah{
    background:var(--navy-950);
    padding:88px 0;
  }
  .masalah-head{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:end;
    margin-bottom:52px;
  }
  #masalah h2{ color:#fff; margin-top:14px; }
  #masalah .lede{ color:#B9BCE0; }
  .masalah-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line-dark);
    border:1px solid var(--line-dark);
    border-radius:var(--radius);
    overflow:hidden;
  }
  .masalah-item{
    background:var(--navy-950);
    padding:30px 26px;
  }
  .masalah-item .num{
    font-family:var(--font-mono);
    font-size:11px;
    color:#4A4F8A;
    letter-spacing:.08em;
  }
  .masalah-item p.stat-line{
    font-family:var(--font-display);
    color:#fff;
    font-size:17px;
    font-weight:500;
    margin-top:14px;
    line-height:1.4;
  }

  /* ================= EKONOMI HYPERLOKAL ================= */
  #ekonomi-lokal{ padding:96px 0; background:var(--paper-alt); border-bottom:1px solid var(--line); }
  #ekonomi-lokal .eyebrow{ color:var(--gold-500); }
  #ekonomi-lokal .eyebrow::before{ background:var(--gold-500); }
  .ekolokal-wrap{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-top:44px;
  }
  .ekolokal-visual{ max-width:420px; margin:0 auto; }
  .ekolokal-visual svg{ width:100%; height:auto; overflow:visible; }
  .ekolokal-visual text{ font-family:var(--font-mono); font-size:12px; fill:var(--ink-700); font-weight:500; }
  .ekolokal-points{ display:flex; flex-direction:column; gap:24px; }
  .ekolokal-points li{ display:flex; gap:16px; align-items:flex-start; }
  .ekolokal-points .pt-num{
    font-family:var(--font-mono); font-size:12px; color:var(--gold-500); font-weight:600;
    flex:none; width:26px; padding-top:3px;
  }
  .ekolokal-points h4{ font-size:15.5px; color:var(--navy-800); margin-bottom:4px; }
  .ekolokal-points p{ font-size:13.5px; line-height:1.5; }
  .ekolokal-orbit{ stroke-dasharray:3 6; animation:dash-move 18s linear infinite; }

  /* ================= SOLUSI / MODULES ================= */
  #solusi{ padding:96px 0 88px; }
  .section-head{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:end;
    gap:40px;
    margin-bottom:52px;
  }
  .section-head h2{ margin-top:14px; }
  .section-head .lede{ margin-top:10px; }

  .module-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }
  .module-card{
    padding:30px 26px 26px;
    display:flex;
    flex-direction:column;
    gap:16px;
    transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  }
  .module-card:hover{
    border-color:var(--violet-500);
    transform:translateY(-4px);
    box-shadow:0 18px 34px -18px rgba(27,31,68,.28);
  }
  .module-card .mod-index{
    font-family:var(--font-mono); font-size:11px; color:var(--ink-300); letter-spacing:.08em;
  }
  .module-icon{
    width:46px; height:46px; border-radius:12px;
    background:var(--violet-100);
    display:flex; align-items:center; justify-content:center;
    color:var(--violet-500);
  }
  .module-card h3{ font-size:19px; }
  .module-card ul{ display:flex; flex-direction:column; gap:8px; margin-top:2px; }
  .module-card li{
    font-size:13.5px; color:var(--ink-400);
    display:flex; gap:8px; align-items:flex-start;
  }
  .module-card li::before{
    content:"—"; color:var(--violet-500); flex:none;
  }
  .module-card.feature .panel-label{ background:var(--navy-800); color:var(--gold-500); }
  .module-card.feature{
    background:var(--navy-800); border-color:var(--navy-800);
  }
  .module-card.feature h3, .module-card.feature .mod-index{ color:#fff; }
  .module-card.feature .module-icon{ background:rgba(255,255,255,.1); color:var(--gold-500); }
  .module-card.feature li{ color:#C9CCE6; }
  .module-card.feature li::before{ color:var(--gold-500); }

  /* ================= UNTUK SIAPA ================= */
  #untuk-siapa{ padding:88px 0; background:var(--paper-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .siapa-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:var(--radius);
    overflow:hidden;
    margin-top:52px;
  }
  .siapa-item{
    background:var(--paper-alt);
    padding:34px 24px;
    text-align:center;
  }
  .siapa-icon{
    width:56px; height:56px; border-radius:50%;
    background:var(--violet-100); color:var(--violet-500);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 18px;
  }
  .siapa-item h3{ font-size:17px; margin-bottom:8px; }
  .siapa-item p{ font-size:13.5px; }

  /* ================= EKOSISTEM ================= */
  #ekosistem{ padding:96px 0; }
  .eko-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:52px;
  }
  .eko-card{
    padding:28px 22px;
    text-align:left;
  }
  .eko-icon{
    width:44px; height:44px; border-radius:10px;
    background:var(--gold-100); color:var(--gold-500);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:16px;
  }
  .eko-card h3{ font-size:16.5px; margin-bottom:8px; }
  .eko-card p{ font-size:13px; }

  /* ================= INVESTOR (dipindah ke Kontak, lihat #kontak) ================= */

  /* ================= TIM ================= */
  #tim{ padding:96px 0; background:var(--paper-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .tim-grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px; margin-top:52px; }
  .tim-card{ padding:30px 26px; }
  .tim-avatar{
    width:64px; height:64px; border-radius:50%;
    background:var(--navy-800);
    display:flex; align-items:center; justify-content:center;
    color:#fff; font-family:var(--font-display); font-size:22px; font-weight:600;
    margin-bottom:18px;
  }
  .tim-card.open .tim-avatar{ background:var(--violet-100); color:var(--violet-500); }
  .tim-role{ font-family:var(--font-mono); font-size:11px; color:var(--violet-500); letter-spacing:.06em; text-transform:uppercase; margin-bottom:6px; display:block;}
  .tim-card h3{ font-size:18px; margin-bottom:8px; }
  .tim-card p{ font-size:13.5px; }
  .tim-status{
    display:inline-flex; align-items:center; gap:7px;
    font-family:var(--font-mono); font-size:11px; color:var(--ink-400);
    margin-top:16px;
  }
  .tim-status.hiring{ color:var(--gold-500); }
  .tim-status i{ width:6px; height:6px; border-radius:50%; background:currentColor; display:inline-block; }

  /* ================= KONTAK ================= */
  #kontak{ padding:96px 0 40px; }
  .kontak-wrap{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:56px;
  }
  .kontak-info{ display:flex; flex-direction:column; gap:26px; margin-top:36px; }
  .kontak-row{ display:flex; gap:16px; align-items:flex-start; }
  .kontak-icon{
    width:42px; height:42px; border-radius:10px; flex:none;
    background:var(--violet-100); color:var(--violet-500);
    display:flex; align-items:center; justify-content:center;
  }
  .kontak-row h4{ font-family:var(--font-body); font-size:14px; color:var(--navy-800); font-weight:700; margin-bottom:4px;}
  .kontak-row p{ font-size:13.5px; line-height:1.55; }
  .kontak-row a{ color:var(--violet-600); font-weight:600; }

  .kontak-form{ padding:34px; }
  .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
  .form-field{ display:flex; flex-direction:column; gap:6px; }
  .form-field.full{ grid-column:1/-1; }
  .form-field label{ font-family:var(--font-mono); font-size:11px; color:var(--ink-400); letter-spacing:.04em; text-transform:uppercase; }
  .form-field input, .form-field select, .form-field textarea{
    font-family:var(--font-body); font-size:14px; color:var(--ink-700);
    padding:12px 14px; border:1px solid var(--line); border-radius:var(--radius-sm);
    background:var(--paper); outline:none; transition:border-color .15s ease;
    resize:none;
  }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--violet-500); }
  .kontak-form .btn{ width:100%; justify-content:center; margin-top:6px; }

  /* ================= CTA BAND (penutup tiap halaman) ================= */
  .cta-band{ background:var(--violet-500); padding:72px 0; text-align:center; }
  .cta-band h2{ color:#fff; }
  .cta-band p{ color:#ECE9FB; margin:14px auto 30px; max-width:56ch; font-size:15.5px; }
  .cta-band .btn-primary{ background:#fff; color:var(--navy-800); }
  .cta-band .btn-primary:hover{ background:var(--gold-500); color:var(--navy-950); }
  .cta-band .btn-ghost{ border-color:rgba(255,255,255,.4); color:#fff; }
  .cta-band .btn-ghost:hover{ border-color:#fff; }
  .cta-actions{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

  /* ================= FOOTER ================= */
  footer{ background:var(--navy-950); padding:56px 0 26px; margin-top:40px; }
  .footer-top{
    display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:40px; padding-bottom:40px; border-bottom:1px solid var(--line-dark);
  }
  .footer-brand .brand-word{ color:#fff; }
  .footer-brand p{ color:#8286AE; font-size:13px; margin-top:14px; max-width:32ch; }
  .footer-col h5{
    font-family:var(--font-mono); font-size:11px; color:#5A5F9A; letter-spacing:.08em;
    text-transform:uppercase; margin-bottom:16px;
  }
  .footer-col a{ display:block; color:#B9BCE0; font-size:13.5px; margin-bottom:11px; }
  .footer-col a:hover{ color:var(--gold-500); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:22px; flex-wrap:wrap; gap:12px;
  }
  .footer-bottom p{ color:#5A5F9A; font-size:12px; }
  .footer-social{ display:flex; gap:12px; }
  .footer-social a{
    width:34px; height:34px; border-radius:50%; border:1px solid var(--line-dark);
    display:flex; align-items:center; justify-content:center; color:#B9BCE0;
    transition:border-color .15s ease, color .15s ease;
  }
  .footer-social a:hover{ border-color:var(--gold-500); color:var(--gold-500); }

  /* ================= REVEAL ================= */
  .reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ================= RESPONSIVE ================= */
  @media (max-width:980px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-visual{ max-width:340px; justify-self:center; margin-top:20px; }
    .masalah-head, .section-head, .ekolokal-wrap, .kontak-wrap{ grid-template-columns:1fr; }
    .ekolokal-visual{ margin-bottom:10px; }
    .masalah-grid{ grid-template-columns:1fr 1fr; }
    .module-grid{ grid-template-columns:1fr 1fr; }
    .siapa-grid{ grid-template-columns:1fr 1fr; }
    .eko-grid{ grid-template-columns:1fr 1fr; }
    .tim-grid{ grid-template-columns:1fr; }
    .footer-top{ grid-template-columns:1fr 1fr; }
    nav.main-links{ display:none; }
  }
  @media (max-width:640px){
    .wrap{ padding:0 20px; }
    .masalah-grid, .module-grid, .siapa-grid, .eko-grid{ grid-template-columns:1fr; }
    .form-row{ grid-template-columns:1fr; }
    .hero-stats{ flex-direction:column; gap:16px; }
    .hero-stats div{ border-right:none; padding:0 0 14px; border-bottom:1px solid var(--line-dark); }
    .hero-stats div:last-child{ border-bottom:none; padding-bottom:0; }
    .footer-top{ grid-template-columns:1fr; }
    .footer-bottom{ flex-direction:column; align-items:flex-start; }
    .brand-tag{ display:none; }
    .nav-cta{ gap:8px; }
    .nav-cta .btn-primary{ padding:10px 14px; font-size:12.5px; }
  }
