/* ============================================================
   DCR MEDIA — Concept D production stylesheet
   Premium black / slate base · white editorial type · amber illumination
   ============================================================ */

/* ---- Fonts (self-host in production for speed; CDN is fine to start) ---- */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,400&family=Hanken+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ---- Design tokens ---- */
:root{
  /* color */
  --bg:#0a0a0c; --bg2:#0d0d10; --panel:#101014;
  --ink:#f4f2ec; --ink-dim:#cbc8c0; --muted:#8d8a83; --faint:#5e5c57;
  --amber:#e2a23a; --amber-bright:#f2bc5e; --amber-deep:#b8801f;
  --green:#6ed28c;
  --border:rgba(244,242,236,0.10); --hair:rgba(244,242,236,0.06);

  /* type */
  --serif:'Newsreader',Georgia,serif;
  --sans:'Hanken Grotesk',-apple-system,system-ui,sans-serif;
  --mono:'JetBrains Mono',ui-monospace,monospace;

  /* layout */
  --shell-pad:56px;
  --maxw:1240px;
  --radius:2px;
  --radius-card:3px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden;max-width:100%}
body{
  background:var(--bg);color:var(--ink);font-family:var(--sans);
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
  overflow-x:hidden;max-width:100%;line-height:1.5;
  /* position:relative makes body the containing block for the decorative
     .page-glow so its overflow-x:hidden actually clips it on mobile */
  position:relative;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
/* defensive: nothing exceeds the viewport, long words wrap instead of overflowing */
main,header,footer,section,.shell,.nav-inner{max-width:100%}
h1,h2,h3,p{overflow-wrap:break-word}
input{font-family:inherit}
button{font-family:inherit;cursor:pointer}
::selection{background:rgba(226,162,58,0.3);color:#fff}

.shell{max-width:var(--maxw);margin:0 auto;padding-left:var(--shell-pad);padding-right:var(--shell-pad)}

/* ---- micro-label / eyebrow ---- */
.eyebrow{display:flex;align-items:center;gap:14px;margin-bottom:32px}
.eyebrow .rule{width:26px;height:1px;background:var(--amber)}
.eyebrow span{font-family:var(--mono);font-size:12px;letter-spacing:0.30em;color:var(--amber);text-transform:uppercase}

/* ---- buttons ---- */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:13px;border-radius:var(--radius);font-size:15px;transition:all .22s;white-space:nowrap}
.btn svg{width:16px;height:12px;flex:none}
.btn-primary{background:var(--amber);color:#0a0a0c;font-weight:600;padding:16px 30px;border:1px solid var(--amber)}
.btn-primary:hover{background:var(--amber-bright);border-color:var(--amber-bright);box-shadow:0 10px 36px -10px rgba(226,162,58,0.55)}
.btn-outline{border:1px solid var(--border);color:var(--ink);padding:16px 30px;background:transparent}
.btn-outline:hover{border-color:var(--amber);color:var(--amber)}
.btn-amber-outline{border:1px solid var(--amber);color:var(--amber);padding:15px 26px;background:transparent}
.btn-amber-outline:hover{background:var(--amber);color:#0a0a0c}

/* ============================== NAV ============================== */
.nav{position:sticky;top:0;z-index:50;background:rgba(10,10,12,0.72);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border-bottom:1px solid var(--hair)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:20px var(--shell-pad);max-width:var(--maxw);margin:0 auto}
.brand{display:flex;align-items:center;gap:16px}
.brand img{height:30px;width:auto}
.brand .bar{width:1px;height:26px;background:var(--border)}
.brand .wordmark{display:flex;flex-direction:column;line-height:1.14;padding-left:2px}
.brand .wordmark span{font-family:var(--mono);font-size:11px;letter-spacing:0.2em;color:var(--ink-dim);font-weight:500;white-space:nowrap}
.brand .wordmark .wm-l2{color:var(--muted)}
.nav-links{display:flex;align-items:center;gap:42px}
.nav-links a{font-size:15px;color:var(--ink-dim);transition:color .2s;white-space:nowrap}
.nav-links a:hover{color:var(--ink)}
.nav-right{display:flex;align-items:center;gap:14px}
.nav-cta{display:inline-flex;align-items:center;gap:12px;padding:12px 22px;border:1px solid var(--amber);border-radius:var(--radius);color:var(--amber);font-size:14px;transition:all .22s}
.nav-cta:hover{background:var(--amber);color:#0a0a0c}
.nav-cta svg{width:16px;height:12px}
.menu-btn{display:none;align-items:center;justify-content:center;width:42px;height:42px;background:transparent;border:1px solid var(--border);border-radius:var(--radius);color:var(--ink)}
.mobile-drawer{display:none;background:rgba(13,13,16,0.97);-webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);border-bottom:1px solid var(--border);padding:8px var(--shell-pad) 18px}
.mobile-drawer.open{display:block}
.mobile-drawer a{display:block;font-size:16px;color:var(--ink-dim);padding:14px 0;border-bottom:1px solid var(--hair)}

/* ambient page glow — pulled down/left to sit behind the hero console, not empty space */
.page-glow{position:absolute;top:-140px;right:-60px;width:880px;height:720px;
  background:radial-gradient(closest-side,rgba(226,162,58,0.12),rgba(226,162,58,0.03) 55%,transparent 72%);
  pointer-events:none;z-index:0}

main{position:relative;z-index:1}

/* ============================== HERO ============================== */
.hero{position:relative;padding:72px 0 56px}
/* faint schematic grid + amber atmosphere on the right — texture, not content */
.hero::before{content:"";position:absolute;right:-40px;top:-20px;width:52%;height:120%;
  pointer-events:none;z-index:0;
  background:
    radial-gradient(closest-side at 68% 38%,rgba(226,162,58,0.06),transparent 70%),
    repeating-linear-gradient(to right,rgba(244,242,236,0.028) 0 1px,transparent 1px 96px),
    repeating-linear-gradient(to bottom,rgba(244,242,236,0.02) 0 1px,transparent 1px 96px);
  -webkit-mask-image:linear-gradient(to left,rgba(0,0,0,1) 30%,transparent 96%);
  mask-image:linear-gradient(to left,rgba(0,0,0,1) 30%,transparent 96%)}
.hero-copy{position:relative;z-index:1;max-width:900px}
.hero h1{font-family:var(--serif);font-weight:400;font-size:clamp(46px,5.2vw,72px);line-height:1.04;letter-spacing:-0.015em;margin-bottom:28px}
.hero h1 .amber{color:var(--amber)}
.hero .sub{font-size:17px;line-height:1.65;color:var(--muted);max-width:560px;margin-bottom:38px}
.cta-row{display:flex;gap:16px}

/* ---- Live system layer: the DCR HUD dashboard below the ticker ---- */
.hero-console{position:relative;margin:44px 0 8px;border-radius:var(--radius-card);overflow:hidden;
  border:1px solid rgba(226,162,58,0.20);
  box-shadow:0 0 60px -22px rgba(226,162,58,0.28),0 34px 80px -40px rgba(0,0,0,0.9);
  background:#0a0a0c}
.hero-console .hud-img{display:block;width:100%;height:auto}
.callout{position:absolute;max-width:150px;z-index:3}
.callout .row{display:flex;align-items:center;gap:8px;margin-bottom:5px}
.callout .dot{width:7px;height:7px;border-radius:50%;background:var(--amber);box-shadow:0 0 10px 2px rgba(226,162,58,0.6);animation:nodePulse 3s ease-in-out infinite}
.callout .title{font-family:var(--mono);font-size:11px;letter-spacing:0.16em;color:var(--amber);text-transform:uppercase;font-weight:500}
.callout p{font-size:12px;line-height:1.35;color:var(--ink-dim);padding-left:15px}
.callout.c-power{left:42%;top:5%}
.callout.c-networks{left:73%;top:4%}
.callout.c-datacenters{left:80%;top:34%}
.callout.c-chips{left:2%;top:74%}
.callout.c-policy{left:46%;top:88%}
.callout.c-capital{left:78%;top:82%}

/* ============================== STATUS STRIP ============================== */
.status{display:flex;align-items:center;margin-top:40px;border-top:1px solid var(--hair);border-bottom:1px solid var(--hair);
  padding:16px 0;font-family:var(--mono);font-size:12px;letter-spacing:0.16em;color:var(--faint)}
.status .grp{display:flex;align-items:center;gap:11px;padding-right:30px}
.status .live{display:flex;align-items:center;gap:26px;padding-left:30px}
.status .dot{width:8px;height:8px;border-radius:50%;background:var(--green);box-shadow:0 0 8px 1px rgba(110,210,140,0.7);animation:greenPulse 2.4s ease-in-out infinite}
.status .vrule{width:1px;height:16px;background:var(--border)}
.status .on{color:var(--ink-dim)}
.status .li{color:var(--amber)}

/* ============================== WHAT WE COVER ============================== */
.section{padding:88px 0 40px}
.section-head{display:grid;grid-template-columns:1fr 0.85fr;gap:48px;align-items:end;margin-bottom:54px}
.sec-h{font-family:var(--serif);font-weight:400;font-size:clamp(34px,3.6vw,46px);line-height:1.08;letter-spacing:-0.01em}
.section-head p{font-size:16px;line-height:1.65;color:var(--muted);max-width:420px}

.pillars{display:grid;grid-template-columns:repeat(6,1fr);border:1px solid var(--border);border-radius:var(--radius-card);overflow:hidden}
.pillar{padding:30px 26px 34px;border-right:1px solid var(--hair);border-bottom:1px solid var(--hair);transition:background .25s}
.pillar:hover{background:rgba(226,162,58,0.05)}
.pillar .num{font-family:var(--mono);font-size:12px;letter-spacing:0.12em;color:var(--amber);margin-bottom:26px}
.pillar .icon{height:48px;width:48px;margin-bottom:22px;color:var(--amber)}
.pillar h3{font-family:var(--serif);font-weight:400;font-size:22px;line-height:1.15;margin-bottom:12px}
.pillar p{font-size:13.5px;line-height:1.55;color:var(--muted)}

/* ============================== WHY DCR ============================== */
.why{display:grid;grid-template-columns:0.85fr 1.15fr;gap:60px;align-items:start}
.why-points{display:grid;grid-template-columns:repeat(4,1fr);gap:32px 28px}
.proof{border-top:1px solid var(--border);padding-top:22px}
.proof .icon{height:34px;width:34px;margin-bottom:18px;color:var(--amber)}
.proof h3{font-family:var(--serif);font-weight:400;font-size:19px;color:var(--amber);margin-bottom:12px}
.proof p{font-size:13.5px;line-height:1.6;color:var(--muted)}

/* ============================== BOTTOM CARDS ============================== */
.bottom{display:grid;grid-template-columns:1fr 1fr;gap:24px;padding-bottom:40px}
.card{position:relative;border:1px solid var(--border);border-radius:var(--radius-card);overflow:hidden}
.card .body{position:relative;z-index:2;padding:44px}
.card .kicker{font-family:var(--mono);font-size:11px;letter-spacing:0.28em;color:var(--amber);text-transform:uppercase;margin-bottom:24px}
.card h3{font-family:var(--serif);font-weight:400;font-size:clamp(26px,2.5vw,32px);line-height:1.16;margin-bottom:18px}
.card .lede{font-size:14.5px;line-height:1.6;color:var(--muted);margin-bottom:30px;max-width:340px}
/* IMAGE SLOT: subscribe-network-map / dcac-studio-card */
.card .slot-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}

.card-subscribe{background:radial-gradient(130% 100% at 78% 60%,#161310 0%,#0b0b0d 60%)}
.card-subscribe .slot-img{opacity:0.85}
.sub-form{display:flex;max-width:430px;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:rgba(0,0,0,0.3)}
.sub-form input{flex:1;min-width:0;background:transparent;border:none;outline:none;color:var(--ink);font-size:14.5px;padding:16px 18px}
.sub-form button{display:inline-flex;align-items:center;gap:10px;background:var(--amber);color:#0a0a0c;border:none;padding:0 24px;font-weight:600;font-size:14px;transition:background .2s}
.sub-form button:hover{background:var(--amber-bright)}
.sub-form button svg{width:15px;height:11px}
.sub-success{display:none;align-items:center;gap:12px;padding:18px 20px;border:1px solid var(--amber);border-radius:var(--radius);background:rgba(226,162,58,0.08);max-width:420px;font-size:14px}
.sub-success.show{display:flex}
.sub-success svg{width:18px;height:18px;flex:none}

.card-dcac{background:linear-gradient(120deg,#0c0b0d 0%,#13110d 100%)}
.card-dcac .glow{position:absolute;inset:0;z-index:1;pointer-events:none;background:radial-gradient(90% 80% at 82% 30%,rgba(226,162,58,0.10),transparent 60%)}
/* v2.9: official DCAC USA logo (inline SVG) — amber fill + restrained crisp glow */
.card-dcac .dcac-logo{position:absolute;right:34px;top:34px;z-index:2;width:132px;height:auto;
  fill:var(--amber);pointer-events:none;
  filter:drop-shadow(0 0 10px rgba(226,162,58,0.5)) drop-shadow(0 0 2px rgba(226,162,58,0.85))}
@media(max-width:520px){
  .card-dcac .dcac-logo{right:24px;top:26px;width:104px}
}
.card-dcac .body{max-width:62%}
.card-dcac .lede{margin-bottom:34px}

/* ============================== FOOTER ============================== */
.footer{padding:56px 0 36px;border-top:1px solid var(--hair);margin-top:48px}
.foot-top{display:flex;align-items:center;justify-content:space-between;gap:32px;padding-bottom:40px;border-bottom:1px solid var(--hair)}
.foot-top .brand img{height:26px}
.foot-tag{font-family:var(--mono);font-size:12px;letter-spacing:0.22em;color:var(--muted);text-transform:uppercase;text-align:center}
.socials{display:flex;align-items:center;gap:10px}
.socials a{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border:1px solid var(--border);border-radius:var(--radius);color:var(--muted);transition:all .2s}
.socials a:hover{border-color:var(--amber);color:var(--amber)}
.socials svg{width:18px;height:18px}
.foot-bottom{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:24px}
.foot-bottom .copy{font-size:13px;color:var(--faint)}
.foot-links{display:flex;gap:32px}
.foot-links a{font-size:13px;color:var(--muted);transition:color .2s}
.foot-links a:hover{color:var(--ink)}

/* ============================== ANIMATION ============================== */
@keyframes greenPulse{0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(110,210,140,0.5)}50%{opacity:.55;box-shadow:0 0 0 4px rgba(110,210,140,0)}}
@keyframes nodePulse{0%,100%{opacity:.5}50%{opacity:1}}
@media (prefers-reduced-motion:reduce){*{animation:none !important}}

/* ============================== RESPONSIVE ============================== */
@media (max-width:1180px){
  .pillars{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:1024px){
  .nav-links{display:none}
  .menu-btn{display:flex}
  .brand .wordmark span{font-size:10.5px;letter-spacing:0.18em}
  .hero{padding:52px 0 40px}
  .hero-console{margin:32px 0 4px}
  .section-head{grid-template-columns:1fr;gap:18px}
  .why{grid-template-columns:1fr;gap:40px}
  .why-points{grid-template-columns:repeat(2,1fr)}
  .bottom{grid-template-columns:1fr}
  .card-dcac .body{max-width:100%}
}
@media (max-width:720px){
  .pillars{grid-template-columns:repeat(2,1fr)}
  .foot-top{flex-direction:column;align-items:flex-start;gap:28px}
  .foot-bottom{flex-direction:column;align-items:flex-start;gap:14px}
  .status{flex-wrap:wrap;gap:12px 18px}
  .status .grp,.status .live{padding:0}
  .status .vrule{display:none}
}
@media (max-width:520px){
  :root{--shell-pad:22px}
  .pillars{grid-template-columns:1fr}
  .why-points{grid-template-columns:1fr}
  .cta-row{flex-direction:column;align-items:stretch}
  .cta-row .btn{width:100%}
  .sub-form{flex-direction:column}
  .sub-form button{padding:14px 24px;justify-content:center}
  /* keep long display words (e.g. "Infrastructure") from forcing overflow */
  .hero h1{font-size:clamp(34px,9.2vw,46px)}
  .sec-h{font-size:clamp(28px,7.4vw,38px)}
  .card .body{padding:30px}
  .status .live{flex-wrap:wrap;gap:8px 18px}
  .nav-inner{gap:12px}
  /* free up header room on phones: Subscribe moves into the hamburger drawer */
  .nav-cta{display:none}
  .brand .wordmark span{font-size:9px;letter-spacing:0.12em}
}

/* ============================== v2.2: UPPERCASE CTAs + PRIVACY LINE ============================== */
.btn,.nav-cta,.sub-form button,.u-caps{text-transform:uppercase}
/* v2.2.2: keep SUBSCRIBE uppercase, but Book a Conversation stays title case */
.btn-outline,.btn-amber-outline{text-transform:none}
.sub-privacy{margin-top:14px;font-size:12px;line-height:1.5;color:var(--faint);max-width:430px}
.sub-privacy a{color:var(--muted);text-decoration:underline;text-underline-offset:2px;transition:color .2s}
.sub-privacy a:hover{color:var(--amber)}

/* ============================== v2.4: PODCAST EMBED (Apple Podcasts) ============================== */
/* v3.1: widened to 1080px, centered, responsive; keeps the premium shadow */
.podcast-embed-wrapper{width:100%;max-width:1080px;margin:0 auto;
  border-radius:12px;overflow:hidden;
  box-shadow:0 24px 60px -28px rgba(0,0,0,0.8)}
.podcast-embed-wrapper iframe{display:block;width:100%;height:450px;border:0;border-radius:12px}
@media(max-width:768px){
  .podcast-embed-wrapper{max-width:100%}
}

/* ============================== v3.2: SIGNAL TICKER ============================== */
/* Thin intelligence rail directly under the status strip. CSS-only seamless loop:
   the track holds two identical .ticker-set halves and translates -50%. */
.signal-ticker{overflow:hidden;border-bottom:1px solid var(--hair);
  background:var(--bg);height:32px;display:flex;align-items:center}
.ticker-track{display:flex;width:max-content;flex:none;
  animation:tickerScroll 56s linear infinite}
.ticker-set{display:flex;align-items:center;flex:none}
.ticker-set span{flex:none}
.ticker-set > span:not(.tick-dot){font-family:var(--mono);font-size:11px;
  letter-spacing:0.26em;text-transform:uppercase;color:var(--muted);
  white-space:nowrap;padding:0 22px}
.ticker-set > span.tick-hot{color:var(--amber)}
.tick-dot{width:4px;height:4px;border-radius:50%;background:var(--amber);opacity:0.7}
@keyframes tickerScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(max-width:720px){
  .signal-ticker{height:28px}
  .ticker-set > span:not(.tick-dot){font-size:10px;letter-spacing:0.2em;padding:0 16px}
  .ticker-track{animation-duration:64s}
}
/* Reduced motion: freeze the ticker as a static readable rail (second set is
   aria-hidden and clipped by overflow:hidden, so no duplicate reading). */
@media (prefers-reduced-motion:reduce){
  .ticker-track{animation:none !important;transform:none}
}

/* ============================== v3.3: PILLAR ICON ANIMATIONS ==============================
   Semi-subtle, always-on system activity. Low amplitude, long durations, staggered.
   Global prefers-reduced-motion rule (animation:none) disables all of these. */

/* 01 Data Centers — rack status LEDs blink softly in sequence */
@keyframes dcLed{0%,100%{opacity:1}50%{opacity:.05}}
.pillar:nth-child(1) .icon circle{animation:dcLed 3.6s ease-in-out infinite}
.pillar:nth-child(1) .icon circle:nth-of-type(2){animation-delay:.7s}
.pillar:nth-child(1) .icon circle:nth-of-type(3){animation-delay:1.5s}
.pillar:nth-child(1) .icon circle:nth-of-type(4){animation-delay:2.2s}
.pillar:nth-child(1) .icon circle:nth-of-type(5){animation-delay:2.9s}
.pillar:nth-child(1) .icon circle:nth-of-type(6){animation-delay:3.6s}

/* 02 Power — current flows along the catenary conductor line */
@keyframes powerFlow{to{stroke-dashoffset:-60}}
.pillar:nth-child(2) .icon path:last-of-type{stroke-dasharray:4 6;animation:powerFlow 3.2s linear infinite;stroke-opacity:.85}

/* 03 Chips — the processor core breathes with a faint heat glow */
@keyframes chipCore{0%,100%{opacity:.32}50%{opacity:1}}
@keyframes chipGlow{0%,100%{filter:drop-shadow(0 0 0 rgba(226,162,58,0))}50%{filter:drop-shadow(0 0 8px rgba(226,162,58,0.6))}}
.pillar:nth-child(3) .icon rect:nth-of-type(2){animation:chipCore 3.2s ease-in-out infinite}
.pillar:nth-child(3) .icon{animation:chipGlow 3.2s ease-in-out infinite}

/* 04 Networks — outer nodes pulse in turn; the hub breathes */
@keyframes netNode{0%,100%{opacity:.22}50%{opacity:1}}
@keyframes netHub{0%,100%{transform:scale(1)}50%{transform:scale(1.14)}}
.pillar:nth-child(4) .icon circle{animation:netNode 4s ease-in-out infinite}
.pillar:nth-child(4) .icon circle:nth-of-type(2){animation-delay:.75s}
.pillar:nth-child(4) .icon circle:nth-of-type(3){animation-delay:1.5s}
.pillar:nth-child(4) .icon circle:nth-of-type(4){animation-delay:2.25s}
.pillar:nth-child(4) .icon circle:nth-of-type(5){animation-delay:3s}
.pillar:nth-child(4) .icon circle:nth-of-type(6){animation:netHub 4s ease-in-out infinite;
  transform-box:fill-box;transform-origin:center}

/* 05 Policy — the pediment glows slowly, columns shimmer a beat behind */
@keyframes civicPulse{0%,100%{opacity:1}50%{opacity:.25}}
.pillar:nth-child(5) .icon path:first-of-type{animation:civicPulse 4.4s ease-in-out infinite}
.pillar:nth-child(5) .icon path:nth-of-type(3){animation:civicPulse 4.4s ease-in-out infinite;animation-delay:1.1s}

/* 06 Capital — bars breathe upward in turn; the trend line redraws itself */
@keyframes barBreathe{0%,100%{transform:scaleY(.90)}50%{transform:scaleY(1.02)}}
@keyframes trendDraw{0%{stroke-dashoffset:30;opacity:0}10%{opacity:1}52%{stroke-dashoffset:0;opacity:1}
  90%{stroke-dashoffset:0;opacity:1}97%{stroke-dashoffset:0;opacity:0}100%{stroke-dashoffset:30;opacity:0}}
@keyframes arrowTip{0%,48%{opacity:0}60%,90%{opacity:1}97%,100%{opacity:0}}
.pillar:nth-child(6) .icon rect{transform-box:fill-box;transform-origin:center bottom;
  animation:barBreathe 4.2s ease-in-out infinite}
.pillar:nth-child(6) .icon rect:nth-of-type(2){animation-delay:.7s}
.pillar:nth-child(6) .icon rect:nth-of-type(3){animation-delay:1.4s}
.pillar:nth-child(6) .icon path:nth-of-type(2){stroke-dasharray:30;animation:trendDraw 2.9s ease-in-out infinite}
.pillar:nth-child(6) .icon path:nth-of-type(3){animation:arrowTip 2.9s ease-in-out infinite}

/* ============================== v3.4: THE SYSTEMS LAYER (HUD CARDS) ============================== */
/* Leads the page directly below the ticker */
.systems-layer{padding-top:48px}
/* v3.5: DCR Terminal lockup — two aligned layers so the scope can track */
.sl-head{align-items:center}
.sl-lockup{position:relative;display:block;width:100%;max-width:640px;
  margin-left:-18px; /* optical align: crosshair mark carries built-in left padding */
  animation:slFade .9s ease-out both,slGlow 5.2s ease-in-out 1s infinite}
.sl-lockup .sl-wordmark{display:block;width:100%;height:auto}
.sl-lockup .sl-scope{position:absolute;inset:0;width:100%;height:auto;
  animation:scopeTrack 11s ease-in-out infinite,scopeLock 11s ease-in-out infinite;
  will-change:transform}
@keyframes slFade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
/* slow amber breath following the letterforms (PNG is transparent, so no box halo) */
@keyframes slGlow{0%,100%{filter:drop-shadow(0 0 4px rgba(226,162,58,0.10))}
  50%{filter:drop-shadow(0 0 16px rgba(226,162,58,0.38))}}
/* irregular sweep-and-hold drift: acquiring, settling, re-acquiring */
@keyframes scopeTrack{
  0%,10%{transform:translate(0,0)}
  16%,28%{transform:translate(7px,-4px)}
  34%,48%{transform:translate(-5px,3px)}
  54%,64%{transform:translate(3px,6px)}
  70%,88%{transform:translate(-2px,-3px)}
  96%,100%{transform:translate(0,0)}}
/* brief lock pulses at the end of each hold */
@keyframes scopeLock{
  0%,26%,32%,62%,68%,100%{opacity:1}
  28%,30%{opacity:.55}
  64%,66%{opacity:.55}}
@media(max-width:1024px){
  .sl-lockup{max-width:520px;margin-left:-14px}
}
@media(max-width:520px){
  .sl-lockup{max-width:100%;margin-left:-10px}
}
.hud-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.hud-card{position:relative;display:flex;flex-direction:column;gap:10px;
  padding:26px 24px 22px;background:var(--panel);
  border:1px solid var(--border);border-radius:var(--radius-card);overflow:hidden;
  transition:transform .25s,border-color .25s,box-shadow .25s}
.hud-card:hover{transform:translateY(-3px);border-color:rgba(226,162,58,0.35);
  box-shadow:0 18px 40px -24px rgba(0,0,0,0.9),0 0 30px -14px rgba(226,162,58,0.35)}
.hud-title{font-family:var(--mono);font-size:12px;font-weight:500;letter-spacing:0.26em;
  text-transform:uppercase;color:var(--amber)}
.hud-metric{font-family:var(--mono);font-size:clamp(22px,1.8vw,27px);font-weight:700;
  letter-spacing:-0.01em;color:var(--ink);white-space:nowrap}
.hud-metric .hud-arrow{color:var(--amber);font-weight:400;padding:0 2px}
.hud-label{font-size:13.5px;line-height:1.55;color:var(--muted)}
.hud-sub{font-family:var(--mono);font-size:12.5px;letter-spacing:0.04em;color:var(--ink-dim)}
.hud-note{font-family:var(--mono);font-size:11px;letter-spacing:0.06em;color:var(--faint);font-style:italic}
.hud-source{margin-top:auto;padding-top:10px;border-top:1px solid var(--hair);
  font-family:var(--mono);font-size:11px;letter-spacing:0.12em;text-transform:uppercase;color:var(--faint)}
.hud-viz{width:100%;height:56px;display:block}
/* Capital comparison bars */
.hud-bars{display:flex;flex-direction:column;gap:9px;margin:4px 0}
.hud-bar-row{display:flex;align-items:center;gap:12px}
.hud-bar-tag{font-family:var(--mono);font-size:10.5px;letter-spacing:0.14em;text-transform:uppercase;
  color:var(--muted);width:44px;flex:none}
.hud-bar{flex:1;height:6px;background:rgba(244,242,236,0.07);border-radius:1px;overflow:hidden}
.hud-bar > span{display:block;height:100%;background:var(--amber);border-radius:1px;min-width:3px}
.hud-bar-row:nth-child(2) .hud-bar > span{background:var(--amber-deep)}
/* Intelligence Feed card — spans two columns (slot formerly held the Chips gauge) */
.hud-feed{grid-column:span 2}
.hud-feed-list{list-style:none;margin:4px 0 0;padding:0;display:grid;grid-template-columns:repeat(3,1fr);gap:12px 18px}
.hud-feed-list li{display:flex;align-items:center;gap:10px;
  font-family:var(--mono);font-size:12px;letter-spacing:0.18em;text-transform:uppercase;color:var(--ink-dim)}
.hud-dot{width:6px;height:6px;border-radius:50%;background:var(--amber);flex:none;
  box-shadow:0 0 8px 1px rgba(226,162,58,0.5);animation:hudDot 3.6s ease-in-out infinite}
.hud-feed-list li:nth-child(2) .hud-dot{animation-delay:.6s}
.hud-feed-list li:nth-child(3) .hud-dot{animation-delay:1.2s}
.hud-feed-list li:nth-child(4) .hud-dot{animation-delay:1.8s}
.hud-feed-list li:nth-child(5) .hud-dot{animation-delay:2.4s}
.hud-feed-list li:nth-child(6) .hud-dot{animation-delay:3s}
@keyframes hudDot{0%,100%{opacity:1}50%{opacity:.3}}
/* slow amber scan line across the feed card */
.hud-scan{position:absolute;left:0;right:0;top:0;height:1px;pointer-events:none;
  background:linear-gradient(to right,transparent,rgba(226,162,58,0.5),transparent);
  animation:hudScan 7s linear infinite}
@keyframes hudScan{from{transform:translateY(0)}to{transform:translateY(220px)}}
@media(max-width:1024px){
  .hud-grid{grid-template-columns:1fr 1fr}
  .hud-feed{grid-column:span 2}
  .hud-feed-list{grid-template-columns:1fr 1fr}
}
@media(max-width:640px){
  .hud-grid{grid-template-columns:1fr}
  .hud-feed{grid-column:auto}
  .hud-metric{font-size:24px}
}

/* ============================== v2.3: FOOTER TAGLINE ACCENT ============================== */
.foot-tag .legible{color:var(--amber)}

/* ============================== v2.2: LEGAL PAGES ============================== */
.legal{padding:60px 0 48px;max-width:760px}
.legal-title{font-family:var(--serif);font-weight:400;font-size:clamp(34px,4vw,48px);letter-spacing:-0.01em;line-height:1.06;margin-bottom:14px}
.legal-meta{font-family:var(--mono);font-size:12px;letter-spacing:0.16em;text-transform:uppercase;color:var(--faint);margin-bottom:40px}
.legal-lead{font-size:16px;line-height:1.7;color:var(--ink-dim);margin-bottom:30px}
.legal h2{font-family:var(--serif);font-weight:400;font-size:22px;color:var(--ink);margin:36px 0 12px}
.legal p{font-size:15px;line-height:1.7;color:var(--muted);margin-bottom:14px}
.legal ul{list-style:none;margin:0 0 14px;padding:0}
.legal li{position:relative;font-size:15px;line-height:1.7;color:var(--muted);padding-left:22px;margin-bottom:8px}
.legal li::before{content:"";position:absolute;left:2px;top:11px;width:5px;height:5px;background:var(--amber);border-radius:50%}
.legal a{color:var(--amber);text-decoration:none}
.legal a:hover{text-decoration:underline;text-underline-offset:2px}
.legal-note{margin-top:40px;padding-top:24px;border-top:1px solid var(--hair);font-size:13px;line-height:1.6;color:var(--faint);max-width:680px}
.legal-back{display:inline-flex;align-items:center;gap:10px;font-family:var(--mono);font-size:12px;letter-spacing:0.16em;text-transform:uppercase;color:var(--amber);border:1px solid var(--amber);border-radius:var(--radius);padding:10px 18px;transition:all .2s}
.legal-back:hover{background:var(--amber);color:#0a0a0c}
.legal-back svg{width:15px;height:11px}

/* ============================== v2.5: WHY WE EXIST ============================== */
.why-exist{position:relative;padding:112px 0 96px}
/* restrained amber illumination — a soft signal, not a block */
.why-exist::before{content:"";position:absolute;left:-160px;top:22%;width:640px;height:520px;
  background:radial-gradient(closest-side,rgba(226,162,58,0.07),transparent 72%);pointer-events:none;z-index:0}
.why-exist > *{position:relative;z-index:1}

/* intro: editorial lead statement + first paragraph */
.wx-intro{display:grid;grid-template-columns:1.08fr 0.92fr;gap:64px;align-items:start}
.wx-headline{font-family:var(--serif);font-weight:400;font-size:clamp(30px,3.3vw,44px);
  line-height:1.16;letter-spacing:-0.012em;max-width:16ch;color:var(--ink)}
.wx-lead-p{font-size:17px;line-height:1.74;color:var(--ink-dim);max-width:460px}
@media(min-width:1025px){.wx-lead-p{margin-top:9px}}

/* prominent centrepiece: Not more content. Better understanding. */
.wx-statement{margin:78px 0;text-align:center}
.wx-statement .sig-rule{width:34px;height:1px;margin:0 auto 32px;background:var(--amber);
  box-shadow:0 0 14px 1px rgba(226,162,58,0.55)}
.wx-neg{display:block;font-family:var(--serif);font-style:italic;font-weight:300;
  font-size:clamp(20px,2.3vw,28px);line-height:1.25;color:var(--muted);margin-bottom:12px}
.wx-pos{display:block;font-family:var(--serif);font-weight:400;
  font-size:clamp(42px,6.2vw,86px);line-height:1.02;letter-spacing:-0.022em;color:var(--ink)}
.wx-pos .amber{color:var(--amber)}

/* measured reading column */
.wx-copy{max-width:720px;margin:0 auto}
/* body copy in the DCR amber family, softened for long-form readability */
.wx-copy p{font-size:16.5px;line-height:1.8;color:rgba(226,162,58,0.85);margin-bottom:22px}
.wx-copy p:last-child{margin-bottom:0}

/* closing signature */
.wx-sign{display:flex;align-items:center;justify-content:center;gap:20px;margin-top:80px}
.wx-sign .rule{width:42px;height:1px;background:var(--amber)}
.wx-sign span{font-family:var(--serif);font-weight:400;font-size:clamp(24px,2.6vw,34px);
  letter-spacing:-0.01em;color:var(--ink)}
.wx-sign span .amber{color:var(--amber)}

@media(max-width:1024px){
  .why-exist{padding:76px 0 64px}
  .wx-intro{grid-template-columns:1fr;gap:26px}
  .wx-statement{margin:58px 0}
  .wx-sign{margin-top:58px}
}
@media(max-width:520px){
  .why-exist{padding:60px 0 52px}
  .wx-headline{max-width:none}
  .wx-lead-p{font-size:16px}
  .wx-copy p{font-size:15.5px}
  .wx-sign{gap:14px}
}

/* ============================== v2.7: SUBSCRIBE FORM — NAME + EMAIL ============================== */
/* Was a single-pill email row; now a responsive grid: first/last side-by-side,
   email full width, button full width. Same black/slate + amber field language. */
.sub-form{display:grid;grid-template-columns:1fr 1fr;gap:12px;max-width:430px;
  border:none;overflow:visible;background:none}
.sub-form input{width:100%;min-width:0;background:rgba(0,0,0,0.3);
  border:1px solid var(--border);border-radius:var(--radius);outline:none;
  color:var(--ink);font-size:14.5px;padding:15px 16px;transition:border-color .2s}
.sub-form input::placeholder{color:var(--faint)}
.sub-form input:focus{border-color:var(--amber)}
.sub-form input[type="email"]{grid-column:1 / -1}
.sub-form button{grid-column:1 / -1;justify-content:center;
  border-radius:var(--radius);padding:15px 24px}
@media(max-width:520px){
  .sub-form{grid-template-columns:1fr}
  .sub-form button{padding:15px 24px}
}

/* ============================== v2.8: THE COMPUTE LEAGUE ============================== */
.compute-league-section{padding:72px 0 40px}
/* cinematic feature card — 16:9, restrained border + soft amber glow, DCR radius */
.cl-feature{position:relative;width:100%;border:1px solid var(--border);
  border-radius:var(--radius-card);overflow:hidden;
  box-shadow:0 30px 80px -40px rgba(0,0,0,0.9),0 0 60px -30px rgba(226,162,58,0.28)}
.cl-feature .cl-img{display:block;width:100%;height:auto}
/* Invisible overlay positioned over the baked-in "SUBSCRIBE FOR UPDATES" button.
   Percentages track the button as the 1672×941 image scales. */
.cl-overlay-cta{position:absolute;left:4.6%;top:69.4%;width:23%;height:6.6%;
  border-radius:var(--radius);z-index:2;
  outline:none;transition:background .2s,box-shadow .2s}
.cl-overlay-cta:hover{background:rgba(226,162,58,0.12);
  box-shadow:0 0 0 1px rgba(226,162,58,0.5),0 0 22px -4px rgba(226,162,58,0.55)}
.cl-overlay-cta:focus-visible{background:rgba(226,162,58,0.12);
  box-shadow:0 0 0 2px var(--amber)}
/* Visible mobile CTA — hotter Compute League orange outline (matches ad artwork),
   no solid fill; arrow is inline SVG w/ stroke:currentColor so it inherits the color */
.cl-mobile-cta{--compute-orange:#ff5a00;
  display:none;align-items:center;justify-content:center;gap:11px;
  margin-top:20px;width:100%;padding:15px 24px;
  border:1px solid var(--compute-orange);border-radius:var(--radius);
  color:var(--compute-orange);background:rgba(0,0,0,0.45);
  text-transform:uppercase;letter-spacing:0.12em;font-size:14px;font-weight:600;
  box-shadow:0 0 18px rgba(255,90,0,0.12);
  transition:all .22s}
.cl-mobile-cta svg{width:16px;height:12px;flex:none}
.cl-mobile-cta:hover,.cl-mobile-cta:focus-visible{outline:none;
  border-color:var(--compute-orange);color:var(--compute-orange);
  box-shadow:0 0 26px rgba(255,90,0,0.24)}
@media(max-width:767px){
  .compute-league-section{padding:56px 0 32px}
  .cl-overlay-cta{display:none}
  .cl-mobile-cta{display:inline-flex}
}

/* ============================== v3.0: DCR LIVE PROMO ============================== */
.dcr-live-promo{padding:96px var(--shell-pad) 48px}
/* inner IS the image box (max 1520) so the CTA's % positions map straight to the art */
.dcr-live-promo__inner{position:relative;max-width:1520px;margin:0 auto}
.dcr-live-promo__image{display:block;width:100%;height:auto;object-fit:contain;
  border:1px solid var(--border);border-radius:var(--radius-card);
  box-shadow:0 30px 80px -40px rgba(0,0,0,0.9),0 0 64px -32px rgba(226,162,58,0.22)}
/* real anchor over the banner, tucked under the baked-in "BY INVITATION ONLY" pill (lower-left) */
.dcr-live-promo__cta{position:absolute;left:5.5%;bottom:6.5%;z-index:2;
  display:inline-flex;align-items:center;gap:12px;min-height:46px;padding:13px 26px;
  background:rgba(0,0,0,0.55);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px);
  border:1px solid var(--amber);border-radius:var(--radius);
  color:var(--amber);text-transform:uppercase;letter-spacing:0.24em;
  font-family:var(--sans);font-size:13px;font-weight:600;
  transition:background .22s,box-shadow .22s,color .22s}
.dcr-live-promo__cta svg{width:15px;height:11px;flex:none}
.dcr-live-promo__cta:hover,.dcr-live-promo__cta:focus-visible{outline:none;
  background:rgba(226,162,58,0.10);color:var(--amber-bright);
  box-shadow:0 0 28px -2px rgba(226,162,58,0.45)}
/* Mobile: vertical 9:16 art + CTA pulled below (never overlapping baked-in text) */
@media(max-width:767px){
  .dcr-live-promo{padding:52px var(--shell-pad) 28px}
  .dcr-live-promo__cta{position:static;bottom:auto;left:auto;
    display:flex;width:100%;justify-content:center;margin-top:18px;
    min-height:50px;letter-spacing:0.2em}
}
