/* ============================================================
   NUVALABS — 2026 rebuild ("Cool daylight")
   A light, technical design system: cool paper, near-black ink,
   one signal-orange accent, hairline rules, expanded grotesk
   display type, mono instrumentation.
   Shared by Home.dc.html and Developers.dc.html.
   Zero WebGL, zero canvas — every effect is CSS/SVG/DOM.
   ============================================================ */

:root {
  --paper: #f2f3f0;
  --card: #ffffff;
  --ink: #101418;
  --ink2: #57606a;
  --line: rgba(16, 20, 24, 0.14);
  --line-soft: rgba(16, 20, 24, 0.08);
  --acc: #ff4d00;
  --acc-deep: #d63e00;
  --dark: #0e1216;
  --dark-2: #161c22;
  --paper-on-dark: #eef0ec;
  --line-dark: rgba(238, 240, 236, 0.14);
  --live: #1d9d63;
  --soon: #c98a04;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --sans: "Archivo", system-ui, sans-serif;
  --disp: "Archivo", system-ui, sans-serif;
  --wrap: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--acc); color: #fff; }
img, svg { display: block; }
a { color: inherit; }

/* ---------- utilities ---------- */
.wrap { width: min(var(--wrap), 100% - 48px); margin-inline: auto; }
.mono { font-family: var(--mono); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink2);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--acc); flex: none; }

.h-hero, .h-xl, .h-lg {
  font-family: var(--disp);
  font-stretch: 118%;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.98;
}
.h-hero { font-size: clamp(40px, 5.6vw, 78px); }
.h-xl { font-size: clamp(34px, 4.6vw, 64px); }
.h-lg { font-size: clamp(26px, 3.2vw, 42px); }
.h-hero .acc, .h-xl .acc { color: var(--acc); }
.h-hero .ol, .h-xl .ol {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.lead { font-size: clamp(16px, 1.4vw, 18.5px); line-height: 1.62; color: var(--ink2); max-width: 58ch; }
.lead b { color: var(--ink); font-weight: 600; }

/* buttons — pill, like the sibling page, but black-forward */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none;
  padding: 15px 28px; border-radius: 999px;
  border: 1.5px solid var(--ink); color: var(--ink);
  background: transparent; cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn.solid { background: var(--ink); color: var(--paper); }
.btn.solid:hover { background: var(--acc); border-color: var(--acc); color: #fff; }
.btn.sm { padding: 11px 20px; font-size: 11px; }
.btn .arr { font-family: var(--sans); font-weight: 400; }
.btn.inv { border-color: rgba(238,240,236,.4); color: var(--paper-on-dark); }
.btn.inv:hover { background: var(--paper-on-dark); color: var(--dark); }
.btn.inv.solid { background: var(--paper-on-dark); color: var(--dark); border-color: var(--paper-on-dark); }
.btn.inv.solid:hover { background: var(--acc); border-color: var(--acc); color: #fff; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink2); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
}

/* reveal-on-scroll (class .in added by IO) */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease var(--d, 0s), transform 0.7s var(--ease) var(--d, 0s); }
.rv.in { opacity: 1; transform: none; }

/* static grain — one SVG noise tile, no animation */
.grain {
  position: fixed; inset: 0; z-index: 120; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* faint blueprint grid, fades toward the bottom of the hero */
.gridbg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.6) 45%, transparent 92%);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.6) 45%, transparent 92%);
}

/* concentric-square ghost marks — the nesting motif, near-invisible */
.marks { position: absolute; pointer-events: none; }
.marks i {
  position: absolute; border: 1.5px solid rgba(16, 20, 24, 0.07); border-radius: 18%;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(242, 243, 240, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-in {
  width: min(var(--wrap), 100% - 48px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.logo-word { font-family: var(--disp); font-stretch: 118%; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.logo-word em { font-style: normal; color: var(--acc-deep); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nl {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; text-decoration: none; color: var(--ink2);
  transition: color 0.2s;
}
.nl sup { color: var(--acc-deep); font-size: 8.5px; margin-right: 5px; }
.nl:hover, .nl.act { color: var(--ink); }
.progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%; background: var(--acc); transform: scaleX(0); transform-origin: 0 50%; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: clip;
  padding-top: 72px;
  display: flex; flex-direction: column;
}
.hero-in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 4vw, 64px); align-items: center;
  padding-top: clamp(48px, 7vh, 84px);
  padding-bottom: clamp(40px, 6vh, 72px);
  min-height: calc(100svh - 72px - 54px);
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* proof strip */
.proof {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.proof div {
  padding: 20px 24px 22px;
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 3px;
}
.proof div:first-child { border-left: 0; padding-left: 0; }
.proof b { font-family: var(--disp); font-stretch: 118%; font-weight: 800; font-size: 21px; letter-spacing: -0.01em; }
.proof b i { font-style: normal; color: var(--acc-deep); }
.proof span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink2); }

/* ============ RESKIN WINDOW ============ */
.stage { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.rw-float { animation: rwfloat 7s ease-in-out infinite; perspective: 1100px; }
@keyframes rwfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.rw-tilt { transition: transform 0.45s var(--ease); transform-style: preserve-3d; will-change: transform; }

.rw {
  --rw: #2563eb;
  width: min(460px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 1px 0 rgba(16,20,24,.04), 0 24px 60px -18px rgba(16, 20, 24, 0.25);
  overflow: hidden;
}
.rw-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-bottom: 1px solid var(--line-soft);
}
.rw-dots { display: inline-flex; gap: 6px; }
.rw-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(16,20,24,.14); }
.rw-url {
  flex: 1; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 11px; color: var(--ink2);
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 5px 13px; min-width: 0;
}
.rw-url svg { stroke: var(--ink2); flex: none; }
.rw-url b { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rw-body { display: grid; grid-template-columns: 58px 1fr; min-height: 300px; }
.rw-side {
  border-right: 1px solid var(--line-soft); padding: 14px 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.rw-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--rw); transition: background 0.5s; display: grid; place-items: center; }
.rw-logo::after { content: ""; width: 10px; height: 10px; border-radius: 3px; background: rgba(255,255,255,.85); }
.rw-nav { width: 26px; height: 8px; border-radius: 4px; background: rgba(16,20,24,.1); transition: background 0.4s; }
.rw-nav.on { background: var(--rw); }
.rw-main { padding: 18px 20px 16px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.rw-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.rw-brand { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; color: var(--rw); transition: color 0.5s; }
.rw-product { font-family: var(--disp); font-stretch: 112%; font-weight: 800; font-size: 26px; letter-spacing: -0.01em; line-height: 1.15; }
.rw-chip {
  font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
  color: var(--ink2); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.rw-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.rw-stat { border: 1px solid var(--line-soft); border-radius: 10px; padding: 9px 11px; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.rw-stat b { font-family: var(--disp); font-weight: 800; font-size: 15px; letter-spacing: -0.01em; white-space: nowrap; }
.rw-stat span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rw-chart { display: flex; align-items: flex-end; gap: 6px; height: 72px; padding: 10px 12px 0; border: 1px solid var(--line-soft); border-radius: 10px; }
.rw-chart i { flex: 1; border-radius: 3px 3px 0 0; background: var(--rw); opacity: 0.85; transition: height 0.6s var(--ease), background 0.5s; }
.rw-chart i:last-child { opacity: 1; }
.rw-rows { display: flex; flex-direction: column; gap: 8px; }
.rw-row { display: flex; align-items: center; gap: 10px; }
.rw-row i { width: 20px; height: 20px; border-radius: 6px; background: rgba(16,20,24,.08); flex: none; }
.rw-row b { height: 7px; border-radius: 4px; background: rgba(16,20,24,.08); }
.rw-row b:nth-child(2) { width: 46%; }
.rw-row b:nth-child(3) { width: 28%; }
.rw-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 18px; border-top: 1px solid var(--line-soft);
}
.rw-note { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink2); }
.rw-note em { font-style: normal; color: var(--acc-deep); }
.rw-pg { display: inline-flex; gap: 5px; }
.rw-pg i { width: 5px; height: 5px; border-radius: 50%; background: rgba(16,20,24,.16); transition: background 0.3s; }
.rw-pg i.on { background: var(--rw); }
.rw-caption { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink2); text-align: center; }
.rw-caption em { font-style: normal; color: var(--ink); }

/* ============ TICKER ============ */
.ticker {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  overflow: clip; padding: 15px 0;
  background: var(--paper);
}
.ticker-track { display: flex; gap: 44px; width: max-content; animation: tick 36s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { to { transform: translate3d(-50%, 0, 0); } }
.tk {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; color: var(--ink2);
  text-decoration: none; white-space: nowrap;
}
.tk::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--live); }
.tk:hover { color: var(--ink); }

/* ============ SECTIONS ============ */
.sec { position: relative; padding: clamp(84px, 11vw, 150px) 0; }
.sec-line { border-top: 1px solid var(--line); }
.sec-head { display: flex; flex-direction: column; gap: 20px; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head .split { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

/* ============ THE DEAL ============ */
.deal { border-top: 1px solid var(--line); }
.deal-row {
  display: grid; grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px; align-items: baseline;
  padding: 34px 0; border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding 0.3s var(--ease);
}
.deal-row:hover { background: var(--card); padding-left: 18px; padding-right: 18px; }
.deal-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--acc-deep); }
.deal-title { font-family: var(--disp); font-stretch: 112%; font-weight: 800; font-size: clamp(21px, 2.4vw, 30px); text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.05; }
.deal-desc { color: var(--ink2); font-size: 15.5px; max-width: 52ch; }
.deal-desc b { color: var(--ink); font-weight: 600; }
.deal-desc .mono { font-size: 13.5px; color: var(--ink); background: rgba(16,20,24,.05); padding: 2px 7px; border-radius: 6px; }

/* ============ PRODUCTS ============ */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter {
  font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink2); background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.22s var(--ease);
}
.filter .cnt { font-size: 9.5px; opacity: 0.65; }
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.on { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.prod {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 20px 20px 18px; text-decoration: none; min-height: 178px;
  transition: transform 0.28s var(--ease), border-color 0.28s, box-shadow 0.28s;
}
a.prod:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 0 16px 34px -18px rgba(16,20,24,.3); }
.prod.hidden { display: none; }
.prod-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.prod-status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink2); }
.prod-status i { width: 7px; height: 7px; border-radius: 50%; }
.prod.live .prod-status i { background: var(--live); box-shadow: 0 0 0 3px rgba(29,157,99,.16); }
.prod.soon .prod-status i { background: var(--soon); box-shadow: 0 0 0 3px rgba(201,138,4,.16); }
.prod.dev .prod-status i { background: #8a93ad; box-shadow: 0 0 0 3px rgba(138,147,173,.18); }
.prod.catalog .prod-status i { background: transparent; border: 1.5px solid var(--ink2); }
.prod-url { font-family: var(--mono); font-size: 9.5px; color: var(--ink2); opacity: 0.8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod-name { font-family: var(--disp); font-stretch: 110%; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; text-transform: uppercase; display: flex; align-items: baseline; gap: 9px; }
.prod-name .idx { font-family: var(--mono); font-stretch: 100%; font-size: 10px; font-weight: 500; color: var(--acc-deep); letter-spacing: 0; }
.prod-line { font-size: 13.5px; line-height: 1.55; color: var(--ink2); flex: 1; }
.prod-link { font-family: var(--mono); font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); display: inline-flex; gap: 7px; }
.prod.live .prod-link, .prod.catalog .prod-link { color: var(--acc-deep); }

/* ============ THE DOLL (dark) ============ */
.dollsec { background: var(--dark); color: var(--paper-on-dark); }
.dollsec .eyebrow { color: rgba(238,240,236,.55); }
.dollsec .lead { color: rgba(238,240,236,.62); }
.dollsec .lead b { color: var(--paper-on-dark); }
.doll-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(36px, 5vw, 80px); align-items: center; }

.doll { position: relative; aspect-ratio: 1 / 0.92; }
.doll-layer {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.86);
  opacity: 0;
  border-radius: 16px;
  transition: transform 0.9s var(--ease) var(--dd, 0s), opacity 0.9s ease var(--dd, 0s);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.in .doll-layer { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.doll-l1 { width: 96%; height: 88%; background: var(--paper-on-dark); color: var(--ink); z-index: 1; box-shadow: 0 30px 80px -20px rgba(0,0,0,.6); }
.doll-l2 { width: 70%; height: 62%; background: var(--acc); color: #fff; z-index: 2; box-shadow: 0 24px 60px -16px rgba(0,0,0,.55); }
.doll-l3 { width: 44%; height: 38%; background: var(--dark-2); color: var(--paper-on-dark); z-index: 3; border: 1px solid var(--line-dark); box-shadow: 0 18px 44px -12px rgba(0,0,0,.7); }
.doll-bar { display: flex; align-items: center; gap: 8px; padding: 9px 13px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.06em; border-bottom: 1px solid rgba(0,0,0,.08); white-space: nowrap; overflow: hidden; }
.doll-l2 .doll-bar { border-bottom-color: rgba(255,255,255,.22); }
.doll-l3 .doll-bar { border-bottom-color: var(--line-dark); }
.doll-bar i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.4; flex: none; }
.doll-fill { flex: 1; display: grid; place-items: center; padding: 10px; }
.doll-skel { width: 78%; display: flex; flex-direction: column; gap: 7px; }
.doll-skel b { height: 7px; border-radius: 4px; background: currentColor; opacity: 0.16; }
.doll-skel b:first-child { width: 60%; opacity: 0.3; }
.doll-skel b:nth-child(2) { width: 90%; }
.doll-skel b:nth-child(3) { width: 74%; }
.doll-core { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.doll-core svg { filter: drop-shadow(0 0 14px rgba(255,77,0,.45)); }
.doll-core span { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(238,240,236,.6); }
.doll-tag {
  position: absolute; z-index: 4;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 0.7s ease var(--dd, 0s);
}
.in .doll-tag { opacity: 1; }
.doll-tag.t1 { top: 1%; left: 2%; background: rgba(238,240,236,.12); color: var(--paper-on-dark); border: 1px solid var(--line-dark); }
.doll-tag.t2 { top: 16%; right: 6%; background: rgba(255,77,0,.16); color: #ffb590; border: 1px solid rgba(255,77,0,.4); }
.doll-tag.t3 { bottom: 24%; left: 14%; background: rgba(22,28,34,.7); color: rgba(238,240,236,.85); border: 1px solid var(--line-dark); }

.doll-steps { display: flex; flex-direction: column; }
.dstep { display: grid; grid-template-columns: 64px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line-dark); }
.dstep:last-child { border-bottom: 1px solid var(--line-dark); }
.dstep-num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--acc); padding-top: 4px; }
.dstep h3 { font-family: var(--disp); font-stretch: 112%; font-weight: 800; font-size: clamp(19px, 2vw, 25px); text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 7px; }
.dstep p { color: rgba(238,240,236,.6); font-size: 15px; max-width: 46ch; }
.dstep p b { color: var(--paper-on-dark); font-weight: 600; }

/* ============ PATH (bespoke) ============ */
.path { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--card); }
.path-cell { padding: 34px 30px 38px; display: flex; flex-direction: column; gap: 12px; border-left: 1px solid var(--line); position: relative; }
.path-cell:first-child { border-left: 0; }
.path-cell .stage { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink2); }
.path-cell h3 { font-family: var(--disp); font-stretch: 112%; font-weight: 800; font-size: 24px; text-transform: uppercase; letter-spacing: -0.01em; }
.path-cell p { font-size: 14.5px; color: var(--ink2); }
.path-cell.hot { background: var(--ink); color: var(--paper); }
.path-cell.hot .stage { color: var(--acc); }
.path-cell.hot p { color: rgba(242,243,240,.65); }
.path-cell .arr-big { position: absolute; top: 30px; right: 26px; font-size: 20px; color: var(--ink2); }
.path-cell.hot .arr-big { color: var(--acc); }

/* ============ DEVBAND ============ */
.devband {
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: 24px; background: var(--card);
  padding: clamp(32px, 4.5vw, 56px);
}
.devband-copy { display: flex; flex-direction: column; gap: 18px; max-width: 640px; }
.dev-tags { display: flex; gap: 10px; flex-wrap: wrap; }

/* ============ CTA ============ */
.cta { text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mail-giant {
  font-family: var(--disp); font-stretch: 116%; font-weight: 800;
  font-size: clamp(24px, 4.2vw, 52px); letter-spacing: -0.015em; text-decoration: none;
  color: var(--ink); position: relative; padding-bottom: 6px;
}
.mail-giant::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--acc); transform: scaleX(0.22); transform-origin: 0 50%; transition: transform 0.45s var(--ease); }
.mail-giant:hover::after { transform: scaleX(1); }

/* ============ FOOTER ============ */
.ftr { background: var(--dark); color: var(--paper-on-dark); position: relative; overflow: clip; }
.ftr-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding: clamp(56px, 7vw, 88px) 0 48px; }
.ftr-brand { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.ftr-brand p { color: rgba(238,240,236,.55); font-size: 14.5px; max-width: 34ch; }
.ftr .logo-word { color: var(--paper-on-dark); }
.ftr .logo-word em { color: var(--acc); }
.ftr-status { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: rgba(238,240,236,.6); }
.ftr-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 4px rgba(29,157,99,.18); }
.ftr-h { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(238,240,236,.45); margin-bottom: 18px; }
.ftr-l { display: block; font-size: 14.5px; color: rgba(238,240,236,.75); text-decoration: none; padding: 4px 0; transition: color 0.2s, transform 0.2s; }
.ftr-l:hover { color: #fff; transform: translateX(4px); }
.ftr-word {
  font-family: var(--disp); font-stretch: 125%; font-weight: 900; text-transform: uppercase;
  font-size: clamp(72px, 14.5vw, 218px); line-height: 0.82; letter-spacing: -0.02em;
  text-align: center; color: transparent; -webkit-text-stroke: 1px rgba(238,240,236,.16);
  user-select: none; pointer-events: none; margin-top: 8px; transform: translateY(0.12em);
}
.ftr-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 20px 0 26px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(238,240,236,.45);
}
.ftr-bottom-line { border-top: 1px solid var(--line-dark); }

/* ============ DEVELOPERS PAGE ============ */
.dev-hero {
  position: relative; overflow: clip;
  padding-top: 72px;
  display: flex; align-items: flex-end;
  min-height: 78svh;
}
.dev-hero .wrap { position: relative; z-index: 2; padding: clamp(80px, 12vh, 130px) 0 clamp(56px, 8vh, 90px); display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 30px 28px 34px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.28s var(--ease), border-color 0.28s;
}
.step:hover { transform: translateY(-4px); border-color: var(--ink); }
.step .big { font-family: var(--disp); font-stretch: 120%; font-weight: 900; font-size: 44px; line-height: 1; color: transparent; -webkit-text-stroke: 1.3px var(--acc-deep); }
.step h3 { font-family: var(--disp); font-stretch: 110%; font-weight: 800; font-size: 20px; text-transform: uppercase; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; color: var(--ink2); }

.campus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.campus {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.28s var(--ease), border-color 0.28s;
}
.campus:hover { transform: translateY(-4px); border-color: var(--ink); }
.campus.open { border-style: dashed; background: transparent; justify-content: center; gap: 14px; }
.campus.open:hover { border-color: var(--acc); }
.campus-code { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--acc-deep); }
.campus h3 { font-family: var(--disp); font-stretch: 115%; font-weight: 850; font-size: 26px; text-transform: uppercase; letter-spacing: -0.01em; }
.campus-sub { font-size: 13px; color: var(--ink2); }
.campus-rule { border: 0; border-top: 1px solid var(--line-soft); margin: 6px 0; }
.student { display: flex; align-items: center; gap: 12px; padding: 5px 0; }
.avatar {
  width: 34px; height: 34px; border-radius: 10px; flex: none;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  background: var(--ink); color: var(--paper);
}
.student b { display: block; font-size: 14px; font-weight: 600; }
.student span { font-family: var(--mono); font-size: 10.5px; color: var(--ink2); letter-spacing: 0.04em; }
.campus .small { font-size: 14px; color: var(--ink2); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .campus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-links .nl { display: none; }
  .hero-in { grid-template-columns: 1fr; min-height: 0; padding-top: 56px; gap: 48px; }
  .stage { order: 2; }
  .proof { grid-template-columns: repeat(2, 1fr); }
  .proof div:nth-child(odd) { border-left: 0; padding-left: 0; }
  .proof div { padding-top: 16px; padding-bottom: 16px; }
  .doll-grid { grid-template-columns: 1fr; }
  .doll { max-width: 520px; margin-inline: auto; width: 100%; }
  .deal-row { grid-template-columns: 54px 1fr; }
  .deal-desc { grid-column: 2; }
  .steps, .path { grid-template-columns: 1fr; }
  .path-cell { border-left: 0; border-top: 1px solid var(--line); }
  .path-cell:first-child { border-top: 0; }
  .ftr-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .prod-grid { grid-template-columns: 1fr; }
  .campus-grid { grid-template-columns: 1fr; }
  .h-hero { font-size: clamp(38px, 11.5vw, 60px); }
  .hero-cta .btn { flex: 1; justify-content: center; text-align: center; }
  .hero-cta .btn .arr { display: none; }
  .ftr-grid { grid-template-columns: 1fr; gap: 32px; }
  .devband { flex-direction: column; align-items: flex-start; }
  .doll-tag.t2 { right: 0; }
  .doll-tag.t3 { left: 4%; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv, .doll-tag { opacity: 1 !important; transform: none !important; transition: none !important; }
  .doll-layer { opacity: 1 !important; transform: translate(-50%, -50%) !important; transition: none !important; }
  .rw-float { animation: none; }
  .rw-tilt { transform: none !important; }
  .ticker-track { animation: none; flex-wrap: wrap; width: 100%; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
