:root {
  --orange: #FF6B2C;
  --orange-light: #FF8F5E;
  --orange-glow: rgba(255, 107, 44, 0.15);
  --dark: #0C0C0E;
  --dark-card: #141418;
  --dark-border: #1E1E24;
  --dark-subtle: #2A2A32;
  --text: #E8E8EC;
  --text-dim: #8A8A96;
  --text-faint: #5A5A66;
  --green: #34D399;
  --red: #F87171;
  --yellow: #FBBF24;
  --blue: #60A5FA;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  /* Spacing scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 120px;

  /* Container */
  --container-max: 1140px;
  --container-pad: 40px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: 'Space Mono', monospace; }

/* ── Noise overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
  z-index: 50;
}

/* ── 3D Canvas background ── */
#construction-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  will-change: transform;
}

/* ── Top bar ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 12, 14, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  text-decoration: none;
}

.logo-hat {
  display: block;
  height: 20px;
  width: auto;
}

.logo-name {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-crew {
  color: var(--orange);
}

.logo-check {
  color: var(--text);
}

.logo-ai {
  color: var(--text);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.btn-waitlist)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-smooth);
}

.nav-links a:not(.btn-waitlist):hover::after {
  transform: scaleX(1);
}

.nav-links a:hover { color: var(--text); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn-waitlist {
  background: var(--orange);
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.btn-waitlist:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 107, 44, 0.3);
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px var(--container-pad) 60px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-dim);
  width: fit-content;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-smooth) both;
  will-change: transform, opacity;
}

.hero-badge .dot {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s var(--ease-smooth) infinite;
}

.hero-badge .dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 107, 44, 0.35);
  border-radius: 50%;
  animation: pulse-ring 2s var(--ease-smooth) infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.82; transform: scale(0.92); }
}

@keyframes pulse-ring {
  0% { opacity: 0.5; transform: scale(0.7); }
  70% { opacity: 0; transform: scale(1.7); }
  100% { opacity: 0; transform: scale(1.7); }
}

.hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  max-width: 900px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s var(--ease-smooth) 0.1s both;
  will-change: transform, opacity;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease-smooth) 0.2s both;
  will-change: transform, opacity;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s var(--ease-smooth) 0.3s both;
  will-change: transform, opacity;
}

.btn-primary {
  background: var(--orange);
  color: var(--dark);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 44, 0.3);
}

.btn-secondary {
  color: var(--text-dim);
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
  border: 1px solid var(--dark-border);
  background: transparent;
  cursor: pointer;
}

.btn-secondary:hover {
  color: var(--text);
  border-color: var(--text-dim);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Live verification terminal ── */
.terminal-section {
  position: relative;
  z-index: 1;
  padding: 40px var(--container-pad) 80px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.terminal {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 107, 44, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--dark-border);
  background: rgba(20, 20, 24, 0.8);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red { background: #FF5F57; }
.terminal-dot.yellow { background: #FEBC2E; }
.terminal-dot.green { background: #28C840; }

.terminal-title {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--text-faint);
  margin-left: 12px;
}

.terminal-body {
  padding: 28px;
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  line-height: 2;
  min-height: 320px;
  overflow-x: auto;
}

.term-line {
  opacity: 0;
  animation: termFade 0.4s var(--ease-smooth) forwards;
  will-change: transform, opacity;
}

.term-line .prompt { color: var(--orange); }
.term-line .cmd { color: var(--text); }
.term-line .ok { color: var(--green); }
.term-line .warn { color: var(--yellow); }
.term-line .fail { color: var(--red); }
.term-line .dim { color: var(--text-faint); }
.term-line .info { color: var(--blue); }

@keyframes termFade {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── Problem section ── */
.section {
  position: relative;
  z-index: 1;
  padding: 120px 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 60px;
}

/* ── Problem cards ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
}

.problem-card {
  background: var(--dark-card);
  padding: 36px 28px;
  transition: background-color 0.3s, border-left 0.3s, padding-left 0.3s;
  border-left: 3px solid transparent;
}

.problem-card:hover {
  background: #1a1a20;
  border-left: 3px solid var(--orange);
  padding-left: 25px;
}

.problem-icon {
  margin-bottom: 20px;
  color: var(--orange);
  line-height: 0;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.problem-card p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── How it works ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--dark-border));
}

.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 24px 0;
}

.step-content {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}

.step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--dark-card);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 560px;
}

.step-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 10px;
}

.step-tag.live { background: rgba(52, 211, 153, 0.12); color: var(--green); }
.step-tag.building { background: rgba(251, 191, 36, 0.12); color: var(--yellow); }
.step-tag.planned { background: rgba(138, 138, 150, 0.12); color: var(--text-dim); }

/* ── Comparison ── */
.compare-wrapper {
  overflow-x: auto;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  background: var(--dark-card);
  max-width: 100%;
}

.compare-wrapper .compare-header-note {
  padding: 20px 20px 0;
  font-size: 13px;
  color: var(--text-faint);
  font-family: 'Space Mono', monospace;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  text-align: left;
  padding: 16px 20px;
  font-weight: 500;
  color: var(--text-faint);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--dark-border);
  position: sticky;
  top: 56px;
  background: var(--dark-card);
  z-index: 2;
}

.compare-table th:last-child {
  color: var(--orange);
}

.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--dark-border);
  color: var(--text-dim);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  color: var(--text);
  font-weight: 500;
}

.compare-table td:last-child {
  color: var(--text);
  font-weight: 500;
}

.check { color: var(--green); font-size: 18px; }
.cross { color: var(--text-faint); font-size: 18px; }
.soon { color: var(--yellow); font-size: 12px; font-family: 'Space Mono', monospace; }
.dim-note { color: var(--text-faint); font-size: 12px; display: block; margin-top: 4px; }

/* Mobile card layout for compare table */
.compare-card-mobile {
  display: none;
}

.compare-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
}

.compare-card-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dark-border);
}

.compare-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
}

.compare-card-label {
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 500;
}

.compare-card-value {
  font-size: 14px;
  text-align: right;
}

/* ── Metrics strip ── */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.metric {
  background: var(--dark-card);
  padding: 40px 32px;
  text-align: center;
}

.metric-value {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--orange);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: var(--text-dim);
}

/* ── CTA ── */
.cta-section {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl) var(--container-pad);
  text-align: center;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 64px 48px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.email-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.email-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid var(--dark-border);
  background: var(--dark);
  color: var(--text);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.email-form input::placeholder { color: var(--text-faint); }
.email-form input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.email-form .btn-primary {
  white-space: nowrap;
}

.email-form .btn-primary:active {
  transform: scale(0.97);
}

/* ── Footer ── */
footer {
  position: relative;
  z-index: 1;
  padding: 32px 40px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
}

footer span {
  font-size: 13px;
  color: var(--text-faint);
}

footer a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-smooth);
}

footer a:hover { color: var(--text); }
footer a:hover::after { transform: scaleX(1); }

/* ── Powered by badge ── */
.powered-by {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.powered-by span {
  font-size: 12px;
  color: var(--text-faint);
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Responsive ── */
html[data-motion-tier="lite"] body::before {
  opacity: 0.6;
}

html[data-motion-tier="lite"] #construction-bg {
  opacity: 0.28;
}

html[data-motion-tier="lite"] .btn-waitlist,
html[data-motion-tier="lite"] .btn-primary,
html[data-motion-tier="lite"] .btn-secondary,
html[data-motion-tier="lite"] .problem-card {
  transition-duration: 0.18s;
}

html[data-motion-tier="reduced"] body::before {
  opacity: 0.35;
}

html[data-motion-tier="reduced"] #construction-bg {
  opacity: 0.18;
}

html[data-motion-tier="reduced"] .hero-badge,
html[data-motion-tier="reduced"] .hero h1,
html[data-motion-tier="reduced"] .hero-sub,
html[data-motion-tier="reduced"] .hero-cta,
html[data-motion-tier="reduced"] .term-line,
html[data-motion-tier="reduced"] .hero-badge .dot,
html[data-motion-tier="reduced"] .hero-badge .dot::after {
  animation: none !important;
}

html[data-motion-tier="reduced"] .term-line {
  opacity: 1;
  transform: none;
}

/* ── Focus states (accessibility) ── */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-waitlist:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.email-form input:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ── Active states ── */
.btn-primary:active {
  transform: scale(0.97);
}

/* ── Responsive: Tablet Landscape (≤1024px) ── */
@media (max-width: 1024px) {
  .section {
    padding: 80px var(--container-pad);
  }

  .topbar {
    padding: 16px 24px;
  }

  .problem-card {
    padding: 32px 24px;
  }

  .problem-card:hover {
    padding-left: 21px;
  }
}

/* ── Responsive: Tablet Portrait (≤768px) ── */
@media (max-width: 768px) {
  /* Nav: hamburger visible, links collapse */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(12, 12, 14, 0.95);
    backdrop-filter: blur(20px);
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease-smooth), padding 0.35s var(--ease-smooth);
    z-index: 99;
  }

  .nav-links.open {
    max-height: 320px;
    padding: 8px 0;
    border-bottom: 1px solid var(--dark-border);
  }

  .nav-links a {
    display: block;
    padding: 16px 20px;
    font-size: 16px;
    width: 100%;
  }

  .nav-links a:not(.btn-waitlist)::after {
    display: none;
  }

  .nav-links .btn-waitlist {
    margin: 8px 20px 12px;
    text-align: center;
    width: calc(100% - 40px);
    display: block;
  }

  /* Hero */
  .hero, .section, .terminal-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-cta .btn-primary {
    text-align: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    padding: 12px 18px;
    border-radius: 8px;
  }

  .hero-cta .btn-secondary {
    text-align: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
  }

  /* Problem grid */
  .problem-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .step {
    gap: 20px;
  }

  /* Compare: hide table, show cards */
  .compare-wrapper {
    display: none;
  }

  .compare-card-mobile {
    display: block;
  }

  /* Metrics */
  .metrics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }

  .metric {
    padding: 20px 16px;
  }

  .metric-value {
    font-size: 24px;
    letter-spacing: -1px;
    margin-bottom: 4px;
  }

  .metric-label {
    font-size: 12px;
  }

  /* Email form */
  .email-form {
    flex-direction: column;
  }

  .email-form .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Compare table fallback (if wrapper visible) */
  .compare-table {
    font-size: 13px;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 10px;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 24px 20px;
  }

  /* CTA box */
  .cta-box {
    padding: 48px 28px;
  }
}

/* ── Responsive: Mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero, .section, .terminal-section {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .hero h1 {
    font-size: clamp(32px, 6vw, 72px);
  }

  .hero-sub {
    font-size: 16px;
  }

  .terminal-body {
    font-size: 12.5px;
  }

  /* Steps tighter on mobile */
  .step {
    gap: 16px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 13px;
  }

  .steps::before {
    left: 18px;
  }

  .step-content {
    padding: 20px;
  }

  /* Metrics tighter */
  .metric {
    padding: 16px 12px;
  }

  .metric-value {
    font-size: 20px;
    margin-bottom: 2px;
  }

  .metric-label {
    font-size: 11px;
  }

  .metrics {
    margin-top: 28px;
  }

  /* CTA box */
  .cta-box {
    padding: 40px 24px;
  }

  /* Section defaults */
  .section {
    padding: 60px var(--space-md);
  }

  footer {
    padding: 24px var(--space-md);
  }
}
