/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #F4A261;
  --orange-dim: rgba(244, 162, 97, 0.15);
  --orange-border: rgba(244, 162, 97, 0.3);
  --bg: #0e0e1a;
  --bg-raised: #1a1a2e;
  --text: #ffffff;
  --text-muted: #9090aa;
  --divider: rgba(255, 255, 255, 0.06);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --bg-nav: rgba(14, 14, 26, 0.92);
  --bg-deep: #0a0a14;
  --text-on-orange: #111;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--orange-border);
  z-index: 100;
}

.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

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

.nav-cta {
  background: var(--orange);
  color: var(--text-on-orange);
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.15s;
}

.nav-cta:hover {
  opacity: 0.88;
}

/* ── BADGE GROUP (shared by hero and final CTA) ── */
.badge-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.15s;
}

.badge:hover {
  opacity: 0.85;
}

.badge-icon {
  font-size: 20px;
}

.badge-primary {
  background: var(--orange);
  color: var(--text-on-orange);
}

.badge-secondary {
  border: 1.5px solid var(--orange-border);
  color: var(--orange);
}

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 110px 24px 90px;
  background: radial-gradient(ellipse at 50% 0%, var(--orange-dim) 0%, transparent 65%);
}

.hero-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-headline em {
  color: var(--orange);
  font-style: normal;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* ── FEATURES ── */
.features {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 96px 0;
  border-bottom: 1px solid var(--divider);
}

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

.feature-row--reverse {
  flex-direction: row-reverse;
}

/* ── FEATURE TEXT ── */
.feature-text {
  flex: 1;
}

.feature-tag {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 420px;
}

/* ── PHONE FRAME ── */
.feature-phone {
  flex: 0 0 260px;
}

.phone-frame {
  background: var(--bg-raised);
  border: 2px solid var(--orange-border);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(244, 162, 97, 0.08);
}

.phone-notch {
  height: 28px;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-notch-pill {
  width: 64px;
  height: 8px;
  background: var(--bg-raised);
  border-radius: 4px;
}

.phone-screenshot {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 110px 24px;
  border-top: 1px solid var(--divider);
  background: radial-gradient(ellipse at 50% 100%, var(--orange-dim) 0%, transparent 65%);
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.final-cta h2 em {
  color: var(--orange);
  font-style: normal;
}

.final-cta p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 44px;
}

/* ── FOOTER ── */
.footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--divider);
  color: var(--text-muted);
  font-size: 13px;
}

.footer a {
  color: var(--orange);
}

.footer a:hover {
  opacity: 0.8;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-logo {
    font-size: 15px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 72px 20px 64px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .badge {
    padding: 11px 20px;
    font-size: 14px;
  }

  .features {
    padding: 0 20px;
  }

  .feature-row,
  .feature-row--reverse {
    flex-direction: column;
    gap: 40px;
    padding: 64px 0;
    text-align: center;
  }

  .feature-text p {
    max-width: 100%;
  }

  .feature-phone {
    flex: 0 0 auto;
    width: 220px;
    margin: 0 auto;
  }

  .final-cta {
    padding: 72px 20px;
  }
}
