/* =========================================================================
   MakerMods — Design tokens
   Black + white + maker orange. Stencil cuts. Workshop, not studio.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Space+Grotesk:wght@400;500;700&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
  --ink:        #0A0A0A;
  --ink-2:      #262626;
  --paper:      #FAFAFA;
  --surface:    #FFFFFF;
  --line:       #E5E5E5;
  --line-2:     #D4D4D4;
  --mute:       #737373;
  --mute-2:     #A3A3A3;

  --orange:     #FF6B2C;
  --orange-2:   #E55418;
  --orange-3:   #FFE3D2;
  --orange-ink: #0A0A0A;

  --font-display: 'Chakra Petch', 'Bai Jamjuree', system-ui, sans-serif;
  --font-body:    'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --t-eyebrow:    0.6875rem;
  --t-caption:    0.75rem;
  --t-small:      0.875rem;
  --t-body:       1rem;
  --t-lead:       1.125rem;
  --t-h4:         1.375rem;
  --t-h3:         1.75rem;
  --t-h2:         2.25rem;
  --t-h1:         3rem;

  --lh-tight:   1.05;
  --lh-snug:    1.2;
  --lh-normal:  1.5;

  --ls-tight:    -0.02em;
  --ls-eyebrow:  0.14em;

  --s-1:  4px;
  --s-2:  8px;
  --s-3:  12px;
  --s-4:  16px;
  --s-5:  24px;
  --s-6:  32px;
  --s-7:  48px;
  --s-8:  64px;
  --s-9:  96px;

  --r-sm:  2px;
  --r-md:  6px;

  --dur-base:    120ms;
  --dur-slow:    200ms;
  --ease-std:    cubic-bezier(0.2, 0, 0, 1);
}

html.dark, [data-theme="dark"] {
  --ink:      #F5F5F5;
  --ink-2:    #E5E5E5;
  --paper:    #0A0A0A;
  --surface:  #141414;
  --line:     #262626;
  --line-2:   #404040;
  --mute:     #A3A3A3;
  --mute-2:   #737373;
  --orange:   #FF7A40;
  --orange-2: #FF9460;
  --orange-3: #3A1F12;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; }

html, body {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-normal);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: var(--t-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); }
h4 { font-size: var(--t-h4); }

p, li {
  font-size: var(--t-body);
  line-height: var(--lh-normal);
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
}

.lead    { font-size: var(--t-lead); line-height: var(--lh-normal); color: var(--ink-2); }

code, kbd, pre {
  font-family: var(--font-mono);
  font-size: 0.92em;
}

code {
  background: var(--line);
  padding: 1px 6px;
  border-radius: var(--r-sm);
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity var(--dur-base) var(--ease-std);
}
a:hover { opacity: 0.7; }

::selection { background: var(--ink); color: var(--paper); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--s-6); }

/* ============================== NAV ============================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 80%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 52px; display: block; }
html.dark .nav-logo img.light-logo { display: none; }
.nav-logo img.dark-logo { display: none; }
html.dark .nav-logo img.dark-logo { display: inline-block; }
.nav-logo .beta {
  font-family: var(--font-mono); font-size: 10px; padding: 2px 6px;
  border: 1px solid var(--line-2); color: var(--mute);
  letter-spacing: 0.08em; border-radius: var(--r-sm);
}
.nav-links { display: flex; gap: var(--s-6); }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  text-decoration: none; color: var(--ink); letter-spacing: 0;
}
.nav-links a:hover { color: var(--orange); opacity: 1; }
.nav-actions { display: flex; gap: var(--s-3); align-items: center; }

/* ============================== BUTTONS ============================== */
.btn {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: var(--r-md);
  border: 1px solid transparent; cursor: pointer;
  transition: all var(--dur-base) var(--ease-std);
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { opacity: 0.85; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-secondary:hover { background: var(--line); border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--line); }
.btn-stencil {
  background: var(--orange); color: var(--orange-ink);
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  padding: 14px 22px; font-size: 15px;
}
.btn-stencil:hover { background: var(--orange-2); color: #FFFFFF; }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* ============================== HERO ============================== */
.hero { padding: var(--s-8) 0 var(--s-9); position: relative; overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5; pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 80%);
          mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 80%);
}

.hero-stack-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: var(--s-7); }
.hero-copy { max-width: 880px; text-align: center; }
.hero-copy .hero-title { font-size: clamp(40px, 6vw, 76px); margin-top: var(--s-4); }
.hero-copy .hero-lead { margin: 0 auto var(--s-6); max-width: 60ch; }
.hero-copy .hero-cta { justify-content: center; }
.hero-copy .hero-eyebrow { margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  padding: 6px 12px; border: 1px solid var(--line-2);
  background: var(--surface);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 25%, transparent);
}

.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 6.4vw, 84px); line-height: 0.98; letter-spacing: -0.03em;
  color: var(--ink); margin: var(--s-4) 0 var(--s-5); text-wrap: balance;
}
.hero-title .accent { position: relative; white-space: nowrap; }
.hero-title .accent::after {
  content: ''; position: absolute; left: -2px; right: -2px; bottom: 6px; height: 14px;
  background: var(--orange); z-index: -1; opacity: 0.85;
  clip-path: polygon(2% 20%, 98% 0%, 100% 90%, 1% 100%);
}
.hero-lead {
  font-size: var(--t-lead); line-height: 1.55; color: var(--ink-2);
  max-width: 50ch; margin: 0 0 var(--s-6);
}
.hero-cta { display: flex; gap: var(--s-3); align-items: center; flex-wrap: wrap; }

.hero-video-wrap { width: 100%; max-width: 1100px; margin: var(--s-3) auto 0; }
.hero-video-chrome {
  background: var(--ink); border: 1px solid var(--ink);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  overflow: hidden;
}
.chrome-bar {
  display: flex; align-items: center; gap: var(--s-4);
  padding: 10px 16px; background: #0A0A0A; border-bottom: 1px solid #262626;
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 10px; height: 10px; border-radius: 50%; background: #404040; }
.chrome-url {
  flex: 1; font-family: var(--font-mono); font-size: 12px;
  color: #A3A3A3; text-align: center;
  background: #141414; padding: 4px 12px; border-radius: var(--r-sm);
  max-width: 320px; margin: 0 auto;
}
.chrome-meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--orange);
  letter-spacing: 0.1em;
}
.hero-video-frame {
  aspect-ratio: 16/9; background: #0A0A0A; position: relative; overflow: hidden;
}
.hero-video-frame video,
.hero-video-frame iframe {
  width: 100%; height: 100%; display: block; border: 0; object-fit: cover;
}
.hero-video-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: var(--s-3); color: #F5F5F5;
  background:
    linear-gradient(to right, rgba(255, 107, 44, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 107, 44, 0.04) 1px, transparent 1px),
    #0A0A0A;
  background-size: 32px 32px;
}
.hero-video-frame .corner,
.hero-video-placeholder .corner { position: absolute; width: 18px; height: 18px; border: 1px solid #F5F5F5; opacity: 0.4; pointer-events: none; z-index: 2; }
.hero-video-frame .corner.tl,
.hero-video-placeholder .corner.tl { top: 18px; left: 18px; border-right: 0; border-bottom: 0; }
.hero-video-frame .corner.tr,
.hero-video-placeholder .corner.tr { top: 18px; right: 18px; border-left: 0; border-bottom: 0; }
.hero-video-frame .corner.bl,
.hero-video-placeholder .corner.bl { bottom: 18px; left: 18px; border-right: 0; border-top: 0; }
.hero-video-frame .corner.br,
.hero-video-placeholder .corner.br { bottom: 18px; right: 18px; border-left: 0; border-top: 0; }
.hero-video-frame .rec,
.hero-video-placeholder .rec {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-mono); font-size: 11px; color: var(--orange);
  letter-spacing: 0.12em; display: flex; align-items: center; gap: 8px;
  pointer-events: none; z-index: 2;
}
.hero-video-frame .rec::before,
.hero-video-placeholder .rec::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  animation: blink 1.4s ease-in-out infinite;
}
.hero-video-placeholder .play-big {
  width: 80px; height: 80px;
  background: var(--orange); color: var(--orange-ink);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.hero-video-placeholder .ph-text { text-align: center; padding: 0 24px; max-width: 460px; }
.hero-video-placeholder .ph-eyebrow {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 8px;
}
.hero-video-placeholder .ph-title {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  letter-spacing: -0.01em; color: #F5F5F5;
}
.hero-video-placeholder .ph-desc {
  font-family: var(--font-mono); font-size: 12px; color: #A3A3A3;
  margin-top: 10px; line-height: 1.5;
}
.hero-video-placeholder .ph-desc code {
  background: #262626; color: #F5F5F5; padding: 2px 6px;
}

@keyframes blink { 50% { opacity: 0.3; } }

.hero-video-meta {
  display: flex; justify-content: center; gap: var(--s-3); margin-top: var(--s-4);
  font-family: var(--font-mono); font-size: 12px; color: var(--mute);
  flex-wrap: wrap;
}
.hero-video-meta strong { color: var(--orange); font-weight: 700; margin-right: 4px; }
.hero-video-meta .sep { color: var(--line-2); }

.hero-meta-row {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-6); flex-wrap: wrap;
  padding-top: var(--s-6); margin-top: var(--s-3);
  border-top: 1px solid var(--line); width: 100%;
}
.hero-meta-row .stat { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.hero-meta-row .num {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; color: var(--ink);
}
.hero-meta-row .num em { color: var(--orange); font-style: normal; }
.hero-meta-row .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--mute); }
.hero-meta-row .sep-v { width: 1px; height: 28px; background: var(--line); }

@media (max-width: 760px) {
  .hero-meta-row .sep-v { display: none; }
  .chrome-meta { display: none; }
}

/* ============================== SECTION ============================== */
.section { padding: var(--s-9) 0; border-top: 1px solid var(--line); position: relative; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; align-items: end;
  gap: var(--s-7); margin-bottom: var(--s-7);
}
.section-head h2 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.02; letter-spacing: -0.02em; }
.section-head .lead { font-size: 16px; color: var(--mute); max-width: 48ch; line-height: 1.55; }

.section-eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
  margin-bottom: var(--s-3);
}
.section-eyebrow .bracket { color: var(--orange); }

/* ============================== FEATURES ============================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature {
  background: var(--surface); padding: var(--s-6) var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: background var(--dur-base) var(--ease-std);
  position: relative;
  min-height: 220px;
}
.feature:hover { background: var(--paper); }
.feature .icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink); color: var(--ink);
  margin-bottom: var(--s-2);
}
.feature.accent .icon { background: var(--orange); border-color: var(--orange); color: var(--orange-ink); }
.feature h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.feature p { font-size: 14px; color: var(--mute); line-height: 1.55; }
.feature .tag {
  position: absolute; top: var(--s-5); right: var(--s-5);
  font-family: var(--font-mono); font-size: 10px; color: var(--mute);
  letter-spacing: 0.08em;
}

/* ============================== STEPS ============================== */
.steps {
  display: grid; grid-template-columns: 60px 1fr 1fr 1fr 1fr;
  gap: var(--s-5); align-items: stretch;
}
.steps-rail {
  background: var(--ink); color: var(--paper);
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg);
  padding: var(--s-5) 12px; display: flex; align-items: center; justify-content: center;
}
.step-card {
  display: flex; flex-direction: column; gap: var(--s-3);
  padding: var(--s-5); background: var(--surface);
  border: 1px solid var(--line); position: relative;
}
.step-card .num {
  font-family: var(--font-display); font-weight: 700; font-size: 56px;
  line-height: 1; letter-spacing: -0.03em; color: var(--orange);
}
.step-card .icon-row {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 10px; color: var(--mute);
}
.step-card h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em; margin-top: var(--s-2);
}
.step-card p { font-size: 13px; color: var(--mute); line-height: 1.55; }
.step-card .arrow {
  position: absolute; right: -22px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; color: var(--mute);
  z-index: 1;
}
.step-card:last-child .arrow { display: none; }

/* ============================== WAITLIST ============================== */
.waitlist-section {
  background: var(--paper); position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
}
.waitlist-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, black 50%, transparent 100%);
}
.waitlist-inner {
  position: relative; display: grid; grid-template-columns: 1fr 1.05fr;
  gap: var(--s-9); align-items: start; padding: var(--s-9) 0;
}
.waitlist-copy h2 {
  font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.03em;
  margin-bottom: var(--s-5);
}
.waitlist-copy h2 .accent {
  background: var(--orange); color: var(--orange-ink); padding: 0 12px;
  display: inline-block;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.waitlist-copy p { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 44ch; }
.waitlist-copy .wl-bullets {
  list-style: none; padding: 0; margin: var(--s-6) 0 0;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.waitlist-copy .wl-bullets li {
  display: flex; align-items: start; gap: 12px;
  font-family: var(--font-mono); font-size: 13px; color: var(--ink-2);
}
.waitlist-copy .wl-bullets li::before {
  content: '→'; color: var(--orange); font-weight: 700;
}

.waitlist-frame { position: relative; }
.waitlist-frame-label {
  position: absolute; top: -10px; left: 24px; z-index: 2;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  background: var(--paper); padding: 2px 8px; color: var(--orange);
  letter-spacing: 0.1em;
}
.waitlist-form {
  background: var(--surface); border: 1px solid var(--ink);
  padding: var(--s-6);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  position: relative;
}
.waitlist-form .field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s-4); }
.waitlist-form label {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
}
.waitlist-form label .req { color: var(--orange); }
.waitlist-form .input {
  font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px; border: 1px solid var(--line-2);
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-sm); outline: none;
  transition: border-color var(--dur-base) var(--ease-std), box-shadow var(--dur-base) var(--ease-std);
  width: 100%;
}
.waitlist-form .input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 30%, transparent);
}
.waitlist-form .input.mono { font-family: var(--font-mono); font-size: 13px; }
.waitlist-form select.input {
  appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px;
}
.waitlist-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
.waitlist-form .submit {
  width: 100%; margin-top: var(--s-3);
  padding: 16px 22px; font-size: 16px;
  background: var(--orange); color: var(--orange-ink);
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.04em;
  border: 0; cursor: pointer;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: background var(--dur-base) var(--ease-std);
}
.waitlist-form .submit:hover { background: var(--orange-2); color: #FFFFFF; }
.waitlist-form .submit:active { transform: scale(0.99); }
.waitlist-form .legal {
  font-family: var(--font-mono); font-size: 11px; color: var(--mute);
  margin-top: var(--s-3); line-height: 1.5;
}

.waitlist-success {
  text-align: left; padding: var(--s-5) 0;
}
.waitlist-success .check {
  width: 48px; height: 48px;
  background: var(--orange); color: var(--orange-ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.waitlist-success h3 { font-size: 28px; margin-bottom: var(--s-3); }
.waitlist-success p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.waitlist-success .position {
  font-family: var(--font-mono); font-size: 13px;
  margin-top: var(--s-4); padding: var(--s-3) var(--s-4);
  background: var(--paper); border: 1px dashed var(--line-2);
  display: inline-block;
}
.waitlist-success .position .num { color: var(--orange); font-weight: 700; }
.waitlist-success .discord-line {
  margin-top: var(--s-5); font-size: 13px; color: var(--mute);
}

/* ============================== FOOTER ============================== */
.footer { padding: var(--s-7) 0 var(--s-5); border-top: 1px solid var(--line); background: var(--paper); }
.footer-cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-6); margin-bottom: var(--s-7);
}
.footer h5 {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute);
  margin: 0 0 var(--s-3);
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer a { font-size: 14px; color: var(--ink); text-decoration: none; }
.footer a:hover { color: var(--orange); opacity: 1; }
.footer-bot {
  display: flex; justify-content: space-between; padding-top: var(--s-4);
  border-top: 1px solid var(--line); font-family: var(--font-mono);
  font-size: 12px; color: var(--mute); align-items: center;
}
.footer-bot .muted { color: var(--mute-2); }
.footer-logo { height: 52px; margin-bottom: var(--s-4); display: block; }
.footer .blurb { font-size: 13px; color: var(--mute); max-width: 36ch; line-height: 1.55; }

html.dark .footer-logo.light-logo { display: none; }
.footer-logo.dark-logo { display: none; }
html.dark .footer-logo.dark-logo { display: inline-block; }

/* ============================== RESPONSIVE ============================== */
@media (max-width: 980px) {
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step-card .arrow { display: none; }
  .waitlist-inner { grid-template-columns: 1fr; gap: var(--s-7); padding: var(--s-7) 0; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .waitlist-form .row-2 { grid-template-columns: 1fr; }
}
