/* Actuator Labs — Design System v4 · 8090-inspired */

/* ═══ TOKENS ═══ */
:root {
  --bg:         #1a1a1a;
  --bg-elev:    #222222;
  --bg-card:    #2a2a2a;
  --bg-glass:   rgba(42,42,42,0.5);
  --fg:         #f2f0ed;
  --fg-dim:     rgba(242,240,237,0.65);
  --fg-mute:    rgba(242,240,237,0.35);
  --fg-faint:   rgba(242,240,237,0.12);
  --fg-ghost:   rgba(242,240,237,0.05);
  --green:      #6ddd45;
  --green-lt:   #88f560;
  --green-bg:   rgba(109,221,69,0.08);
  --green-glow: rgba(109,221,69,0.12);
  --soil:       #c8964a;
  --rust:       #d97757;
  --slate:      #45556c;

  --text-xs:    10px;
  --text-sm:    12px;
  --text-base:  14px;
  --text-md:    16px;
  --text-lg:    18px;
  --text-xl:    20px;
  --text-2xl:   28px;
  --text-3xl:   38px;

  --sp-1:  4px; --sp-2:  8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;
  --sp-30: 120px;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0, 1);
  --dur-fast:   0.2s;
  --dur-base:   0.4s;
  --dur-slow:   0.85s;

  --max-w:      1140px;
  --gutter:     clamp(24px, 5vw, 56px);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle gradient background for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background: linear-gradient(176deg, #222 4%, #1a1a1a 50%, #171717 100%);
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  top: -20%;
  left: 30%;
  width: 60%;
  height: 60%;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(109,221,69,0.03), transparent 70%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.serif { font-family: 'Fraunces', serif; }
.italic { font-style: italic; }

/* all content above background */
.nav, main, footer { position: relative; z-index: 1; }

/* ═══ FOCUS ═══ */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* ═══ LAYOUT ═══ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ═══ SCROLL REVEAL (with blur like 8090) ═══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity var(--dur-slow) ease, transform var(--dur-slow) ease, filter var(--dur-slow) ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ═══ HERO ENTRANCE ═══ */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(48px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(109,221,69,0.4); }
  50%      { box-shadow: 0 0 0 8px rgba(109,221,69,0); }
}

.hero-anim > * {
  opacity: 0;
  animation: hero-in 1.1s ease forwards;
}
.hero-anim > *:nth-child(1) { animation-delay: 0.15s; }
.hero-anim > *:nth-child(2) { animation-delay: 0.3s; }
.hero-anim > *:nth-child(3) { animation-delay: 0.5s; }
.hero-anim > *:nth-child(4) { animation-delay: 0.65s; }
.hero-anim > *:nth-child(5) { animation-delay: 0.8s; }
.hero-anim > *:nth-child(6) { animation-delay: 0.95s; }

/* ═══ SKIP LINK ═══ */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  background: var(--green);
  color: #111;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 100;
  border-radius: var(--radius-sm);
  transition: top var(--dur-fast);
}
.skip-link:focus { top: var(--sp-2); }

/* ═══ NAV ═══ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26,26,26,0.7);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border-bottom: 1px solid var(--fg-ghost);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.logo-name {
  font-size: var(--text-sm);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: var(--sp-8);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.nav-links a {
  transition: color var(--dur-base);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-cta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--fg);
  color: var(--bg);
  padding: 10px 20px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast);
}
.nav-cta:hover { background: var(--green); color: #111; transform: translateY(-1px); }

/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--fg);
  margin: 5px 0;
  transition: transform var(--dur-base), opacity var(--dur-fast);
}

/* ═══ HERO ═══ */
.hero {
  padding: 160px 0 120px;
  border-bottom: 1px solid var(--fg-ghost);
  position: relative;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}
.h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-8);
}
.h1 em {
  font-style: italic;
  background: linear-gradient(to right, var(--green) 40%, var(--green-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lede {
  font-family: 'Fraunces', serif;
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: 300;
  color: var(--fg-dim);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ═══ MARKET BANNER ═══ */
.market-banner {
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--fg-ghost);
  background: var(--bg-elev);
}
.market-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}
.market-stat {
  text-align: center;
}
.market-stat-val {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--fg);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.market-stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.market-divider {
  width: 1px;
  height: 36px;
  background: var(--fg-faint);
}

/* ═══ SECTION BLOCKS ═══ */
section {
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--fg-ghost);
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--sp-12);
  border-bottom: 1px solid var(--fg-ghost);
  padding-bottom: 18px;
}
.section-num {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-mute);
  white-space: nowrap;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(to right, var(--green) 40%, var(--green-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-family: 'Fraunces', serif;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--fg-dim);
  max-width: 580px;
}

/* ═══ PRODUCT CARDS (glassmorphism) ═══ */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.products-4 { grid-template-columns: repeat(4, 1fr); }
.products-4 .product { min-height: 280px; }
.product {
  background: var(--bg-elev);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: all var(--dur-base) ease;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--fg-ghost);
  border-radius: var(--radius-md);
}
.product:hover {
  background: var(--bg-card);
  border-color: var(--fg-faint);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
}
.product:hover .product-arrow { transform: translateX(8px); color: var(--green); }
.product-num {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--green);
  margin-bottom: 18px;
}
.product-title {
  font-family: 'Fraunces', serif;
  font-size: var(--text-2xl);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 14px;
}
.product-title em {
  font-style: italic;
  color: var(--green);
}
.product-desc {
  font-size: var(--text-base);
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.tag {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  border: 1px solid var(--fg-ghost);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.product:hover .tag { border-color: var(--fg-faint); color: var(--fg-dim); }
.product-link {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-arrow { transition: transform var(--dur-base) var(--ease-out), color var(--dur-base); }

/* ═══ FEATURE ROWS ═══ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-20);
  align-items: center;
  padding: var(--sp-16) 0;
  border-top: 1px solid var(--fg-ghost);
}
.feature:first-of-type { border-top: none; }
.feature-num {
  font-family: 'Fraunces', serif;
  font-size: var(--text-base);
  font-style: italic;
  color: var(--green);
  margin-bottom: var(--sp-4);
}
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: var(--sp-5);
}
.feature-title em { font-style: italic; color: var(--green); }
.feature-body {
  font-size: var(--text-base);
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}
.feature-list {
  list-style: none;
  border-top: 1px solid var(--fg-ghost);
}
.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--fg-ghost);
  display: flex;
  gap: 14px;
  font-size: var(--text-base);
  color: var(--fg-dim);
}
.feature-list li::before {
  content: '+';
  color: var(--green);
  flex-shrink: 0;
}

/* ═══ PANEL (glassmorphism UI) ═══ */
.panel {
  background: var(--bg-glass);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  border: 1px solid var(--fg-faint);
  border-radius: var(--radius-lg);
  padding: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--text-sm);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.05), inset 0 -1px 0 rgba(0,0,0,0.1);
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--fg-ghost);
  padding-bottom: 14px;
  margin-bottom: 18px;
}
.panel-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease infinite;
}
.panel-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: var(--fg-mute);
}
.panel-row .v { color: var(--fg); }
.panel-row .v.green { color: var(--green); }
.panel-row .v.rust { color: var(--rust); }
.panel-row .v.soil { color: var(--soil); }

/* ═══ DATA ROW ═══ */
.data-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.datum {
  background: var(--bg-elev);
  padding: 28px 24px;
  border: 1px solid var(--fg-ghost);
  border-radius: var(--radius-md);
  transition: all var(--dur-base) ease;
}
.datum:hover {
  background: var(--bg-card);
  border-color: var(--fg-faint);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.datum-key {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: var(--sp-3);
}
.datum-val {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}
.datum-val em { font-style: italic; color: var(--green); }
.datum-note {
  font-size: var(--text-sm);
  color: var(--fg-dim);
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* ═══ WHY NOW ═══ */
.why-now {
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--fg-ghost);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.why-card {
  background: var(--bg-elev);
  padding: var(--sp-8);
  border: 1px solid var(--fg-ghost);
  border-radius: var(--radius-md);
  position: relative;
  transition: all var(--dur-base) ease;
}
.why-card:hover {
  background: var(--bg-card);
  border-color: rgba(109,221,69,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.25);
}
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  background: linear-gradient(to right, var(--green) 40%, var(--green-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.why-label {
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: var(--sp-4);
}
.why-body {
  font-family: 'Fraunces', serif;
  font-size: var(--text-md);
  font-style: italic;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.7;
}
.why-source {
  margin-top: var(--sp-4);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  color: var(--fg-mute);
  text-transform: uppercase;
}

/* ═══ CTA BLOCK ═══ */
.cta-block {
  padding: var(--sp-30) 0;
  text-align: center;
  border-bottom: 1px solid var(--fg-ghost);
  position: relative;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 60%, rgba(109,221,69,0.04), transparent);
  pointer-events: none;
}
.cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 28px;
}
.cta-title em {
  font-style: italic;
  background: linear-gradient(to right, var(--green) 40%, var(--green-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-family: 'Fraunces', serif;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--fg-dim);
  max-width: 540px;
  margin: 0 auto var(--sp-10);
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--fg);
  color: var(--bg);
  padding: 16px 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--dur-fast);
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.btn:hover { background: var(--green); color: #111; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(109,221,69,0.2); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--fg-faint);
}
.btn-ghost:hover { border-color: var(--fg); color: var(--fg); background: rgba(242,240,237,0.05); box-shadow: none; }

/* ═══ SOCIAL PROOF ═══ */
.logos-section {
  padding: var(--sp-16) 0;
  border-bottom: 1px solid var(--fg-ghost);
}
.logos-label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--fg-mute);
  text-align: center;
  margin-bottom: var(--sp-10);
}
.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}
.logo-item {
  font-family: 'Fraunces', serif;
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--fg-mute);
  font-style: italic;
  transition: color var(--dur-base);
}
.logo-item:hover { color: var(--fg); }

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}
.testimonial {
  background: var(--bg-elev);
  padding: var(--sp-8);
  border: 1px solid var(--fg-ghost);
  border-radius: var(--radius-md);
  transition: border-color var(--dur-base);
}
.testimonial:hover { border-color: var(--fg-faint); }
.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: var(--text-md);
  font-style: italic;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.testimonial-attr {
  font-size: var(--text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.testimonial-attr strong { color: var(--fg); font-weight: 400; }

/* ═══ FOUNDER ═══ */
.founder-section {
  padding: var(--sp-24) 0;
  border-bottom: 1px solid var(--fg-ghost);
}
.founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--fg-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--green);
  margin-bottom: var(--sp-6);
}
.founder-name {
  font-family: 'Fraunces', serif;
  font-size: var(--text-2xl);
  font-weight: 300;
  margin-bottom: var(--sp-1);
}
.founder-role {
  font-size: var(--text-sm);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: var(--sp-6);
}
.founder-bio {
  font-family: 'Fraunces', serif;
  font-size: var(--text-md);
  font-style: italic;
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: var(--sp-6);
}

/* ═══ FOOTER ═══ */
footer {
  padding: 44px 0 32px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.foot-links { display: flex; gap: 28px; }
.foot-links a { transition: color var(--dur-fast); }
.foot-links a:hover { color: var(--fg); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 880px) {
  .products, .products-4 { grid-template-columns: 1fr !important; }
  .feature { grid-template-columns: 1fr; gap: var(--sp-8); }
  .data-row { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; gap: var(--sp-3); }
  .market-stats { gap: var(--sp-8); }
  .market-divider { display: none; }
  .hero { padding: 100px 0 var(--sp-16); }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    flex-direction: column;
    padding: var(--sp-6) var(--gutter);
    gap: var(--sp-5);
    border-bottom: 1px solid var(--fg-ghost);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }

  .foot-inner {
    flex-direction: column;
    gap: var(--sp-4);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .data-row { grid-template-columns: 1fr; }
}
