:root {
  --bg: #fff7e6;
  --surface: #fffcf6;
  --white: #ffffff;
  --ink: #242424;
  --coral: #ff6655;
  --coral-soft: #ffe2dc;
  --gold-soft: #fff0c6;
  --gold: #ffe9a7;
  --border: #eadfcc;
  --muted: rgba(36, 36, 36, 0.66);
  --shadow: 0 20px 60px rgba(73, 51, 24, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --shell: min(1120px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  width: var(--shell);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; }
.brand strong { font-size: 22px; font-weight: 950; letter-spacing: -0.8px; }
.brand small { font-size: 11px; font-weight: 750; opacity: 0.75; }
.brand em { color: var(--coral); font-style: normal; font-weight: 900; }

.header-cta,
.primary-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.header-cta,
.primary-button { background: var(--coral); color: #fff; box-shadow: 0 10px 24px rgba(255, 102, 85, 0.18); }
.dark-button { background: var(--ink); color: #fff; }
.header-cta:hover,
.primary-button:hover,
.dark-button:hover { transform: translateY(-2px); }
.header-cta:focus-visible,
.primary-button:focus-visible,
.dark-button:focus-visible,
a:focus-visible { outline: 3px solid rgba(36,36,36,.28); outline-offset: 4px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 950;
  letter-spacing: 1.7px;
}
.hero h1,
.section h2,
.final-cta h2,
.download-main h1 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -2px;
  line-height: .99;
}

.hero {
  padding: 48px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  align-items: center;
  gap: 52px;
}
.hero h1 { max-width: 690px; font-size: clamp(54px, 5.7vw, 82px); }
.hero-lede {
  max-width: 650px;
  margin: 22px 0 0;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.48;
  color: var(--muted);
}
.hero-lede strong { color: var(--ink); font-weight: 950; }
.hero-actions { margin-top: 28px; }
.primary-button { min-height: 56px; padding-inline: 26px; font-size: 16px; }

.hero-art { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-art::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(255,102,85,.08);
  right: 8%;
  top: 4%;
}
.phone-card {
  position: relative;
  z-index: 2;
  width: min(370px, 84%);
  padding: 25px 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 38px;
  box-shadow: 0 34px 80px rgba(73, 51, 24, .13);
  transform: rotate(1.5deg);
}
.phone-card::before {
  content: "";
  width: 94px;
  height: 7px;
  border-radius: 999px;
  background: rgba(36,36,36,.12);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.phone-topbar { display: flex; justify-content: space-between; align-items: center; padding-top: 7px; }
.phone-brand { font-size: 19px; font-weight: 950; letter-spacing: -.7px; }
.phone-pill { padding: 6px 10px; border-radius: 999px; background: var(--coral-soft); color: #c84f42; font-size: 9px; font-weight: 950; letter-spacing: .9px; }
.product-line { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding: 14px; border: 1px solid var(--border); border-radius: 17px; background: #fff; }
.product-thumb { width: 56px; height: 56px; display: grid; place-items: center; background: var(--bg); border-radius: 13px; font-size: 27px; }
.product-line > div:last-child { display: flex; flex-direction: column; gap: 2px; }
.product-label { font-size: 9px; font-weight: 950; letter-spacing: 1.1px; opacity: .45; }
.product-line strong { font-size: 24px; }
.verdict { margin-top: 14px; border-radius: var(--radius-md); padding: 19px; }
.wait-verdict { background: var(--gold-soft); }
.verdict > span { display: block; font-size: 43px; font-weight: 950; letter-spacing: -1.8px; }
.verdict > strong { display: block; margin-top: 2px; font-size: 15px; }
.verdict p { margin: 7px 0 0; font-size: 13px; line-height: 1.4; color: var(--muted); }
.watch-chip { margin-top: 12px; padding: 11px 12px; border-radius: 13px; background: var(--gold); font-size: 12px; font-weight: 850; text-align: center; }
.hero-taggy { position: absolute; z-index: 3; width: 220px; right: -4px; bottom: -4px; filter: drop-shadow(0 20px 26px rgba(73,51,24,.14)); }

.section { padding: 78px 0; }
.section-heading { max-width: 760px; }
.centered { margin-inline: auto; text-align: center; }
.section h2,
.final-cta h2 { font-size: clamp(40px, 4.5vw, 62px); }
.section-heading > p:last-child { margin: 17px 0 0; max-width: 620px; color: var(--muted); font-size: 17px; line-height: 1.5; }
.centered > p:last-child { margin-inline: auto; }
.compact-heading { max-width: 720px; }

.how-section { padding-top: 68px; padding-bottom: 68px; }
.steps-grid { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 126px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 14px 36px rgba(73,51,24,.04);
}
.step-number { flex: 0 0 40px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--coral); color: white; font-weight: 950; }
.step-card h3 { margin: 0; font-size: 19px; line-height: 1.15; letter-spacing: -.35px; }
.step-card p { margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.35; }

.intelligence-section { padding-top: 68px; }
.verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.decision-card {
  min-height: 230px;
  border-radius: var(--radius-lg);
  padding: 27px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(36,36,36,.07);
}
.buy-card { background: var(--coral-soft); }
.wait-card { background: var(--gold-soft); }
.decision-label { font-size: 9px; font-weight: 950; letter-spacing: 1.5px; opacity: .48; }
.decision-word { margin-top: 5px; font-size: clamp(62px, 7vw, 92px); line-height: .9; letter-spacing: -3px; }
.decision-card p { margin: 15px 0 0; font-size: 16px; line-height: 1.4; color: var(--muted); }

.watching-section { display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }
.watching-copy > p:not(.eyebrow) { margin: 18px 0 23px; max-width: 540px; color: var(--muted); font-size: 17px; line-height: 1.5; }
.watching-card { border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow); }
.watching-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.watching-status { display: inline-block; padding: 7px 11px; border-radius: 999px; background: var(--gold); font-size: 10px; font-weight: 950; letter-spacing: 1.1px; }
.watching-answer { font-size: 12px; font-weight: 950; letter-spacing: 1px; color: #9a7200; }
.watching-card h3 { margin: 18px 0 7px; font-size: 20px; }
.watching-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.watching-price-row strong { font-size: 38px; letter-spacing: -1.4px; }
.watching-price-row span { font-size: 12px; font-weight: 800; opacity: .55; }
.alert-row { display: flex; align-items: center; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(234,223,204,.75); font-size: 14px; font-weight: 800; }
.alert-row span { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: 11px; }

.trust-strip {
  margin-bottom: 78px;
  padding: 28px 30px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  text-align: center;
}
.trust-strip > p { margin: 0; font-size: clamp(22px, 2.7vw, 34px); line-height: 1.22; font-weight: 750; letter-spacing: -.7px; }
.trust-strip > p strong { font-weight: 950; }
.trust-points { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 12px 26px; flex-wrap: wrap; color: var(--muted); font-size: 13px; font-weight: 850; }
.trust-points span + span::before { content: "•"; margin-right: 26px; color: var(--coral); }

.final-cta { background: var(--coral); color: white; }
.final-cta-inner { min-height: 330px; display: grid; grid-template-columns: 150px 1fr auto; align-items: center; gap: 30px; }
.final-cta-inner img { width: 142px; }
.final-cta .eyebrow { color: rgba(255,255,255,.72); }
.final-cta p:last-child { margin: 15px 0 0; max-width: 590px; color: rgba(255,255,255,.84); font-size: 16px; line-height: 1.5; }

.site-footer { min-height: 142px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px 34px; }
.site-footer > div { display: flex; flex-direction: column; }
.site-footer strong { font-size: 19px; }
.site-footer span, .site-footer small { font-size: 11px; opacity: .54; }
.site-footer nav { display: flex; gap: 16px; font-size: 12px; font-weight: 850; }
.site-footer nav a { text-decoration: none; }
.site-footer small { grid-column: 1 / -1; }

.download-page { min-height: 100vh; display: flex; flex-direction: column; }
.download-main { flex: 1; width: min(920px, calc(100% - 40px)); margin: 0 auto; padding: 80px 0 100px; text-align: center; }
.download-main .download-taggy { width: 150px; margin: 0 auto 28px; }
.download-main h1 { font-size: clamp(50px, 7vw, 82px); }
.download-main > p { max-width: 650px; margin: 22px auto 0; color: var(--muted); font-size: 19px; line-height: 1.6; }
.store-grid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; text-align: left; }
.store-card { border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-md); padding: 28px; }
.store-card h2 { margin: 0; font-size: 26px; }
.store-card p { margin: 10px 0 22px; color: var(--muted); line-height: 1.55; }
.store-link { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 18px; border-radius: 14px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 900; }
.store-link[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.store-note { display: block; margin-top: 12px; font-size: 11px; opacity: .48; }

@media (max-width: 940px) {
  :root { --shell: min(100% - 30px, 760px); }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 34px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-actions { display: flex; justify-content: center; }
  .hero-art { min-height: 460px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .watching-section { grid-template-columns: 1fr; gap: 30px; }
  .final-cta-inner { grid-template-columns: 120px 1fr; padding: 38px 0; }
  .final-cta-inner .dark-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .site-header { min-height: 72px; }
  .brand img { width: 39px; height: 39px; }
  .brand strong { font-size: 19px; }
  .brand small { display: none; }
  .header-cta { min-height: 42px; padding-inline: 14px; font-size: 12px; }

  .hero { padding: 30px 0 44px; gap: 12px; }
  .hero h1 { font-size: clamp(45px, 13vw, 61px); }
  .hero-lede { margin-top: 18px; font-size: 17px; line-height: 1.48; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .primary-button { width: 100%; }
  .hero-art { min-height: 390px; margin-top: 2px; overflow: visible; }
  .hero-art::before { width: 300px; height: 300px; right: 0; }
  .phone-card { width: 94%; padding: 22px 17px 20px; border-radius: 32px; transform: none; }
  .product-line { margin-top: 18px; }
  .verdict { padding: 17px; }
  .verdict > span { font-size: 39px; }
  .hero-taggy { width: 150px; right: -4px; bottom: -10px; }

  .section { padding: 58px 0; }
  .section h2, .final-cta h2 { font-size: 39px; }
  .how-section { padding-top: 52px; padding-bottom: 52px; }
  .steps-grid { margin-top: 25px; gap: 10px; }
  .step-card { min-height: 92px; padding: 15px 16px; gap: 13px; }
  .step-number { flex-basis: 36px; width: 36px; height: 36px; border-radius: 12px; }
  .step-card h3 { font-size: 17px; }
  .step-card p { font-size: 13px; }

  .intelligence-section { padding-top: 56px; }
  .section-heading > p:last-child { margin-top: 14px; font-size: 15px; }
  .verdict-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
  .decision-card { min-height: 190px; padding: 19px 16px; border-radius: 22px; }
  .decision-label { font-size: 7px; letter-spacing: 1.2px; }
  .decision-word { font-size: clamp(48px, 15vw, 64px); letter-spacing: -2.5px; }
  .decision-card p { margin-top: 11px; font-size: 13px; line-height: 1.32; }

  .watching-copy > p:not(.eyebrow) { margin: 16px 0 20px; font-size: 16px; }
  .watching-copy .primary-button { width: 100%; }
  .watching-card { padding: 20px; border-radius: 23px; }
  .watching-card h3 { margin-top: 15px; }
  .watching-price-row { padding-bottom: 13px; }
  .watching-price-row strong { font-size: 34px; }
  .watching-price-row span { font-size: 11px; }
  .alert-row { padding: 11px 0; font-size: 13px; }

  .trust-strip { margin-bottom: 56px; padding: 22px 8px; }
  .trust-strip > p { font-size: 22px; }
  .trust-points { gap: 8px 14px; font-size: 11px; }
  .trust-points span + span::before { margin-right: 14px; }

  .final-cta-inner { grid-template-columns: 1fr; text-align: center; padding: 46px 0 48px; gap: 18px; }
  .final-cta-inner img { width: 126px; margin-inline: auto; }
  .final-cta-inner .dark-button { grid-column: auto; justify-self: stretch; }
  .final-cta p:last-child { margin-top: 13px; font-size: 15px; }

  .site-footer { min-height: auto; grid-template-columns: 1fr; padding: 28px 0 34px; align-items: start; }
  .site-footer small { grid-column: auto; }
  .store-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
