/* ─── ROOT ─── */
:root {
  --bg:        #F3EFE6;
  --bg2:       #EDE9DF;
  --card:      #FAF7F2;
  --primary:   #FF5F4E;
  --primary2:  #E8441A;
  --prim-glow: rgba(255, 95, 78, 0.18);
  --rose:      #E0142A;
  --text:      #18160F;
  --muted:     #7A7468;
  --muted2:    #B0A99A;
  --border:    rgba(24,22,15,0.10);
  --border2:   rgba(24,22,15,0.18);

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Nunito', sans-serif;
  --display: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
  position: relative;
}

/* ─── GRAIN ─── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ─── BACKGROUND GLOWS ─── */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,95,78,0.12) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: glowDrift 22s ease-in-out infinite alternate;
}
.bg-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224,20,42,0.07) 0%, transparent 70%);
  bottom: 10%; left: -100px;
  animation: glowDrift 18s ease-in-out infinite alternate-reverse;
}
@keyframes glowDrift {
  from { transform: translate(0, 0); }
  to   { transform: translate(50px, 80px); }
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: 1100px;
  transition: top 0.3s ease;
}
.nav.scrolled .nav-inner {
  background: rgba(243,239,230,0.88);
  box-shadow: 0 4px 30px rgba(24,22,15,0.08);
}
.nav-inner {
  background: rgba(243,239,230,0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  color: var(--primary);
  font-size: 13px;
}
.logo-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  margin-left: 8px;
}
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  padding: 10px 22px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 18px rgba(255,95,78,0.28);
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,95,78,0.38);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 32px 60px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  max-width: 1100px;
  width: 100%;
}

/* Left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(255,95,78,0.28);
  background: rgba(255,95,78,0.08);
  padding: 7px 14px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--primary);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-cta { display: flex; flex-direction: column; gap: 14px; }

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 18px;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(24,22,15,0.18);
}
.btn-appstore:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(24,22,15,0.22);
}
.btn-appstore.large {
  padding: 20px 36px;
  border-radius: 22px;
  font-size: 18px;
}
.apple-logo {
  width: 22px;
  height: 27px;
  flex-shrink: 0;
}
.btn-appstore.large .apple-logo { width: 26px; height: 32px; }
.appstore-text {
  display: flex;
  flex-direction: column;
}
.appstore-text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.65;
  line-height: 1;
  margin-bottom: 1px;
}
.appstore-text {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}
.cta-note {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 500;
  padding-left: 4px;
}

/* ─── PHONE ─── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-scene {
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
  50%       { transform: translateY(-18px) rotate(-0.5deg); }
}

.phone-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(255,95,78,0.22) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.phone-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(24,22,15,0.18) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.phone {
  width: 280px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.phone-frame {
  background: #1A1612;
  border-radius: 52px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.5),
    0 0 0 7px #131110,
    0 0 0 8.5px rgba(255,255,255,0.06),
    0 50px 120px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 50px;
}

.phone-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #0A0907;
  border-radius: 100px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
  z-index: 10;
  pointer-events: none;
}


.phone-screen {
  width: 100%;
  height: 580px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

/* Side buttons */
.phone-btn-vol-up, .phone-btn-vol-dn, .phone-btn-power {
  position: absolute;
  background: #1A1612;
  border-radius: 2px;
}
.phone-btn-vol-up {
  left: -3px;
  top: 110px;
  width: 3px;
  height: 32px;
  box-shadow: -1px 0 0 rgba(255,255,255,0.05);
}
.phone-btn-vol-dn {
  left: -3px;
  top: 152px;
  width: 3px;
  height: 32px;
  box-shadow: -1px 0 0 rgba(255,255,255,0.05);
}
.phone-btn-power {
  right: -3px;
  top: 130px;
  width: 3px;
  height: 50px;
  box-shadow: 1px 0 0 rgba(255,255,255,0.05);
}

/* ─── APP SCREEN ─── */
.app-screen {
  position: relative;
  width: 100%;
  height: 100%;
}

.app-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.app-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.app-slide.exit {
  opacity: 0;
  transform: scale(1.03);
}

.app-bg {
  position: absolute;
  inset: 0;
  background: #F3EFE6;
}

.app-glow-tr {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,95,78,0.18), transparent 70%);
  pointer-events: none;
}
.app-glow-bl {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(200,80,100,0.10), transparent 70%);
  pointer-events: none;
}

.app-content {
  position: relative;
  z-index: 1;
  padding: 20px 20px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Splash */
.splash {
  justify-content: flex-end;
  padding-bottom: 30px;
  padding-top: 60px;
}
.app-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,95,78,0.1);
  border: 1px solid rgba(255,95,78,0.2);
  padding: 5px 10px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 14px;
}
.app-title-big {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 400;
  line-height: 0.92;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.app-title-big em {
  font-style: italic;
  color: var(--primary);
}
.app-divider {
  width: 30px;
  height: 1px;
  background: var(--border2);
  margin: 12px 0;
}
.app-tagline {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.app-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255,95,78,0.35);
  transition: transform 0.15s;
}
.app-btn:active { transform: scale(0.97); }
.app-btn.small { padding: 12px; font-size: 13px; margin-top: auto; }

/* Stats screen */
.stats-screen {
  padding-top: 70px;
  gap: 0;
}
.stats-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.stats-time {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  margin-bottom: 14px;
}
.stats-bar-wrap {
  height: 2px;
  background: rgba(24,22,15,0.1);
  border-radius: 99px;
  margin-bottom: 6px;
  overflow: hidden;
}
.stats-bar {
  height: 100%;
  background: var(--primary);
  border-radius: 99px;
}
.stats-sub {
  font-size: 11px;
  color: #22C55E;
  font-weight: 600;
  margin-bottom: 18px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.stats-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.sc-label { font-size: 10px; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.sc-num { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--text); line-height: 1; }
.sc-num.green { color: #22C55E; }
.sc-trend { font-size: 10px; color: #f97316; margin-top: 4px; }
.sc-trend.green { color: #22C55E; }

/* Profile screen */
.profile-screen {
  padding-top: 70px;
  gap: 0;
}
.profile-label {
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.profile-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
}
.profile-bars { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.pbar {}
.pbar-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}
.pbar-pct { font-weight: 700; }
.pbar-pct.red { color: #E0142A; }
.pbar-pct.orange { color: var(--primary); }
.pbar-track { height: 1px; background: rgba(24,22,15,0.1); overflow: hidden; }
.pbar-fill { height: 100%; }
.pbar-fill.red { background: #E0142A; }
.pbar-fill.orange { background: var(--primary); }

/* Slide dots */
.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(24,22,15,0.18);
  transition: all 0.3s ease;
}
.dot.active {
  width: 18px;
  background: var(--primary);
}

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 64px;
  opacity: 0.4;
  animation: fadeIn 1s ease 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--muted));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.4); opacity: 0.8; }
}

/* ─── SECTION SHARED ─── */
.section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.section-title.centered { text-align: center; }
.section-title em {
  font-style: italic;
  color: var(--primary);
}
.section-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 64px;
}

/* ─── WHAT / PROBLEM ─── */
.what {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.big-stat {
  background: var(--card);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.big-num {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}
.big-label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 220px;
}

/* ─── HOW ─── */
.how {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
}
.step-num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  padding-top: 4px;
  opacity: 0.9;
}
.step-content h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
}
.step-connector {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, var(--border2), var(--border));
  margin-left: 22px;
}

/* ─── FEATURES ─── */
.features {
  position: relative;
  z-index: 1;
  padding: 120px 32px;
  background: var(--bg2);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(24,22,15,0.08);
}
.feature-icon {
  color: var(--primary);
  margin-bottom: 4px;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ─── PROOF ─── */
.proof {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background: var(--bg);
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease;
}
.review:hover { transform: translateY(-3px); }
.review-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; }
.review p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-author strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.review-author span {
  font-size: 11px;
  color: var(--muted);
}

/* ─── FINAL CTA ─── */
.final-cta {
  position: relative;
  z-index: 1;
  padding: 80px 32px 120px;
  display: flex;
  justify-content: center;
  background: var(--bg2);
}
.cta-card {
  position: relative;
  max-width: 600px;
  width: 100%;
  background: var(--text);
  border-radius: 32px;
  padding: 72px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,95,78,0.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 110px);
  font-weight: 400;
  line-height: 0.88;
  color: var(--bg);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.cta-title em {
  font-style: italic;
  color: var(--primary);
}
.cta-body {
  font-size: 15px;
  color: rgba(243,239,230,0.55);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 360px;
}
.cta-card .btn-appstore {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 36px rgba(255,95,78,0.45);
  margin-bottom: 24px;
}
.cta-card .btn-appstore:hover {
  box-shadow: 0 16px 48px rgba(255,95,78,0.55);
}
.cta-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-badges span {
  font-size: 12px;
  color: rgba(243,239,230,0.4);
  font-weight: 500;
}

/* ─── FOOTER ─── */
.footer {
  position: relative;
  z-index: 1;
  background: var(--text);
  padding: 60px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand .logo-text { color: var(--bg); font-size: 17px; }
.footer-brand .logo-mark { color: var(--primary); }
.footer-brand p {
  font-size: 12px;
  color: rgba(243,239,230,0.35);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: rgba(243,239,230,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--bg); }
.footer-copy {
  font-size: 12px;
  color: rgba(243,239,230,0.25);
  text-align: right;
}

/* ─── REVEAL ANIMATIONS ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal="left"] {
  transform: translateX(-28px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal="right"] {
  transform: translateX(28px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
  }
  .hero-left { align-items: center; }
  .hero-right { order: -1; }
  .badge { margin-left: auto; margin-right: auto; }
  .hero-stats { max-width: 380px; }
  .stat-label { max-width: none; }
  .btn-appstore { align-self: center; }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr; max-width: 480px; margin: 56px auto 0; }
  .stats-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-brand { align-items: center; }
  .cta-card { padding: 52px 32px; }
}

@media (max-width: 600px) {
  .hero { padding: 90px 24px 40px; }
  .phone { width: 230px; }
  .phone-screen { height: 410px; }
  .features-inner { grid-template-columns: 1fr; }
  .section-inner { padding: 0 24px; }
  .what, .how, .proof { padding: 80px 0; }
  .features { padding: 80px 24px; }
  .nav { width: calc(100% - 32px); }
  .nav-links { display: none; }
  .cta-card { padding: 48px 24px; border-radius: 24px; }
}
