/* ============================================================
   VOTONOMICS — SHARED STYLESHEET (white / navy theme)
   Domain pages may still override --accent / --accent-l / etc,
   but the default site-wide theme is a single professional navy.
   ============================================================ */

:root{
  --cream:#F7F9FC;
  --warm-white:#FFFFFF;
  --slate:#152A4A;
  --slate-mid:#3E5273;
  --slate-light:#7E8CA3;
  --border:rgba(21,42,74,.10);
  --border-strong:rgba(21,42,74,.20);

  --gold:#C8963C;
  --gold-light:#D9AE5E;
  --red:#D64545;

  /* default accent = navy; kept as variables so a page could still
     re-skin a single section without touching shared component css */
  --accent:#1F4E93;
  --accent-l:#3C6FBE;
  --accent-pale:rgba(31,78,147,.06);
  --accent-mid:rgba(31,78,147,.12);
  --accent-b:rgba(31,78,147,.22);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--warm-white);
  color:var(--slate);
  font-family:"DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
  padding-top:68px;
}
body.has-breadcrumb{ padding-top:106px; }
h1,h2,h3,p,ul,figure,blockquote{ margin:0; }
ul{ padding:0; list-style:none; }
a{ color:var(--accent); text-decoration:none; }
button{ font-family:inherit; }
.serif{ font-family:"Cormorant Garamond", serif; }
.mono{ font-family:"DM Mono", monospace; }
img{ max-width:100%; display:block; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation:none !important; transition:none !important; }
}

/* ---------- SKETCH ICONS ---------- */

.isk{ width:20px; height:20px; display:block; overflow:visible; }
.isk path, .isk circle{ fill:none; stroke:currentColor; stroke-width:1.35; stroke-linecap:round; stroke-linejoin:round; }

/* ---------- NAV ---------- */

nav{
  position:fixed; top:0; left:0; right:0; z-index:200; height:68px;
  background:rgba(255,255,255,.96); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 5rem; transition:box-shadow .2s ease;
}

.nav-logo{ display:flex; align-items:center; gap:.6rem; }
.nav-logo-img{ height:30px; width:auto; }
.nav-logo-fallback{ display:none; align-items:center; gap:.5rem; }
.nav-logo-text{ font-weight:700; font-size:.95rem; letter-spacing:.14em; text-transform:uppercase; color:var(--slate); }

.nav-links{ display:flex; align-items:center; gap:2rem; }
.nav-links > li{ position:relative; padding:24px 0; }
.nav-links > li > span, .nav-links > li > a{
  display:flex; align-items:center; gap:.4rem; font-size:.9rem; color:var(--slate-mid);
  cursor:default; transition:color .15s ease;
}
.nav-links > li > a{ cursor:pointer; }
.nav-links > li > span svg, .nav-links > li > a svg{ width:10px; height:10px; }
.nav-links > li:hover > span, .nav-links > li > a:hover{ color:var(--slate); }
.active-flat{ color:var(--slate) !important; border-bottom:2px solid var(--accent); }

.dropdown{
  display:none; position:absolute; top:100%; left:-1.25rem; z-index:60;
  min-width:270px; background:var(--warm-white); border:1px solid var(--border);
  box-shadow:0 24px 60px rgba(21,42,74,.12); border-radius:8px; padding:1.1rem;
}
.nav-links > li:hover .dropdown, .nav-links > li.open .dropdown{ display:block; }
.dropdown.two-col{ min-width:540px; display:none; grid-template-columns:1fr 1fr; gap:0 2rem; }
.nav-links > li:hover .dropdown.two-col, .nav-links > li.open .dropdown.two-col{ display:grid; }
.dl{ font-family:"DM Mono", monospace; font-size:.64rem; letter-spacing:.14em; text-transform:uppercase; color:var(--slate-light); padding:.4rem .6rem .7rem; }
.dropdown a{ display:flex; align-items:center; gap:.75rem; padding:.6rem .6rem; border-radius:6px; font-size:.9rem; color:var(--slate); transition:background .15s ease; }
.dropdown a:hover{ background:var(--cream); }
.di{ width:32px; height:32px; border-radius:7px; background:var(--accent-pale); color:var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.dd{ height:1px; background:var(--border); margin:.5rem 0; }

.nav-actions{ display:flex; align-items:center; gap:1.3rem; }
.btn-ghost{ font-size:.87rem; color:var(--slate-mid); }
.btn-ghost:hover{ color:var(--slate); }
.btn-nav{ font-size:.8rem; font-weight:500; letter-spacing:.04em; padding:.65rem 1.4rem; background:var(--slate); color:#fff; border:1px solid var(--slate); border-radius:5px; transition:background .2s ease; }
.btn-nav:hover{ background:var(--accent); border-color:var(--accent); }

.nav-burger{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-burger span{ width:22px; height:2px; background:var(--slate); display:block; }

@media (max-width:1000px){
  nav{ padding:0 1.5rem; }
  .nav-links, .nav-actions{ display:none; }
  .nav-burger{ display:flex; }
  nav.mobile-open .nav-links{
    display:flex; flex-direction:column; align-items:flex-start; gap:0;
    position:fixed; top:68px; left:0; right:0; background:var(--warm-white);
    border-bottom:1px solid var(--border); padding:1rem 1.5rem 1.5rem; max-height:calc(100vh - 68px); overflow-y:auto;
  }
  nav.mobile-open .nav-links > li{ width:100%; padding:.75rem 0; }
  nav.mobile-open .dropdown, nav.mobile-open .dropdown.two-col{ position:static; display:none; box-shadow:none; border:none; grid-template-columns:1fr; width:100%; padding:.5rem 0 0; }
  nav.mobile-open .nav-links > li.open .dropdown, nav.mobile-open .nav-links > li.open .dropdown.two-col{ display:grid; }
  nav.mobile-open .nav-actions{ display:flex; flex-direction:column; align-items:flex-start; gap:.8rem; position:fixed; top:calc(68px + 340px); left:0; right:0; background:var(--warm-white); padding:0 1.5rem 1.5rem; }
}

/* ---------- BREADCRUMB ---------- */

.bc-bar{ position:fixed; top:68px; left:0; right:0; z-index:190; height:38px; background:var(--cream); border-bottom:1px solid var(--border); display:flex; align-items:center; padding:0 5rem; gap:.55rem; font-size:.72rem; letter-spacing:.04em; }
.bc-bar a{ color:var(--slate-light); transition:color .2s ease; }
.bc-bar a:hover{ color:var(--accent); }
.bc-sep{ color:var(--border-strong); }
.bc-cur{ color:var(--accent); font-weight:500; }
@media (max-width:900px){ .bc-bar{ padding:0 2rem; } }

/* ---------- BUTTONS ---------- */

.btn-fill, .btn-out{ font-family:"DM Sans", sans-serif; font-size:.8rem; font-weight:500; letter-spacing:.04em; padding:.85rem 1.8rem; border-radius:5px; display:inline-block; transition:all .22s ease; }
.btn-fill{ background:var(--accent); color:#fff; border:1px solid var(--accent); }
.btn-fill:hover{ background:var(--accent-l); border-color:var(--accent-l); transform:translateY(-2px); }
.btn-out{ background:transparent; color:rgba(255,255,255,.72); border:1px solid rgba(255,255,255,.22); }
.btn-out:hover{ border-color:rgba(255,255,255,.5); color:#fff; }
.btn-out.on-light{ color:var(--slate-mid); border-color:var(--border-strong); }
.btn-out.on-light:hover{ border-color:var(--slate); color:var(--slate); }

/* ---------- SECTION HELPERS ---------- */

.eyebrow{ display:flex; align-items:center; gap:.65rem; margin-bottom:1rem; }
.ey-line{ width:20px; height:1px; background:var(--accent); flex-shrink:0; }
.eyebrow span{ font-size:.68rem; letter-spacing:.15em; text-transform:uppercase; color:var(--accent); font-weight:500; }

.p-h2{ font-family:"Cormorant Garamond", serif; font-size:clamp(2rem,3.2vw,2.9rem); font-weight:300; line-height:1.15; color:var(--slate); margin-bottom:.9rem; }
.p-h2 em{ font-style:italic; color:var(--accent); }
.p-lead{ font-size:1rem; line-height:1.8; color:var(--slate-mid); font-weight:300; }
.p-sec{ padding:6.5rem 5rem; }
.p-sec-top{ display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:end; margin-bottom:4rem; }
.p-alt{ background:var(--cream); border-top:1px solid var(--border); }
.p-dark{ background:var(--slate); color:#fff; position:relative; overflow:hidden; }
.p-dark::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 65% 75% at 95% 15%, var(--accent-mid) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,.02) 1px,transparent 1px) 0 0/60px 60px,
    linear-gradient(90deg,rgba(255,255,255,.02) 1px,transparent 1px) 0 0/60px 60px;
}
.p-dark .ey-line{ background:var(--accent-l); }
.p-dark .eyebrow span{ color:var(--accent-l); }
.p-dark .p-h2{ color:#fff; }
.p-dark .p-h2 em{ color:var(--accent-l); }
.p-dark .p-lead{ color:rgba(255,255,255,.74); }
@media (max-width:900px){ .p-sec{ padding:4.5rem 2.5rem; } .p-sec-top{ grid-template-columns:1fr; gap:1.5rem; } }

/* ---------- DOMAIN HERO ---------- */

.dom-hero{ background:var(--warm-white); min-height:82vh; display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; padding:6rem 5rem; position:relative; overflow:hidden; border-bottom:1px solid var(--border); }
.dom-hero::before{ content:""; position:absolute; inset:0; background:radial-gradient(ellipse 70% 85% at 85% 40%, var(--accent-pale) 0%, transparent 65%); }
.dom-hero::after{ content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(21,42,74,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(21,42,74,.03) 1px,transparent 1px); background-size:58px 58px; }
.dom-left, .dom-right{ position:relative; z-index:2; }

.dbadge{ display:inline-flex; align-items:center; gap:.65rem; padding:.4rem .95rem .4rem .4rem; background:var(--accent-mid); border:1px solid var(--accent-b); border-radius:5px; margin-bottom:2.2rem; }
.dbadge-icon{ width:28px; height:28px; background:var(--accent); border-radius:5px; display:flex; align-items:center; justify-content:center; color:#fff; }
.dbadge-text{ font-size:.65rem; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); font-weight:500; }

.dom-mono{ font-family:"DM Mono", monospace; font-size:.64rem; letter-spacing:.15em; color:var(--accent); margin-bottom:1rem; font-weight:500; }
.dom-h1{ font-family:"Cormorant Garamond", serif; font-size:clamp(3.1rem,5.6vw,5rem); font-weight:300; line-height:1.06; color:var(--slate); margin-bottom:1.8rem; letter-spacing:-.01em; }
.dom-h1 em{ font-style:italic; color:var(--accent); }
.dom-sub{ font-size:1.02rem; line-height:1.82; color:var(--slate-mid); font-weight:300; max-width:470px; margin-bottom:2.8rem; }
.dom-btns{ display:flex; gap:.85rem; flex-wrap:wrap; margin-bottom:3.5rem; }
.dom-stats{ display:flex; gap:2.5rem; padding-top:2.5rem; border-top:1px solid var(--border); flex-wrap:wrap; }
.dom-sn{ font-family:"Cormorant Garamond", serif; font-size:2.3rem; font-weight:400; color:var(--slate); line-height:1; margin-bottom:.3rem; }
.dom-sn span{ color:var(--accent); }
.dom-sl{ font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:var(--slate-light); }

@media (max-width:1100px){ .dom-hero{ grid-template-columns:1fr; min-height:auto; } .dom-right{ display:none; } }
@media (max-width:900px){ .dom-hero{ padding:5rem 2.5rem 4rem; } }
@media (max-width:640px){ .dom-stats{ flex-wrap:wrap; gap:1.5rem; } }

/* ---------- SIGNAL PANEL (redesigned for readability) ---------- */

.sp{ background:var(--warm-white); border:1px solid var(--border-strong); border-radius:12px; overflow:hidden; box-shadow:0 4px 20px rgba(21,42,74,.06); }
.sp-head{ display:flex; align-items:center; justify-content:space-between; padding:1.1rem 1.5rem; background:var(--cream); border-bottom:1px solid var(--border); }
.sp-title{ font-family:"DM Mono", monospace; font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; color:var(--slate-light); }
.live-pill{ display:flex; align-items:center; gap:.4rem; font-family:"DM Mono", monospace; font-size:.62rem; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); }
.live-pill::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--accent); box-shadow:0 0 8px var(--accent-b); animation:lp 2s ease infinite; }
@keyframes lp{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }

.sp-viewport{ position:relative; height:500px; overflow:hidden; }
.sp-viewport::before, .sp-viewport::after{ content:""; position:absolute; left:0; right:0; height:34px; z-index:2; pointer-events:none; }
.sp-viewport::before{ top:0; background:linear-gradient(var(--warm-white), rgba(255,255,255,0)); }
.sp-viewport::after{ bottom:0; background:linear-gradient(rgba(255,255,255,0), var(--warm-white)); }
.sp-track{ display:flex; flex-direction:column; animation:sproll 34s linear infinite; }
.sp-viewport:hover .sp-track{ animation-play-state:paused; }
@keyframes sproll{ from{ transform:translateY(0); } to{ transform:translateY(-50%); } }
@media (prefers-reduced-motion: reduce){ .sp-track{ animation:none; } }

.sig{ display:flex; gap:1rem; align-items:flex-start; padding:1.15rem 1.5rem; border-bottom:1px solid var(--border); border-left:3px solid transparent; transition:background .2s ease; }
.sig:last-child{ border-bottom:none; }
.sig:hover{ background:var(--cream); }
.sig.sev-high{ border-left-color:var(--red); }
.sig.sev-med{ border-left-color:var(--gold); }
.sig.sev-low{ border-left-color:var(--accent); }

.sig-icon{ width:34px; height:34px; border-radius:8px; background:var(--accent-pale); color:var(--accent); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sig-body{ flex:1; min-width:0; }
.sig-toprow{ display:flex; justify-content:space-between; align-items:center; gap:.7rem; margin-bottom:.4rem; }
.stype{ font-family:"DM Mono", monospace; font-size:.62rem; letter-spacing:.09em; text-transform:uppercase; color:var(--slate-light); }
.sig-badge{ font-family:"DM Mono", monospace; font-size:.7rem; font-weight:500; padding:.16rem .55rem; border-radius:999px; flex-shrink:0; }
.sig-badge.sev-high{ background:rgba(214,69,69,.12); color:var(--red); }
.sig-badge.sev-med{ background:rgba(200,150,60,.16); color:#9C6E1F; }
.sig-badge.sev-low{ background:var(--accent-pale); color:var(--accent); }
.shead{ font-size:.87rem; color:var(--slate); font-weight:400; line-height:1.55; margin-bottom:.45rem; }
.smeta{ display:flex; gap:.7rem; flex-wrap:wrap; }
.sjur{ font-family:"DM Mono", monospace; font-size:.62rem; color:var(--slate-light); }
.stime{ font-size:.62rem; color:var(--slate-light); }

.sp-foot{ display:flex; justify-content:space-between; align-items:center; padding:.95rem 1.5rem; border-top:1px solid var(--border); background:var(--cream); }
.sp-count{ font-family:"DM Mono", monospace; font-size:.62rem; color:var(--slate-light); }
.sp-link{ font-size:.68rem; color:var(--accent); transition:opacity .2s ease; }
.sp-link:hover{ opacity:.7; }

/* ---------- COVERAGE STRIP ---------- */

.cov-strip{ background:var(--accent); padding:1.5rem 5rem; display:flex; }
.cs{ flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 1.5rem; border-right:1px solid rgba(255,255,255,.22); }
.cs:last-child{ border-right:none; }
.cs-n{ font-family:"Cormorant Garamond", serif; font-size:1.9rem; font-weight:400; color:#fff; line-height:1; margin-bottom:.2rem; }
.cs-l{ font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.82); }
@media (max-width:900px){ .cov-strip{ padding:1.4rem 2.5rem; flex-wrap:wrap; } }

/* ---------- PILLARS ---------- */

.pillars{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--border-strong); border-radius:12px; overflow:hidden; }
.pillar{ padding:2.5rem 1.9rem; background:var(--warm-white); border-right:1px solid var(--border); position:relative; overflow:hidden; transition:background .22s ease; }
.pillar:last-child{ border-right:none; }
.pillar:hover{ background:var(--cream); }
.pillar::after{ content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
.pillar:hover::after{ transform:scaleX(1); }
.p-num{ font-family:"DM Mono", monospace; font-size:.6rem; color:var(--accent); letter-spacing:.14em; margin-bottom:1.1rem; }
.p-icon{ width:34px; height:34px; border-radius:8px; background:var(--accent-pale); color:var(--accent); display:flex; align-items:center; justify-content:center; margin-bottom:1.2rem; }
.p-title{ font-family:"Cormorant Garamond", serif; font-size:1.3rem; font-weight:500; color:var(--slate); margin-bottom:.7rem; line-height:1.25; }
.p-body{ font-size:.85rem; color:var(--slate-mid); line-height:1.7; font-weight:300; margin-bottom:1.4rem; }
.p-list{ list-style:none; display:flex; flex-direction:column; gap:.45rem; }
.p-list li{ font-size:.78rem; color:var(--slate-light); padding-left:1rem; position:relative; line-height:1.5; }
.p-list li::before{ content:"—"; position:absolute; left:0; color:var(--accent); font-size:.74rem; }
@media (max-width:1100px){ .pillars{ grid-template-columns:repeat(2,1fr); } .pillar:nth-child(2n){ border-right:none; } .pillar:nth-child(n+3){ border-top:1px solid var(--border); } }
@media (max-width:640px){ .pillars{ grid-template-columns:1fr; } .pillar{ border-right:none; border-bottom:1px solid var(--border); } }

/* ---------- PIPELINE ---------- */

.pipeline{ display:grid; grid-template-columns:repeat(5,1fr); position:relative; gap:0; }
.pipeline::before{ content:""; position:absolute; top:22px; left:8%; right:8%; height:1px; background:linear-gradient(90deg, var(--accent) 0%, var(--accent-mid) 100%); }
.pipe{ padding:0 1rem; position:relative; z-index:1; text-align:center; }
.pipe-n{ width:44px; height:44px; border-radius:50%; background:var(--accent-pale); border:1px solid var(--accent-b); display:flex; align-items:center; justify-content:center; font-family:"DM Mono", monospace; font-size:.66rem; color:var(--accent); margin:0 auto 1.2rem; transition:all .2s ease; }
.pipe:hover .pipe-n{ background:var(--accent-mid); border-color:var(--accent); }
.pipe-title{ font-family:"Cormorant Garamond", serif; font-size:1.05rem; font-weight:500; color:var(--slate); margin-bottom:.6rem; line-height:1.25; }
.pipe-body{ font-size:.85rem; color:var(--slate-mid); line-height:1.7; font-weight:300; }
@media (max-width:900px){ .pipeline{ grid-template-columns:repeat(3,1fr); gap:1.5rem; } .pipeline::before{ display:none; } }
@media (max-width:640px){ .pipeline{ grid-template-columns:1fr 1fr; } }

/* ---------- USE CASES ---------- */

.uc-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.uc{ background:var(--warm-white); border:1px solid var(--border); border-radius:10px; padding:2.1rem 1.85rem; position:relative; overflow:hidden; transition:all .22s ease; }
.uc:hover{ background:var(--warm-white); transform:translateY(-3px); box-shadow:0 14px 42px rgba(21,42,74,.08); }
.uc::after{ content:""; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
.uc:hover::after{ transform:scaleX(1); }
.uc-sector{ font-size:.62rem; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); font-weight:500; margin-bottom:.55rem; }
.uc-title{ font-family:"Cormorant Garamond", serif; font-size:1.2rem; font-weight:500; color:var(--slate); margin-bottom:.65rem; line-height:1.25; }
.uc-body{ font-size:.85rem; color:var(--slate-mid); line-height:1.68; font-weight:300; margin-bottom:1.3rem; }
.uc-tags{ display:flex; flex-wrap:wrap; gap:.35rem; }
.uc-tag{ font-size:.62rem; letter-spacing:.05em; padding:.2rem .55rem; border:1px solid var(--accent-b); border-radius:3px; color:var(--accent); text-transform:uppercase; }
@media (max-width:900px){ .uc-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .uc-grid{ grid-template-columns:1fr; } }

/* ---------- SOURCES ---------- */

.src-grid{ display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--border); border-radius:10px; overflow:hidden; }
.src{ padding:1.7rem 1.6rem; border-right:1px solid var(--border); border-bottom:1px solid var(--border); background:var(--warm-white); transition:background .18s ease; }
.src:nth-child(4n){ border-right:none; }
.src:nth-child(n+5){ border-bottom:none; }
.src:hover{ background:var(--cream); }
.src-name{ font-family:"Cormorant Garamond", serif; font-size:1.05rem; font-weight:600; color:var(--slate); margin-bottom:.3rem; }
.src-full{ font-size:.78rem; color:var(--slate-mid); font-weight:300; line-height:1.5; margin-bottom:.6rem; }
.src-type{ font-family:"DM Mono", monospace; font-size:.58rem; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); }
@media (max-width:900px){ .src-grid{ grid-template-columns:repeat(2,1fr); } .src:nth-child(2n){ border-right:none; } .src:nth-child(n+7){ border-bottom:none; } }
@media (max-width:640px){ .src-grid{ grid-template-columns:1fr; } .src{ border-right:none; border-bottom:1px solid var(--border); } .src:last-child{ border-bottom:none; } }

/* ---------- API ---------- */

.api-inner{ position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.ep-list{ display:flex; flex-direction:column; gap:.75rem; margin-top:2rem; }
.ep{ display:flex; align-items:flex-start; gap:.95rem; padding:1rem 1.2rem; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-radius:6px; transition:background .2s ease; }
.ep:hover{ background:rgba(255,255,255,.08); }
.ep-m{ font-family:"DM Mono", monospace; font-size:.58rem; font-weight:400; padding:.2rem .5rem; border-radius:3px; background:var(--accent-b); color:var(--accent-l); letter-spacing:.08em; flex-shrink:0; margin-top:2px; }
.ep-post{ background:rgba(200,150,60,.22); color:var(--gold-light); }
.ep-path{ font-family:"DM Mono", monospace; font-size:.72rem; color:rgba(255,255,255,.78); margin-bottom:.2rem; }
.ep-desc{ font-size:.78rem; color:rgba(255,255,255,.6); font-weight:300; line-height:1.55; }
.code-panel{ background:rgba(0,0,0,.22); border:1px solid rgba(255,255,255,.12); border-radius:10px; overflow:hidden; }
.code-bar{ display:flex; align-items:center; gap:.42rem; padding:.8rem 1.2rem; background:rgba(0,0,0,.16); border-bottom:1px solid rgba(255,255,255,.09); }
.code-dot{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.16); }
.code-path{ font-family:"DM Mono", monospace; font-size:.62rem; color:rgba(255,255,255,.46); margin-left:.3rem; letter-spacing:.04em; }
.code-body{ padding:1.6rem 1.8rem; font-family:"DM Mono", monospace; font-size:.74rem; line-height:1.95; color:rgba(255,255,255,.74); overflow-x:auto; margin:0; }
.tk{ color:var(--gold-light); } .ts{ color:var(--accent-l); } .tn{ color:#8FB6D9; } .tc{ color:rgba(255,255,255,.46); font-style:italic; } .to{ color:rgba(255,255,255,.92); }
@media (max-width:1100px){ .api-inner{ grid-template-columns:1fr; gap:3rem; } }

/* ---------- DOMAIN CTA ---------- */

.dom-cta{ padding:8rem 5rem; text-align:center; position:relative; overflow:hidden; background:var(--warm-white); }
.dom-cta::before{ content:""; position:absolute; inset:0; background:radial-gradient(ellipse 60% 70% at 50% 50%, var(--accent-pale) 0%, transparent 65%); }
.dom-cta-inner{ position:relative; max-width:660px; margin:0 auto; }
.dom-cta-h2{ font-family:"Cormorant Garamond", serif; font-size:clamp(2.4rem,4.2vw,3.7rem); font-weight:300; line-height:1.1; color:var(--slate); margin-bottom:1.2rem; }
.dom-cta-h2 em{ font-style:italic; color:var(--accent); }
.dom-cta-sub{ font-size:1rem; color:var(--slate-mid); font-weight:300; margin-bottom:2.8rem; line-height:1.78; }
.dom-cta-btns{ display:flex; gap:.9rem; justify-content:center; flex-wrap:wrap; margin-bottom:2.5rem; }
.dom-cta-also{ font-size:.8rem; color:var(--slate-light); }
.dom-cta-also a{ color:var(--accent); text-decoration:none; font-weight:500; margin-left:.4rem; transition:color .2s ease; }
.dom-cta-also a:hover{ color:var(--accent-l); }
@media (max-width:900px){ .dom-cta{ padding:5rem 2.5rem; } }

/* ---------- DOMAIN NAV STRIP ---------- */

.dn-strip{ background:var(--cream); border-top:1px solid var(--border); padding:2.8rem 5rem; }
.dn-label{ font-size:.66rem; letter-spacing:.13em; text-transform:uppercase; color:var(--slate-light); font-weight:500; margin-bottom:1.4rem; }
.dn-grid{ display:grid; grid-template-columns:repeat(8,1fr); gap:.7rem; }
.dn-item{ display:flex; flex-direction:column; align-items:center; gap:.5rem; padding:1rem .4rem; border:1px solid var(--border); border-radius:8px; background:var(--warm-white); text-decoration:none; transition:all .2s ease; text-align:center; }
.dn-item:hover{ background:var(--cream); border-color:var(--border-strong); transform:translateY(-2px); }
.dn-item.active{ background:var(--accent); border-color:var(--accent); pointer-events:none; }
.dn-item .isk{ width:18px; height:18px; color:var(--slate-mid); }
.dn-item.active .isk{ color:#fff; }
.dn-name{ font-size:.62rem; letter-spacing:.06em; text-transform:uppercase; color:var(--slate-mid); font-weight:500; line-height:1.3; }
.dn-item.active .dn-name{ color:#fff; }
@media (max-width:1100px){ .dn-grid{ grid-template-columns:repeat(4,1fr); } }
@media (max-width:900px){ .dn-strip{ padding:2.8rem 2.5rem; } }
@media (max-width:640px){ .dn-grid{ grid-template-columns:repeat(4,1fr); } }

/* ---------- REVEAL ---------- */

.rv{ opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.rv.in{ opacity:1; transform:translateY(0); }

/* ---------- FOOTER ---------- */

footer{ background:#0F1E36; }
.foot-grid{ max-width:1320px; margin:0 auto; padding:5rem 5rem 2.5rem; display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr; gap:3rem; }
.foot-brand{ padding-bottom:4rem; }
.foot-logo-link{ display:flex; align-items:center; gap:.5rem; margin-bottom:1.2rem; }
.foot-logo-img{ height:26px; width:auto; }
.foot-logo-fallback{ display:none; align-items:center; gap:.5rem; }
.foot-logo-text{ color:#fff; font-weight:700; font-size:.9rem; letter-spacing:.14em; text-transform:uppercase; }
.foot-tag{ font-size:.87rem; line-height:1.75; font-weight:300; color:rgba(255,255,255,.58); max-width:280px; }
.fcol-t{ font-family:"DM Mono", monospace; font-size:.66rem; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-bottom:1.2rem; }
.flinks{ display:flex; flex-direction:column; gap:.65rem; }
.flinks a{ font-size:.87rem; color:rgba(255,255,255,.66); }
.flinks a:hover{ color:var(--accent-l); }
.foot-bot{ max-width:1320px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; gap:2rem; padding:2rem 5rem 2.5rem; border-top:1px solid rgba(255,255,255,.09); flex-wrap:wrap; }
.foot-copy{ font-size:.82rem; color:rgba(255,255,255,.5); }
.foot-legal{ display:flex; gap:1.8rem; }
.foot-legal a{ font-size:.82rem; color:rgba(255,255,255,.5); }
.foot-legal a:hover{ color:var(--accent-l); }
@media (max-width:1100px){ .foot-grid{ grid-template-columns:repeat(4,1fr); gap:2.5rem; } }
@media (max-width:900px){ .foot-grid, .foot-bot{ padding-left:2.5rem; padding-right:2.5rem; } }
@media (max-width:640px){ .foot-grid{ grid-template-columns:repeat(2,1fr); } }

:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; }
