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

:root {
  --bg:        #07080F;
  --bg-card:   #0D1018;
  --bg-card2:  #141820;
  --gold:      #FF6B35;
  --gold-dim:  #cc4d15;
  --cream:     #EDF0F7;
  --cream-dim: #858CA8;
  --border:    rgba(255, 107, 53, 0.18);
  --border-s:  rgba(255, 107, 53, 0.08);
  --shadow:    0 24px 80px rgba(0,0,0,0.7);
  --r:         16px;
  --r-sm:      10px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(7, 8, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-s);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--cream);
}
.logo-icon {
  height: 26px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-cta {
  background: var(--gold);
  color: #07080F;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-badge {
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.3;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.4) 0%, transparent 70%);
  top: -100px; left: -200px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,124,232,0.2) 0%, transparent 70%);
  bottom: -80px; right: -150px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

/* === BUTTONS === */
.btn-primary {
  background: var(--gold);
  color: #07080F;
  border: none;
  border-radius: 100px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary--large { padding: 16px 32px; font-size: 16px; }
.btn-icon { transition: transform 0.2s; }
.btn-primary:hover .btn-icon { transform: translateX(3px); }

/* === PHONE MOCKUP === */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-frame {
  width: 260px;
  background: #0B0D16;
  border: 1.5px solid rgba(255,107,53,0.2);
  border-radius: 44px;
  padding: 20px 16px 28px;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.03),
    var(--shadow);
  position: relative;
  z-index: 1;
}
.phone-notch {
  width: 80px;
  height: 10px;
  background: #07080F;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 20px;
}
.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.phone-app-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}
.phone-streak {
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.phone-status-pill {
  background: rgba(52,199,89,0.12);
  border: 1px solid rgba(52,199,89,0.25);
  border-radius: 100px;
  padding: 8px 16px;
  text-align: center;
  margin-bottom: 14px;
}
.phone-status-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34C759;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse-dot 2s ease-in-out infinite;
}
.phone-status-label {
  font-size: 12px;
  font-weight: 700;
  color: #34C759;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.phone-timer {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.phone-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.phone-stat {
  background: #141820;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
}
.phone-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 3px;
}
.phone-stat-label {
  font-size: 9px;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.phone-app-row {
  background: #141820;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.phone-app-name-small {
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
}
.phone-app-lock {
  font-size: 11px;
  color: var(--gold);
}
.phone-end-btn {
  background: rgba(255,59,48,0.12);
  border: 1px solid rgba(255,59,48,0.25);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #FF3B30;
  letter-spacing: 0.04em;
}
.screenshot-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(255,107,53,0.18) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}
.hero-screenshot {
  width: 260px;
  position: relative;
  z-index: 1;
  display: block;
}
/* === STAT BAND === */
.stat-band {
  background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(74,124,232,0.04) 100%);
  border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s);
  padding: 60px 0;
}
.stat-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-divider {
  width: 60px; height: 2px;
  background: var(--border);
  margin: 8px auto 16px;
}
.stat-text p {
  font-size: 18px;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 8px;
}
.stat-source {
  font-size: 13px !important;
  color: var(--cream-dim) !important;
}

/* === SECTIONS === */
.section { padding: 100px 0; }

.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 60px;
}
.section-headline em {
  font-style: italic;
  color: var(--gold);
}

/* === PROBLEM === */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.problem-icon {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--gold);
  line-height: 1;
}
.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* === FEATURES === */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-screenshot {
  width: 260px;
  display: block;
  margin: 0 auto;
}
.feature-block--reverse { direction: rtl; }
.feature-block--reverse > * { direction: ltr; }

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}
.feature-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 16px;
}
.feature-text p {
  font-size: 16px;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* Feature card mockups */
.feature-card-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}
.fcm-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.fcm-item {
  background: var(--bg-card2);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--cream);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fcm-item-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.fcm-item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fcm-lock {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
}

/* Control center mockup */
.fcm-cc {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 16px;
}
.fcm-cc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}
.fcm-cc-tile {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.fcm-cc-tile--active {
  background: var(--gold);
}
.fcm-cc-tile--active span {
  filter: brightness(0) invert(0.1);
}
.fcm-cc-label {
  font-size: 11px;
  color: var(--cream-dim);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

/* Stats mockup */
.fcm-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.fcm-stat-box {
  background: var(--bg-card2);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}
.fcm-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 4px;
}
.fcm-stat-label {
  font-size: 9px;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.fcm-streak-bar {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}
.fcm-streak-day {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--bg-card2);
}
.fcm-streak-day--done { background: var(--gold); }
.fcm-streak-label {
  font-size: 11px;
  color: var(--cream-dim);
  margin-top: 8px;
  text-align: center;
}

/* === AUDIENCE === */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-s);
  border-radius: var(--r);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.audience-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.audience-icon {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1;
}
.audience-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.audience-card p {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.65;
}

/* === FINAL CTA === */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
.final-cta-glow {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  color: var(--gold);
  line-height: 1.45;
  margin-bottom: 48px;
  position: relative;
}
.stat-attribution {
  font-size: 14px;
  color: var(--cream-dim);
  font-style: normal;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
}
.final-cta-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.final-cta-sub {
  font-size: 17px;
  color: var(--cream-dim);
  margin-bottom: 36px;
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-s);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--cream-dim);
  margin-top: 8px;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: 14px;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-s);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(237,240,247,0.25);
  text-align: center;
}

/* === ANIMATION === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal.delay-1 { transition-delay: 0.12s; }
.scroll-reveal.delay-2 { transition-delay: 0.24s; }
.scroll-reveal.delay-3 { transition-delay: 0.36s; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-visual { display: none; }
  .feature-block,
  .feature-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .problem-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { padding: 100px 0 60px; }
  .stat-inner { gap: 24px; }
}
