:root {
  --bg: #FAF7F2;
  --bg-alt: #F2EDE5;
  --fg: #1C1C1C;
  --fg-muted: #6B6459;
  --accent: #E85D3B;
  --accent-dark: #C94A28;
  --navy: #1E3A5F;
  --border: #E2DAD0;
  --card-bg: #FFFFFF;
  --success: #2D8A5F;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  line-height: 1.15;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 72px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(232, 93, 59, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(30, 58, 95, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-product {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: none;
}

.hero-product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 24px rgba(28, 28, 28, 0.06);
}

.product-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45, 138, 95, 0.2);
}

.badge-dot::before {
  content: '';
  display: block;
  animation: pulse 2s infinite;
}

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

.product-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--success);
}

.product-screen {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.screen-row:last-child { border-bottom: none; }

.screen-label {
  font-size: 12px;
  color: var(--fg-muted);
}

.screen-val {
  font-family: 'Space Grotesk', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.screen-val.highlight {
  color: var(--accent);
}

.screen-val.accent {
  color: var(--navy);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}

.eyebrow-tag {
  background: var(--navy);
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.eyebrow-divider { color: var(--border); }

.hero-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--fg);
  line-height: 1.05;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── How It Works ── */
.how-it-works {
  padding: 80px 24px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 1120px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

.steps-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}

.step-num {
  font-family: 'Space Grotesk', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 44px;
  color: var(--border);
  flex-shrink: 0;
}

/* ── Features ── */
.features {
  padding: 80px 24px;
  background: var(--bg);
}

.features-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 32px rgba(28, 28, 28, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── The Gap ── */
.the-gap {
  padding: 80px 24px;
  background: var(--navy);
}

.gap-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.gap-left .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.gap-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: #fff;
  margin-top: 12px;
  line-height: 1.2;
}

.gap-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 20px;
  line-height: 1.7;
}

.gap-block {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 14px;
}

.gap-block.highlight {
  background: rgba(232, 93, 59, 0.15);
  border-color: rgba(232, 93, 59, 0.3);
}

.gap-block-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.gap-block-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.gap-block-text strong {
  color: #fff;
  font-weight: 600;
}

.gap-block-text em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* ── Closing ── */
.closing {
  padding: 80px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-headline {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  line-height: 1.65;
}

.closing-specs {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

.spec svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  padding: 32px 24px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 3px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
}

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

.footer-sep { color: var(--border); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right {
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-sub { text-align: center; }
  .hero-stats { justify-content: center; }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gap-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .steps-grid {
    flex-direction: column;
    gap: 12px;
  }

  .step-arrow {
    display: none;
  }
}

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

  .closing-specs {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}