/* ==========================================================================
   Lumi marketing site — design system
   No framework, no CDN. Tokens mirror docs/DESIGN_SYSTEM.md §3 and
   packages/lumi_theme/lib/src/lumi_color_schemes.dart.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --purple: #4a1d6e;
  --purple-lit: #6b2e9c;
  --purple-glow: #7c3aad;
  --lavender: #a89ef5;
  --gold: #d4af37;
  --gold-bright: #f4c95d;
  --gold-ink: #a16207;
  --green: #10b981;
  --green-ink: #047857;
  --orange: #f59e0b;
  --orange-ink: #c2410c;
  --red: #ef4444;

  --night: #0f0a1f;
  --night-2: #1a142e;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --surface: #fafafa;
  --white: #fff;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 6px 20px rgba(74, 29, 110, 0.08);
  --shadow-lift: 0 18px 40px rgba(74, 29, 110, 0.16);
  --glow-gold: 0 0 28px rgba(212, 175, 55, 0.45);
  --glow-purple: 0 0 34px rgba(124, 58, 173, 0.5);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-body: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: Poppins, Inter, system-ui, sans-serif;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
button { font: inherit; }

:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--white); color: var(--purple);
  padding: 0.75rem 1.25rem; border-radius: 999px; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --- Layout ------------------------------------------------------------- */
.wrap { width: min(100% - 3rem, 72rem); margin-inline: auto; }
.wrap-narrow { width: min(100% - 3rem, 46rem); margin-inline: auto; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }

.eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--purple-lit);
}

.section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; }
.section-lead {
  color: var(--muted); font-size: 1.05rem;
  max-width: 38rem; margin-inline: auto; margin-top: 1rem;
}

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }

/* --- Navigation --------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4.25rem;
}
.brand {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  color: var(--purple); display: inline-flex; align-items: center; gap: 0.55rem;
}
.brand-mark {
  width: 1.85rem; height: 1.85rem; border-radius: 0.6rem; flex: none;
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  display: grid; place-items: center; color: var(--gold-bright);
  font-size: 0.95rem; box-shadow: 0 4px 14px rgba(74, 29, 110, 0.35);
}
.brand small { font-size: 0.8rem; font-weight: 500; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 0.35rem; }
.nav-links a {
  padding: 0.55rem 0.85rem; font-size: 0.925rem; font-weight: 500;
  color: var(--ink); border-radius: 999px; transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--purple); background: rgba(74, 29, 110, 0.06); }
.nav-links a[aria-current="page"] { color: var(--purple); font-weight: 600; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 0.5rem; color: var(--ink); border-radius: 10px;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem; border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 600; font-size: 0.975rem; text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background 0.2s, color 0.2s;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #3b2c00; box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}
.btn-gold:hover { box-shadow: var(--glow-gold), 0 10px 26px rgba(212, 175, 55, 0.45); }

.btn-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  color: #fff; box-shadow: 0 6px 18px rgba(74, 29, 110, 0.32);
}
.btn-purple:hover { box-shadow: var(--glow-purple), 0 12px 28px rgba(74, 29, 110, 0.4); }

.btn-white { background: #fff; color: var(--purple); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16); }
.btn-white:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22); }

.btn-ghost { background: rgba(255, 255, 255, 0.08); color: #fff; border: 1px solid rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

.btn-outline { background: transparent; color: var(--purple); border: 2px solid var(--purple); }
.btn-outline:hover { background: rgba(74, 29, 110, 0.07); }

/* Shine sweep on primary CTAs */
.btn-gold::after, .btn-purple::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.55) 50%, transparent 65%);
  transform: translateX(-130%);
}
.btn-gold:hover::after, .btn-purple:hover::after { animation: shine 0.85s var(--ease); }
@keyframes shine { to { transform: translateX(130%); } }

/* Not-yet-available action — reads as a button, isn't clickable */
.btn.is-soon {
  cursor: default; opacity: 0.72; box-shadow: none;
  filter: saturate(0.75);
}
.btn.is-soon:hover { transform: none; box-shadow: none; }
.btn.is-soon::after { content: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-row.center { justify-content: center; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(115% 90% at 80% 0%, #6b2e9c 0%, transparent 55%),
    radial-gradient(90% 80% at 0% 100%, #3d1a5c 0%, transparent 60%),
    linear-gradient(160deg, #2a0f45 0%, #1a0d2e 55%, #0f0a1f 100%);
  isolation: isolate;
}
.hero > * { position: relative; z-index: 2; }

/* Aurora blobs */
.hero::before {
  content: ""; position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(28rem 28rem at 18% 22%, rgba(168, 158, 245, 0.42), transparent 65%),
    radial-gradient(24rem 24rem at 82% 18%, rgba(212, 175, 55, 0.3), transparent 65%),
    radial-gradient(26rem 26rem at 65% 88%, rgba(16, 185, 129, 0.22), transparent 65%);
  filter: blur(28px);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(2.5%, -3%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 2.5%, 0) scale(1.03); }
}

/* Dot grid texture */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(80% 65% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 65% at 50% 40%, #000 25%, transparent 78%);
}

.hero-inner {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem); align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4.5rem, 10vw, 8rem);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 700; margin-bottom: 1.25rem;
}
.hero p.lead {
  font-size: clamp(1.03rem, 1.6vw, 1.2rem); color: rgba(255, 255, 255, 0.82);
  max-width: 34rem; margin-bottom: 2rem;
}
.shimmer {
  background: linear-gradient(100deg, var(--gold-bright) 0%, #fff6d5 30%, var(--gold) 55%, var(--gold-bright) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sweep 6s linear infinite;
}
@keyframes sweep { to { background-position: -220% 0; } }

.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.42rem 0.95rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.5rem; backdrop-filter: blur(6px);
}
.pip {
  width: 0.5rem; height: 0.5rem; border-radius: 999px; background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(244, 201, 93, 0.75); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 0.55rem rgba(244, 201, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(244, 201, 93, 0); }
}

.hero-note { font-size: 0.875rem; color: rgba(255, 255, 255, 0.6); margin-top: 1.5rem; }

/* Hero trust stats */
.stats { display: flex; flex-wrap: wrap; gap: 2.25rem; margin-top: 2.75rem; }
.stat-num {
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 700;
  color: var(--gold-bright); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.62); margin-top: 0.35rem; }

/* --- Phone / wallet card mock ------------------------------------------- */
.mock {
  background: rgba(255, 255, 255, 0.97); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
  max-width: 21rem; margin-left: auto; color: var(--ink);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  50% { transform: translateY(-14px); }
}
.mock-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.1rem; }
.mock-logo {
  width: 2.7rem; height: 2.7rem; border-radius: 999px; flex: none;
  background: linear-gradient(135deg, #f3ebf8, #ede4f5); color: var(--purple);
  display: grid; place-items: center; font-weight: 700;
}
.mock-name { font-weight: 600; font-size: 0.95rem; }
.mock-sub { font-size: 0.78rem; color: var(--muted); }

.stamps { display: flex; gap: 0.5rem; margin-bottom: 0.9rem; }
.stamp {
  width: 2.25rem; height: 2.25rem; border-radius: 999px; flex: none;
  border: 2px dashed var(--line); background: #f6f7f9;
  display: grid; place-items: center; color: #fff; font-size: 0.9rem;
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.stamp.on {
  background: linear-gradient(135deg, #34d399, var(--green));
  border: 2px solid transparent; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.45);
  transform: scale(1.06);
}
.stamp.pop { animation: pop 0.45s var(--ease); }
@keyframes pop {
  40% { transform: scale(1.35) rotate(-8deg); }
  100% { transform: scale(1.06); }
}

.mock-progress { font-size: 0.85rem; font-weight: 600; color: var(--green-ink); margin-bottom: 1rem; }
.mock-reward {
  background: linear-gradient(135deg, #fff8e1, #fdf0c8); border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 14px; padding: 0.8rem 1rem; text-align: center;
  font-weight: 600; font-size: 0.9rem; color: var(--gold-ink);
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s var(--ease);
}
.mock-reward.show { opacity: 1; transform: none; }

.qr {
  background: var(--surface); border-radius: 14px; padding: 0.9rem;
  display: grid; place-items: center; margin-top: 0.9rem;
}
.qr-grid { display: grid; grid-template-columns: repeat(7, 0.6rem); gap: 3px; }
.qr-grid i { width: 0.6rem; height: 0.6rem; border-radius: 2px; background: transparent; }
.qr-grid i.f { background: var(--ink); }
.mock-hint { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 0.6rem; }

/* --- Cards -------------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(74, 29, 110, 0.22); }
.card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.55rem; }
.card p { color: var(--muted); font-size: 0.94rem; }

.card-icon {
  width: 3rem; height: 3rem; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
  background: linear-gradient(135deg, #f3ebf8, #ede4f5);
  transition: transform 0.35s var(--ease);
}
.card:hover .card-icon { transform: scale(1.1) rotate(-6deg); }

/* Numbered step cards */
.step-num {
  width: 2.4rem; height: 2.4rem; border-radius: 999px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  box-shadow: 0 5px 14px rgba(74, 29, 110, 0.35);
}
.card-rail { position: absolute; inset: 0 auto 0 0; width: 4px; }
.rail-gold { background: linear-gradient(180deg, var(--gold-bright), var(--gold)); }
.rail-green { background: linear-gradient(180deg, #34d399, var(--green)); }
.rail-purple { background: linear-gradient(180deg, var(--lavender), var(--purple-lit)); }

/* --- Bands -------------------------------------------------------------- */
.band-soft { background: var(--surface); border-block: 1px solid var(--line); }
.band-dark {
  color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, #5c2585 50%, var(--purple-glow) 100%);
}
.band-dark::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(30rem 18rem at 85% 20%, rgba(212, 175, 55, 0.28), transparent 65%);
  pointer-events: none;
}
.band-dark > * { position: relative; z-index: 1; }
.band-dark p { color: rgba(255, 255, 255, 0.78); }

/* --- Marquee ------------------------------------------------------------ */
.marquee {
  overflow: hidden; padding: 1.5rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: slide 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem; white-space: nowrap;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.6rem 1.15rem; font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow);
}

/* --- Pricing ------------------------------------------------------------ */
.tiers { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); align-items: start; }
.tier { display: flex; flex-direction: column; height: 100%; }
.tier-featured {
  border: 2px solid var(--purple); box-shadow: 0 18px 44px rgba(74, 29, 110, 0.2);
}
.tier-flag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #3b2c00;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.32rem 1.1rem; border-radius: 0 0 10px 10px;
}
.tier-featured { padding-top: 2.6rem; }
.price { font-family: var(--font-display); font-size: 2.7rem; font-weight: 700; line-height: 1; }
.price-unit { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.price-sub { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; }
.tier ul { margin: 1.6rem 0; display: grid; gap: 0.6rem; flex: 1; }
.tier li { font-size: 0.9rem; color: var(--muted); padding-left: 1.6rem; position: relative; }
.tier li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  color: var(--green-ink); font-weight: 700;
}

/* Period toggle (mensual / anual) */
.period {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.3rem; position: relative;
}
.period button {
  border: 0; background: transparent; cursor: pointer;
  padding: 0.55rem 1.35rem; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem; color: var(--muted);
  transition: color 0.2s, background 0.25s var(--ease), box-shadow 0.25s;
}
.period button[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  color: #fff; box-shadow: 0 4px 14px rgba(74, 29, 110, 0.32);
}
.period-save {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-left: 0.75rem; vertical-align: middle;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #3b2c00; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 999px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.4);
}
@media (max-width: 520px) {
  .period-save { display: flex; margin: 0.85rem auto 0; width: fit-content; }
}

/* Price swap animation */
.price, .price-sub { transition: opacity 0.18s ease; }
.price-switching .price, .price-switching .price-sub { opacity: 0; }
.price-year-note { font-size: 0.78rem; color: var(--green-ink); font-weight: 600; margin-top: 0.35rem; }

/* Comparison table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.matrix { width: 100%; min-width: 44rem; border-collapse: collapse; }
table.matrix th, table.matrix td {
  padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line);
  font-size: 0.875rem; text-align: center; vertical-align: top;
}
table.matrix thead th {
  background: linear-gradient(135deg, var(--purple), var(--purple-glow));
  color: #fff; font-weight: 600; position: sticky; top: 0;
}
table.matrix tbody th { text-align: left; font-weight: 600; color: var(--ink); }
table.matrix tbody tr:nth-child(odd) { background: var(--surface); }
table.matrix tbody tr:hover { background: rgba(74, 29, 110, 0.05); }
.yes { color: var(--green-ink); font-weight: 700; }
.no { color: var(--muted); }
.cell-note { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: 0.85rem; }
details.qa {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.1rem 1.3rem; transition: border-color 0.25s, box-shadow 0.25s;
}
details.qa[open] { border-color: rgba(74, 29, 110, 0.3); box-shadow: var(--shadow); }
details.qa summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+"; font-size: 1.35rem; color: var(--purple); line-height: 1;
  transition: transform 0.25s var(--ease); flex: none;
}
details.qa[open] summary::after { transform: rotate(45deg); }
details.qa p { margin-top: 0.8rem; color: var(--muted); font-size: 0.92rem; }

/* --- Footer ------------------------------------------------------------- */
.footer { background: var(--night); color: rgba(255, 255, 255, 0.68); }
.footer-grid {
  display: grid; gap: 2.5rem; padding: 3.5rem 0;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
.footer h4 {
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; margin-bottom: 1rem; font-weight: 600;
}
.footer li + li { margin-top: 0.55rem; }
.footer a { font-size: 0.9rem; transition: color 0.2s; }
.footer a:hover { color: var(--gold-bright); }
.footer .brand { color: #fff; }
.footer-note {
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 1.5rem 0;
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.5);
}

/* --- Long-form / legal -------------------------------------------------- */
.prose h1 { font-size: clamp(1.9rem, 4vw, 2.4rem); margin-bottom: 0.6rem; }
.prose h2 { font-size: 1.2rem; margin: 2.2rem 0 0.6rem; color: var(--purple); }
.prose p, .prose li { color: #374151; margin-bottom: 0.8rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; }
.prose a { color: var(--purple-lit); text-decoration: underline; }
.prose strong { color: var(--ink); }
.notice {
  background: #fff8e1; border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px; padding: 0.9rem 1.15rem; font-size: 0.875rem; margin-bottom: 2rem;
}
.legal-nav {
  display: flex; flex-wrap: wrap; gap: 1.5rem; padding: 1.6rem 0;
  font-size: 0.8rem; color: var(--muted); border-top: 1px solid var(--line);
}

/* --- VIP ----------------------------------------------------------------
   Dedicated bronze/champagne palette from packages/lumi_theme/src/lumi_vip_theme.dart.
   VIP surfaces are always-dark luxury chrome and carry NO purple — same rule
   as the app (docs/DESIGN_SYSTEM.md §3.1, docs/views/lumi/home.md).
   ------------------------------------------------------------------------ */
:root {
  --vip-ink: #1f1a22;
  --vip-bronze: #2e2630;
  --vip-gold: #d4af37;
  --vip-gold-bright: #e9cb6b;
  --vip-champagne: #efe2c0;
  --vip-on-gold: #3a2c00;
}

.band-vip {
  background: linear-gradient(135deg, var(--vip-ink) 0%, var(--vip-bronze) 100%);
  color: var(--vip-champagne);
  position: relative; overflow: hidden;
  border-block: 1px solid rgba(212, 175, 55, 0.35);
}
.band-vip::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(34rem 22rem at 78% 15%, rgba(233, 203, 107, 0.16), transparent 62%);
}
.band-vip > * { position: relative; z-index: 1; }
.band-vip h2, .band-vip h3 { color: #fff; }
.band-vip p { color: rgba(239, 226, 192, 0.82); }
.band-vip .eyebrow { color: var(--vip-gold-bright); }

.vip-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: linear-gradient(135deg, var(--vip-gold-bright), var(--vip-gold));
  color: var(--vip-on-gold); font-weight: 700; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.45);
}
.member-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff; font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.32rem 0.85rem; border-radius: 999px;
}

/* Status card — mirrors the app's hero VIP block */
.vip-card {
  background: linear-gradient(135deg, #241e28 0%, #362c39 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.vip-card-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.4rem;
}
.vip-points {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 700;
  color: var(--vip-gold-bright); line-height: 1;
}
.vip-points span { font-size: 1rem; color: rgba(239, 226, 192, 0.6); font-weight: 500; }

.meter {
  height: 0.6rem; border-radius: 999px; margin: 1.1rem 0 0.7rem;
  background: rgba(255, 255, 255, 0.12); overflow: hidden;
}
.meter-fill {
  height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--vip-gold), var(--vip-gold-bright));
  box-shadow: 0 0 14px rgba(233, 203, 107, 0.7);
  transition: width 1.6s var(--ease);
}
.meter-note { font-size: 0.85rem; color: var(--vip-champagne); font-weight: 500; }
.meter-note strong { color: var(--vip-gold-bright); }

/* Locked / unlocked offer tiles */
.vip-offers { display: grid; gap: 0.75rem; margin-top: 1.5rem; }
.vip-offer {
  display: flex; align-items: center; gap: 0.85rem;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px; padding: 0.85rem 1rem; font-size: 0.9rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.vip-offer .lock { font-size: 1.05rem; flex: none; }
.vip-offer.unlocked {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(233, 203, 107, 0.1));
  border-color: rgba(233, 203, 107, 0.7); transform: translateX(4px);
}
.vip-offer .biz { color: #fff; font-weight: 600; }
.vip-offer .what { color: rgba(239, 226, 192, 0.7); font-size: 0.82rem; }

/* Tier ladder Member → VIP */
.ladder { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.rung {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius); padding: 1.6rem;
}
.rung.is-vip { border-color: rgba(212, 175, 55, 0.55); background: rgba(212, 175, 55, 0.08); }
.rung h3 { font-size: 1.1rem; margin: 0.9rem 0 0.6rem; }
.rung ul { display: grid; gap: 0.5rem; margin-top: 0.9rem; }
.rung li { font-size: 0.88rem; padding-left: 1.4rem; position: relative; color: rgba(239, 226, 192, 0.8); }
.rung li::before { content: "→"; position: absolute; left: 0; color: var(--vip-gold-bright); }

/* Gold sparkle on the VIP badge */
.sparkle { display: inline-block; animation: twinkle 2.6s ease-in-out infinite; }
@keyframes twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

/* Inline VIP flag used on the merchant page */
.vip-tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: linear-gradient(135deg, var(--vip-gold-bright), var(--vip-gold));
  color: var(--vip-on-gold); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 0.2rem 0.6rem; border-radius: 999px; vertical-align: middle;
}

/* --- Scroll reveal ------------------------------------------------------ */
[data-reveal] {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .mock { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 4.25rem;
    flex-direction: column; align-items: stretch; gap: 0.25rem;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem 1.5rem 1.5rem; box-shadow: var(--shadow);
  }
  .nav-links[hidden] { display: none; }
  .nav-links a { padding: 0.75rem 0.5rem; }
  .nav-links .btn { margin-top: 0.5rem; }
  .stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Motion / contrast preferences -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .nav, .footer, .hero::before, .hero::after { display: none; }
  body { color: #000; }
}
