:root {
  --felt: #0d4d33;
  --felt-deep: #06301f;
  --cream: #f6efdf;
  --cream-muted: #cfc4a8;
  --gold: #e0b64a;
  --gold-bright: #f2cd6a;
  --card-red: #c0392b;
  --radius: 14px;
  --maxw: 720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(ellipse at 50% 0%, #146543 0%, var(--felt) 45%, var(--felt-deep) 100%)
    fixed;
  color: var(--cream);
  line-height: 1.6;
}

a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--cream); }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid rgba(224, 182, 74, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand .pip { font-size: 1.4rem; line-height: 1; }

.wrap { width: min(var(--maxw), calc(100% - 48px)); margin: 56px auto 88px; }

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--cream);
}

.effective-date { font-size: 0.88rem; color: var(--cream-muted); margin: 0 0 44px; }

.highlight-box {
  background: rgba(224, 182, 74, 0.1);
  border: 1px solid rgba(224, 182, 74, 0.28);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 36px;
  font-size: 0.97rem;
}

section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(224, 182, 74, 0.14);
}

section:last-of-type { border-bottom: none; }

h2 {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--gold-bright);
}

h3 { font-size: 1rem; font-weight: 700; margin: 24px 0 8px; color: var(--cream); }

p, li { color: var(--cream-muted); }

p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 14px; padding-left: 1.35em; }
li { margin-bottom: 7px; }

strong { color: var(--cream); }

footer {
  width: min(var(--maxw), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 56px;
  border-top: 1px solid rgba(224, 182, 74, 0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--cream-muted);
}

footer nav { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 6px; }

/* ══════════════════════════════════════════════════════════════
   LANDING PAGE (index.html) — extends the tokens above.
   Scoped to body.lp so /21lockout/privacy, /support, /terms are untouched.
   Display type: Playfair Display (headlines, numerals) + Inter (UI/body),
   loaded only on this page — the legal pages keep the system font stack.
   ══════════════════════════════════════════════════════════════ */
:root {
  --radius-lg: 28px;
  --radius-md: 20px;
  --lp-maxw: 1160px;
  --shadow-card: 0 24px 56px rgba(0, 0, 0, 0.32);
  --display-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ui-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lp { font-family: var(--ui-font); position: relative; }
.lp section { margin: 0; padding: 0; border-bottom: none; }
.lp h1, .lp h2 { font-family: var(--display-font); }

/* Felt grain — a fine noise layer over the radial gradient so the table
   reads as woven cloth, not a flat CSS gradient. Fixed + tiled, very low
   opacity; screen-blend keeps it from muddying the gold accents. */
.lp::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Vignette — a slow darkening toward the edges, like a table lit from
   above. Keeps the long scroll from reading as one flat green fill. */
.lp::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, transparent 0%, rgba(0, 0, 0, 0.22) 100%);
}

.lp > * { position: relative; z-index: 1; }

.lp .site-header {
  width: min(calc(var(--lp-maxw) - 40px), calc(100% - 88px));
  position: sticky;
  top: 18px;
  z-index: 20;
  margin: 18px auto 0;
  padding: 10px 12px 10px 26px;
  border: 1px solid rgba(224, 182, 74, 0.28);
  border-radius: 999px;
  background: rgba(10, 36, 25, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lp-nav { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.25rem); }
.lp-nav a {
  color: var(--cream-muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s ease;
}
.lp-nav a:hover { color: var(--gold-bright); }

/* ── App Store buttons ── */
.button.appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--felt-deep);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(224, 182, 74, 0.22);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease;
}
.button.appstore:hover { color: var(--felt-deep); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(224, 182, 74, 0.3); }
.button.appstore:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
.button.appstore .apple-mark { width: 18px; height: 18px; flex-shrink: 0; }
.appstore-sm { padding: 10px 20px; font-size: 0.86rem; min-height: 40px; }
.appstore-lg { padding: 14px 28px 14px 24px; min-height: 48px; }
.appstore-lg .apple-mark { width: 26px; height: 26px; }
.appstore-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.appstore-text small { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.75; }
.appstore-text strong { color: var(--felt-deep); font-size: 1rem; }

/* ── HERO ── */
section.lp-hero {
  position: relative;
  width: min(var(--lp-maxw), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(56px, 8vw, 104px) 0 88px;
  overflow: hidden;
}

/* Giant translucent "21" watermark — the card-table numeral motif */
.hero-numeral {
  position: absolute;
  top: -8%;
  left: -2%;
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(14rem, 32vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(224, 182, 74, 0.22);
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.lp-hero-copy, .lp-hero-art { position: relative; z-index: 1; }

/* Spotlight — a warm pool of light behind the screenshot, as if it were
   sitting under a table lamp. Sits behind the art, ahead of the felt. */
.lp-hero-art::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  background: radial-gradient(circle at 50% 42%, rgba(242, 205, 106, 0.16) 0%, transparent 62%);
  pointer-events: none;
}

/* Entrance — one staggered rise on load, not scattered micro-motion. */
.lp-hero .eyebrow,
.lp-h1 > span,
.lp-lede,
.lp-actions,
.trust-strip,
.lp-hero-art {
  animation: hero-rise 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.lp-hero .eyebrow          { animation-delay: 0.02s; }
.lp-h1 > span:nth-child(1) { animation-delay: 0.1s; }
.lp-h1 > span.hl           { animation-delay: 0.2s; }
.lp-lede                   { animation-delay: 0.3s; }
.lp-actions                { animation-delay: 0.38s; }
.trust-strip                { animation-delay: 0.46s; }
.lp-hero-art                { animation: hero-rise-art 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-rise-art {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.lp-h1 {
  font-size: clamp(2.6rem, 4.6vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--cream);
}
.lp-h1 > span { display: inline-block; }
.lp-h1 .hl { color: var(--gold-bright); font-style: italic; }

.lp-lede {
  max-width: 34rem;
  font-size: 1.1rem;
  color: var(--cream-muted);
  line-height: 1.7;
  margin: 0 0 30px;
}

.lp-actions { margin-bottom: 26px; }
.download-sub { margin: 12px 0 0; font-size: 0.82rem; color: var(--cream-muted); }

.trust-strip { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream-muted);
}
.trust-strip svg { color: var(--gold); flex-shrink: 0; }

.lp-hero-art { display: flex; justify-content: center; }

/* ── Screenshot card — the real capture, framed like a held photograph,
   not a fake device. No bezel, no drawn notch: the screenshot already
   carries its own real status bar, so the "frame" is just a clean,
   well-lit edge — the same restrained treatment as the fanned hand
   below, scaled up. ── */
.hero-art-frame,
.split-art-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(224, 182, 74, 0.32);
  box-shadow: var(--shadow-card);
}
.hero-art-frame img,
.split-art-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-art-frame {
  width: min(100%, 290px);
  transform: rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lp-hero-art:hover .hero-art-frame { transform: rotate(-1.25deg); }

.hero-chip {
  position: absolute;
  right: 6%;
  bottom: 6%;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  animation: chip-float 4.5s ease-in-out infinite;
}

.hero-suit {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--gold);
  opacity: 0.5;
}
.hero-suit-1 { top: 4%; left: 8%; transform: rotate(-12deg); }
.hero-suit-2 { top: 44%; right: -2%; width: 22px; height: 22px; color: var(--card-red); opacity: 0.55; }

@keyframes chip-float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

/* ── ORNAMENTAL DIVIDER ── */
.ornament {
  width: min(var(--lp-maxw), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 0 clamp(48px, 6vw, 80px);
  color: var(--gold);
}
.ornament span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(224, 182, 74, 0.35), transparent); }
.ornament svg { flex-shrink: 0; width: 16px; height: 16px; }

/* ── SECTION HEADING (shared) ── */
.section-heading { max-width: 42rem; margin: 0 auto 48px; text-align: center; }
.section-heading .eyebrow { text-align: center; }
.section-heading h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--cream);
  letter-spacing: -0.01em;
  font-weight: 700;
}

/* ── STEPS — dealt as three playing cards ──
   Real card stock: cream face, ink-dark text, a corner index top-left
   and its mirror bottom-right, exactly like a physical card's rank +
   suit. Cream-on-felt is the highest-contrast moment on the page —
   used once, deliberately, so it reads as the literal "deal." */
section.steps-band {
  width: min(var(--lp-maxw), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 8vw, 108px);
}
.deal-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
}
.deal-card {
  position: relative;
  width: 300px;
  max-width: 100%;
  padding: 22px 24px 26px;
  background: linear-gradient(165deg, #fbf6ea 0%, var(--cream) 100%);
  border-radius: 20px;
  border: 1px solid rgba(6, 48, 31, 0.14);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.dc-1 { transform: rotate(-3.5deg) translateY(6px); }
.dc-2 { transform: rotate(1.5deg) translateY(-6px); z-index: 1; }
.dc-3 { transform: rotate(-1deg) translateY(10px); }
.deal-row:hover .deal-card { transform: rotate(0deg) translateY(0); }
.deal-row .deal-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.deal-index {
  position: absolute;
  top: 16px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--display-font);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--felt-deep);
}
.deal-index svg { width: 13px; height: 13px; }
.deal-index-br { top: auto; left: auto; bottom: 16px; right: 18px; transform: rotate(180deg); }
.dc-2 .deal-index, .dc-2 .deal-index-br { color: var(--card-red); }
.dc-3 .deal-index, .dc-3 .deal-index-br { color: #a67c1e; }

.deal-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(6, 48, 31, 0.08);
  color: var(--felt-deep);
  margin: 8px auto 18px;
}
.dc-2 .deal-icon { color: var(--card-red); background: rgba(192, 57, 43, 0.1); }
.dc-3 .deal-icon { color: #a67c1e; background: rgba(224, 182, 74, 0.16); }
.deal-icon svg { width: 23px; height: 23px; }

.deal-card h3 {
  font-family: var(--ui-font);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
  color: var(--felt-deep);
  margin: 0 0 10px;
}
.deal-card p {
  font-size: 0.9rem;
  text-align: center;
  color: #4a4234;
  margin: 0;
}

/* ── SCREENSHOTS — fanned hand of cards ── */
section.hand-band {
  width: min(var(--lp-maxw), calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(72px, 8vw, 120px);
  text-align: center;
}
.hand-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--cream);
  margin: 0 0 56px;
}
.hand-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  padding: 0 0 20px;
}
.hand-card {
  width: 210px;
  margin: 0 -28px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), z-index 0s;
  position: relative;
}
.hc-1 { transform: rotate(-9deg) translateY(18px); z-index: 1; }
.hc-2 { transform: rotate(-3deg) translateY(0); z-index: 2; }
.hc-3 { transform: rotate(3deg) translateY(0); z-index: 3; }
.hc-4 { transform: rotate(9deg) translateY(18px); z-index: 4; }
.hand-card:hover { transform: translateY(-22px) rotate(0deg) scale(1.04); z-index: 10; }
.hand-phone {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(224, 182, 74, 0.28);
  background: var(--felt-deep);
}
.hand-phone img { display: block; width: 100%; height: auto; }
.hand-card figcaption {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream-muted);
}

/* ── SPLIT SECTION ── */
section.split-section {
  width: min(var(--lp-maxw), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  padding: 0 0 clamp(56px, 7vw, 96px);
}
.split-art { display: flex; justify-content: center; }
.split-art-frame {
  width: min(100%, 230px);
  transform: rotate(2.5deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-art:hover .split-art-frame { transform: rotate(0.5deg); }
.split-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--cream);
  letter-spacing: -0.01em;
  max-width: 17em;
  font-weight: 700;
}
.split-copy p { max-width: 34rem; }
.check-list { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  position: relative;
  padding-left: 32px;
  margin: 0;
  color: var(--cream-muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(224, 182, 74, 0.16);
  border: 1px solid rgba(224, 182, 74, 0.42);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6.5px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: rotate(-45deg);
}

/* ── PLUS PANEL — membership card ── */
section.plus-panel {
  width: min(var(--lp-maxw), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: 0 0 clamp(64px, 7vw, 104px);
}
.plus-panel h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--cream);
  letter-spacing: -0.01em;
  max-width: 15em;
  font-weight: 700;
}
.plus-panel > div:first-child p { max-width: 32rem; }
.plus-price-row { display: flex; align-items: baseline; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.price-badge { font-family: var(--display-font); font-size: 2.3rem; font-weight: 800; color: var(--gold-bright); }
.price-badge small { font-family: var(--ui-font); font-size: 0.9rem; font-weight: 600; color: var(--cream-muted); }
.price-note { font-size: 0.85rem; color: var(--cream-muted); }

.plus-check-list { margin-top: 26px; }

/* ── Membership card — brushed-gold foil plaque, real card proportions
   (1.6:1), a chip and a brand line. No fake card number: this is a
   membership plaque, not an impression of a bank card. ── */
.member-card {
  position: relative;
  aspect-ratio: 1.6 / 1;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 22px 26px;
  border-radius: 20px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, transparent 30%),
    linear-gradient(150deg, var(--gold-bright) 0%, var(--gold) 45%, #b8862f 78%, #8a641f 100%);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -12px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transform: rotate(-1.5deg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.plus-panel:hover .member-card { transform: rotate(0deg); }

.card-chip {
  width: 38px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(160deg, #f4e6c1, #cfa94e);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  position: relative;
}
.card-chip::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 3px;
}

.member-card-mark {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.member-card-brand {
  margin-top: auto;
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--felt-deep);
  letter-spacing: -0.01em;
}
.member-card-brand em { font-style: italic; }

.member-card-tier {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(6, 48, 31, 0.62);
}

.member-card-suits { display: flex; gap: 10px; margin-top: 14px; }
.member-card-suits svg { width: 14px; height: 14px; color: rgba(6, 48, 31, 0.45); }

/* ── FAQ ── */
section.faq-section {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 clamp(56px, 7vw, 96px);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-list details {
  border: 1px solid rgba(224, 182, 74, 0.18);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--cream);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 24px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 14px; font-size: 0.94rem; }

/* ── CLOSING CTA ── */
section.closing-cta {
  width: min(640px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) 0 88px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing-cta img { width: 84px; height: 84px; border-radius: 22px; box-shadow: var(--shadow-card); margin-bottom: 22px; }
.closing-cta .eyebrow { text-align: center; }
.closing-cta h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  font-weight: 700;
}
.closing-sub { margin: 12px 0 0; font-size: 0.82rem; color: var(--cream-muted); }

.lp footer { width: min(900px, calc(100% - 48px)); }

@media (max-width: 900px) {
  section.lp-hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-numeral { font-size: clamp(9rem, 40vw, 16rem); top: -4%; }
  .lp-hero-art { order: -1; }
  .hero-art-frame { width: min(100%, 250px); }
  .hero-chip { right: 2%; }
  .dc-1, .dc-2, .dc-3 { transform: rotate(0) translateY(0); }
  .hand-card { width: 150px; margin: 0 -20px; }
  section.split-section { grid-template-columns: 1fr; text-align: center; }
  .split-copy h2, .split-copy p { max-width: none; margin-left: auto; margin-right: auto; }
  .check-list { text-align: left; max-width: 26rem; margin-left: auto; margin-right: auto; }
  section.plus-panel { grid-template-columns: 1fr; }
  .member-card { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .lp-nav { display: none; }
  .lp .site-header { justify-content: space-between; }
  .trust-strip { justify-content: center; }
  .lp-hero-copy { text-align: center; }
  .lp-lede { margin-left: auto; margin-right: auto; }
  .lp-actions { display: flex; flex-direction: column; align-items: center; }
  .hand-row { flex-wrap: wrap; row-gap: 40px; }
  .hand-card { width: 42%; margin: 0; transform: none !important; }
  .hc-1, .hc-2, .hc-3, .hc-4 { transform: none; }
  .hero-suit { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art-frame, .split-art-frame, .hand-card, .deal-card, .member-card, .button.appstore { transition: none; }
  .hero-chip { animation: none; }
  .lp-hero .eyebrow, .lp-h1 > span, .lp-lede, .lp-actions, .trust-strip, .lp-hero-art {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
