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

:root {
  --coral: #FF6B6B;
  --teal: #4ECDC4;
  --gold: #FFE66D;
  --navy: #1A1A2E;
  --navy-mid: #16213E;
  --text: #0F0F0F;
  --text-2: #444;
  --text-3: #888;
  --surface: #FAFAFA;
  --surface-2: #F4F4F5;
  --border: rgba(0,0,0,0.07);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: contain;
}

.logo-text { color: var(--text); }

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

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

.nav-cta { margin-left: auto; }

.btn-nav {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 20px;
  background: var(--coral);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: opacity var(--transition), transform var(--transition);
}

.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #fff8f8 0%, #f0fffe 50%, #fff 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -150px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
}

.hero-orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 35%;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-headline {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  background: linear-gradient(120deg, var(--coral) 0%, #ff8e53 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 460px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  background: var(--coral);
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(255,107,107,0.35);
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,107,0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 52px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  border-radius: 14px;
  transition: color var(--transition), background var(--transition);
}

.btn-ghost:hover { color: var(--text); background: rgba(0,0,0,0.04); }

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

.proof-avatars {
  display: flex;
}

.proof-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
}

.proof-avatars img:first-child { margin-left: 0; }

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-stars {
  font-size: 13px;
  color: #f5a623;
  letter-spacing: 1px;
}

.proof-text span {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}

/* ─── Phone Mockup ─── */
.hero-phone-wrap {
  position: absolute;
  right: max(24px, calc(50% - 560px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.phone-mockup {
  width: 280px;
  height: 570px;
  background: var(--navy);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 80px rgba(0,0,0,0.35),
    0 0 120px rgba(255,107,107,0.12),
    inset 0 1px 0 rgba(255,255,255,0.12);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--navy-mid);
  border-radius: 33px;
  overflow: hidden;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
}

.phone-ui {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.phone-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.phone-header > span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.phone-balance {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.balance-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.balance-amount {
  font-size: 28px;
  font-weight: 700;
  color: white;
  letter-spacing: -1px;
}

.phone-section-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.phone-offer-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 10px;
}

.offer-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.offer-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.offer-store {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.offer-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-pill {
  background: var(--coral);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}

#phone-offers {
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.phone-scan-btn {
  margin-top: auto;
  background: linear-gradient(135deg, var(--coral), #ff8e53);
  color: white;
  border-radius: 14px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* ─── Ticker ─── */
.ticker-wrap {
  overflow: hidden;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
}

.ticker-track .sep { opacity: 0.4; }

.ticker-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.ticker-offer strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}

.ticker-cb {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: rgba(78,205,196,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Live Offers ─── */
.offers-section {
  padding: 96px 0;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 4px;
  animation: pulse 2s ease-in-out infinite;
  vertical-align: middle;
}

.offers-carousel-wrap {
  overflow: hidden;
  padding: 0 24px;
  mask-image: linear-gradient(90deg, transparent, black 48px, black calc(100% - 48px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 48px, black calc(100% - 48px), transparent);
}

.offers-carousel {
  display: flex;
  gap: 16px;
  animation: scroll-offers 20s linear infinite;
  width: max-content;
}

.offers-carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll-offers {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.offer-card {
  flex-shrink: 0;
  width: 220px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-card-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.03);
}

.offer-card-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-card-cashback {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(78,205,196,0.12);
  color: #2a9d94;
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
}

.offer-card-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--coral);
  background: rgba(255,107,107,0.1);
  padding: 3px 8px;
  border-radius: 6px;
}

/* Phone offer with image */
.phone-offer-card .offer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

/* ─── Stat Section ─── */
.stat-section {
  padding: 96px 0;
}

.stat-card {
  background: var(--navy);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,107,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.stat-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.stat-headline {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 20px;
}

.stat-body {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.stat-body strong { color: rgba(255,255,255,0.85); }

.compare-chart {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.compare-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.compare-label {
  width: 72px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
  text-align: right;
}

.compare-bar-wrap {
  flex: 1;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
}

.compare-bar {
  height: 100%;
  width: var(--w);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 13px;
  font-weight: 700;
  color: white;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

.compare-bar-us {
  background: linear-gradient(90deg, var(--teal), #4ECDC4cc);
  box-shadow: 0 0 20px rgba(78,205,196,0.3);
}

.compare-bar-them {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
}

.compare-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

/* ─── Section common ─── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text);
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ─── How it works ─── */
.hiw {
  padding: 96px 0;
  background: var(--surface);
}

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.step-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,1);
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.hiw-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.hiw-step p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.hiw-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-top: 52px;
  flex-shrink: 0;
  position: relative;
}

.hiw-connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -3px;
  width: 8px;
  height: 8px;
  background: var(--border);
  border-radius: 50%;
}

/* ─── Why ─── */
.why {
  padding: 96px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.why-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-card-large {
  grid-column: span 2;
  background: linear-gradient(160deg, #fff8f8 0%, #fff 100%);
  border-color: rgba(255,107,107,0.2);
}

.why-card-wide {
  grid-column: span 2;
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--ic) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.why-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

.why-card-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,107,107,0.12);
}

.stat-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--coral);
  line-height: 1;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

/* ─── Stores ─── */
.stores-section {
  padding: 96px 0;
  background: var(--surface);
}

.store-categories {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 24px;
}

.store-cat-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-cat-chip {
  height: 36px;
  padding: 0 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: white;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
}

.store-cat-chip:hover,
.store-cat-chip.active {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
  font-weight: 600;
}

.stores-grid-wrap {
  padding: 0 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.store-tile {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--transition);
}

.store-tile:hover {
  border-color: rgba(255,107,107,0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.store-tile span:first-child {
  font-size: 28px;
  line-height: 1;
}

.store-tile span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-align: center;
}

.stores-more {
  text-align: center;
  margin-top: 32px;
}

.stores-more p {
  font-size: 14px;
  color: var(--text-3);
  font-weight: 500;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 96px 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tcard-featured {
  background: linear-gradient(160deg, #fff8f8 0%, #fff 100%);
  border-color: rgba(255,107,107,0.2);
}

.tcard-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--coral);
  opacity: 0.4;
  font-weight: 800;
  margin-bottom: -8px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.tcard-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.tcard-author > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.tcard-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.tcard-author span {
  font-size: 12px;
  color: var(--text-3);
}

.tcard-amount {
  background: rgba(78,205,196,0.12);
  color: #2a9d94;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

/* ─── Download CTA ─── */
.download {
  padding: 96px 0;
  background: var(--surface);
}

.download-card {
  background: var(--navy);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.download-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.download-orb-1 {
  width: 400px; height: 400px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(255,107,107,0.25) 0%, transparent 70%);
}

.download-orb-2 {
  width: 400px; height: 400px;
  bottom: -150px; right: -100px;
  background: radial-gradient(circle, rgba(78,205,196,0.25) 0%, transparent 70%);
}

.download-inner {
  position: relative;
  z-index: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.download-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: white;
}

.download-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  line-height: 1.65;
}

.download-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 16px;
  transition: transform var(--transition), background var(--transition);
  min-width: 180px;
}

.store-btn-apple {
  background: white;
  color: var(--text);
}

.store-btn-google {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.store-btn:hover { transform: translateY(-2px); }
.store-btn-soon { opacity: 0.45; cursor: default; pointer-events: none; }
.store-btn-apple:hover { background: #f0f0f0; }
.store-btn-google:hover { background: rgba(255,255,255,0.15); }

.store-btn > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.store-btn span {
  font-size: 11px;
  opacity: 0.7;
}

.store-btn strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.download-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.download-trust span { display: flex; align-items: center; gap: 4px; }

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 240px;
}

.footer-brand .nav-logo .logo-text { color: white; }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ─── Animations on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-phone-wrap { display: none; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-content { max-width: 100%; }
  .stat-card { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card-large,
  .why-card-wide { grid-column: span 2; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .tcard-featured { grid-column: span 2; }
  .stores-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-headline { letter-spacing: -1.5px; }
  .hiw-steps { flex-direction: column; align-items: center; }
  .hiw-connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, transparent, var(--border), transparent); }
  .hiw-connector::after { bottom: -5px; right: -3px; top: auto; }
  .stat-card { padding: 40px 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card-large,
  .why-card-wide { grid-column: span 1; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .tcard-featured { grid-column: span 1; }
  .stores-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .download-inner { padding: 48px 32px; }
}

@media (max-width: 480px) {
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .download-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 240px; justify-content: center; }
  .stat-card { padding: 32px 24px; }
  .hiw-step { padding: 0 16px; }
}

/* ─── Dark mode ─── */
@media (prefers-color-scheme: dark) {
  :root {
    --text: #F0F0F0;
    --text-2: #A0A0A0;
    --text-3: #666;
    --surface: #111111;
    --surface-2: #0A0A0A;
    --border: rgba(255,255,255,0.07);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
  }

  body { background: #0A0A0A; }

  .hero {
    background: linear-gradient(160deg, #110a0a 0%, #0a1110 50%, #0a0a0a 100%);
  }

  .nav.scrolled {
    background: rgba(10,10,10,0.92);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  }

  .step-icon-wrap {
    background: #1a1a1a;
    border-color: rgba(255,255,255,0.08);
  }

  .store-cat-chip {
    background: #1a1a1a;
    color: var(--text-2);
  }

  .store-tile {
    background: #1a1a1a;
  }

  .why-card-large {
    background: linear-gradient(160deg, #1a0f0f 0%, #111 100%);
    border-color: rgba(255,107,107,0.15);
  }

  .tcard-featured {
    background: linear-gradient(160deg, #1a0f0f 0%, #111 100%);
    border-color: rgba(255,107,107,0.15);
  }

  .store-btn-apple {
    background: rgba(255,255,255,0.1);
    color: white;
  }

  .store-btn-apple:hover { background: rgba(255,255,255,0.15); }

  .ticker-wrap { background: #0a0a0a; }
}
