/* NORO — public site styles.
 *
 *   Landing (index.html) uses a horizontal marketing layout:
 *     nav · hero (2-col on desktop) · features · why · final-cta · footer
 *
 *   Shared-reading (r.html) and pick-a-card (pick.html) keep the narrow
 *   phone-frame layout because those are app-like experiences — the
 *   visitor is mid-flow, not browsing a marketing page.
 *
 *   Both share the same color palette + typography so the brand stays
 *   coherent across the funnel.
 */

:root {
  --bg: #0E1226;
  --bg-soft: #171B33;
  --surface: #1E2240;
  --purple-deep: #191542;
  --gold: #E5B568;
  --gold-glow: rgba(229, 181, 104, 0.55);
  --gold-soft: rgba(229, 181, 104, 0.18);
  --pink: #E8A5B7;
  --pink-soft: rgba(232, 165, 183, 0.16);
  --lavender: #8AA3D6;
  --lavender-soft: rgba(138, 163, 214, 0.16);
  --cream: #FAEBD0;
  --text-hi: #FAEBD0;
  --text-mid: #D9CDB8;
  --text-lo: #8E94B0;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text-hi);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  overflow-x: hidden;
}

/* Base body bg — dominantly dark midnight. Aurora hints sit at the
 * corners only, never spilling into the center, so the page reads as
 * "night sky with distant glows" instead of a bright pastel mesh.
 * Mirrors mobile MysticBackground's color alphas (55 / 38 hex = ~33% /
 * 22% over the deep base) — feel rather than wash. */
body {
  background:
    radial-gradient(ellipse 60% 50% at 15% 5%,  rgba(232, 165, 183, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 95%, rgba(138, 163, 214, 0.10), transparent 70%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(14, 18, 38, 0.4),     transparent 80%),
    var(--bg);
}

/* ─────────────────── ANIMATED BACKGROUND ────────────────────
 *
 * Mirrors the mobile MysticBackground:
 *   • Slow-twinkling star field, three layers at different speeds
 *   • Two orbital rings rotating around the page center
 *   • Aurora gradients slow-pulse so the whole background breathes
 *
 * All pure CSS, all `position: fixed` so it stays in place during
 * scroll. Pointer-events: none so it never blocks clicks.
 * ----------------------------------------------------------------- */

.stars { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }

/* Three star layers — varying density, brightness and twinkle speed */
.stars::before,
.stars::after,
.stars > .star-3 {
  content: '';
  position: absolute;
  inset: -10%;
  background-repeat: repeat;
  background-size: 100% 100%;
  will-change: opacity, transform;
}
/* Layer 1 — big bright "anchor" stars, fast twinkle (2.6s) */
.stars::before {
  background-image:
    radial-gradient(2.5px 2.5px at 6%  9%,  rgba(255,255,255,1), transparent 65%),
    radial-gradient(3px 3px     at 14% 22%, rgba(250,235,208,1), transparent 65%),
    radial-gradient(2px 2px     at 22% 6%,  rgba(255,255,255,1), transparent 65%),
    radial-gradient(3.5px 3.5px at 31% 18%, rgba(229,181,104,1), transparent 65%),
    radial-gradient(2px 2px     at 40% 28%, rgba(255,255,255,1), transparent 65%),
    radial-gradient(2.5px 2.5px at 49% 10%, rgba(250,235,208,1), transparent 65%),
    radial-gradient(2px 2px     at 58% 32%, rgba(232,165,183,1), transparent 65%),
    radial-gradient(3px 3px     at 67% 14%, rgba(229,181,104,1), transparent 65%),
    radial-gradient(2px 2px     at 76% 26%, rgba(255,255,255,1), transparent 65%),
    radial-gradient(3px 3px     at 85% 8%,  rgba(250,235,208,1), transparent 65%),
    radial-gradient(2.5px 2.5px at 94% 22%, rgba(138,163,214,1), transparent 65%),
    radial-gradient(3px 3px     at 4%  44%, rgba(229,181,104,1), transparent 65%),
    radial-gradient(2px 2px     at 13% 56%, rgba(255,255,255,1), transparent 65%),
    radial-gradient(2.5px 2.5px at 22% 68%, rgba(250,235,208,1), transparent 65%),
    radial-gradient(3px 3px     at 31% 80%, rgba(138,163,214,1), transparent 65%),
    radial-gradient(2px 2px     at 40% 92%, rgba(255,255,255,1), transparent 65%),
    radial-gradient(2.5px 2.5px at 49% 60%, rgba(232,165,183,1), transparent 65%),
    radial-gradient(3.5px 3.5px at 58% 72%, rgba(229,181,104,1), transparent 65%),
    radial-gradient(2px 2px     at 67% 84%, rgba(255,255,255,1), transparent 65%),
    radial-gradient(2.5px 2.5px at 76% 56%, rgba(250,235,208,1), transparent 65%),
    radial-gradient(3px 3px     at 85% 68%, rgba(229,181,104,1), transparent 65%),
    radial-gradient(2px 2px     at 94% 80%, rgba(232,165,183,1), transparent 65%),
    radial-gradient(2.5px 2.5px at 3%  94%, rgba(255,255,255,1), transparent 65%),
    radial-gradient(2px 2px     at 12% 38%, rgba(250,235,208,1), transparent 65%);
  background-size: 100% 100%;
  animation: twinkle-strong 2.6s ease-in-out infinite, drift-a 60s linear infinite;
}

/* Layer 2 — medium scattered stars, slower twinkle */
.stars::after {
  background-image:
    radial-gradient(1.5px 1.5px at 9%  18%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(2px 2px     at 17% 32%, rgba(250,235,208,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 26% 4%,  rgba(229,181,104,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 33% 24%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(2px 2px     at 42% 40%, rgba(138,163,214,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 51% 16%, rgba(232,165,183,0.95), transparent 70%),
    radial-gradient(2.5px 2.5px at 60% 28%, rgba(255,255,255,1), transparent 70%),
    radial-gradient(1.5px 1.5px at 68% 4%,  rgba(229,181,104,0.95), transparent 70%),
    radial-gradient(2px 2px     at 77% 22%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 86% 36%, rgba(250,235,208,0.95), transparent 70%),
    radial-gradient(2.5px 2.5px at 95% 14%, rgba(229,181,104,1), transparent 70%),
    radial-gradient(1.5px 1.5px at 7%  50%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(2px 2px     at 16% 62%, rgba(232,165,183,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 25% 76%, rgba(250,235,208,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 34% 92%, rgba(138,163,214,0.95), transparent 70%),
    radial-gradient(2px 2px     at 43% 64%, rgba(229,181,104,1), transparent 70%),
    radial-gradient(2.5px 2.5px at 52% 80%, rgba(255,255,255,1), transparent 70%),
    radial-gradient(1.5px 1.5px at 61% 92%, rgba(250,235,208,0.95), transparent 70%),
    radial-gradient(2px 2px     at 70% 58%, rgba(232,165,183,0.95), transparent 70%),
    radial-gradient(1.5px 1.5px at 79% 70%, rgba(255,255,255,0.95), transparent 70%),
    radial-gradient(2.5px 2.5px at 88% 88%, rgba(229,181,104,1), transparent 70%),
    radial-gradient(1.5px 1.5px at 97% 60%, rgba(255,255,255,0.95), transparent 70%);
  background-size: 100% 100%;
  animation: twinkle-medium 4.5s ease-in-out infinite, drift-b 90s linear infinite;
  animation-delay: -1.5s, 0s;
}

/* Layer 3 — small dim background stars, very slow drift */
.stars > .star-3 {
  background-image:
    radial-gradient(1px 1px at 4%  6%,  rgba(255,255,255,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 11% 14%, rgba(250,235,208,0.7), transparent 75%),
    radial-gradient(1px 1px at 19% 24%, rgba(255,255,255,0.65), transparent 75%),
    radial-gradient(1px 1px at 28% 8%,  rgba(229,181,104,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 37% 30%, rgba(138,163,214,0.7), transparent 75%),
    radial-gradient(1px 1px at 46% 16%, rgba(255,255,255,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 55% 4%,  rgba(232,165,183,0.7), transparent 75%),
    radial-gradient(1px 1px at 64% 22%, rgba(250,235,208,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 73% 34%, rgba(229,181,104,0.7), transparent 75%),
    radial-gradient(1px 1px at 82% 10%, rgba(255,255,255,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 91% 24%, rgba(250,235,208,0.7), transparent 75%),
    radial-gradient(1px 1px at 6%  42%, rgba(229,181,104,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 15% 54%, rgba(255,255,255,0.7), transparent 75%),
    radial-gradient(1px 1px at 24% 66%, rgba(232,165,183,0.7), transparent 75%),
    radial-gradient(1px 1px at 33% 78%, rgba(250,235,208,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 42% 94%, rgba(255,255,255,0.7), transparent 75%),
    radial-gradient(1px 1px at 51% 70%, rgba(138,163,214,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 60% 82%, rgba(229,181,104,0.7), transparent 75%),
    radial-gradient(1px 1px at 69% 96%, rgba(250,235,208,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 78% 66%, rgba(255,255,255,0.7), transparent 75%),
    radial-gradient(1px 1px at 87% 78%, rgba(229,181,104,0.7), transparent 75%),
    radial-gradient(1.5px 1.5px at 96% 90%, rgba(255,255,255,0.7), transparent 75%);
  background-size: 100% 100%;
  animation: twinkle-soft 7s ease-in-out infinite, drift-c 160s linear infinite;
}

@keyframes twinkle-strong {
  0%, 100% { opacity: 0.55; filter: brightness(0.9); }
  50%      { opacity: 1;    filter: brightness(1.6) drop-shadow(0 0 6px rgba(255, 240, 200, 0.55)); }
}
@keyframes twinkle-medium {
  0%, 100% { opacity: 0.6;  filter: brightness(1);   }
  50%      { opacity: 1;    filter: brightness(1.3); }
}
@keyframes twinkle-soft {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 0.95; }
}
@keyframes drift-a {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-5%, -6%, 0); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(6%, 4%, 0); }
}
@keyframes drift-c {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-4%, 5%, 0); }
}

/* Orbital rings — slow rotate, gold + lavender, blurred glow */
.stars > .ring {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(229, 181, 104, 0.14);
  box-shadow:
    inset 0 0 80px rgba(229, 181, 104, 0.08),
    0 0 60px rgba(229, 181, 104, 0.06);
}
.stars > .ring.r1 {
  width: 90vmax; height: 90vmax;
  top: 50%; left: 50%;
  transform-origin: center;
  animation: orbit-1 80s linear infinite;
}
.stars > .ring.r2 {
  width: 130vmax; height: 130vmax;
  top: 50%; left: 50%;
  border-color: rgba(138, 163, 214, 0.10);
  animation: orbit-2 130s linear infinite;
}
.stars > .ring.r3 {
  width: 60vmax; height: 60vmax;
  top: 50%; left: 50%;
  border-color: rgba(232, 165, 183, 0.10);
  animation: orbit-3 60s linear infinite reverse;
}
@keyframes orbit-1 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes orbit-2 {
  from { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
  50%  { transform: translate(-50%, -50%) rotate(180deg) scale(1.03); }
  to   { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}
@keyframes orbit-3 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Aurora blobs — distant glows in the corners. Kept dim and small
 * relative to the viewport so they never bloom into a pastel wash; the
 * page stays "midnight with hints" the way the mobile app feels.
 * No mix-blend-mode (screen brightens; we want the dark base to win).
 */
.stars > .aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.16;
}
.stars > .aurora.a1 {
  width: 38vmax; height: 38vmax;
  background: var(--pink);
  top: -10%; left: -10%;
  animation: aurora-pulse 16s ease-in-out infinite;
}
.stars > .aurora.a2 {
  width: 42vmax; height: 42vmax;
  background: var(--lavender);
  bottom: -12%; right: -12%;
  animation: aurora-pulse 20s ease-in-out infinite;
  animation-delay: -7s;
}
.stars > .aurora.a3 {
  width: 28vmax; height: 28vmax;
  background: var(--gold);
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  animation: aurora-pulse 24s ease-in-out infinite;
  animation-delay: -11s;
}
@keyframes aurora-pulse {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.14; }
  50%      { transform: translate(6%, -4%) scale(1.1); opacity: 0.20; }
}

/* ─────────────────────── shared atoms ─────────────────────── */
/*
 * Typography mirrors the mobile app exactly. The app uses Outfit for
 * everything — Black (900) and Bold (700) for big display moments,
 * Medium (500) for buttons / titles, Light (300) for whispered prose.
 * We never use a serif italic for headlines; mobile doesn't, and on
 * the web a missing Google Font falls back to a system cursive that
 * looks like handwriting. Keeping the stack inside the Outfit family
 * prevents that.
 */

.italic-gold,
.gold-italic {
  color: var(--gold);
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.display {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-style: normal;
  font-weight: 900;
  color: var(--text-hi);
  letter-spacing: -1.4px;
}

.eyebrow {
  display: inline-block;
  letter-spacing: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-lo);
  text-transform: uppercase;
}
.eyebrow.gold { color: var(--gold); }

.lede {
  color: var(--text-mid);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  max-width: 520px;
}

/* Buttons — same vocabulary as the mobile app */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 6px 24px rgba(229, 181, 104, 0.22);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.cta:hover  { transform: translateY(-1px); box-shadow: 0 10px 32px rgba(229, 181, 104, 0.3); }
.cta:active { transform: translateY(0); }
.cta.ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  box-shadow: none;
}
.cta.ghost:hover { background: var(--gold-soft); }
.cta.cta-sm {
  padding: 10px 18px;
  font-size: 13px;
}

/* Store badges (App Store + Google Play) */
.store-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.store-badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 8px 16px 8px 14px;
  min-width: 142px;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.store-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.store-eyebrow {
  font-size: 9px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}
.store-name {
  font-size: 17px;
  letter-spacing: 0.2px;
  color: #fff;
  font-weight: 600;
  margin-top: 1px;
}

/* ─────────────────── MARKETING LAYOUT (index.html) ─────────────────── */

body.marketing { padding: 0; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 18, 38, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-star { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-link {
  color: var(--text-mid);
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.nav-link:hover { color: var(--gold); }

.hero {
  position: relative;
  z-index: 1;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px 100px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-text .eyebrow { margin-bottom: 22px; }
.hero-text .display {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.04;
  margin-bottom: 22px;
}
.hero-text .lede { margin-bottom: 32px; }
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta.center { justify-content: center; }
.hero-stores { margin-top: 22px; }

/* Hero secondary tagline + mini-line under the CTAs */
.sub-tagline {
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: none;
}
.hero-mini {
  margin-top: 20px;
  color: var(--text-lo);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-mini .dot {
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
  display: inline-block;
}

/* Hero visual — card fan, gold glow, breathing */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.card-fan {
  position: relative;
  width: 360px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fan-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 50% 50%, rgba(229, 181, 104, 0.45), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.fan-card {
  position: absolute;
  width: 180px;
  height: 290px;
  border-radius: 14px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(229, 181, 104, 0.18);
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, var(--purple-deep), var(--bg));
  overflow: hidden;
}
.fan-card.back::before {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gold);
  text-shadow: 0 0 14px var(--gold-glow);
  background: radial-gradient(circle at 50% 30%, rgba(229,181,104,0.25), transparent 65%);
}
.fan-card.r1 { transform: rotate(-22deg) translate(-100px, 18px); }
.fan-card.r2 { transform: rotate(-11deg) translate(-50px, 4px); }
.fan-card.r4 { transform: rotate(11deg)  translate(50px, 4px); }
.fan-card.r5 { transform: rotate(22deg)  translate(100px, 18px); }
.fan-card.front {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(135deg, #F0CC85 0%, #E5B568 55%, #B8893C 100%),
    var(--purple-deep);
}
.fan-card.front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.fan-card.floaty {
  animation: floaty 3.6s ease-in-out infinite;
}

/* ─────────────────── SHOWCASE GRID (Six Rituals) ─────────────────── */
.showcase {
  padding: 70px 0 30px;
  position: relative;
  z-index: 1;
}
.section-lede {
  margin-top: 14px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 12px;
}
.show-card {
  display: block;
  text-decoration: none;
  padding: 26px 24px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.show-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.16;
  top: -60px; right: -60px;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.show-card.show-gold::before     { background: var(--gold); }
.show-card.show-pink::before     { background: var(--pink); }
.show-card.show-lavender::before { background: var(--lavender); }
.show-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
}
.show-card:hover::before { opacity: 0.28; }
.show-art {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 152px;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(229, 181, 104, 0.28);
  border: 1.5px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(135deg, #F0CC85 0%, #E5B568 55%, #B8893C 100%),
    var(--purple-deep);
}
.show-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.show-eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.show-eyebrow.gold     { color: var(--gold); }
.show-eyebrow.pink     { color: var(--pink); }
.show-eyebrow.lavender { color: var(--lavender); }
.show-h {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: var(--cream);
  margin-bottom: 8px;
}
.show-p {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.6;
  font-weight: 300;
}
/* Floaty animation used by hero card-fan front card */
@keyframes floaty {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.012); }
}

/* ─────────────── GOLD CARD FRAME (mirrors mobile CardImage) ───────────────
 * Card webp files are TRANSPARENT cutouts of the artwork (the mobile app
 * paints a gold gradient under each one). We do the same here so the cards
 * read as "engraved gold plates with art on top" instead of floating
 * cutouts on the dark page.
 * Apply via `.gold-card` on a wrapper around the <img>, or add the
 * `gold-card` class directly to an <img> when it stands alone.
 * --------------------------------------------------------------------- */
.gold-card,
img.gold-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(135deg, #F0CC85 0%, #E5B568 55%, #B8893C 100%),
    var(--purple-deep);
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
}
img.gold-card { display: block; }
.gold-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Features section */
.features { padding: 80px 0; position: relative; z-index: 1; }
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-title {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  max-width: 720px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
}
.feature-num {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
}
.feature-num.gold     { color: var(--gold); }
.feature-num.pink     { color: var(--pink); }
.feature-num.lavender { color: var(--lavender); }
.feature-h {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.4px;
  color: var(--cream);
  margin-top: 10px;
}
.feature-p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-top: 12px;
  font-weight: 300;
}

/* Why section — 2x2 grid */
.why { padding: 40px 0 100px; position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-cell {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.why-icon {
  font-size: 22px;
  color: var(--gold);
}
.why-h {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: var(--text-hi);
  margin-top: 10px;
}
.why-p {
  color: var(--text-mid);
  font-size: 14.5px;
  line-height: 1.6;
  margin-top: 10px;
  font-weight: 300;
}
.why-p em { color: var(--gold); font-style: italic; }

/* Final CTA */
.final-cta {
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    radial-gradient(circle at 50% 30%, rgba(229, 181, 104, 0.08), transparent 60%);
}
.final-inner { text-align: center; }
.final-h {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 14px;
}
.final-lede { margin: 0 auto 30px; }

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0 24px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-brand {
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-lo);
  font-size: 13px;
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  color: var(--text-lo);
  font-size: 11px;
  letter-spacing: 1.5px;
}

/* ────────── responsive — tablet ────────── */
@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 48px 24px 72px;
    text-align: center;
  }
  .hero-text .lede { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stores { justify-content: center; }
  .hero-mini { display: inline-flex; }
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ────────── responsive — phone ────────── */
@media (max-width: 720px) {
  .showcase-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-inner { padding: 12px 20px; }
  .nav-link { display: none; }
  .hero-inner { padding: 32px 20px 60px; gap: 40px; }
  .hero-text .display { font-size: clamp(32px, 11vw, 48px); line-height: 1.05; }
  .sub-tagline { font-size: 14px; }
  .features, .why, .final-cta, .showcase { padding-left: 16px; padding-right: 16px; }
  .features-inner { padding: 0 4px; }
  .features { padding: 60px 0; }
  .why { padding: 20px 0 72px; }
  .final-cta { padding: 60px 0 80px; }
  .showcase { padding: 50px 0 20px; }
  .footer-inner { justify-content: center; text-align: center; }

  /* Card fan shrinks for narrow viewports */
  .card-fan { width: 300px; height: 380px; }
  .fan-card { width: 140px; height: 226px; }
  .fan-card.r1 { transform: rotate(-22deg) translate(-78px, 14px); }
  .fan-card.r2 { transform: rotate(-11deg) translate(-38px, 4px); }
  .fan-card.r4 { transform: rotate(11deg)  translate(38px, 4px); }
  .fan-card.r5 { transform: rotate(22deg)  translate(78px, 14px); }
  .fan-glow { width: 260px; height: 260px; }

  /* Smaller orbital rings on mobile */
  .stars > .ring.r1 { width: 150vmax; height: 150vmax; }
  .stars > .ring.r2 { width: 220vmax; height: 220vmax; }
  .stars > .ring.r3 { width: 100vmax; height: 100vmax; }
}

/* ─────────────────── REVEAL WIDE LAYOUT (pick.html step 2) ──────────────
 *
 * After the user picks a card, the layout widens into a 2-column
 * desktop view: big card on the left, name + message + CTAs on the
 * right. On mobile it collapses back into a single column so the
 * card still feels like the centerpiece.
 * --------------------------------------------------------------------- */

.page-top {
  display: flex;
  justify-content: center;
  padding: 22px 24px 4px;
  position: relative;
  z-index: 2;
}
.page-top .brand-tight { color: var(--gold); }

.reveal-wide {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 28px 80px;
  position: relative;
  z-index: 1;
}
.reveal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* LEFT — card column */
.reveal-card-col { text-align: center; position: relative; }
.reveal-card-wrap {
  position: relative;
  display: inline-block;
  padding: 26px 14px 14px;
}
.reveal-card-img {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto;
  width: 340px;
  max-width: 70vw;
  height: 480px;
  max-height: 100vw;
  border-radius: 14px;
  border: 1.5px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(135deg, #F0CC85 0%, #E5B568 55%, #B8893C 100%),
    var(--purple-deep);
  object-fit: contain;
  box-shadow:
    0 0 40px rgba(232, 165, 183, 0.45),
    0 0 80px rgba(229, 181, 104, 0.30),
    0 18px 60px rgba(0, 0, 0, 0.6);
}
.reveal-card-img.float { animation: floaty 3.4s ease-in-out infinite; }

/* RIGHT — text + CTA column */
.reveal-text-col { text-align: left; }
.reveal-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -1.4px;
  color: var(--cream);
  line-height: 1.02;
}
.reveal-rule {
  margin: 22px 0 18px;
  margin-left: 0;
  width: 56px;
}
.reveal-quote {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--text-hi);
  margin-bottom: 22px;
}
.reveal-taster {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 26px;
  max-width: 460px;
}
.reveal-taster em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}
.reveal-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.reveal-stores {
  margin-top: 2px;
  justify-content: flex-start;
}

/* Responsive — stack on tablet & phone */
@media (max-width: 880px) {
  .reveal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .reveal-text-col { text-align: center; }
  .reveal-rule { margin-left: auto; margin-right: auto; }
  .reveal-cta { align-items: center; }
  .reveal-stores { justify-content: center; }
  .reveal-taster { margin-left: auto; margin-right: auto; }
  .reveal-card-img { width: 280px; height: 396px; }
}
@media (max-width: 480px) {
  .reveal-wide { padding: 18px 18px 60px; }
  .reveal-card-img { width: 220px; height: 311px; }
  .reveal-name { font-size: clamp(32px, 11vw, 44px); }
  .reveal-quote { font-size: 17px; }
}

/* ─────────────────── APP-LIKE LAYOUT (r.html, pick.html step 1) ──────────
 *
 * Step 1 of pick (and r.html shared-reading) keep the narrow
 * phone-frame container because those moments are mid-funnel — the
 * visitor is mid-action, wider would feel like marketing noise.
 * --------------------------------------------------------------------- */

.frame {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}
.brand-tight {
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 500;
}

.greeting { margin-top: 26px; text-align: left; }
.day-label {
  color: var(--text-lo);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.greeting-line {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--text-hi);
  margin-top: 6px;
}
.greeting-line .gold-italic { color: var(--gold); font-weight: 700; }

.hero-block {
  margin-top: 28px;
  text-align: center;
  position: relative;
}
.hero-label {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 14px;
}
.hero-card-wrap {
  position: relative;
  display: inline-block;
  padding: 24px 12px 12px;
}
.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.glow-pink {
  width: 320px; height: 320px;
  background: var(--pink);
  opacity: 0.18;
  top: -40px; left: 50%; transform: translateX(-50%);
}
.glow-lavender {
  width: 260px; height: 260px;
  background: var(--lavender);
  opacity: 0.16;
  top: 20px; left: 20%;
}
.card-image {
  position: relative;
  z-index: 1;
  width: 220px;
  max-width: 60vw;
  height: 311px;
  max-height: 84vw;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  border: 1.5px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(135deg, #F0CC85 0%, #E5B568 55%, #B8893C 100%),
    var(--purple-deep);
  object-fit: contain;
  box-shadow:
    0 0 30px rgba(232, 165, 183, 0.45),
    0 0 60px rgba(229, 181, 104, 0.28),
    0 12px 40px rgba(0, 0, 0, 0.55);
}
.card-image.float { animation: floaty 3.4s ease-in-out infinite; }

.card-caption { text-align: center; margin-top: 8px; }
.card-name {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.6px;
  color: var(--text-hi);
}
.sub-mid {
  color: var(--text-lo);
  font-size: 13px;
  font-weight: 300;
  margin-top: 4px;
}

.whisper { text-align: center; margin-top: 18px; padding: 0 8px; }
.whisper-rule {
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 0 auto 12px;
}
.whisper-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-hi);
}

.cta-wrap { margin-top: 24px; display: flex; flex-direction: column; align-items: center; }

/* Three face-down cards (pick.html) */
.three-cards {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  margin: 36px auto 18px;
  perspective: 1000px;
  min-height: 270px;
}
.three-cards .slot {
  width: 120px;
  height: 200px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}
.three-cards .slot:hover:not(.flipped) { transform: translateY(-10px); }
.three-cards .slot .face {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.three-cards .slot .back {
  background:
    radial-gradient(circle at 50% 28%, rgba(229,181,104,0.22), transparent 65%),
    linear-gradient(180deg, var(--purple-deep), var(--bg));
  border: 1.5px solid var(--gold);
  box-shadow:
    inset 0 0 30px rgba(229, 181, 104, 0.18),
    0 8px 28px rgba(0,0,0,0.5);
}
.three-cards .slot .back::after {
  content: '✦';
  font-size: 30px;
  color: var(--gold);
  text-shadow: 0 0 12px var(--gold-glow);
}
.three-cards .slot .front {
  transform: rotateY(180deg);
  border: 1.5px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(135deg, #F0CC85 0%, #E5B568 55%, #B8893C 100%),
    var(--purple-deep);
}
.three-cards .slot .front img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.three-cards .slot.flipped { transform: rotateY(180deg); }

.spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold-soft);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }

/* The footer used inside .frame pages (r.html, pick.html) */
.frame ~ footer,
body:not(.marketing) footer {
  text-align: center;
  color: var(--text-lo);
  font-size: 10px;
  letter-spacing: 2.5px;
  padding: 36px 24px 24px;
  position: relative;
  z-index: 1;
}

/* Phone narrow */
@media (max-width: 380px) {
  .greeting-line { font-size: 24px; }
  .three-cards .slot { width: 96px; height: 160px; }
  .three-cards .slot .back::after { font-size: 24px; }
  .card-image { width: 180px; }
  .glow-pink { width: 260px; height: 260px; }
  .glow-lavender { width: 200px; height: 200px; }
}
