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

html { overflow-x: hidden; }

:root {
  --bg:         #080808;
  --surface:    #111111;
  --border:     #1e1e1e;
  --border2:    #2a2a2a;
  --text:       #F0EDE8;
  --muted:      #777770;
  --muted2:     #666660;
  --accent:     #A8E63D;
  --accent-d:   #8ec832;
  --accent-dim: #A8E63D20;
  --accent-b:   #A8E63D40;
  --radius:     6px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Noise texture */
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='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  border-bottom: 1px solid var(--border);
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}

.btn-primary:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(168,230,61,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border2);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--muted2);
}

/* ── HERO ── */
.hero {
  padding: 160px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 100vh;
}

.hero-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

.hero-actions .btn { padding: 13px 28px; font-size: 14px; }

.hero-note {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted2);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s forwards;
}

/* ── EDITOR MOCKUP ── */
.editor-mockup {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  animation: fadeIn 0.8s ease 0.5s forwards;
  position: relative;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #0d0d0d;
}

.titlebar-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #3a3a3a; }
.dot-y { background: #3a3a3a; }
.dot-g { background: #3a3a3a; }

.titlebar-name {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
}

.mockup-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  height: 380px;
}

.mockup-sidebar {
  border-right: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
}

.sidebar-section {
  padding: 0 14px;
  margin-bottom: 20px;
}

.sidebar-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 10px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 4px;
  margin-bottom: 2px;
  opacity: 0;
  animation: fadeRight 0.4s ease forwards;
}

.sidebar-item.active { background: rgba(168,230,61,0.08); }

.sidebar-dot {
  width: 8px; height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.sidebar-text {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.sidebar-item.active .sidebar-text { color: var(--accent); }

/* Canvas area */
.mockup-canvas {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.eq {
  position: absolute;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.eq-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  color: rgba(255,255,255,0.8);
}

.safety {
  position: absolute;
  border-radius: 6px;
  border: 1.5px dashed;
  opacity: 0;
}

.measure {
  position: absolute;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  color: var(--muted2);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.measure-line { background: var(--muted2); }

.canvas-toolbar {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tool-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--border2);
  border-radius: 4px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}

.tool-btn svg { opacity: 0.5; }
.tool-btn.active { background: rgba(168,230,61,0.1); border-color: var(--accent); }
.tool-btn.active svg { opacity: 1; color: var(--accent); }

.view-toggle {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  border: 1px solid var(--border2);
  border-radius: 4px;
  overflow: hidden;
}

.view-btn {
  padding: 5px 10px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  transition: all 0.15s;
}

.view-btn.active {
  background: rgba(168,230,61,0.1);
  color: var(--accent);
}

.mockup-statusbar {
  padding: 6px 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0d0d;
}

.status-item {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
}

.stat {
  flex: 1;
  padding: 36px 48px;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 300;
}

/* ── SECTION SHARED ── */
section { max-width: 1280px; margin: 0 auto; padding: 120px 48px; }

.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
}

.section-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-h em { font-style: normal; color: var(--accent); }

.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ── PROBLEM ── */
.problem { border-top: 1px solid var(--border); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.problem-points { display: flex; flex-direction: column; }

.problem-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted2);
  padding-top: 2px;
  flex-shrink: 0;
}

.problem-text strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.problem-text p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

.problem-callout {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 40px;
  position: sticky;
  top: 96px;
}

.callout-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 28px;
}

.callout-quote em { font-style: normal; color: var(--accent); }

.callout-attr {
  display: flex;
  align-items: center;
  gap: 14px;
}

.callout-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--accent);
  border: 1px solid var(--border2);
  flex-shrink: 0;
}

.callout-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.callout-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 300;
}

/* ── FEATURES ── */
.features { border-top: 1px solid var(--border); }

.features-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover { background: var(--surface); }
.feature-card:hover::after { opacity: 0.4; }

.feature-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--surface);
}

.feature-icon svg { color: var(--accent); }

.feature-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.feature-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 3px 8px;
  border: 1px solid var(--border2);
  border-radius: 3px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
}

/* ── HOW IT WORKS ── */
.how { border-top: 1px solid var(--border); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 72px;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(33.33% / 2 + 16px);
  right: calc(33.33% / 2 + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--border2), var(--accent), var(--border2));
  opacity: 0.6;
}

.how-step { position: relative; }

.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  background: var(--bg);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.step-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}

.step-detail {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted2);
  line-height: 1.7;
}

.step-detail span { color: var(--accent); }

/* ── EXPORTS ── */
.exports { border-top: 1px solid var(--border); }

.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.export-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.export-card:hover {
  border-color: var(--muted2);
  transform: translateY(-2px);
}

.export-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid var(--border2);
  border-radius: 8px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.export-format {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.export-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.export-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing { border-top: 1px solid var(--border); }

.pricing-toggles {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.toggle-group {
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 4px;
  gap: 2px;
}

.toggle-pill {
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.toggle-pill:hover { color: var(--text); }

.toggle-pill.active {
  background: var(--border2);
  color: var(--text);
}

.toggle-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-b);
  border-radius: 4px;
  padding: 2px 6px;
}

.plan-annual-total {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  min-height: 16px;
}

.pricing-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-b);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 32px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.scarcity-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.2s, transform 0.2s;
}

.plan-card:hover { transform: translateY(-2px); }

.plan-card.highlighted {
  background: rgba(168,230,61,0.04);
  border-color: var(--accent-b);
  box-shadow: 0 0 40px rgba(168,230,61,0.06);
}

.plan-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent);
  color: #0a0a0a;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  align-self: flex-start;
}

.plan-spacer { height: 28px; } /* keeps non-highlighted cards aligned */

.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 4px;
}

.plan-card.highlighted .plan-name { color: var(--accent); }

.plan-seats {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.plan-per {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 300;
}

.plan-full {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted2);
  text-decoration: line-through;
  margin-bottom: 28px;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.4;
}

.plan-feature-check {
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-feature.gated {
  color: var(--muted2);
}

.plan-feature.gated .plan-feature-check { color: var(--muted2); }

.plan-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid var(--border2);
  color: var(--muted);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.plan-cta:hover {
  border-color: var(--muted2);
  color: var(--text);
}

.plan-card.highlighted .plan-cta {
  background: var(--accent);
  color: #0a0a0a;
  border-color: transparent;
}

.plan-card.highlighted .plan-cta:hover {
  background: var(--accent-d);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(168,230,61,0.2);
}

.pricing-footnotes {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: 0.04em;
}

.pricing-note::before {
  content: '→';
  color: var(--accent);
  font-size: 11px;
}

/* ── CTA / WAITLIST ── */
.cta-wrap {
  border-top: 1px solid var(--border);
  padding: 0 48px;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.cta-h em { font-style: normal; color: var(--accent); }

.cta-right { display: flex; flex-direction: column; gap: 24px; }

.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-input-row {
  display: flex;
  gap: 10px;
}

.cta-input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input::placeholder { color: var(--muted2); }
.cta-input:focus { border-color: var(--accent); }

.cta-fine {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted2);
}

.cta-fine a { color: var(--muted); text-decoration: underline; }

/* Success state */
.cta-success {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: rgba(168,230,61,0.04);
  border: 1px solid var(--accent-b);
  border-radius: 10px;
  padding: 32px;
}

.cta-success.visible { display: flex; }

.success-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.success-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--text);
}

.success-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-logo span { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--muted); }

.footer-copy {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--muted2);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes drawEq {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes drawSafety {
  from { opacity: 0; }
  to   { opacity: 0.35; }
}

@keyframes drawMeasure {
  from { opacity: 0; }
  to   { opacity: 0.7; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 120px 24px 60px; gap: 48px; min-height: auto; }
  section { padding: 80px 24px; }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .export-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 0; }
  .cta-wrap { padding: 0 24px; }
  footer { flex-direction: column; gap: 24px; text-align: center; padding: 48px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .features-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .pricing-footnotes { flex-direction: column; gap: 12px; }
  .cta-input-row { flex-direction: column; }
}
