:root {
  --bg: #F2F2F7;
  --surface: #FFFFFF;
  --surface-soft: #FAFAFC;
  --ink: #000000;
  --ink-soft: #1C1C1E;
  --muted: #8E8E93;
  --border: #E5E5EA;
  --accent: #007AFF;
  --green: #34C759;
  --red: #FF3B30;
  --r-lg: 24px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px -8px rgba(0,0,0,.08);
  --shadow-soft: 0 1px 3px rgba(0,0,0,.04);
  --shadow-float: 0 -4px 20px -6px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1000px 700px at 20% 10%, #DCE7FF 0%, transparent 60%),
    radial-gradient(900px 600px at 90% 80%, #FFE4EC 0%, transparent 60%),
    radial-gradient(700px 500px at 60% 50%, #E5FBEA 0%, transparent 70%),
    #EDEDF2;
  filter: blur(60px) saturate(120%);
  transform: scale(1.1);
}

.phone {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 440px;
  min-height: 100vh;
  background: var(--bg);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.25), 0 10px 30px -10px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  padding-bottom: 128px;
}

/* App bar */
.appbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(242,242,247,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: .5px solid var(--border);
}
.appbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 8px;
  background: var(--ink); color: var(--surface);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
}
.brand-name { font-size: 15px; font-weight: 600; letter-spacing: -.01em; }
.age-pill {
  font-size: 11px; font-weight: 600; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border);
  padding: 4px 8px; border-radius: 999px; letter-spacing: .02em;
}

.content { padding: 16px 16px 0; }

.card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

/* Hero */
.hero-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.hero-text { min-width: 0; flex: 1; }
.eyebrow {
  font-size: 11px; font-weight: 600; color: var(--muted);
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px;
}
.hero-title {
  font-size: 22px; font-weight: 700; line-height: 1.2;
  letter-spacing: -.02em; margin: 0; color: var(--ink);
}
.hero-logo { height: 28px; width: auto; object-fit: contain; flex-shrink: 0; }

.rating {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding: 14px 16px;
  background: var(--surface-soft); border-radius: var(--r-md);
}
.rating-label {
  font-size: 10px; font-weight: 600; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
}
.rating-value {
  font-size: 32px; font-weight: 700; line-height: 1;
  letter-spacing: -.03em; margin-top: 2px;
}
.rating-value span { font-size: 16px; color: var(--muted); font-weight: 500; }
.bars { display: flex; gap: 3px; }
.bar { width: 6px; height: 22px; border-radius: 3px; background: var(--border); display: block; }
.bar.full { background: var(--accent); }
.bar.partial { background: linear-gradient(to top, var(--accent) 20%, var(--border) 20%); }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface-soft); border: 1px solid var(--border);
  padding: 6px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 500; color: var(--ink-soft);
}

/* Carousel */
.carousel { margin-top: 16px; }
.carousel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 10px;
}
.carousel-title {
  font-size: 12px; font-weight: 600; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
}
.arrows { display: flex; gap: 4px; }
.arrow {
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--shadow-soft); color: var(--ink);
}
.arrow:disabled { opacity: .4; cursor: default; }

.scroller {
  display: flex; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.scroller::-webkit-scrollbar { display: none; }

.slide-wrap {
  flex: 0 0 100%;
  scroll-snap-align: center;
  padding: 0 2px;
}
.slide { min-height: 380px; }

.slide-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.slide-eyebrow.accent { color: var(--accent); }

/* Bonus */
.bonus-value {
  font-size: 68px; font-weight: 700; line-height: 1;
  letter-spacing: -.04em; margin-top: 6px; color: var(--ink);
}
.bonus-sub { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 500; }
.feature-box {
  margin-top: 18px; background: var(--surface-soft);
  border-radius: var(--r-md); padding: 4px 14px;
}
.feature-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-tick {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--accent);
  display: grid; place-items: center; flex-shrink: 0;
}
.feature-txt { font-size: 14px; font-weight: 500; color: var(--ink-soft); line-height: 1.3; }

.mini-label {
  margin-top: 16px; font-size: 10px; font-weight: 600;
  color: var(--muted); letter-spacing: .1em; text-transform: uppercase;
}
.pay-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pay-chip {
  background: var(--surface-soft); border: 1px solid var(--border);
  padding: 6px 10px; border-radius: 10px;
  font-size: 12px; font-weight: 600; color: var(--ink-soft);
}

/* Pros & Cons */
.pros-box, .cons-box {
  border-radius: var(--r-md); padding: 14px 16px; margin-bottom: 12px;
}
.pros-box { background: rgba(52,199,89,.08); }
.cons-box { background: rgba(255,59,48,.07); margin-bottom: 0; }
.pc-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px;
}
.pc-label.green { color: var(--green); }
.pc-label.red { color: var(--red); }
.pc-list { margin: 0; padding: 0; list-style: none; }
.pc-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; font-size: 13.5px; color: var(--ink-soft);
}

/* Steps */
.steps { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.step {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--surface-soft); border-radius: var(--r-md);
  padding: 14px;
}
.step-num {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--surface); border: 1.5px solid var(--accent);
  color: var(--accent); display: grid; place-items: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.step-title { font-size: 14.5px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.step-text { font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.4; }

/* Dots */
.dots { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 12px; }
.dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--border); border: none; padding: 0; cursor: pointer;
  transition: width .2s, background .2s;
}
.dot.active { width: 20px; background: var(--accent); }

/* Secondary */
.secondary { display: flex; gap: 10px; margin-top: 16px; }
.sec-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 12px 14px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  cursor: pointer; box-shadow: var(--shadow-soft);
  text-decoration: none; font-family: inherit;
}

/* Sticky footer */
.sticky-footer-wrap {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 30; pointer-events: none;
}
.sticky-footer {
  margin: 0 auto; max-width: 440px; pointer-events: auto;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: .5px solid var(--border);
  padding: 10px 16px 18px;
  box-shadow: var(--shadow-float);
}
.disclaimer {
  font-size: 10px; color: var(--muted); line-height: 1.35;
  margin: 0 0 8px; text-align: center;
}
.cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, #3395FF 0%, #007AFF 100%);
  color: #fff; text-decoration: none;
  padding: 15px 20px; border-radius: 16px;
  font-size: 16px; font-weight: 600; letter-spacing: .02em;
  box-shadow: 0 6px 16px -4px rgba(0,122,255,.5), 0 2px 4px rgba(0,122,255,.2);
}
