:root {
  color-scheme: light;
  /* Monster Gold */
  --gold: #ffd646;
  --gold-deep: #feb700;
  --gold-ink: #785500;
  /* Playful Purple */
  --purple: #9720ab;
  --purple-soft: #fcbcff;
  --purple-ink: #7c0091;
  /* Alert Orange */
  --orange: #ff9475;
  /* Success green */
  --green: #46d678;
  --green-deep: #2bb45c;
  /* Warm surfaces */
  --bg: #fff6e1;
  --surface: #ffffff;
  --surface-low: #fff0c4;
  --surface-mid: #ffe796;
  --rose: #ffe3dd;
  /* Warm brown text (never pure black) */
  --ink: #392e00;
  --ink-2: #695b23;
  --ink-3: #86763b;
  /* Ambient warm shadow */
  --shadow-sm: 0 6px 18px rgba(57, 46, 0, 0.06);
  --shadow-md: 0 14px 36px rgba(57, 46, 0, 0.10);
  --shadow-lg: 0 30px 70px rgba(57, 46, 0, 0.14);
  --r-md: 18px;
  --r-lg: 30px;
  --r-xl: 42px;
  --maxw: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(40rem 40rem at 88% -8%, rgba(151, 32, 171, 0.10), transparent 60%),
    radial-gradient(34rem 34rem at -6% 6%, rgba(255, 214, 70, 0.30), transparent 60%),
    radial-gradient(40rem 30rem at 50% 116%, rgba(255, 148, 117, 0.14), transparent 60%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

a {
  color: inherit;
}

.wrap {
  width: min(100% - 40px, var(--maxw));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- Buttons ---------- */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: var(--gold-ink);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.97);
}

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 246, 225, 0.72);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
}

.brand .accent {
  color: var(--purple);
}

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

.nav-links a.link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-2);
  text-decoration: none;
}

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

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  padding: 72px 0 96px;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  line-height: 0.98;
  font-weight: 800;
}

.hero h1 .hl {
  position: relative;
  white-space: nowrap;
  color: var(--purple);
}

.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--gold);
  border-radius: 999px;
  z-index: -1;
  opacity: 0.6;
}

.hero p.lede {
  margin: 24px 0 0;
  max-width: 30rem;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--ink-2);
}

/* Waitlist form */
.waitlist {
  margin-top: 34px;
  max-width: 30rem;
}

.field {
  display: flex;
  gap: 10px;
  background: var(--surface);
  padding: 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.field input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
}

.field input::placeholder {
  color: var(--ink-3);
}

.field .btn-primary {
  flex: none;
  white-space: nowrap;
}

.select {
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 46px 15px 22px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background-color: var(--surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2386763b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 14px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* Grey out while the disabled placeholder option is still selected. */
.select:invalid {
  color: var(--ink-3);
}

.select:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

.form-note {
  margin: 12px 4px 0;
  font-size: 0.85rem;
  color: var(--ink-3);
  min-height: 1.2em;
}

.form-note.ok {
  color: var(--green-deep);
  font-weight: 600;
}

.form-note.err {
  color: #b02500;
  font-weight: 600;
}

/* Availability pill */
.geo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 22px 0 0;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
}

.geo-dot {
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(70, 214, 120, 0.2);
}

/* Store badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px 20px 14px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

a.badge {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, var(--shadow-sm));
}

.badge .glyph {
  flex: none;
  width: 26px;
  height: 26px;
  display: block;
  fill: currentColor;
}

.badge .b-top {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.badge .b-main {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.1;
}

.badge .soon {
  margin-left: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 3px 7px;
  border-radius: 999px;
}

/* Hero visual — phone + mascot */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.blob {
  position: absolute;
  inset: 8% 6%;
  background: linear-gradient(150deg, var(--surface-mid), var(--purple-soft));
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  filter: blur(2px);
  opacity: 0.7;
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(300px, 78%);
  aspect-ratio: 446 / 900;
  border-radius: 44px;
  background: #fff;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.phone::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 7px;
  border-radius: 999px;
  background: rgba(57, 46, 0, 0.18);
  z-index: 3;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
  display: block;
}

.mascot {
  position: absolute;
  z-index: 3;
  width: 116px;
  height: 116px;
  right: 2%;
  top: 3%;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  transform: rotate(6deg);
}

.savings-chip {
  position: absolute;
  z-index: 4;
  left: -2%;
  bottom: 14%;
  background: var(--surface);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  transform: rotate(-4deg);
}

.savings-chip .s-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.savings-chip .s-amount {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  color: var(--green-deep);
  line-height: 1.1;
}

/* ---------- Section scaffolding ---------- */
section.block {
  padding: 64px 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 44px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.04;
}

.section-head p {
  margin: 16px 0 0;
  font-size: 1.1rem;
  color: var(--ink-2);
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Separate the "Already approved?" CTA from the steps above it on the
   Android beta page, where a .cta directly follows .steps in one section.
   Without this they touch (0px gap) and read as cramped, especially on
   mobile where the steps stack into a single column. */
.steps + .cta {
  margin-top: 48px;
}

.step {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 34px 30px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step:nth-child(2) {
  background: linear-gradient(160deg, #fff, var(--surface-low));
}

.step .num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--purple);
  background: var(--purple-soft);
  margin-bottom: 20px;
}

.step:nth-child(2) .num {
  color: var(--gold-ink);
  background: var(--gold);
}

.step:nth-child(3) .num {
  color: #fff;
  background: var(--green-deep);
}

.step h3 {
  font-size: 1.32rem;
  font-weight: 700;
}

.step p {
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 1rem;
}

/* ---------- Retailers ---------- */
.retailers {
  background: linear-gradient(180deg, var(--surface), #fffaf0);
  border-radius: var(--r-xl);
  padding: 56px clamp(24px, 5vw, 64px);
  box-shadow: var(--shadow-sm);
}

.retailer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.retailer {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.retailer:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.retailer .days {
  flex: none;
  min-width: 62px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 0.9;
  font-size: 2.9rem;
  color: var(--purple);
}

.retailer .r-info {
  flex: 1;
  min-width: 0;
}

.retailer .r-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.retailer .r-cat {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-top: 2px;
}

.retailer .days small {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 3px;
}

.retailer-group + .retailer-group {
  margin-top: 44px;
}

.group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
}

.group-label .eyebrow {
  flex: none;
}

.group-label::after {
  content: "";
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 214, 70, 0.5), transparent);
}

.store-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  background: var(--bg);
  border-radius: 999px;
  padding: 11px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.store-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.retailers .foot {
  margin-top: 32px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-3);
}

/* ---------- Stat band ---------- */
.band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat .figure {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
}

.stat:nth-child(1) .figure { color: var(--green-deep); }
.stat:nth-child(2) .figure { color: var(--purple); }
.stat:nth-child(3) .figure { color: var(--gold-deep); }

.stat .cap {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 1rem;
}

/* ---------- Final CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold-ink);
  max-width: 24rem;
  margin-inline: auto;
  line-height: 1.02;
}

.cta p {
  margin: 16px auto 0;
  max-width: 30rem;
  color: #6a4d08;
  font-size: 1.1rem;
  font-weight: 500;
}

.cta .waitlist {
  margin-inline: auto;
}

.cta .badges {
  justify-content: center;
}

.cta .field {
  box-shadow: var(--shadow-md);
}

.cta .field .btn-primary {
  background: var(--ink);
  color: #fff;
}

.cta .mascot-lg {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 30px;
  bottom: -22px;
  right: -10px;
  transform: rotate(-10deg);
  box-shadow: var(--shadow-lg);
  opacity: 0.96;
}

/* ---------- Footer ---------- */
footer.site {
  padding: 56px 0 64px;
  color: var(--ink-2);
}

.foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 0.95rem;
}

.foot-links a:hover {
  color: var(--ink);
}

.foot-meta {
  margin-top: 22px;
  font-size: 0.86rem;
  color: var(--ink-3);
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 40px 0 64px;
    text-align: center;
  }

  .hero p.lede,
  .waitlist,
  .geo {
    margin-inline: auto;
  }

  .badges {
    justify-content: center;
  }

  .hero-visual {
    min-height: 460px;
    margin-top: 12px;
  }

  .steps,
  .retailer-grid,
  .band {
    grid-template-columns: 1fr;
  }

  .nav-links .link {
    display: none;
  }
}

@media (max-width: 540px) {
  .field {
    flex-direction: column;
    border-radius: var(--r-md);
    padding: 12px;
  }

  .field input {
    padding: 10px 12px;
    text-align: center;
  }

  .field .btn-primary {
    width: 100%;
  }

  .badges {
    flex-direction: column;
    align-items: stretch;
  }

  .badge {
    width: 100%;
  }

  .badge .soon {
    margin-left: auto;
  }

  .savings-chip {
    left: 0;
  }

  .cta {
    padding-bottom: 116px;
  }

  .cta .mascot-lg {
    width: 96px;
    height: 96px;
    bottom: 14px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
