/* ─────────────────────────────────────────────────────────────
   ArcASIC — Tokens
   ───────────────────────────────────────────────────────────── */
:root {
  --abyss:        #03061a;
  --midnight:     #060d2b;
  --navy-deep:    #0a1442;
  --navy:         #122168;
  --navy-mid:     #1d3496;
  --navy-bright:  #3257d9;
  --electric:     #5d8aff;
  --cyan:         #6ee7ff;
  --ice:          #c8d8ff;

  --paper:        #f4f1e8;
  --paper-warm:   #ece6d4;
  --ink:          #0a0f24;

  --line:         rgba(255,255,255,0.10);
  --line-strong:  rgba(255,255,255,0.20);
  --mist:         rgba(240,244,255,0.80);
  --mist-low:     rgba(240,244,255,0.62);

  --serif: "Instrument Serif", "Apple Garamond", "Hoefler Text", Georgia, serif;
  --sans:  "Manrope", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --gutter: clamp(20px, 4vw, 64px);
  --max:    1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--abyss); color: var(--ice); -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--cyan); color: var(--abyss); }

/* atmosphere */
.atmos {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(80% 60% at 8% 0%, #1a2f8a 0%, transparent 55%),
    radial-gradient(60% 50% at 100% 18%, #2347c4 0%, transparent 60%),
    radial-gradient(70% 70% at 50% 110%, #0a1956 0%, transparent 60%),
    linear-gradient(180deg, #03061a 0%, #060d2b 40%, #08113a 70%, #03061a 100%);
}
.grain {
  position: fixed; inset: -50%; z-index: -1; pointer-events: none;
  opacity: 0.18; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.7'/></svg>");
  animation: grainshift 8s steps(8) infinite;
}
@keyframes grainshift {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3%,-2%); }
  40%  { transform: translate(2%,-4%); }
  60%  { transform: translate(-2%,3%); }
  80%  { transform: translate(3%,2%); }
  100% { transform: translate(0,0); }
}

/* primitives */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  /* longhand so this class can coexist with `section { padding: ... 0 }` —
     using the `padding:` shorthand here would silently zero the vertical
     padding when applied via `<section class="wrap">` */
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
}
.kicker .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); margin-right: 10px; vertical-align: 1px;
  box-shadow: 0 0 14px var(--cyan);
}
.rule { height: 1px; width: 100%; background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent); }

/* nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 28px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(3,6,26,0.78) 0%, rgba(3,6,26,0.30) 100%);
  border-bottom: 1px solid var(--line);
  transition: padding .4s ease, background .4s ease;
}
.nav.scrolled { padding-top: 14px; padding-bottom: 14px; background: linear-gradient(180deg, rgba(3,6,26,0.92), rgba(3,6,26,0.6)); }
/* auto-collapse on scroll down — slides up out of view, returns on scroll up */
.nav { transition: padding .35s ease, transform .35s cubic-bezier(.2,.7,.2,1), background .35s ease; will-change: transform; }
.nav.collapsed { transform: translateY(-110%); }

.brand {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.brand-chip {
  display: inline-flex; align-items: center;
  padding: 5px 11px;
  background: linear-gradient(180deg, #ffffff 0%, #f0ece0 100%);
  border-radius: 9px;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.40),
    0 1px 0 rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -1px 0 rgba(0,0,0,0.06);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  will-change: transform;
}
.brand-chip img {
  height: 38px; width: auto; display: block;
}
.brand:hover .brand-chip {
  transform: translateY(-1px);
  box-shadow:
    0 10px 26px rgba(110,231,255,0.30),
    0 6px 18px rgba(0,0,0,0.40),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.nav-menu {
  display: flex; gap: 32px; justify-self: center;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mist);
}
.nav-menu a { position: relative; padding: 6px 0; transition: color .25s ease; }
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--cyan); transition: width .35s ease;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--paper); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta { justify-self: end; display: inline-flex; align-items: center; gap: 12px; }

/* ─────────────────────────────────────────────────────────────
   Page picker — custom dropdown (mobile). Native <select> on iOS
   Safari ignores most styling, so we render our own.
   ───────────────────────────────────────────────────────────── */
.page-picker { display: none; position: relative; }

@media (max-width: 1100px) {
  .page-picker { display: block; }
  /* swap nav to simple symmetric flex on mobile —
     brand left · picker center · demo right */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
}

.page-picker-btn {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(10,20,66,0.55);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 16px 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  cursor: pointer;
  min-height: 42px;
  outline: none;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.page-picker-btn:hover,
.page-picker-btn[aria-expanded="true"],
.page-picker-btn:focus-visible {
  border-color: var(--cyan);
  background: rgba(29,52,150,0.6);
  box-shadow: 0 0 18px rgba(110,231,255,0.15);
}
.page-picker-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100px;
}
.page-picker-chev {
  width: 12px; height: 12px;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.page-picker-btn[aria-expanded="true"] .page-picker-chev {
  transform: rotate(180deg);
}

.page-picker-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: linear-gradient(180deg, rgba(10,20,66,0.97), rgba(3,6,26,0.97));
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.55),
    0 0 70px rgba(110,231,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.06);
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px) scale(0.97);
  transform-origin: top center;
  transition: opacity .28s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 60;
}
/* tiny notch arrow connecting panel to the trigger pill */
.page-picker-panel::before {
  content: "";
  position: absolute;
  top: -7px; left: 50%;
  width: 12px; height: 12px;
  margin-left: -6px;
  background: linear-gradient(135deg, rgba(10,20,66,0.97), rgba(10,20,66,0.97));
  border-left: 1px solid var(--line-strong);
  border-top:  1px solid var(--line-strong);
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}
/* decorative top header strip */
.page-picker-panel::after {
  content: "PAGES — 07";
  position: absolute;
  top: 18px; left: 22px; right: 22px;
  display: block;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(110,231,255,0.18);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  pointer-events: none;
}
.page-picker-panel { padding-top: 42px; }
.page-picker-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.page-picker-panel li {
  margin: 0; padding: 0;
  counter-increment: pageItem;
}
.page-picker-panel { counter-reset: pageItem; }
.page-picker-panel a {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 9px;
  color: var(--ice);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, transform .25s cubic-bezier(.2,.7,.2,1);
}
/* mono index number — matches the editorial numbering style elsewhere */
.page-picker-panel a::before {
  content: counter(pageItem, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--mist-low);
  transition: color .2s ease;
}
/* trailing arrow that slides in on hover/active */
.page-picker-panel a::after {
  content: "→";
  font-family: var(--mono);
  color: var(--cyan);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.7,.2,1);
}
.page-picker-panel a:hover,
.page-picker-panel a:focus-visible {
  background: rgba(110,231,255,0.08);
  color: var(--paper);
  outline: none;
  transform: translateX(2px);
}
.page-picker-panel a:hover::before,
.page-picker-panel a:focus-visible::before { color: var(--cyan); }
.page-picker-panel a:hover::after,
.page-picker-panel a:focus-visible::after { opacity: 1; transform: translateX(0); }
.page-picker-panel a.active {
  color: var(--cyan);
  background: linear-gradient(90deg, rgba(110,231,255,0.14), rgba(110,231,255,0.04));
  box-shadow: inset 2px 0 0 var(--cyan);
}
.page-picker-panel a.active::before { color: var(--cyan); }
.page-picker-panel a.active::after  { opacity: 1; transform: translateX(0); content: "•"; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(93,138,255,0.16), rgba(110,231,255,0.08));
  color: var(--paper);
  transition: all .35s cubic-bezier(.2,.7,.2,1);
}
.btn:hover {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(93,138,255,0.35), rgba(110,231,255,0.18));
  box-shadow: 0 6px 24px rgba(93,138,255,0.25);
}
.btn.primary {
  background: linear-gradient(135deg, var(--electric), var(--navy-bright));
  border-color: transparent;
  color: var(--paper);
  box-shadow: 0 8px 28px rgba(50,87,217,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn.primary:hover {
  background: linear-gradient(135deg, var(--cyan), var(--electric));
  color: var(--abyss);
  box-shadow: 0 12px 36px rgba(110,231,255,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn .arrow { width: 14px; height: 14px; transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* progress + HUD */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--electric), var(--cyan));
  z-index: 100; box-shadow: 0 0 14px rgba(110,231,255,0.5);
}
.hud {
  position: fixed; bottom: 22px; left: 22px; z-index: 40;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist-low);
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: rgba(3,6,26,0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0; transform: translateY(8px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.hud.show { opacity: 1; transform: translateY(0); }
.hud .blip {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
  animation: pulse 1.8s ease-in-out infinite;
}
.hud .sep { width: 1px; height: 10px; background: var(--line-strong); }
.hud .id { color: var(--ice); }
.hud .tick { color: var(--cyan); min-width: 70px; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.35; transform: scale(0.7);} }

/* page hero — slim version used on subpages */
.page-hero {
  padding: 180px var(--gutter) 100px;
  position: relative;
}
.page-hero .wrap { max-width: var(--max); }
.page-hero .kicker { margin-bottom: 28px; display: inline-block; }
.page-hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 7vw, 104px); line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--paper);
  max-width: 16ch;
}
.page-hero h1 .em {
  font-style: italic;
  background: linear-gradient(135deg, var(--ice) 0%, var(--cyan) 45%, var(--electric) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero .sub {
  margin-top: 32px;
  max-width: 56ch;
  font-size: 19px; line-height: 1.6; color: var(--ice);
}
.page-hero .sub b { color: var(--paper); font-weight: 600; }

/* section frame (compact) */
section { position: relative; padding: 100px 0; }
.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 28ch;
}
.section-head h2 .em {
  font-style: italic;
  background: linear-gradient(135deg, var(--ice), var(--cyan) 60%, var(--electric));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* hero: home only */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 160px var(--gutter) 60px;
  display: grid; grid-template-rows: 1fr auto;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 60px; align-items: end;
  max-width: var(--max); width: 100%; margin: 0 auto;
}
.hero-left { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 9px 16px 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(10,20,66,0.45);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(14px);
  animation: rise .9s .15s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-tag .live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan);
}
.hero-tag .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan); animation: pulse 2s ease-in-out infinite;
}
.hero-tag .text { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist); }

.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(54px, 8.4vw, 128px); line-height: 0.94;
  letter-spacing: -0.035em; color: var(--paper);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: inline-block;
  opacity: 0; transform: translateY(110%);
  animation: rise 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: .25s; }
.hero h1 .line:nth-child(2) span { animation-delay: .42s; }
.hero h1 .line:nth-child(3) span { animation-delay: .58s; }
.hero h1 .glow {
  background: linear-gradient(135deg, var(--ice) 0%, var(--cyan) 40%, var(--electric) 70%, var(--ice) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  animation: shimmer 8s ease-in-out infinite, rise 1.1s .58s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  margin-top: 36px; max-width: 500px;
  font-size: 19px; line-height: 1.6; color: var(--ice);
  opacity: 0; transform: translateY(14px);
  animation: rise 1s .85s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-sub b { color: var(--paper); font-weight: 600; }

.hero-actions {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; transform: translateY(14px);
  animation: rise 1s 1s cubic-bezier(.2,.7,.2,1) forwards;
}

.die {
  position: relative; aspect-ratio: 1 / 1;
  width: 100%; max-width: 500px; margin-left: auto;
  opacity: 0;
  animation: dieIn 1.8s .6s cubic-bezier(.2,.7,.2,1) forwards;
  transition: transform .6s cubic-bezier(.2,.7,.2,1); will-change: transform;
}
@keyframes dieIn { to { opacity: 1; } }
.die svg { width: 100%; height: 100%; }
.die .ring {
  position: absolute; inset: -8%; border-radius: 50%;
  background: conic-gradient(from 200deg, transparent, rgba(110,231,255,0.30), transparent 60%);
  filter: blur(40px); z-index: -1;
  animation: spin 32s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-readout {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; padding: 32px 0 0;
  border-top: 1px solid var(--line);
  max-width: var(--max); width: 100%; margin: 60px auto 0;
  opacity: 0; transform: translateY(14px);
  animation: rise 1s 1.15s cubic-bezier(.2,.7,.2,1) forwards;
}
.readout-item .num {
  font-family: var(--serif); font-size: 42px; line-height: 1;
  letter-spacing: -0.03em; color: var(--paper);
}
.readout-item .num .small { font-size: 20px; color: var(--mist); margin-left: 2px; }
.readout-item .label {
  margin-top: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mist);
}

/* marquee */
.marquee {
  padding: 22px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(10,20,66,0), rgba(10,20,66,0.5), rgba(10,20,66,0));
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: scroll 44s linear infinite;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mist);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 18px; }
.marquee-track .sep { width: 28px; height: 1px; background: var(--line-strong); }
.marquee-track em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--electric));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 600;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* home: trio cards */
.trio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
}
.trio.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .trio.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trio.four { grid-template-columns: 1fr; }
}
.trio .card {
  background: linear-gradient(180deg, rgba(10,20,66,0.55), rgba(3,6,26,0.65));
  padding: 56px 32px 60px;
  transition: background .4s ease;
}
.trio + .trio { margin-top: 28px; }
.trio .card:hover { background: linear-gradient(180deg, rgba(29,52,150,0.45), rgba(10,20,66,0.55)); }
.trio .card .idx { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: var(--cyan); }
.trio .card h3 {
  margin-top: 28px;
  font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--paper);
}
.trio .card p { margin-top: 12px; font-size: 14.5px; line-height: 1.6; color: var(--mist); }

/* product teaser cards (home) */
.product-teasers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.teaser {
  position: relative;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(50,87,217,0.22), transparent 65%),
    linear-gradient(180deg, rgba(10,20,66,0.5), rgba(3,6,26,0.65));
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .5s ease;
  display: flex; flex-direction: column; min-height: 360px;
}
.teaser:hover { transform: translateY(-4px); border-color: rgba(110,231,255,0.4); }
.teaser .badge {
  display: inline-flex; padding: 6px 12px;
  background: rgba(93,138,255,0.12); border: 1px solid rgba(93,138,255,0.32);
  border-radius: 999px; align-self: flex-start;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ice);
}
.teaser h3 {
  margin-top: 24px;
  font-family: var(--serif); font-weight: 400; font-size: 42px; line-height: 1.0;
  letter-spacing: -0.025em; color: var(--paper);
}
.teaser h3 .em { font-style: italic; background: linear-gradient(135deg, var(--cyan), var(--electric)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.teaser p { margin-top: 18px; color: var(--ice); font-size: 15.5px; line-height: 1.6; max-width: 42ch; }
.teaser .link {
  margin-top: auto; padding-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cyan);
}
.teaser .link .arrow { width: 14px; height: 14px; transition: transform .3s ease; }
.teaser:hover .link .arrow { transform: translateX(4px); }

/* product page showcase */
.product {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 60px; align-items: center;
}
.product .meta .badge {
  display: inline-flex; padding: 6px 12px;
  background: rgba(93,138,255,0.12); border: 1px solid rgba(93,138,255,0.32);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ice);
}
.product .meta h3 {
  margin-top: 24px;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 4.2vw, 56px); line-height: 1.0;
  letter-spacing: -0.025em; color: var(--paper);
}
.product .meta h3 .em {
  font-style: italic;
  background: linear-gradient(135deg, var(--cyan), var(--electric));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.product .meta p.lead { margin-top: 20px; font-size: 17.5px; line-height: 1.6; color: var(--ice); max-width: 50ch; }
.product .meta .features { margin-top: 32px; list-style: none; display: grid; gap: 12px; }
.product .meta .features li {
  display: grid; grid-template-columns: 22px 1fr;
  gap: 14px; align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 15.5px; line-height: 1.55; color: var(--paper);
}
.product .meta .features li:last-child { border-bottom: 1px solid var(--line); }
.product .meta .features li .tick {
  width: 18px; height: 18px; margin-top: 2px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--cyan), var(--electric));
  box-shadow: 0 0 16px rgba(110,231,255,0.45); flex-shrink: 0;
}
.product .meta .features li b { color: var(--paper); font-weight: 600; }
.product .meta .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.product-visual {
  position: relative; aspect-ratio: 4 / 3;
  border: 1px solid var(--line-strong); border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 0% 0%, rgba(50,87,217,0.30), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(110,231,255,0.20), transparent 60%),
    linear-gradient(180deg, #07103a, #050a1f);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 80px rgba(0,0,0,0.55);
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.product-visual::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}

/* AutoDV mock */
.dv-mock { position: absolute; inset: 28px; display: flex; flex-direction: column; gap: 14px; z-index: 1; }
.dv-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: 10px;
  background: rgba(10,20,66,0.7); border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.dv-bar .title { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; color: var(--ice); letter-spacing: 0.06em; }
.dv-bar .dots { display: flex; gap: 6px; }
.dv-bar .dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dv-bar .dots span.live { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.dv-grid { flex: 1; display: grid; grid-template-columns: 1fr 1.3fr; gap: 14px; }
.dv-side {
  background: rgba(10,20,66,0.7); border: 1px solid var(--line);
  border-radius: 10px; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.dv-side .row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 6px;
  font-family: var(--mono); font-size: 11px; color: var(--mist);
  background: rgba(255,255,255,0.02); border: 1px solid transparent;
}
.dv-side .row .ic { width: 14px; height: 14px; border-radius: 3px; background: linear-gradient(135deg, var(--electric), var(--navy-mid)); }
.dv-side .row.active {
  background: linear-gradient(135deg, rgba(93,138,255,0.18), rgba(110,231,255,0.06));
  border-color: rgba(110,231,255,0.4); color: var(--paper);
}
.dv-canvas {
  position: relative;
  background: rgba(3,6,26,0.6); border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden;
}
.dv-canvas svg { width: 100%; height: 100%; }

/* Explorer mock */
.ex-mock { position: absolute; inset: 28px; display: flex; flex-direction: column; gap: 14px; z-index: 1; }
.ex-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px; background: rgba(10,20,66,0.7);
  border: 1px solid var(--line); border-radius: 10px;
}
.ex-bar .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }
.ex-bar .crumb { color: var(--mist); font-family: var(--mono); font-size: 11px; }
.ex-bar .crumb .sep { color: var(--mist-low); margin: 0 8px; }
.ex-body { flex: 1; display: grid; grid-template-rows: 1.4fr 1fr; gap: 14px; }
.ex-chart {
  position: relative;
  background: rgba(3,6,26,0.6); border: 1px solid var(--line);
  border-radius: 10px; padding: 18px; overflow: hidden;
}
.ex-chart .ttl { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--mist); letter-spacing: 0.12em; text-transform: uppercase; }
.ex-chart svg { position: absolute; inset: 36px 18px 18px; width: calc(100% - 36px); height: calc(100% - 54px); }
.ex-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ex-stat { background: rgba(10,20,66,0.7); border: 1px solid var(--line); border-radius: 10px; padding: 14px; }
.ex-stat .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist-low); }
.ex-stat .val { margin-top: 8px; font-family: var(--serif); font-size: 28px; line-height: 1; color: var(--paper); letter-spacing: -0.02em; }
.ex-stat .delta { margin-top: 4px; font-family: var(--mono); font-size: 11px; color: var(--cyan); }

/* services */
.services-list { display: grid; grid-template-columns: 1fr; }
.svc {
  display: grid; grid-template-columns: 80px 1fr 1.4fr auto;
  gap: 40px; padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  transition: background .4s ease, padding .4s ease;
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc:hover { background: linear-gradient(90deg, rgba(29,52,150,0.18), transparent 60%); padding-left: 16px; }
.svc .num { font-family: var(--mono); font-size: 13px; color: var(--cyan); letter-spacing: 0.18em; }
.svc .ttl { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px); line-height: 1.05; color: var(--paper); letter-spacing: -0.02em; }
.svc .ttl .em { font-style: italic; color: var(--ice); }
.svc .desc { color: var(--ice); font-size: 15px; line-height: 1.6; }
.svc .arr {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all .4s cubic-bezier(.2,.7,.2,1);
}
.svc:hover .arr {
  background: var(--cyan); border-color: var(--cyan);
  color: var(--abyss); transform: rotate(-45deg);
  box-shadow: 0 0 22px rgba(110,231,255,0.45);
}

/* metrics — gradient stays inside the section so it doesn't bleed into neighbors */
.metrics-section {
  margin: 60px 0;
  padding: 120px 0;
  background:
    radial-gradient(60% 70% at 18% 50%, rgba(29,52,150,0.32), transparent 70%),
    radial-gradient(60% 70% at 82% 50%, rgba(50,87,217,0.22), transparent 70%);
  border-radius: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, black 12%, black 88%, transparent 100%);
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
}
.metric { background: rgba(3,6,26,0.5); padding: 50px 32px; display: grid; gap: 18px; }
.metric .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist); }
.metric .big {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(60px, 6vw, 96px); line-height: 0.95;
  letter-spacing: -0.04em; color: var(--paper);
}
.metric .big .em { font-style: italic; background: linear-gradient(135deg, var(--cyan), var(--electric)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric .big .unit { font-size: 0.36em; letter-spacing: -0.01em; color: var(--mist); font-style: normal; margin-left: 4px; }
.metric .desc { color: var(--ice); font-size: 14px; line-height: 1.6; max-width: 34ch; }

/* leadership */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.person {
  position: relative;
  border: 1px solid var(--line); border-radius: 16px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(10,20,66,0.55), rgba(3,6,26,0.65));
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .5s ease;
}
.person:hover { transform: translateY(-6px); border-color: rgba(110,231,255,0.4); }
.person::before {
  content: ""; position: absolute; inset: -1px;
  background: linear-gradient(135deg, transparent 40%, rgba(110,231,255,0.20), transparent 70%);
  opacity: 0; transition: opacity .5s ease;
  pointer-events: none; border-radius: inherit;
}
.person:hover::before { opacity: 1; }
.person .portrait {
  aspect-ratio: 4 / 5; border-radius: 12px;
  background:
    radial-gradient(circle at 50% 35%, rgba(110,231,255,0.35), transparent 65%),
    radial-gradient(circle at 70% 85%, rgba(50,87,217,0.30), transparent 60%),
    linear-gradient(180deg, #0a1442, #03061a);
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
}
.person .portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), opacity .5s ease;
  z-index: 0;
  transform: scale(1.02);
  will-change: transform;
}
/* corner brackets — four cyan tick marks framing the photo */
.person .portrait::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  var(--cyan) 0, var(--cyan) 14px, transparent 14px) top    left  / 14px 1px no-repeat,
    linear-gradient(to bottom, var(--cyan) 0, var(--cyan) 14px, transparent 14px) top    left  / 1px 14px no-repeat,
    linear-gradient(to left,   var(--cyan) 0, var(--cyan) 14px, transparent 14px) top    right / 14px 1px no-repeat,
    linear-gradient(to bottom, var(--cyan) 0, var(--cyan) 14px, transparent 14px) top    right / 1px 14px no-repeat,
    linear-gradient(to right,  var(--cyan) 0, var(--cyan) 14px, transparent 14px) bottom left  / 14px 1px no-repeat,
    linear-gradient(to top,    var(--cyan) 0, var(--cyan) 14px, transparent 14px) bottom left  / 1px 14px no-repeat,
    linear-gradient(to left,   var(--cyan) 0, var(--cyan) 14px, transparent 14px) bottom right / 14px 1px no-repeat,
    linear-gradient(to top,    var(--cyan) 0, var(--cyan) 14px, transparent 14px) bottom right / 1px 14px no-repeat;
  opacity: .65;
  pointer-events: none;
  z-index: 2;
  transition: opacity .5s ease;
}
.person .portrait .portrait-tag {
  position: absolute;
  left: 10px; bottom: 9px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice);
  padding: 4px 8px;
  border: 1px solid rgba(174,231,255,0.30);
  border-radius: 4px;
  background: rgba(3,6,26,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color .5s ease, color .5s ease;
}
.person:hover .portrait img { transform: scale(1.06); }
.person:hover .portrait::before { opacity: .9; }
.person:hover .portrait .portrait-tag {
  border-color: rgba(110,231,255,0.7);
  color: #eaf6ff;
}
.person .role {
  margin-top: 20px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan);
}
.person .name {
  margin-top: 6px;
  font-family: var(--serif); font-size: 26px; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--paper);
}
.person .bio {
  margin-top: 10px;
  font-size: 13.5px; line-height: 1.55;
  color: var(--ice);
  max-width: 32ch;
}
.person .creds {
  margin-top: 14px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.person .creds span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--mist);
}

/* partners — orbital wheel with the brand at the hub */
.partner-wheel-wrap {
  margin-top: 64px;
  text-align: center;
}
.partner-wheel-wrap .kicker { display: inline-block; margin-bottom: 36px; }

.partner-wheel {
  --radius: 220px;
  --card-w: 168px;
  --card-h: 62px;
  --hub: 110px;
  position: relative;
  width: calc(var(--radius) * 2 + var(--card-w));
  height: calc(var(--radius) * 2 + var(--card-h));
  margin: 0 auto;
}

/* decorative rings — concentric dashed orbits at the partner radius */
.partner-wheel .wheel-rings {
  position: absolute;
  top: 50%; left: 50%;
  width: calc(var(--radius) * 2);
  height: calc(var(--radius) * 2);
  margin: calc(var(--radius) * -1);
  pointer-events: none;
}
.partner-wheel .wheel-rings::before,
.partner-wheel .wheel-rings::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(110,231,255,0.18);
}
.partner-wheel .wheel-rings::after {
  inset: 38px;
  border-color: rgba(110,231,255,0.10);
  border-style: dotted;
}
.partner-wheel .wheel-spokes {
  position: absolute;
  top: 50%; left: 50%;
  width: calc(var(--radius) * 2);
  height: calc(var(--radius) * 2);
  margin: calc(var(--radius) * -1);
  pointer-events: none;
  opacity: 0.40;
  transform-origin: 50% 50%;
  will-change: transform;
}
.partner-wheel .wheel-spokes svg { width: 100%; height: 100%; display: block; }

/* spotlight at top — illuminates whichever partner orbits through */
.partner-wheel .wheel-spotlight {
  position: absolute;
  top: 0; left: 50%;
  width: calc(var(--card-w) * 1.4);
  height: calc(var(--card-h) * 2);
  margin-left: calc(var(--card-w) * -0.7);
  background: radial-gradient(ellipse 60% 55% at 50% 65%,
    rgba(110,231,255,0.22),
    rgba(93,138,255,0.10) 50%,
    transparent 75%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

/* central hub — brand on the axle */
.partner-wheel .wheel-hub {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--hub); height: var(--hub);
  margin: calc(var(--hub) / -2);
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #efeadd 100%);
  display: grid; place-items: center;
  box-shadow:
    0 14px 36px rgba(0,0,0,0.50),
    0 0 70px rgba(110,231,255,0.20),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -2px 0 rgba(0,0,0,0.06);
  z-index: 3;
}
.partner-wheel .wheel-hub::before {
  content: ""; position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(110,231,255,0.30);
  animation: hub-pulse 3s ease-in-out infinite;
}
.partner-wheel .wheel-hub img { width: calc(var(--hub) - 38px); height: auto; display: block; }
@keyframes hub-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%      { transform: scale(1.08); opacity: 0.15; }
}
@keyframes hub-spin { to { transform: rotate(360deg); } }

/* each partner rides in a pod (zero-size positional anchor) */
.partner-pod {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  z-index: 2;
  will-change: transform;
}
.partner-pod .partner {
  position: absolute;
  width: var(--card-w); height: var(--card-h);
  top: calc(var(--card-h) / -2);
  left: calc(var(--card-w) / -2);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(10,20,66,0.55), rgba(3,6,26,0.65));
  color: var(--mist);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    color .5s ease,
    border-color .5s ease,
    background .5s ease,
    box-shadow .5s ease,
    transform .5s cubic-bezier(.2,.7,.2,1);
}
.partner-pod .partner svg {
  width: 100%; height: auto;
  max-height: calc(var(--card-h) - 24px);
  display: block;
  fill: currentColor;
  overflow: visible;
}
.partner-pod .partner:hover,
.partner-pod .partner.lit {
  color: var(--cyan);
  border-color: rgba(110,231,255,0.55);
  background: linear-gradient(180deg, rgba(29,52,150,0.65), rgba(10,20,66,0.75));
  box-shadow:
    0 0 36px rgba(110,231,255,0.32),
    inset 0 0 22px rgba(110,231,255,0.10);
  transform: scale(1.04);
}

@media (max-width: 1100px) {
  .partner-wheel { --radius: 180px; --card-w: 152px; --card-h: 58px; --hub: 96px; }
}
@media (max-width: 768px) {
  .partner-wheel { --radius: 140px; --card-w: 128px; --card-h: 52px; --hub: 82px; }
}
@media (max-width: 480px) {
  .partner-wheel { --radius: 100px; --card-w: 108px; --card-h: 46px; --hub: 70px; }
  .partner-pod .partner svg { max-height: 22px; }
}
@media (max-width: 360px) {
  .partner-wheel { --radius: 86px; --card-w: 96px; --card-h: 42px; --hub: 62px; }
  .partner-pod .partner svg { max-height: 18px; }
}

/* timeline */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before {
  content: ""; position: absolute;
  left: 180px; top: 24px; bottom: 24px; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong) 10%, var(--line-strong) 90%, transparent);
}
.timeline-item {
  display: grid; grid-template-columns: 180px 60px 1fr;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item .date {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan); padding-top: 6px;
}
.timeline-item .mark { position: relative; }
.timeline-item .mark::before {
  content: ""; position: absolute;
  left: -5px; top: 8px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 16px rgba(110,231,255,0.65), 0 0 0 4px rgba(3,6,26,1);
}
.timeline-item .content h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 26px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--paper);
}
.timeline-item .content p { margin-top: 10px; color: var(--ice); font-size: 15px; line-height: 1.6; max-width: 62ch; }

/* contact grid */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  padding: 36px;
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, rgba(10,20,66,0.55), rgba(3,6,26,0.65));
}
.contact-card .lbl {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan);
}
.contact-card h3 {
  margin-top: 18px;
  font-family: var(--serif); font-weight: 400;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--paper);
}
.contact-card p, .contact-card address {
  margin-top: 14px;
  font-style: normal;
  color: var(--ice); font-size: 15.5px; line-height: 1.7;
}
.contact-card a { color: var(--ice); border-bottom: 1px dashed var(--line-strong); transition: color .3s ease, border-color .3s ease; }
.contact-card a:hover { color: var(--cyan); border-color: var(--cyan); }
.contact-card .row { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }

/* CTA band */
.cta-band {
  position: relative;
  margin: 40px 0 0;
  padding: 80px 50px;
  border-radius: 20px;
  background:
    radial-gradient(60% 100% at 100% 100%, rgba(110,231,255,0.30), transparent 60%),
    linear-gradient(135deg, #122168 0%, #1d3496 50%, #0a1442 100%);
  border: 1px solid rgba(110,231,255,0.20);
  overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 50px; align-items: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 0% 0%, black, transparent 70%);
          mask-image: radial-gradient(circle at 0% 0%, black, transparent 70%);
}
.cta-band h3 {
  position: relative;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(34px, 4vw, 54px); line-height: 1.04;
  letter-spacing: -0.025em; color: var(--paper);
}
.cta-band h3 .em { font-style: italic; }
.cta-band .right { position: relative; display: grid; gap: 18px; }
.cta-band .right p { color: var(--paper); font-size: 16.5px; line-height: 1.6; max-width: 38ch; }
.cta-band .right .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 60px 0 32px; margin-top: 100px; }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.foot-brand .brand-chip { padding: 7px 14px; border-radius: 11px; }
.foot-brand .brand-chip img { height: 44px; }
.foot-brand p { margin-top: 18px; color: var(--mist); font-size: 13px; line-height: 1.65; max-width: 280px; }
.foot-col h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { color: var(--ice); font-size: 13.5px; transition: color .3s ease; }
.foot-col a:hover { color: var(--cyan); }
.foot-col address { font-style: normal; color: var(--ice); font-size: 13.5px; line-height: 1.75; }
.foot-bottom {
  margin-top: 60px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mist-low);
}

/* reveal — only hide when JS is active so no-JS users still see content */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.js .reveal.show { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* spotlight / magnetic helpers */
.spotlight { position: relative; isolation: isolate; }
.spotlight::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(110,231,255,0.10), transparent 65%);
  opacity: 0; transition: opacity .5s ease; z-index: 0;
}
.spotlight:hover::before { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }
.magnetic { transition: transform .35s cubic-bezier(.2,.7,.2,1); }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; border-radius: 4px; }

/* ─────────────────────────────────────────────────────────────
   Custom cursor — ambient ring that trails the pointer
   ───────────────────────────────────────────────────────────── */
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0;
  transition: opacity .4s ease;
  will-change: transform;
  mix-blend-mode: screen;
}
.cursor-ring.visible { opacity: 1; }
.cursor-ring .ring {
  width: 34px; height: 34px;
  margin: -17px;
  border-radius: 50%;
  border: 1px solid rgba(110,231,255,0.55);
  background: radial-gradient(circle at center, rgba(110,231,255,0.05), transparent 70%);
  transform: scale(0.55);
  transition: transform .28s cubic-bezier(.2,.7,.2,1),
              border-color .25s ease, background .25s ease;
}
.cursor-ring .dot {
  position: absolute; top: 0; left: 0;
  width: 4px; height: 4px;
  margin: -2px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 22px rgba(110,231,255,0.6);
}
.cursor-ring.hover .ring {
  transform: scale(1.3);
  border-color: var(--cyan);
  background: radial-gradient(circle at center, rgba(110,231,255,0.10), transparent 70%);
}
.cursor-ring.click .ring { transform: scale(0.9); border-color: var(--paper); }

/* ambient light that follows the cursor across atmosphere — subtle wash */
.mouse-light {
  position: fixed; top: 0; left: 0;
  width: 720px; height: 720px;
  margin: -360px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(110,231,255,0.07) 0%,
    rgba(93,138,255,0.05) 30%,
    transparent 60%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transform: translate3d(50vw, 50vh, 0);
  transition: opacity 1s ease;
  mix-blend-mode: screen;
}
body.has-mouse .mouse-light { opacity: 1; }

@media (pointer: coarse), (hover: none) {
  .cursor-ring, .mouse-light { display: none; }
}

/* responsive */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .die { max-width: 380px; margin: 0; }
  .hero-readout { grid-template-columns: repeat(2, 1fr); }
  .trio { grid-template-columns: 1fr; }
  .product-teasers { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
  .cta-band { grid-template-columns: 1fr; padding: 50px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; padding-left: 22px; border-left: 1px solid var(--line); margin-left: 6px; }
  .timeline-item .mark { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .svc { grid-template-columns: 40px 1fr; gap: 12px; }
  .svc .desc, .svc .arr { grid-column: 1 / -1; }
  .nav-menu { display: none; }
}
@media (max-width: 600px) {
  /* layout */
  .team-grid { grid-template-columns: 1fr; }
  /* compact 2×2 footer on phones — brand spans top, 4 cols tile below */
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-brand p { margin-top: 12px; font-size: 12.5px; line-height: 1.55; max-width: none; }
  .foot-col h5 { margin-bottom: 12px; font-size: 10px; letter-spacing: 0.18em; }
  .foot-col ul { gap: 8px; }
  .foot-col a, .foot-col address { font-size: 13px; line-height: 1.55; }
  .foot-bottom { margin-top: 36px; padding-top: 18px; gap: 8px; font-size: 10px; }
  .hud { display: none; }

  /* section rhythm — tighter on phones */
  section { padding: 70px 0; }
  .metrics-section { padding: 80px 0; margin: 32px 0; }
  footer { padding: 50px 0 28px; margin-top: 60px; }
  .section-head { margin-bottom: 44px; gap: 18px; }

  /* hero */
  .hero { padding: 130px var(--gutter) 50px; min-height: auto; }
  .hero h1 {
    font-size: clamp(36px, 10vw, 60px);
    line-height: 0.98;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .hero-sub { font-size: 17px; margin-top: 28px; }
  .hero-actions { margin-top: 28px; gap: 10px; }
  .hero-tag { margin-bottom: 24px; padding: 7px 12px 7px 10px; }
  .hero-tag .live, .hero-tag .text { font-size: 10px; }
  .hero-readout { gap: 18px; padding-top: 24px; margin-top: 44px; }
  .readout-item .num { font-size: 30px; }
  .readout-item .num .small { font-size: 14px; }
  .readout-item .label { font-size: 10px; }
  .die { max-width: 320px; margin: 0 auto; }

  /* page hero */
  .page-hero { padding: 130px var(--gutter) 50px; }
  .page-hero h1 {
    font-size: clamp(24px, 6.4vw, 40px);
    line-height: 1.08;
    width: 100%; max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .page-hero .sub { font-size: 16.5px; margin-top: 22px; }
  .section-head h2 {
    font-size: clamp(24px, 6.2vw, 36px);
    line-height: 1.08;
    width: 100%; max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* italic gradient spans — ensure normal inline behaviour so they break at
     word boundaries instead of holding the whole phrase as one chunk */
  .page-hero h1 .em,
  .hero h1 .em,
  .hero h1 .glow,
  .section-head h2 .em,
  .product .meta h3 .em,
  .teaser h3 .em,
  .cta-band h3 .em {
    display: inline;
  }

  /* product */
  .product { gap: 36px; }
  .product .meta h3 { font-size: clamp(30px, 8vw, 40px); }
  .product .meta p.lead { font-size: 16px; }
  .product .meta .features li { padding: 14px 0; font-size: 15px; }
  .product .meta .actions { gap: 10px; }

  /* mock UIs — drop padding so content stays readable */
  .dv-mock, .ex-mock { inset: 16px; gap: 10px; }
  .ex-stats { gap: 10px; }
  .ex-stat { padding: 10px; }
  .ex-stat .val { font-size: 22px; }
  .dv-side .row { font-size: 10px; padding: 6px 8px; }

  /* metrics */
  .metric { padding: 36px 22px; gap: 14px; }
  .metric .big { font-size: clamp(48px, 14vw, 72px); }
  .metric .desc { font-size: 13.5px; }

  /* services */
  .svc { padding: 24px 0; gap: 10px; }
  .svc .num { font-size: 11px; }
  .svc .ttl { font-size: clamp(22px, 6.5vw, 28px); }
  .svc .desc { font-size: 14px; }

  /* timeline */
  .timeline-item { padding: 24px 0 24px 20px; }
  .timeline-item .date { font-size: 11px; }
  .timeline-item .content h4 { font-size: 22px; }
  .timeline-item .content p { font-size: 14px; }

  /* team */
  .person { padding: 20px; }
  .person .name { font-size: 24px; }
  .person .bio { font-size: 13.5px; }

  /* contact */
  .contact-card { padding: 26px; }
  .contact-card h3 { font-size: 26px; }

  /* cta band */
  .cta-band { padding: 44px 22px; gap: 28px; border-radius: 16px; margin: 28px 0 0; }
  .cta-band h3 { font-size: clamp(28px, 7.5vw, 38px); }
  .cta-band .right p { font-size: 15.5px; }
  .cta-band .right .actions { gap: 10px; }

  /* trio cards */
  .trio .card { padding: 28px 22px; }
  .trio .card h3 { font-size: 24px; }
  .trio .card p { font-size: 14px; }

  /* product teasers */
  .teaser { padding: 28px; min-height: 280px; }
  .teaser h3 { font-size: clamp(28px, 8vw, 36px); }
  .teaser p { font-size: 14.5px; }

  /* buttons stay finger-friendly */
  .btn { padding: 13px 18px; font-size: 11.5px; min-height: 42px; }

  /* nav-cta tightening */
  .nav { padding-top: 16px; padding-bottom: 16px; gap: 12px; }
  .nav-cta { gap: 8px; }
  .brand-chip { padding: 4px 8px; }
  .brand-chip img { height: 32px; }
  .foot-brand .brand-chip img { height: 40px; }

  /* keep demo button compact on tiny screens */
  .nav-cta .btn.primary .arrow { display: none; }
  .nav-cta .btn.primary { padding: 11px 14px; font-size: 11px; }
}

@media (max-width: 360px) {
  /* very small phones — keep the demo CTA visible but minimal */
  .nav-cta .btn.primary { padding: 10px 12px; font-size: 10px; letter-spacing: 0.12em; }
  .brand-chip img { height: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .marquee-track { animation: none; }
}

/* ============================================================
   technology.html — three-primitive showcase
   ============================================================ */

.tech-block {
  padding: 88px 0;
  position: relative;
}
.tech-block + .tech-block { border-top: 1px solid rgba(110, 231, 255, 0.08); }

.tech-block .tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.tech-block.flipped .tech-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}
.tech-block.flipped .tech-meta { order: 2; }
.tech-block.flipped .tech-figure { order: 1; }

/* per-accent flourishes — subtle border tints so each tech reads as its own */
.tech-block[data-accent="amber"] .tech-num,
.tech-block[data-accent="amber"] .tech-tag-bracket { color: #ffb45b; }
.tech-block[data-accent="mint"]  .tech-num,
.tech-block[data-accent="mint"]  .tech-tag-bracket { color: #6ee7c9; }

/* number — oversized, watermark-like */
.tech-num {
  font-family: var(--mono);
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--cyan);
  opacity: 0.85;
  margin-bottom: 4px;
}

/* "working title" tag */
.tech-tag {
  display: inline-block;
  margin-bottom: 18px;
}
.tech-tag-bracket {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan);
  opacity: 0.7;
}

/* codename — serif italic, large */
.tech-codename {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin: 0 0 10px;
}
.tech-codename .tech-dot {
  color: var(--cyan);
  font-style: normal;
}
.tech-block[data-accent="amber"] .tech-codename .tech-dot { color: #ffb45b; }
.tech-block[data-accent="mint"]  .tech-codename .tech-dot { color: #6ee7c9; }

.tech-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(110, 231, 255, 0.12);
  max-width: 30ch;
}

.tech-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--paper);
  max-width: 46ch;
  margin: 0 0 28px;
}
.tech-em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cyan);
}
.tech-block[data-accent="amber"] .tech-em { color: #ffb45b; }
.tech-block[data-accent="mint"]  .tech-em { color: #6ee7c9; }

.tech-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 14px;
}
.tech-bullets li {
  position: relative;
  padding-left: 30px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--mist);
}
.tech-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}
.tech-block[data-accent="amber"] .tech-bullets li::before { background: #ffb45b; box-shadow: 0 0 6px #ffb45b; }
.tech-block[data-accent="mint"]  .tech-bullets li::before { background: #6ee7c9; box-shadow: 0 0 6px #6ee7c9; }

/* figure container */
.tech-figure {
  position: relative;
  margin: 0;
  padding: 32px;
  border: 1px solid rgba(110, 231, 255, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(29, 52, 150, 0.28), transparent 70%),
    linear-gradient(180deg, rgba(10, 20, 66, 0.4), rgba(3, 6, 26, 0.55));
  overflow: hidden;
}
.tech-figure::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(110, 231, 255, 0.06);
  border-radius: 12px;
  pointer-events: none;
}
.tech-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* wire draw-on animation for Trace */
.trace-wires .wire {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: traceDraw 1.4s cubic-bezier(.2, .7, .2, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes traceDraw {
  to { stroke-dashoffset: 0; }
}

/* flow line draw-on for Forge (kept subtle; dots do the lifting) */
.forge-flows .flow {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: traceDraw 1.8s cubic-bezier(.2, .7, .2, 1) forwards;
  animation-delay: var(--d, 0s);
}

/* atlas typing indicator */
.atlas-typing circle {
  animation: atlasTyping 1.4s ease-in-out infinite;
}
.atlas-typing circle:nth-child(2) { animation-delay: 0.15s; }
.atlas-typing circle:nth-child(3) { animation-delay: 0.30s; }
@keyframes atlasTyping {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(-3px); opacity: 0.4; }
}

/* ─── Atlas (tech 03) full-width treatment ─── */
.tech-block.atlas { padding: 110px 0 120px; }
.tech-block.atlas .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.atlas-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(110, 231, 255, 0.12);
  margin-bottom: 56px;
}
.atlas-header .tech-num { margin: 0; align-self: end; }
.atlas-header .tech-tag,
.atlas-header .tech-codename,
.atlas-header .tech-role,
.atlas-header .atlas-lede { grid-column: 2; }
.atlas-header .tech-tag { margin-bottom: 12px; }
.atlas-header .tech-codename { margin-bottom: 6px; }
.atlas-header .tech-role { border: none; padding: 0; margin: 0 0 28px; max-width: none; }
.atlas-lede {
  font-size: 22px;
  line-height: 1.5;
  max-width: 60ch;
}

.atlas-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 72px;
}
.atlas-feature {
  padding: 28px 26px;
  border: 1px solid rgba(110, 231, 255, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(10, 20, 66, 0.32), rgba(3, 6, 26, 0.45));
  transition: border-color .3s, transform .3s cubic-bezier(.2, .7, .2, 1);
}
.atlas-feature:hover {
  border-color: rgba(110, 231, 255, 0.45);
  transform: translateY(-3px);
}
.atlas-feature-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.atlas-feature h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.15;
  color: var(--paper);
  margin: 0 0 10px;
}
.atlas-feature p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--mist);
  margin: 0;
}

.atlas-figure {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(110, 231, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(29, 52, 150, 0.35), transparent 70%),
    linear-gradient(180deg, rgba(10, 20, 66, 0.45), rgba(3, 6, 26, 0.65));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.atlas-figure .tech-svg { padding: 0; }

/* ─── "how they fit" section ─── */
.tech-stack-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(29, 52, 150, 0.18), transparent 60%);
  border-top: 1px solid rgba(110, 231, 255, 0.08);
}
.tech-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-stack-copy p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--paper);
  max-width: 50ch;
  margin: 0 0 18px;
}
.tech-stack-copy p.muted {
  font-size: 15px;
  color: var(--mist);
}
.tech-stack-diagram svg {
  width: 100%; max-width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ─── responsive: technology page ─── */
@media (max-width: 1100px) {
  .tech-block .tech-grid,
  .tech-block.flipped .tech-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .tech-block.flipped .tech-meta { order: 1; }
  .tech-block.flipped .tech-figure { order: 2; }

  .atlas-header { grid-template-columns: 1fr; gap: 24px; }
  .atlas-header .tech-tag,
  .atlas-header .tech-codename,
  .atlas-header .tech-role,
  .atlas-header .atlas-lede { grid-column: 1; }

  .atlas-features { grid-template-columns: repeat(2, 1fr); }
  .tech-stack-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .tech-block { padding: 64px 0; }
  .tech-block.atlas { padding: 80px 0; }
  .atlas-features { grid-template-columns: 1fr; }
  .tech-figure { padding: 18px; }
  .atlas-lede { font-size: 18px; }
}

/* ─── success-stories: provenance panel ─── */
.provenance {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  padding-top: 8px;
}
.prov-meta { display: flex; flex-direction: column; gap: 24px; }
.prov-list {
  margin: 0; padding: 0;
  border-top: 1px solid rgba(110,231,255,0.18);
}
.prov-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(110,231,255,0.10);
  align-items: start;
}
.prov-row dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0;
  padding-top: 3px;
}
.prov-row dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ice);
}
.prov-head h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 14ch;
  margin: 0;
}
.prov-head h2 .em {
  font-style: italic;
  background: linear-gradient(135deg, var(--ice), var(--cyan) 60%, var(--electric));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.prov-head p {
  margin: 32px 0 0;
  color: var(--mist);
  font-size: 16px;
  line-height: 1.65;
  max-width: 44ch;
}
@media (max-width: 900px) {
  .provenance { grid-template-columns: 1fr; gap: 40px; }
  .prov-head h2 { max-width: none; }
}
