@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,300&display=swap');

:root {
  --bg: #080809;
  --surface: #0d0d10;
  --surface2: #131316;
  --surface3: #1a1a1e;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.11);
  --border-focus: rgba(200,245,58,0.4);
  --lime: #c8f53a;
  --lime-dim: rgba(200,245,58,0.07);
  --lime-hover: #d4ff44;
  --white: #eeecea;
  --muted: #56565f;
  --muted2: #35353c;
  --danger: #ff5a5a;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

/* ─── Noise texture ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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");
  pointer-events: none;
  z-index: 9999;
}

/* ─── Typography ────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--muted);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }

.btn-lime {
  background: var(--lime);
  color: #080809;
}
.btn-lime:hover {
  background: var(--lime-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,245,58,0.22);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: var(--white);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }

.btn-lg { font-size: 14px; padding: 13px 28px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ───────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(8,8,9,0.95) 0%, transparent 100%);
  backdrop-filter: blur(12px);
}

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

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-mobile-cta { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  background: transparent;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px;
  z-index: 101;
  transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--lime); }
.hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.2s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(8,8,9,0.6);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-overlay.show { display: block; opacity: 1; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 130px 56px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 0; left: -10%;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(200,245,58,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 14px 5px 5px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 32px;
}

.badge-pulse {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(200,245,58,0.3); }
  50%       { opacity: 0.5; box-shadow: 0 0 0 4px rgba(200,245,58,0); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title-accent { color: var(--lime); }
.hero-title-stroke {
  -webkit-text-stroke: 1px rgba(255,255,255,0.22);
  color: transparent;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-row { display: flex; }
.av {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--surface3);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  color: var(--lime);
  letter-spacing: 0;
}
.av:first-child { margin-left: 0; }

.proof-label { font-size: 12px; color: var(--muted); }
.proof-label strong { color: var(--white); }

/* ─── Studio mockup ─────────────────────────────────────── */
.hero-mockup {
  position: relative;
  z-index: 2;
}

.mockup-chrome {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted2);
}
.mockup-dots span:first-child { background: #ff5a5a44; }
.mockup-dots span:nth-child(2) { background: #ff9f3a44; }
.mockup-dots span:nth-child(3) { background: var(--lime-dim); }

.mockup-url {
  flex: 1;
  font-size: 11px;
  color: var(--muted);
  background: var(--surface3);
  border-radius: 6px;
  padding: 3px 10px;
  text-align: center;
}

.mockup-body {
  display: grid;
  grid-template-columns: 90px 1fr 120px;
  height: 340px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,245,58,0.04);
}

.mockup-sidebar {
  background: var(--surface2);
  border-right: 1px solid var(--border);
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mockup-slide-item {
  border-radius: 6px;
  border: 1px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}
.mockup-slide-item.active { border-color: var(--lime); }

.msi-thumb {
  width: 100%; aspect-ratio: 9/16;
  background: #0a0a0e;
  display: flex; align-items: center; justify-content: center;
}
.msi-thumb.dark { background: #0e0810; }

.msi-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9px;
  color: var(--lime);
  letter-spacing: 0.05em;
}
.msi-headline.small { font-size: 7px; color: var(--white); }

.mockup-slide-item span {
  display: block;
  font-size: 8px;
  color: var(--muted);
  text-align: center;
  padding: 3px 0;
  background: var(--surface2);
}
.mockup-slide-item.active span { color: var(--lime); }

.mockup-canvas {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 12px;
}

.mockup-phone {
  width: 88px; height: 156px;
  background: #080808;
  border-radius: 14px;
  border: 2px solid #1a1a22;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}

.mockup-phone-screen {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 8px;
  position: relative;
}

.mph-brand {
  position: absolute;
  top: 7px; left: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5px;
  letter-spacing: 0.12em;
  color: var(--lime);
}

.mph-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  line-height: 1;
  color: var(--white);
}
.mph-headline span { color: var(--lime); }

.mph-divider {
  width: 14px; height: 1.5px;
  background: var(--lime);
  margin: 5px auto;
  border-radius: 1px;
}

.mph-body {
  font-size: 5.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.mockup-panel {
  background: var(--surface2);
  border-left: 1px solid var(--border);
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-panel-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.mockup-field {
  background: var(--surface3);
  border-radius: 5px;
  padding: 5px 7px;
}
.mf-label { font-size: 7px; color: var(--muted); margin-bottom: 2px; }
.mf-val { font-size: 8px; color: var(--white); font-weight: 600; }
.mf-val.muted { color: var(--muted); font-weight: 400; }

.mockup-anim-row {
  display: flex;
  gap: 3px;
}
.mar {
  flex: 1;
  font-size: 7px;
  text-align: center;
  padding: 3px 2px;
  border-radius: 4px;
  background: var(--surface3);
  color: var(--muted);
  border: 1px solid transparent;
}
.mar.active { border-color: var(--lime); color: var(--lime); background: var(--lime-dim); }

.mockup-ai-bar {
  margin-top: auto;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 7px;
  color: var(--muted);
}
.mai-send {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #080809;
}

/* ─── Reveal animations ─────────────────────────────────── */
.reveal-fade { opacity: 0; transform: translateY(16px); animation: fadeUp 0.7s ease forwards; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { animation-delay: 0.1s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; transition-delay: 0.3s; }
.delay-4 { animation-delay: 0.45s; transition-delay: 0.45s; }

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

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-section {
  padding: 120px 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header { margin-bottom: 64px; }

.steps-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.step:hover { border-color: var(--border-hover); }

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--muted2);
  margin-bottom: 16px;
  transition: color 0.2s;
}
.step:hover .step-number { color: var(--lime-dim); }

.step-icon-wrap {
  width: 38px; height: 38px;
  background: var(--lime-dim);
  border: 1px solid rgba(200,245,58,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  margin-bottom: 14px;
}

.step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-top: 60px;
}
.step-connector::after {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--lime-dim), var(--border));
}

/* ─── FEATURES ───────────────────────────────────────────── */
.features-section {
  padding: 0 56px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--surface);
  padding: 32px 28px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: var(--surface2); }

.feature-card--large {
  grid-column: span 2;
}

.fc-icon {
  width: 42px; height: 42px;
  background: var(--lime-dim);
  border: 1px solid rgba(200,245,58,0.1);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime);
  margin-bottom: 16px;
}

.fc-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.fc-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.fc-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid rgba(200,245,58,0.1);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.fc-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.fcv-slide {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  flex: 1;
}
.fcv-slide.active { border-color: var(--lime); background: var(--lime-dim); }
.fcv-label { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.fcv-slide.active .fcv-label { color: var(--lime); }
.fcv-text { font-family: 'Bebas Neue', sans-serif; font-size: 13px; color: var(--white); line-height: 1.1; }

.fcv-arrow { color: var(--muted2); flex-shrink: 0; }

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-section {
  padding: 120px 56px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
  text-align: left;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.pricing-card--featured {
  border-color: var(--lime);
  background: linear-gradient(160deg, rgba(200,245,58,0.04) 0%, var(--surface) 60%);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #080809;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-header { margin-bottom: 20px; }
.plan-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--white);
}
.plan-price span { font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--muted); font-weight: 400; }

.plan-tokens {
  background: var(--surface2);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.pt-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--lime);
  line-height: 1;
}
.pt-label { font-size: 11px; color: var(--muted); margin-bottom: 8px; }

.token-bar {
  height: 3px;
  background: var(--surface3);
  border-radius: 2px;
  overflow: hidden;
}
.token-fill {
  height: 100%;
  background: linear-gradient(to right, var(--lime-dim), var(--lime));
  border-radius: 2px;
}

.plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }

.plan-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.plan-perks li {
  font-size: 13px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 9px;
}
.plan-perks li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
}
.plan-perks li.dim { color: var(--muted); }
.plan-perks li.dim::before { background: var(--muted2); }

.pricing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

/* ─── CTA SECTION ────────────────────────────────────────── */
.cta-section {
  padding: 0 56px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(200,245,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title span { color: var(--lime); }

.cta-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 56px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-logo span { color: var(--lime); }

.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 240px; }

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flg-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-links-group a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-links-group a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted2);
}
.footer-copy a { color: var(--lime); text-decoration: none; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 60px; }
  .hero-mockup { display: none; }
  .steps-track { grid-template-columns: 1fr 1fr; gap: 2px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-desktop-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 75vw);
    height: 100vh;
    background: var(--surface);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 80px 32px 40px;
    z-index: 99;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 16px 0; font-size: 15px; color: var(--white); }
  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 24px;
    margin-top: 6px;
    border-bottom: none !important;
  }
  .nav-mobile-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .hero { padding: 110px 24px 60px; }
  .how-section, .features-section, .pricing-section, .cta-section { padding-left: 24px; padding-right: 24px; }
  .steps-track { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 48px 28px; }
  .site-footer { padding: 40px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
