/* ─── Refreshed Tech — easelink-flow build ─────────────────────────── */
:root{
  --bg: #08110b;
  --bg-1: #0d1812;
  --bg-2: #142019;
  --fg: #f3f1ea;
  --fg-dim: #c4cac4;
  --fg-mute: #8a938e;
  --line: rgba(255,255,255,.12);
  --line-2: rgba(255,255,255,.24);
  --accent: #5de1da;
  --accent-2: #a6f0a8;
  --accent-3: #c9f0a0;
  --accent-grad: linear-gradient(120deg, #5de1da 0%, #9eecbb 55%, #c9f0a0 100%);
  --accent-glow: color-mix(in oklab, #5de1da 36%, transparent);
}

*,*::before,*::after{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
html{ scroll-behavior: smooth; }
body{
  font-family: 'Archivo', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  letter-spacing: -.005em;
}
::selection{ background: var(--accent-2); color: #03171a; }
a{ color: inherit; text-decoration: none; }
button{ cursor: pointer; font: inherit; color: inherit; background: transparent; border: 0; padding: 0; }
img{ display: block; max-width: 100%; }

/* Type */
h1, h2, h3, h4{
  font-family: 'Anton', 'Archivo', sans-serif;
  font-weight: 400;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: .86;
}
.em{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: .82em;
  letter-spacing: -.005em;
}

.container{ max-width: 1480px; margin: 0 auto; padding: 0 44px; position: relative; z-index: 2; }
@media (max-width: 820px){ .container{ padding: 0 22px; } }

/* ─── NAV (transparent floating, glass when scrolled) ─────────────── */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 44px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, backdrop-filter .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled{
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 14px; padding-bottom: 14px;
}
.logo{
  display: flex; align-items: center; gap: 10px;
  color: var(--fg);
  text-decoration: none;
}
.logo img{
  display: block;
  height: 32px;
  width: auto;
}
.logo-mark{
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark img{ width: 100%; height: 100%; object-fit: contain; }
.nav-links{ display: flex; align-items: center; gap: 26px; }
.nav-links a{
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(243,241,234,.78);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover{ color: var(--fg); }

.pill{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 8px 12px 22px;
  background: var(--fg);
  color: #06080d;
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .2s, background .2s, box-shadow .25s;
  border: 0;
  cursor: pointer;
}
.pill .arr-wrap{
  width: 28px; height: 28px;
  background: #06080d;
  color: var(--fg);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: transform .25s;
}
.pill:hover{ background: var(--accent-grad); transform: translateY(-1px); box-shadow: 0 18px 40px -16px var(--accent-glow); }
.pill:hover .arr-wrap{ transform: rotate(-45deg); }
.pill.lg{ padding: 16px 10px 16px 30px; font-size: 13px; }
.pill.lg .arr-wrap{ width: 34px; height: 34px; font-size: 15px; }

.btn-ghost{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  color: var(--fg);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  transition: border-color .2s, color .2s, background .2s;
}
.btn-ghost:hover{ border-color: var(--accent-2); color: var(--accent); }

.menu-btn{
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--fg);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-btn span{ width: 16px; height: 1.5px; background: currentColor; border-radius: 1px; transition: transform .25s, opacity .2s; }
.menu-btn.open span:nth-child(1){ transform: translateY(5.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2){ opacity: 0; }
.menu-btn.open span:nth-child(3){ transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 960px){
  .nav{ padding: 18px 22px; }
  .nav-links{ display: none; }
  .menu-btn{ display: inline-flex; }
  .nav .pill{ display: none; }
}

/* ─── HERO — video-as-focus, easelink-style bottom corners ─── */
.hero{
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
}
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.4; } }

/* Bg layer (iframe + interaction shield), held over-tall so parallax can translate it */
.hero-bg{
  position: absolute;
  left: 0; right: 0;
  top: -8vh; bottom: -8vh;
  z-index: 0;
  background: #000;
  overflow: hidden;
  will-change: transform;
}
.hero-bg .video-frame,
.hero-bg .video-shield{
  position: absolute;
  top: 50%; left: 50%;
}
.hero-bg .video-frame{
  z-index: 0;
  width: 100vw;
  height: 56.25vw;
  min-height: 116vh;
  min-width: 206vh;
  transform: translate(-50%, -50%) scale(1.35);
  border: 0;
  pointer-events: none;
  filter: saturate(0.94) contrast(1.04);
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-bg.is-playing .video-frame{ opacity: 1; }
/* Transparent shield ABOVE the iframe — absorbs every click/tap/hover */
.hero-bg .video-shield{
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: transparent;
  cursor: default;
}
.hero-bg::after{
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,10,7,.45) 0%, rgba(3,10,7,0) 22%, rgba(3,10,7,0) 50%, rgba(3,10,7,.78) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Layout grid pinned to bottom of viewport */
.hero-inner{
  position: relative;
  z-index: 3;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  gap: 64px;
  padding: 44px;
  padding-top: 110px;
  padding-bottom: 56px;
}
.hero-headline{
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--fg);
  text-transform: none;
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(3,10,7,.45);
}
.hero-headline .accent{
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-weight: 500;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -.025em;
  /* Italic glyphs slant beyond the inline box → background-clip: text crops them.
     Extend the box slightly so the trailing letter doesn't get sheared. */
  padding-right: .12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-meta{
  justify-self: end;
  max-width: 380px;
  text-align: left;
}
.hero-meta p{
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(243,241,234,.86);
  margin: 0 0 24px;
  text-shadow: 0 1px 18px rgba(3,10,7,.55);
}
.hero-explore{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 8px 12px 22px;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .01em;
  text-transform: none;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.hero-explore .ico{
  width: 28px; height: 28px;
  background: var(--fg);
  color: #06080d;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, transform .35s;
}
.hero-explore:hover{
  background: var(--fg);
  color: #06080d;
  border-color: transparent;
}
.hero-explore:hover .ico{ background: #06080d; color: var(--fg); transform: translateY(2px); }
.hero-explore svg{ width: 14px; height: 14px; }

@media (max-width: 820px){
  .hero{ min-height: 640px; }
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 22px;
    padding-top: 100px;
    padding-bottom: 34px;
    align-content: end;
  }
  .hero-headline{ font-size: clamp(36px, 11vw, 64px); max-width: none; }
  .hero-meta{ justify-self: start; max-width: 100%; }
  .hero-meta p{ font-size: 14px; margin-bottom: 18px; }
}

/* ─── Generic section shell ─── */
.sec{ padding: 140px 0; position: relative; }
.sec.tight{ padding: 100px 0; }
.sec-eye{
  display: flex; align-items: center; gap: 16px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  margin-bottom: 40px;
}
.sec-eye .idx{
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-size: 11px;
  color: var(--fg);
}
.sec-eye .stripe{ flex: 1; max-width: 80px; height: 1px; background: var(--accent-grad); }
.sec-title{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 8.5vw, 152px);
  line-height: .84;
  text-transform: uppercase;
}
.sec-title.split{ display: flex; flex-direction: column; gap: .14em; }
/* Gradient-clipped second line: bump line-height so ascenders fit inside the
   background box (background-clip:text crops to the box, so a tight .84
   inherited from .sec-title chops the top off the W/P/F/etc.) */
.sec-title.split > .em{
  line-height: 1;
  padding-top: .12em;
}
.sec-title .em{ font-size: 1em; }
@media (max-width: 820px){
  .sec{ padding: 90px 0; }
  .sec.tight{ padding: 70px 0; }
}

/* ─── MANIFESTO (single big statement — scroll-driven rolodex) ─── */
.manifesto{
  padding: 110px 0 80px;
  position: relative;
  /* No bottom border — the next section (.impact-wrap) draws its own top rule,
     so doubling here just creates an empty band between them. */
}

/* Live channels — TikTok row (3) + Whatnot row (2, centered) collapse to 1-col on small screens */
@media (max-width: 900px){
  .channels-row.channels-row-3,
  .channels-row.channels-row-2{
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }
}
.manifesto::before{
  content: ""; position: absolute;
  left: 50%; top: 30%;
  width: 900px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--accent-glow), transparent 65%);
  filter: blur(60px);
  opacity: .35;
  pointer-events: none;
}
.manifesto-text{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 56px);
  line-height: 1.02;
  text-transform: uppercase;
  text-align: center;
  max-width: 28ch;
  margin: 0 auto;
  letter-spacing: -.008em;
}
.manifesto-text em{
  font-family: 'Anton', sans-serif;
  font-style: normal; font-weight: 400;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-size: 1em;
}

/* Rolodex: each line is a 3D card that flips through the read-zone */
.manifesto-rolodex{
  font-family: 'Anton', sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -.008em;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 24px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
}
.rolo-line{
  display: block;
  /* small extra vertical room so rotated cards aren't clipped by their neighbors */
  padding: .08em 0;
}
.rolo-line-inner{
  display: block;
  font-size: clamp(34px, 4.4vw, 74px);
  line-height: 1.02;
  color: var(--fg);
  transform-origin: 50% 50%;
  transform: rotateX(0deg);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.rolo-line-inner strong{ font-weight: 400; }
.rolo-line-inner em{
  font-style: normal;
  font-weight: 400;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
@media (prefers-reduced-motion: reduce){
  .rolo-line-inner{ transform: none !important; opacity: 1 !important; }
}
@media (max-width: 720px){
  .manifesto{ padding: 70px 0 64px; }
  .manifesto-rolodex{ padding: 0 16px; }
  .rolo-line-inner{ font-size: clamp(24px, 7.2vw, 44px); }
}

.manifesto-meta{
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  gap: 24px;
  flex-wrap: wrap;
}
.manifesto-meta b{ color: var(--fg); font-weight: 600; }

/* ─── PROCESS (numbered steps with hover reveal) ─── */
.process-grid{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* The grid children are <Reveal> wrappers, not .step directly — make the wrapper
   stretch full height, and have .step fill it, so all 4 cards are equal height
   regardless of description length. */
.process-grid > *{ display: flex; min-height: 100%; }
.process-grid > * > .step{ width: 100%; flex: 1; }
.step{
  padding: 56px 36px 64px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .3s;
}
.step:last-child{ border-right: 0; }
.step:hover{ background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 4%, transparent), transparent); }
.step .num{
  font-family: 'Anton', sans-serif;
  font-size: 62px;
  line-height: 1;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 40px;
}
.step h3{
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.step p{
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px){
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .step:nth-child(2){ border-right: 0; }
  .step:nth-child(-n+2){ border-bottom: 1px solid var(--line); }
}
@media (max-width: 620px){
  .process-grid{ grid-template-columns: 1fr; }
  .step{ border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child{ border-bottom: 0; }
}

/* ─── INDUSTRIES (4 cards, full-bleed images) ─── */
.indus{
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.indus-card{
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .3s;
  text-align: left;
}
.indus-card:hover{
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--accent) 30%, var(--line-2));
}
.indus-card .img{ position: absolute; inset: 0; overflow: hidden; }
.indus-card .img img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.indus-card:hover .img img{ transform: scale(1.08); }
.indus-card .img::after{
  content:""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,13,.15) 0%, transparent 30%, rgba(6,8,13,.82) 100%);
}
.indus-card .body{
  position: absolute; bottom: 32px; left: 32px; right: 32px;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px;
}
.indus-card .body h3{
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 76px);
  line-height: .86;
  color: var(--fg);
}
.indus-card .body h3 .em{
  display: block;
  font-size: 1em;
  margin-top: .12em;
  line-height: .96;
  /* override gradient — keep these subtitles solid white for legibility on imagery */
  background: none;
  -webkit-text-fill-color: var(--fg);
  color: var(--fg);
}
.indus-card .body .desc{
  flex-shrink: 0;
  text-align: right;
  max-width: 240px;
}
.indus-card .body .role{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--fg-dim);
  margin-bottom: 8px;
  font-weight: 500;
}
.indus-card .body .desc p{
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: var(--fg);
  line-height: 1.5;
  margin: 0;
}
.indus-card .pill-link{
  position: absolute;
  top: 28px; right: 28px;
  z-index: 3;
  color: var(--fg);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  background: rgba(6,8,13,.45);
  border: 1px solid var(--line-2);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, color .2s, border-color .2s;
}
.indus-card:hover .pill-link{
  background: var(--accent-grad);
  color: #03171a;
  border-color: transparent;
}
@media (max-width: 1024px){
  .indus{ grid-template-columns: 1fr; }
  .indus-card{ aspect-ratio: 16/10; }
}
@media (max-width: 620px){
  .indus-card .body{ flex-direction: column; align-items: flex-start; gap: 16px; }
  .indus-card .body .desc{ text-align: left; max-width: 100%; }
}

/* ─── DEVICES (compact pill-list with hover reveal) ─── */
.dev-list{
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.dev-row{
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 32px;
  padding: 32px 12px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding .35s cubic-bezier(.16,1,.3,1);
}
.dev-row:hover{ padding-left: 28px; }
.dev-row::after{
  content: ""; position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 8%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.dev-row:hover::after{ opacity: 1; }
.dev-row .code{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
  position: relative; z-index: 1;
}
.dev-row .name{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--fg);
  position: relative; z-index: 1;
  transition: color .25s;
}
.dev-row:hover .name{
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.dev-row .turn{
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  position: relative; z-index: 1;
}
.dev-row .arrow{
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  color: var(--fg-mute);
  transition: color .25s, transform .25s;
  position: relative; z-index: 1;
}
.dev-row:hover .arrow{ color: var(--accent); transform: translateX(6px); }
@media (max-width: 820px){
  .dev-row{ grid-template-columns: 1fr auto; gap: 16px; padding: 24px 8px; }
  .dev-row .code, .dev-row .turn{ display: none; }
}

/* ─── IMPACT (big number left, ledger right) ─── */
.impact-wrap{
  margin-top: 0;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
}
.impact-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 40px;
}
/* (badge bottom-spacing now handled by the global .last-updated margin-bottom) */
.impact-head{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 124px);
  line-height: 1;
  text-transform: uppercase;
  max-width: 16ch;
}
/* At very narrow viewports the CO₂ subscript + heavy wrapping still
   crowds — give it a little extra breathing room. */
@media (max-width: 820px){
  .impact-head{ line-height: 1.06; }
}
.impact-head .num{
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  display: block;
}
.impact-head em{
  font-family: 'Anton', sans-serif;
  font-style: normal; font-weight: 400;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-size: .76em;
}
/* Properly-sized subscript that doesn't push the line below it down. */
.impact-head em sub{
  font-size: .5em;
  vertical-align: baseline;
  position: relative;
  bottom: -.15em;
  line-height: 0;
}
.impact-cells{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.impact-cell{
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.impact-cell:nth-child(even){ border-right: 0; }
.impact-cell:nth-last-child(-n+2){ border-bottom: 0; }
.impact-cell .lbl{
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--fg-mute);
  margin-bottom: 18px;
  font-weight: 500;
}
.impact-cell .big{
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: .92;
}
.impact-cell .big .u{
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-size: .55em;
  margin-left: 4px;
}
@media (max-width: 1024px){
  .impact-grid{ grid-template-columns: 1fr; gap: 48px; }
}

/* ─── TESTIMONIAL (single quote, centered, big) ─── */
.testi{
  padding: 160px 0;
  text-align: center;
}
.testi-quote{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 80px);
  line-height: 1.04;
  text-transform: uppercase;
  max-width: 22ch;
  margin: 0 auto 60px;
}
.testi-quote em{
  font-family: 'Anton', sans-serif;
  font-style: normal; font-weight: 400;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-size: 1em;
}
.testi-attrib{
  display: inline-flex; align-items: center; gap: 18px;
  padding: 24px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testi-attrib .avatar{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent-grad);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #03171a;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
}
.testi-attrib .meta{ text-align: left; }
.testi-attrib .name{
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 6px;
}
.testi-attrib .role{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ─── MARQUEE ─── */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.marquee-track{
  display: flex; align-items: center; gap: 56px;
  animation: marqueeScroll 60s linear infinite;
  white-space: nowrap; padding-right: 56px;
}
@keyframes marqueeScroll{ from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-track .partner{
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--fg-mute);
  letter-spacing: .02em;
  transition: color .2s;
  line-height: 1;
}
.marquee-track .partner:hover{ color: var(--fg); }
.marquee-track .star{
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px color-mix(in oklab, var(--accent-2) 50%, transparent));
}

/* ─── BIG CTA (closing) ─── */
.cta{
  padding: 200px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before{
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 1200px; height: 1200px;
  transform: translate(-50%,-50%);
  background: radial-gradient(closest-side, var(--accent-glow), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  opacity: .5;
}
.cta h2{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 12vw, 200px);
  line-height: .92;          /* was .84 — too tight; the gradient .em was clipping ascenders */
  text-transform: uppercase;
  margin-bottom: 48px;
  padding-top: .06em;        /* a hair of slack so Anton's caps aren't kissed by overflow:hidden on .cta */
}
.cta h2 .em{
  display: block;
  font-size: 1em;
  margin-top: .04em;
  /* The gradient fill (background-clip:text) renders to the line-box edge, so any
     overflow:hidden on .cta nibbles the tops of round letters. Pad and bleed. */
  padding-top: .08em;
  line-height: 1;
}

/* ─── CTA with team photo bg ─── */
.cta.has-cta-photo{
  isolation: isolate;
}
.cta.has-cta-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--photo-img);
  background-size: cover;
  background-position: center 30%;
  filter: saturate(.7) contrast(1.05) brightness(.55);
}
.cta.has-cta-photo::before{
  /* Replace the existing radial accent glow with a darker vignette over the photo
     so the centered headline + CTAs read cleanly. */
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(8,17,11,.45) 0%, rgba(8,17,11,.85) 90%),
    linear-gradient(180deg, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%);
  filter: none;
  width: 100%; height: 100%;
  top: 0; left: 0;
  transform: none;
  z-index: -1;
  opacity: 1;
}
.cta.has-cta-photo h2,
.cta.has-cta-photo .cta-actions,
.cta.has-cta-photo .cta-sig,
.cta.has-cta-photo .sec-eye{
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
.cta-actions{ display: inline-flex; gap: 14px; align-items: center; flex-wrap: wrap; justify-content: center; }
.cta-sig{
  font-family: 'Caveat', cursive;
  font-size: 30px;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-top: 36px;
  display: inline-block;
  transform: rotate(-2deg);
  opacity: .9;
}

/* ─── FOOTER ─── */
footer{
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}
.foot{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot .col-brand .logo img{ height: 40px; }
.foot .col-brand p{
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 320px;
}
.foot h4{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: .22em;
  margin: 0 0 20px;
  font-weight: 600;
}
.foot ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.foot ul li{ font-family: 'Archivo', sans-serif; font-size: 14px; color: var(--fg-dim); }
.foot ul a{ color: var(--fg-dim); transition: color .2s; }
.foot ul a:hover{
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.foot-bottom{
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: .22em;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-bottom .signal{ display: inline-flex; align-items: center; gap: 8px; }
.foot-bottom .signal .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}
.foot-bottom .social{ display: flex; gap: 16px; }
.foot-bottom .social a:hover{ color: var(--accent-2); }
@media (max-width: 820px){
  .foot{ grid-template-columns: 1fr 1fr; }
}

/* ─── MODAL ─── */
.modal-root{
  position: fixed; inset: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: color-mix(in oklab, #000 70%, transparent);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-root.is-open{ opacity: 1; pointer-events: auto; }
.modal-card{
  position: relative;
  width: 100%; max-width: 640px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--bg-1);
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 44px;
  transform: translateY(16px) scale(.98);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.modal-root.is-open .modal-card{ transform: translateY(0) scale(1); }
.modal-close{
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px;
  background: rgba(6,8,13,.7);
  color: var(--fg);
  border: 1px solid var(--line-2);
  border-radius: 50%;
  font-size: 20px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.modal-close:hover{ background: var(--accent-grad); color: #03171a; border-color: transparent; }
.modal-eye{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 12px;
}
.modal-eye::before{ content: ""; width: 18px; height: 1px; background: var(--accent-grad); }
.modal-card h3{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.modal-card p.body{
  font-family: 'Archivo', sans-serif;
  font-size: 15px; line-height: 1.55;
  color: var(--fg-dim);
  margin: 0 0 18px;
}
.modal-form{ display: grid; gap: 14px; margin-top: 16px; }
.modal-form .row{ display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.modal-form .row.one{ grid-template-columns: 1fr; }
.modal-field{ display: flex; flex-direction: column; gap: 6px; }
.modal-field label{
  font-family: 'Archivo', sans-serif;
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--fg-mute);
  font-weight: 500;
}
.modal-field input,
.modal-field select,
.modal-field textarea{
  font-family: 'Archivo', sans-serif;
  font-size: 14px; color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 8px 0 10px;
  outline: none;
  transition: border-color .2s;
}
.modal-field input::placeholder{ color: var(--fg-mute); }
.modal-field input:focus,
.modal-field select:focus,
.modal-field textarea:focus{ border-bottom-color: var(--accent-2); }
.modal-field textarea{ resize: vertical; min-height: 76px; }
.modal-actions{
  margin-top: 18px;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: space-between;
}
.modal-actions .note{
  font-family: 'Archivo', sans-serif;
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--fg-mute);
}
.modal-success{ text-align: center; padding: 12px 8px 4px; }
.modal-success .check{
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #03171a;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
body.modal-locked{ overflow: hidden; }

/* ─── Sticky CTA ─── */
.sticky-cta{
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}
.sticky-cta.show{ opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.sticky-cta .pill{ box-shadow: 0 18px 50px -10px rgba(0,0,0,.6), 0 0 0 1px color-mix(in oklab, var(--accent) 20%, transparent); }

/* ─── Mobile drawer ─── */
.live-hero .hero-bg{ background: #050a07; }
.live-hero .hero-bg .video-frame,
.home-hero .hero-bg .video-frame{
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  transform: none;
  object-fit: cover;
  filter: saturate(.94) contrast(1.04);
}
.live-hero .hero-bg::after{
  background:
    linear-gradient(180deg, rgba(3,10,7,.55) 0%, rgba(3,10,7,.1) 22%, rgba(3,10,7,.1) 50%, rgba(3,10,7,.82) 100%);
}
.drawer{
  position: fixed; inset: 0;
  z-index: 99;
  background: color-mix(in oklab, var(--bg) 96%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  padding: 110px 22px 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.drawer.is-open{ opacity: 1; pointer-events: auto; }
.drawer ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.drawer li{ border-bottom: 1px solid var(--line); }
.drawer a{
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--fg);
}
.drawer .drawer-foot{
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.drawer .drawer-foot a{
  padding: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: var(--fg-dim);
  letter-spacing: .005em;
  text-transform: none;
}

/* ─── Reveal ─── */
/* IMPORTANT: only hide .reveal content when JS is confirmed running (site.js
   adds `.js` to <html> on load). If the script ever fails, content stays
   fully visible — no blank sections. */
.js .reveal{ opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.js .reveal.in{ opacity: 1; transform: translateY(0); }

/* ─── Photo-backed dark section (Lost-in-Woods pattern) ────────────── *
 * A full-bleed photographic backdrop dimmed heavily so headlines pop.
 * Page-bg fades in at top + bottom so transitions to neighbouring
 * sections stay seamless. Use --photo-img to set the image.
 *                                                                      */
.sec.has-photo{
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.sec.has-photo::before{
  content: "";
  position: absolute;
  inset: -10% 0;
  z-index: -2;
  background-image: var(--photo-img);
  background-size: cover;
  background-position: center;
  filter: saturate(.7) contrast(1.05) brightness(var(--photo-brightness, .55));
  will-change: transform;
}
.sec.has-photo::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      var(--bg) 0%,
      rgba(8,17,11, var(--overlay-top, .55)) 14%,
      rgba(8,17,11, var(--overlay-bot, .55)) 86%,
      var(--bg) 100%),
    radial-gradient(ellipse 60% 50% at 50% 50%, transparent 0%, rgba(8,17,11,.7) 100%);
}
.sec.has-photo > *{ position: relative; z-index: 1; }
.sec.has-photo .sec-eye .stripe{ background: var(--accent-grad); opacity: .9; }
.sec.has-photo .step{
  background: linear-gradient(180deg, rgba(8,17,11,.4) 0%, rgba(8,17,11,.65) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-right-color: rgba(255,255,255,.1);
}
.sec.has-photo .dev-row{
  background: linear-gradient(180deg, rgba(8,17,11,.4) 0%, rgba(8,17,11,.6) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.sec.has-photo .timeline{
  background: linear-gradient(180deg, rgba(8,17,11,.55) 0%, rgba(8,17,11,.7) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top-color: rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
}
.sec.has-photo .timeline-row{ border-bottom-color: rgba(255,255,255,.1); padding-left: 24px; padding-right: 24px; }
.sec.has-photo .timeline-row:last-child{ border-bottom: 0; }
.sec.has-photo .two-up .card{
  background: linear-gradient(180deg, rgba(8,17,11,.6) 0%, rgba(8,17,11,.75) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: rgba(255,255,255,.12);
}
.sec.has-photo .metric-bar{
  background: linear-gradient(180deg, rgba(8,17,11,.55) 0%, rgba(8,17,11,.7) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top-color: rgba(255,255,255,.12);
  border-bottom-color: rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
}
.sec.has-photo .metric-bar > div{ border-right-color: rgba(255,255,255,.1); }

/* Outcomes / copy-block / spec / process all need glass-blur cards over photos */
.sec.has-photo .outcomes{
  background: linear-gradient(180deg, rgba(8,17,11,.45) 0%, rgba(8,17,11,.6) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top-color: rgba(255,255,255,.1);
  border-radius: 18px;
  overflow: hidden;
}
.sec.has-photo .outcome-row{ border-bottom-color: rgba(255,255,255,.1); padding-left: 24px; padding-right: 24px; }
.sec.has-photo .outcome-row:last-child{ border-bottom: 0; }
.sec.has-photo .spec-grid{
  background: linear-gradient(180deg, rgba(8,17,11,.5) 0%, rgba(8,17,11,.65) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top-color: rgba(255,255,255,.12);
  border-bottom-color: rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
}
.sec.has-photo .spec-cell{ border-right-color: rgba(255,255,255,.1); }
.sec.has-photo .copy-block .body p{ color: rgba(243,241,234,.88); }

/* ─── Widget mockup (Enterprise / Integration section) ─── */
.widget-mockup{
  margin-top: 60px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--bg-1);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.7);
}
.widget-chrome{
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #1a221d 0%, #131913 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.widget-chrome .dot{
  width: 11px; height: 11px; border-radius: 50%;
  flex-shrink: 0;
}
.widget-chrome .dot.r{ background: #ff5f57; }
.widget-chrome .dot.y{ background: #febc2e; }
.widget-chrome .dot.g{ background: #28c840; }
.widget-chrome .url{
  margin-left: 18px;
  padding: 5px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: .02em;
}
.widget-stage{
  position: relative;
  max-height: 600px;
  overflow: hidden;
  background: #fff;
}
.widget-stage img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}
.widget-stage::after{
  /* Subtle fade to dark at the bottom of the stage so it integrates with the
   * surrounding dark page rather than ending in a flat white edge. */
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, rgba(8,17,11,.6) 100%);
  pointer-events: none;
}
.widget-caption{
  padding: 16px 22px;
  background: linear-gradient(180deg, #131913 0%, #0d1410 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 14px;
}
.widget-caption::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.widget-caption span{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}

/* ──────────────────────────────────────────────────────────────────── *
 * SUBPAGE EXTENSIONS — additions for About / Industries / Trade-In /
 * Contact pages. Reuse the homepage tokens (.sec, .pill, .em, etc).
 * ──────────────────────────────────────────────────────────────────── */

/* Nav additions: active state + Industries dropdown */
.nav-links a.active{ color: var(--fg); }
.nav-links a.active::after{
  content: ""; display: block;
  width: 18px; height: 1px;
  margin: 4px auto 0;
  background: var(--accent-grad);
}
.nav-dd{ position: relative; display: inline-flex; }
.nav-dd-btn{
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  color: rgba(243,241,234,.78);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
  transition: color .2s;
}
.nav-dd-btn .caret{ font-size: 9px; transition: transform .25s; opacity: .7; }
.nav-dd-btn.is-open .caret{ transform: rotate(180deg); }
.nav-dd-btn:hover, .nav-dd-btn.active{ color: var(--fg); }
.nav-dd-btn.active{ position: relative; }
.nav-dd-btn.active::after{
  content: ""; position: absolute; left: 0; right: 16px; bottom: -6px;
  height: 1px; background: var(--accent-grad);
}
.nav-dd-menu{
  position: absolute;
  top: calc(100% + 16px); left: -12px;
  min-width: 240px;
  background: color-mix(in oklab, var(--bg-1) 96%, transparent);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
}
.nav-dd-menu.is-open{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-dd-menu a{
  padding: 12px 14px;
  border-radius: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  letter-spacing: .005em;
  text-transform: none;
  color: var(--fg-dim);
  transition: background .15s, color .15s;
}
.nav-dd-menu a:hover{
  background: color-mix(in oklab, var(--accent) 10%, transparent);
  color: var(--fg);
}
@media (max-width: 820px){
  .nav-dd{ display: none; }
}

/* ─── LIVE NAV pip ─── */
.nav-live{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-live .live-dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff3b5c;
  box-shadow: 0 0 0 3px rgba(255,59,92,.22), 0 0 12px rgba(255,59,92,.5);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
.nav-live.active{ color: var(--fg); }
.nav-live.active::after{
  flex-basis: 100%;
  width: 18px;
  margin: 4px auto 0;
}

/* ─── LIVE SELLING — homepage section card ────────────────────────── */
.live-block{
  position: relative;
  margin-top: 80px;
  padding: 64px 56px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(20,32,25,.85) 0%, rgba(13,24,18,.95) 100%);
  border: 1px solid var(--line-2);
  overflow: hidden;
  isolation: isolate;
}
.live-block::before{
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg at 50% 50%,
    color-mix(in oklab, #ff3b5c 40%, transparent) 0%,
    transparent 25%,
    color-mix(in oklab, var(--accent) 30%, transparent) 50%,
    transparent 75%,
    color-mix(in oklab, #ff3b5c 40%, transparent) 100%);
  filter: blur(40px);
  opacity: .55;
  z-index: -2;
  animation: liveSpin 22s linear infinite;
}
.live-block::after{
  content: "";
  position: absolute;
  inset: 1px;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg) 100%);
  border-radius: 27px;
  z-index: -1;
}
@keyframes liveSpin{ to{ transform: rotate(360deg); } }
.live-eye{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px;
  background: rgba(255,59,92,.12);
  border: 1px solid rgba(255,59,92,.4);
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ff7a93;
  font-weight: 600;
  margin-bottom: 28px;
}
.live-eye .ld{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff3b5c;
  box-shadow: 0 0 0 3px rgba(255,59,92,.22), 0 0 12px rgba(255,59,92,.5);
  animation: pulse 1.6s infinite;
}
.live-head{
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 48px;
}
.live-head .title{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 80px);
  line-height: .92;
  text-transform: uppercase;
  margin: 0;
}
.live-head .title .em{
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  font-size: 1em;
}
.live-head .sub{
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-dim);
  margin: 18px 0 0;
  max-width: 52ch;
}
.live-head .actions{ display: inline-flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.live-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
}
.live-video{
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0f0c;
  border: 1px solid var(--line);
}
.live-video video,
.live-video iframe,
.live-video img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.live-video .placeholder{
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  background:
    radial-gradient(closest-side at 50% 40%, color-mix(in oklab, #ff3b5c 18%, transparent), transparent 70%),
    linear-gradient(180deg, #0e1612 0%, #07100c 100%);
  text-align: center;
  color: var(--fg);
}
.live-video .play{
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #06080d;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 18px 50px -10px rgba(0,0,0,.6);
}
.live-video .tag{
  font-family: 'Archivo', sans-serif;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-dim); font-weight: 500;
}
.live-video .title{
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  text-transform: uppercase;
  line-height: 1;
  max-width: 24ch;
}
.live-video .chips{
  display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-top: 6px;
}
.live-video .chip{
  font-family: 'Archivo', sans-serif;
  font-size: 11px; letter-spacing: .12em;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--fg-dim);
}
.live-video .live-badge{
  position: absolute;
  top: 18px; left: 18px;
  padding: 7px 12px;
  background: #ff3b5c;
  color: #fff;
  border-radius: 6px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 2;
}
.live-video .live-badge::before{
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.4s infinite;
}
.live-channels{
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex; gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-dim);
  z-index: 2;
}
.live-side{
  display: flex; flex-direction: column;
  gap: 22px;
}
.live-stats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.live-stat{
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-1);
}
.live-stat .v{
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
  margin-bottom: 8px;
}
.live-stat .lbl{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  line-height: 1.35;
}
.live-schedule{
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-1);
  display: flex; flex-direction: column; gap: 14px;
}
.live-schedule .head{
  font-family: 'Archivo', sans-serif;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.live-schedule .head::after{
  content: ""; flex: 1; height: 1px; background: var(--line); margin-left: 16px;
}
.live-show{
  display: grid;
  grid-template-columns: 14px 90px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.live-show .ch{
  width: 10px; height: 10px;
  border-radius: 50%;
}
.live-show .ch.tiktok{ background: #ff3b5c; }
.live-show .ch.fb{ background: #1877f2; }
.live-show .day{
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
}
.live-show .when{
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  color: var(--fg-dim);
}
.live-show .ch-name{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.live-actions{
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

@media (max-width: 960px){
  .live-block{ padding: 48px 28px; }
  .live-head{ grid-template-columns: 1fr; gap: 24px; }
  .live-head .actions{ align-items: flex-start; }
  .live-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 540px){
  .live-stats{ grid-template-columns: 1fr; }
}

/* ─── PAGE HERO (every subpage) ─── */
.page-hero{
  padding: 180px 0 60px;
  position: relative;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.page-hero::before{
  content: ""; position: absolute;
  left: 50%; top: 28%;
  width: 900px; height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, var(--accent-glow), transparent 70%);
  filter: blur(70px);
  opacity: .22;
  pointer-events: none;
  z-index: -1;
}
.page-hero-eye{
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: var(--fg-mute);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  margin-bottom: 28px;
  padding: 10px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.page-hero-eye .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}
.page-hero-grid{
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: end;
}
.page-hero-title{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(56px, 9vw, 168px);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.008em;
  margin: 0;
}
.page-hero-title .em{
  display: block;
  font-size: 1em;
  margin-top: .22em;
}
.page-hero-lede{
  font-family: 'Archivo', sans-serif;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--fg-dim);
  margin: 36px 0 0;
  max-width: 48ch;
}
.page-hero-photo{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-1);
  border: 1px solid var(--line);
  align-self: end;
}
.page-hero-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.03);
}
.page-hero-photo-meta{
  position: absolute;
  left: 18px; right: 18px; bottom: 18px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: rgba(6,8,13,.55);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 500;
  gap: 16px;
}
.page-hero-photo-meta .yr{ color: var(--fg-dim); }
@media (max-width: 1024px){
  .page-hero{ padding-top: 150px; }
  .page-hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .page-hero-photo{ aspect-ratio: 16/10; max-height: 520px; }
}
@media (max-width: 820px){
  .page-hero{ padding-top: 130px; padding-bottom: 40px; }
  .page-hero-eye{ font-size: 10px; padding: 8px 14px; }
}

/* ─── Two-up card pattern (Facility, etc.) ─── */
.two-up{
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.two-up .card{
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg));
  display: flex; flex-direction: column;
  /* No min-height — cards size to content. Grid row still equalises sibling height
     when needed, and .foot uses margin-top:auto to pin to the bottom in that case. */
  transition: border-color .3s, transform .35s cubic-bezier(.16,1,.3,1);
}
.two-up .card:hover{
  border-color: color-mix(in oklab, var(--accent) 30%, var(--line-2));
  transform: translateY(-3px);
}
.two-up .card .eyebrow{
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 18px;
  font-weight: 500;
}
.two-up .card h3{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: .96;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.two-up .card p{
  font-family: 'Archivo', sans-serif;
  font-size: 14.5px;
  color: var(--fg-dim);
  line-height: 1.6;
  margin: 0;
}
.two-up .card .foot{
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
@media (max-width: 820px){
  .two-up{ grid-template-columns: 1fr; }
  .two-up .card{ padding: 32px 24px; min-height: auto; }
}

/* ─── Story timeline ─── */
.timeline{
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.timeline-row{
  display: grid;
  grid-template-columns: 200px 1.1fr 2fr;
  gap: 36px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  position: relative;
  transition: padding-left .35s cubic-bezier(.16,1,.3,1);
}
.timeline-row:hover{ padding-left: 18px; }
.timeline-row::after{
  content: ""; position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, color-mix(in oklab, var(--accent) 6%, transparent), transparent 60%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.timeline-row:hover::after{ opacity: 1; }
.timeline-year{
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: .9;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  position: relative; z-index: 1;
}
.timeline-title{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0;
  position: relative; z-index: 1;
}
.timeline-desc{
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-dim);
  margin: 0;
  max-width: 56ch;
  position: relative; z-index: 1;
}
@media (max-width: 820px){
  .timeline-row{
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 0;
  }
}

/* ─── Numbered Values cards ─── */
.vals-grid{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.vals-grid > *{ grid-column: span 2; }
/* Top row = 3 cards (×2 = 6 cols). Last 2 of 5 sit centered on row 2 (push 1 col before each pair = 1+2+2+1 = 6). */
.vals-grid > *:nth-child(4){ grid-column: 2 / span 2; }
.vals-grid > *:nth-child(5){ grid-column: 4 / span 2; }
@media (max-width: 960px){
  .vals-grid{ grid-template-columns: 1fr 1fr; }
  .vals-grid > *,
  .vals-grid > *:nth-child(4),
  .vals-grid > *:nth-child(5){ grid-column: auto; }
}
@media (max-width: 540px){
  .vals-grid{ grid-template-columns: 1fr; }
}
.val-card{
  position: relative;
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bg-1);
  transition: border-color .3s, transform .35s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
  min-height: 280px;
  display: flex; flex-direction: column;
}
.val-card:hover{
  border-color: color-mix(in oklab, var(--accent) 28%, var(--line-2));
  transform: translateY(-3px);
}
.val-card .num{
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 24px;
}
.val-card h3{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.val-card p{
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-dim);
  margin: 0;
}

/* ─── Industry-page: outcome list rows ─── */
.outcomes{
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.outcome-row{
  display: grid;
  grid-template-columns: 56px 1fr 1.2fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 12px;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left .35s cubic-bezier(.16,1,.3,1);
}
.outcome-row:hover{ padding-left: 28px; }
.outcome-row .code{
  font-family: 'Archivo', sans-serif;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.outcome-row .name{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--fg);
}
.outcome-row .desc{
  font-family: 'Archivo', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-dim);
}
.outcome-row .arr{
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  color: var(--fg-mute);
  transition: color .2s, transform .2s;
}
.outcome-row:hover .arr{ color: var(--accent); transform: translateX(4px); }
@media (max-width: 820px){
  .outcome-row{ grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .outcome-row .arr{ display: none; }
}

/* ─── Spec rows (Trade-In etc.) ─── */
.spec-grid{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-cell{
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.spec-cell:last-child{ border-right: 0; }
.spec-cell .lbl{
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.spec-cell .big{
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: .92;
  text-transform: uppercase;
}
.spec-cell .big .u{
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-size: .55em;
  margin-left: 4px;
}
.spec-cell p{
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-dim);
  margin: 0;
}
@media (max-width: 820px){
  .spec-grid{ grid-template-columns: 1fr; }
  .spec-cell{ border-right: 0; border-bottom: 1px solid var(--line); }
  .spec-cell:last-child{ border-bottom: 0; }
}

/* ─── Device grid (Trade-In page) ─── */
.dev-grid{
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dev-tile{
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg-1);
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: border-color .3s, transform .35s cubic-bezier(.16,1,.3,1);
  cursor: pointer;
}
.dev-tile:hover{
  border-color: color-mix(in oklab, var(--accent) 30%, var(--line-2));
  transform: translateY(-4px);
}
.dev-tile .ph{ position: absolute; inset: 0; overflow: hidden; }
.dev-tile .ph img{ width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.dev-tile:hover .ph img{ transform: scale(1.06); }
.dev-tile .ph::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,8,13,.1) 0%, transparent 30%, rgba(6,8,13,.85) 100%);
}
.dev-tile .meta{
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 4px;
}
.dev-tile .code{
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}
.dev-tile .name{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
  text-transform: uppercase;
}
.dev-tile .turn{
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-top: 6px;
}
@media (max-width: 1024px){ .dev-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .dev-grid{ grid-template-columns: 1fr; } .dev-tile{ aspect-ratio: 4/3; } }

/* ─── Contact form layout ─── */
.contact-grid{
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-side .channels{
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.contact-side .channels a,
.contact-side .channels div{
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  padding: 28px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: 'Archivo', sans-serif;
  color: var(--fg-dim);
  font-size: 14px;
  text-decoration: none;
  transition: padding-left .25s, color .25s;
}
.contact-side .channels a:hover{ padding-left: 12px; color: var(--fg); }
.contact-side .channels .lbl{
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.contact-side .channels .v{
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: -.005em;
}
.contact-side .channels .arr{ font-size: 16px; color: var(--fg-mute); }
.contact-side .channels a:hover .arr{ color: var(--accent); }

.contact-card{
  padding: 44px 40px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.contact-card h3{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.contact-card .body{
  font-family: 'Archivo', sans-serif;
  font-size: 14.5px;
  color: var(--fg-dim);
  line-height: 1.55;
  margin: 0 0 28px;
}
.contact-form{ display: grid; gap: 18px; }
.contact-form .row{ display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.contact-form .row.one{ grid-template-columns: 1fr; }
.contact-form .field{ display: flex; flex-direction: column; gap: 6px; }
.contact-form label{
  font-family: 'Archivo', sans-serif;
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--fg-mute);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  font-family: 'Archivo', sans-serif;
  font-size: 14px; color: var(--fg);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-2);
  padding: 10px 0 12px;
  outline: none;
  transition: border-color .2s;
}
.contact-form textarea{ resize: vertical; min-height: 96px; }
.contact-form input::placeholder, .contact-form textarea::placeholder{ color: var(--fg-mute); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{ border-bottom-color: var(--accent-2); }
.contact-form .submit{
  margin-top: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.contact-form .note{
  font-family: 'Archivo', sans-serif;
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--fg-mute);
}
@media (max-width: 1024px){
  .contact-grid{ grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 540px){
  .contact-card{ padding: 32px 24px; }
  .contact-form .row{ grid-template-columns: 1fr; }
}

/* ─── Industry-page Hero metric bar ─── */
.metric-bar{
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.metric-bar > div{
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}
.metric-bar > div:last-child{ border-right: 0; }
.metric-bar .lbl{
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
  margin-bottom: 14px;
}
.metric-bar .v{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: .92;
  text-transform: uppercase;
}
.metric-bar .v .u{
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-size: .58em;
  margin-left: 4px;
}
@media (max-width: 820px){
  .metric-bar{ grid-template-columns: 1fr 1fr; }
  .metric-bar > div:nth-child(2){ border-right: 0; }
  .metric-bar > div:nth-child(-n+2){ border-bottom: 1px solid var(--line); }
}

/* ─── Pull quote (small inline testimonial) ─── */
.pull{
  margin-top: 100px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pull q{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.05;
  text-transform: uppercase;
  display: block;
  max-width: 24ch;
  quotes: '"' '"';
  letter-spacing: -.005em;
}
.pull q em{
  font-family: 'Anton', sans-serif;
  font-style: normal; font-weight: 400;
  text-transform: uppercase;
  background: var(--accent-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  font-size: 1em;
}
.pull .attrib{
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.pull .attrib b{
  color: var(--fg);
  font-family: 'Anton', sans-serif;
  font-size: 16px;
  letter-spacing: -.005em;
  font-weight: 400;
}
.pull .attrib .div{
  width: 24px; height: 1px;
  background: var(--accent-grad);
}

/* ─── Page-level large copy block ─── */
.copy-block{
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.copy-block .lede{
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.copy-block .lede .em{
  display: block;
  font-size: 1em;
  margin-top: .14em;
}
.copy-block .body{ display: flex; flex-direction: column; gap: 22px; }
.copy-block .body p{
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-dim);
  margin: 0;
}
.copy-block .body p strong{ color: var(--fg); font-weight: 600; }
@media (max-width: 820px){
  .copy-block{ grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Map placeholder (Contact) ─── */
.map-card{
  position: relative;
  margin-top: 80px;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 40%, color-mix(in oklab, var(--accent) 6%, transparent) 0, transparent 60%),
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, var(--line) 39px, var(--line) 40px),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, var(--line) 39px, var(--line) 40px),
    var(--bg-1);
  border: 1px solid var(--line);
}
.map-pin{
  position: absolute;
  left: 30%; top: 40%;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--accent) 20%, transparent), 0 0 30px var(--accent);
  animation: pulse 2.2s infinite;
}
.map-card .where-card{
  position: absolute;
  left: 32px; bottom: 32px;
  padding: 18px 22px;
  background: rgba(6,8,13,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  display: grid; gap: 6px;
}
.map-card .where-card .lbl{
  font-family: 'Archivo', sans-serif;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-mute); font-weight: 500;
}
.map-card .where-card .v{
  font-family: 'Anton', sans-serif;
  font-size: 18px; line-height: 1; text-transform: uppercase; letter-spacing: -.005em;
}

/* ─── Bullet list inline (industry pages) ─── */
.bullet-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.bullet-list li{
  font-family: 'Archivo', sans-serif;
  font-size: 15.5px;
  color: var(--fg);
  line-height: 1.55;
  display: flex; align-items: baseline; gap: 14px;
}
.bullet-list li::before{
  content: ""; display: inline-block;
  width: 18px; height: 1px;
  background: var(--accent-grad);
  flex-shrink: 0;
  transform: translateY(-4px);
}
.bullet-list li b{ color: var(--fg); font-weight: 600; }

/* ─── Ashley clock (nav) ───────────────────────────────────────────── */
.ashley-clock{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: ui-monospace, 'JetBrains Mono', 'SF Mono', Menlo, monospace;
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: .04em;
  white-space: nowrap;
  background: color-mix(in oklab, var(--bg-1) 60%, transparent);
  user-select: none;
  margin: 0 6px;
  flex-shrink: 0;
}
.ashley-clock .t{ color: var(--fg); font-weight: 600; }
.ashley-clock .t .mer{
  font-size: 9.5px;
  margin-left: 2px;
  color: var(--fg-mute);
  font-weight: 600;
  text-transform: lowercase;
}
.ashley-clock .loc{
  font-size: 9.5px;
  letter-spacing: .22em;
  color: var(--fg-mute);
  text-transform: uppercase;
  padding-left: 6px;
  border-left: 1px solid var(--line);
}
.ashley-dot{
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.ashley-dot.open{
  background: var(--accent-2);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent-2) 22%, transparent),
              0 0 10px color-mix(in oklab, var(--accent-2) 50%, transparent);
  animation: ashley-pulse 2.4s infinite ease-out;
}
.ashley-dot.closed{
  background: var(--fg-mute);
  opacity: .6;
}
@keyframes ashley-pulse{
  0%, 100%{ opacity: 1; }
  50%{ opacity: .55; }
}
@media (max-width: 1320px){
  .ashley-clock .loc{ display: none; }
  .ashley-clock{ padding: 7px 10px; }
}
@media (max-width: 1140px){
  .ashley-clock{ display: none; }
}
@media (max-width: 960px){
  .ashley-clock{ display: none; }
}

/* ─── Open / Closed sign (bottom-right) ────────────────────────────── */
.open-sign{
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  width: 200px;
  pointer-events: none; /* parent ignores; card itself re-enables */
  animation: sign-in 600ms cubic-bezier(.34,1.56,.64,1) 400ms both;
}
.open-sign.is-closed{ animation-delay: 700ms; }
@keyframes sign-in{
  0%   { opacity: 0; transform: translateY(-12px) rotate(-3deg); }
  100% { opacity: 1; transform: translateY(0) rotate(-2deg); }
}
.open-sign-rope{
  position: absolute;
  left: 50%; top: -28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.open-sign-rope .hook{
  width: 14px; height: 14px;
  border: 2px solid var(--fg-mute);
  border-radius: 50%;
  border-bottom-color: transparent;
  transform: rotate(-20deg);
}
.open-sign-rope .cord{
  width: 1px; height: 20px;
  background: var(--fg-mute);
  margin-top: -2px;
}
.open-sign-card{
  pointer-events: auto;
  position: relative;
  padding: 18px 18px 14px;
  border-radius: 8px;
  background: #0c1810;
  border: 1px solid var(--line-2);
  text-align: center;
  font-family: 'Archivo', sans-serif;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 12px 32px rgba(0,0,0,.45),
    0 2px 0 rgba(0,0,0,.35);
  transition: transform .3s ease;
  transform: rotate(-2deg);
}
.open-sign:hover .open-sign-card{ transform: rotate(0deg); }
.open-sign.is-open .open-sign-card{
  background: linear-gradient(180deg, #0e2418 0%, #0c1d14 100%);
  border-color: color-mix(in oklab, var(--accent-2) 30%, var(--line-2));
  box-shadow:
    0 0 0 1px color-mix(in oklab, var(--accent-2) 18%, transparent) inset,
    0 12px 32px rgba(0,0,0,.5),
    0 0 32px color-mix(in oklab, var(--accent-2) 14%, transparent);
}
.open-sign-x{
  position: absolute;
  top: 6px; right: 8px;
  width: 18px; height: 18px;
  color: var(--fg-mute);
  font-size: 14px;
  line-height: 1;
  opacity: .55;
  transition: opacity .15s, color .15s;
}
.open-sign-x:hover{ opacity: 1; color: var(--fg); }
.open-sign-word{
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: .06em;
  color: var(--fg-mute);
}
.open-sign.is-open .open-sign-word{
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.open-sign-sub{
  margin-top: 6px;
  font-size: 12px;
  color: var(--fg);
  line-height: 1.4;
}
.open-sign-sub .dim{
  color: var(--fg-mute);
  font-size: 11px;
}
.open-sign-hours{
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
@media (max-width: 720px){
  .open-sign{
    right: 14px; bottom: 14px;
    width: 156px;
  }
  .open-sign-word{ font-size: 24px; }
  .open-sign-sub{ font-size: 11px; }
}

/* ─── Hero audio toggle ─────────────────────────────────────────────── */
.audio-toggle{
  position: absolute;
  right: 28px; top: 110px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: color-mix(in oklab, #000 55%, transparent);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--fg);
  font-family: 'Archivo', sans-serif;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.audio-toggle:hover{
  background: color-mix(in oklab, #000 35%, transparent);
  border-color: var(--accent-2);
}
.audio-toggle.is-on{
  border-color: color-mix(in oklab, var(--accent-2) 50%, var(--line-2));
}
.audio-toggle svg{ width: 16px; height: 16px; }
.audio-toggle .bars{ display: inline-flex; gap: 2px; align-items: flex-end; height: 14px; }
.audio-toggle .bars i{
  display: inline-block;
  width: 2px; height: 4px;
  background: var(--accent-2);
  border-radius: 1px;
  animation: bars 1.1s ease-in-out infinite;
}
.audio-toggle .bars i:nth-child(2){ animation-delay: .15s; height: 8px; }
.audio-toggle .bars i:nth-child(3){ animation-delay: .3s; height: 6px; }
.audio-toggle .bars i:nth-child(4){ animation-delay: .45s; height: 10px; }
@keyframes bars{
  0%, 100%{ transform: scaleY(1); }
  50%    { transform: scaleY(2.2); }
}
@media (max-width: 720px){
  .audio-toggle{ right: 14px; top: 88px; padding: 8px 12px 8px 10px; font-size: 9.5px; }
}

/* ─── CSV drop overlay (trade-in) ──────────────────────────────────── */
.csv-drop-overlay{
  position: fixed;
  inset: 0;
  z-index: 200;
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.csv-drop-overlay.show{
  opacity: 1;
  pointer-events: auto;
}
.csv-drop-card{
  width: min(560px, 90vw);
  padding: 60px 48px;
  border-radius: 22px;
  border: 2px dashed var(--accent-2);
  background: color-mix(in oklab, var(--bg-1) 88%, transparent);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.4),
              0 0 32px color-mix(in oklab, var(--accent-2) 22%, transparent);
}
.csv-drop-card h3{
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: .95;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.csv-drop-card h3 .em{ font-size: .82em; }
.csv-drop-card p{
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: var(--fg-dim);
  letter-spacing: .04em;
}

/* In-page CSV drop zone (always visible on Trade-In) */
.csv-zone{
  margin: 60px 0 0;
  padding: 36px 40px;
  border-radius: 22px;
  border: 1.5px dashed color-mix(in oklab, var(--accent-2) 45%, var(--line-2));
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--accent-2) 6%, var(--bg-1)) 0%,
    var(--bg-1) 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.csv-zone:hover{
  border-color: var(--accent-2);
  transform: translateY(-2px);
}
.csv-zone .csv-zone-eye{
  font-family: 'Archivo', sans-serif;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 600;
  margin-bottom: 10px;
}
.csv-zone h3{
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: .95;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.csv-zone p{
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-size: 14.5px;
  color: var(--fg-dim);
  line-height: 1.55;
  max-width: 60ch;
}
.csv-zone .csv-zone-icon{
  width: 96px; height: 96px;
  border-radius: 22px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-2);
}
.csv-zone .csv-zone-icon svg{ width: 44px; height: 44px; }
@media (max-width: 820px){
  .csv-zone{ grid-template-columns: 1fr; padding: 28px; }
  .csv-zone .csv-zone-icon{ width: 64px; height: 64px; }
  .csv-zone .csv-zone-icon svg{ width: 28px; height: 28px; }
}

/* ──────────────────────────────────────────────────────────────────── *
 * PHASE 03 — Premium polish layer (added 05/26)
 * Hover micro-interactions + cursor-aware accent glow + view transitions.
 * Pure CSS additions; the JS hook lives in interactions.js and only
 * toggles --cx/--cy/--glow-on/--mx/--my custom properties.
 * ──────────────────────────────────────────────────────────────────── */

/* ── 1. Animated nav-link underline ──────────────────────────────── */
.nav-links a:not(.nav-live){
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:not(.nav-live)::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--accent-grad);
  transition: right .35s cubic-bezier(.16,1,.3,1);
}
.nav-links a:not(.nav-live):hover::after{ right: 0; }
/* Keep .active state showing full underline */
.nav-links a.active{ color: var(--fg); }
.nav-links a.active::after{
  content: ""; display: block;
  width: 18px; height: 1px;
  margin: 4px auto 0;
  background: var(--accent-grad);
  position: static;
}
.nav-dd-btn{
  position: relative;
}
.nav-dd-btn:not(.active)::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -10px;
  height: 1px;
  background: var(--accent-grad);
  transition: right .35s cubic-bezier(.16,1,.3,1);
}
.nav-dd-btn:not(.active):hover::after{ right: 16px; }

/* ── 2. Cursor-aware accent glow on dark sections ───────────────── */
.cursor-glow-host{
  position: relative;
  --cx: .5;
  --cy: .5;
  --glow-on: 0;
  --glow-size: 520px;
  --glow-color: color-mix(in oklab, var(--accent) 18%, transparent);
}
.cursor-glow-host::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    var(--glow-size) circle at
    calc(var(--cx) * 100%) calc(var(--cy) * 100%),
    var(--glow-color),
    transparent 65%
  );
  opacity: var(--glow-on, 0);
  transition: opacity .45s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}
/* Make sure the glow doesn't kill existing pseudo-elements (manifesto has its own ::before) */
.manifesto::before, .cta::before, .cta::after{ z-index: 1; }
.manifesto > .container, .cta > .container,
.testi > .container, .impact-wrap > .container,
.page-hero > .container{ position: relative; z-index: 2; }
/* On hero/impact, the glow looks better tinted toward accent-2 */
.impact-wrap{ --glow-color: color-mix(in oklab, var(--accent-2) 14%, transparent); }
.page-hero{ --glow-size: 420px; --glow-color: color-mix(in oklab, var(--accent) 14%, transparent); }
.testi{ --glow-size: 600px; }

/* ── 3. Magnetic CTA buttons ────────────────────────────────────── */
.magnetic{
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform .35s cubic-bezier(.16,1,.3,1), background .2s, box-shadow .25s;
  will-change: transform;
}
/* Override the base .pill:hover translateY so it doesn't fight the magnetic var */
.pill.magnetic:hover{
  transform: translate3d(var(--mx, 0), calc(var(--my, 0px) - 1px), 0);
}

/* ── 4. Card accent-glow on hover (industry, step, dev-row) ─────── */
.indus-card{
  transition: transform .45s cubic-bezier(.16,1,.3,1),
              border-color .35s,
              box-shadow .45s cubic-bezier(.16,1,.3,1);
}
.indus-card:hover{
  box-shadow:
    0 28px 60px -22px rgba(0,0,0,.7),
    0 0 0 1px color-mix(in oklab, var(--accent) 25%, transparent),
    0 0 60px -10px color-mix(in oklab, var(--accent) 28%, transparent);
}
.step{ transition: background .3s, box-shadow .35s; }
.step:hover{
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--accent) 16%, transparent);
}

/* ── 5. View Transitions (modern browsers) ──────────────────────── */
@view-transition{ navigation: auto; }
::view-transition-old(root),
::view-transition-new(root){
  animation-duration: .32s;
  animation-timing-function: cubic-bezier(.16,1,.3,1);
}
::view-transition-old(root){
  animation-name: vtFadeOut;
}
::view-transition-new(root){
  animation-name: vtFadeIn;
}
@keyframes vtFadeOut{
  from{ opacity: 1; transform: translateY(0); }
  to  { opacity: 0; transform: translateY(-6px); }
}
@keyframes vtFadeIn{
  from{ opacity: 0; transform: translateY(6px); }
  to  { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  ::view-transition-old(root),
  ::view-transition-new(root){ animation: none; }
}

/* ── 6. "Last updated" timestamp chip ───────────────────────────── */
.last-updated{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 28px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fg-mute);
  background: rgba(255,255,255,.02);
}
.last-updated .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 8px var(--accent);
}
.last-updated b{ color: var(--fg-dim); font-weight: 600; letter-spacing: .12em; }

/* ── 7. Eyebrow separator ─────────────────────────────────────────
 * Middle-dot "·" naturally sits low in all-caps eyebrow text — we wrap
 * it in <span class="eye-sep"> in shared.jsx so we can nudge it up to
 * mid-cap-height and give it a touch more breathing room.
 */
.eye-sep{
  display: inline-block;
  margin: 0 .55em 0 .35em;
  vertical-align: middle;
  transform: translateY(-.18em);
  opacity: .55;
  font-weight: 400;
  /* Compensate for the eyebrow's heavy letter-spacing which adds extra
     gap after the dot; our explicit margins above are tuned without it. */
  letter-spacing: 0;
}


