/* ============================================================
   ANTE — styles.css
   One deck, one run, everyone gets the same cards.

   Identity: an ink-dark card table with ivory cards dealt on it.
   The card faces keep their paper colour in BOTH themes — they are
   the one element that never inverts, because playing cards don't.
   Dark is the default; light is available via [data-theme="light"].
   ============================================================ */

:root {
  /* --- brand constants (identical in both themes) --- */
  --card-face:   #F7F5F0;   /* card stock */
  --card-edge:   #DBD6CB;
  --pip-black:   #16181D;
  --pip-red:     #C0392F;

  /* --- theme tokens: DARK (default) --- */
  --ink:         #0B0D12;
  --felt:        #10131B;
  --felt-alt:    #0D1016;
  --panel:       #171B25;
  --panel-2:     #1E2330;
  --line:        rgba(214, 220, 236, .10);
  --line-strong: rgba(214, 220, 236, .18);
  --text:        #F2F2F5;
  --text-muted:  #A2A8B6;
  --text-dim:    #767D8D;
  --red:         #E4574C;
  --red-soft:    rgba(228, 87, 76, .14);
  --brass:       #D9B94A;
  --brass-soft:  rgba(217, 185, 74, .13);
  --header-bg:   rgba(11, 13, 18, .82);
  --menu-bg:     rgba(11, 13, 18, .97);
  --input-bg:    rgba(0, 0, 0, .28);
  --shadow-card: 0 30px 60px -24px rgba(0, 0, 0, .85);
  --shadow-soft: 0 2px 4px rgba(0,0,0,.3), 0 18px 40px -28px rgba(0,0,0,.9);
  --table-glow:
    radial-gradient(1200px 620px at 72% -12%, rgba(228, 87, 76, .14), transparent 62%),
    radial-gradient(900px  520px at 4% 108%, rgba(217, 185, 74, .09), transparent 58%);

  /* --- type --- */
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, "SF Mono", "SFMono-Regular", "Cascadia Mono", Menlo, Consolas, monospace;

  --maxw: 1160px;
  --r:    3px;    /* panels: nearly square, like a ruled sheet */
  --r-card: 10px; /* playing cards */
}

:root[data-theme="light"] {
  --ink:         #FFFFFF;
  --felt:        #F0F0F3;
  --felt-alt:    #E9E9ED;
  --panel:       #FFFFFF;
  --panel-2:     #F6F6F8;
  --line:        rgba(20, 22, 28, .11);
  --line-strong: rgba(20, 22, 28, .20);
  --text:        #14161C;
  --text-muted:  #5A5F6B;
  --text-dim:    #8B909D;
  --red:         #B93226;
  --red-soft:    rgba(185, 50, 38, .09);
  --brass:       #8A6D12;
  --brass-soft:  rgba(138, 109, 18, .10);
  --header-bg:   rgba(255, 255, 255, .86);
  --menu-bg:     rgba(255, 255, 255, .98);
  --input-bg:    #FFFFFF;
  --shadow-card: 0 26px 50px -26px rgba(20, 22, 28, .38);
  --shadow-soft: 0 1px 2px rgba(20,22,28,.05), 0 14px 34px -24px rgba(20,22,28,.35);
  --table-glow:
    radial-gradient(1200px 620px at 72% -12%, rgba(185, 50, 38, .07), transparent 62%),
    radial-gradient(900px  520px at 4% 108%, rgba(138, 109, 18, .06), transparent 58%);
}

/* ============================================================
   Base
   ============================================================ */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--felt);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: 12px 20px; border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; }

/* ============================================================
   Type scale
   ============================================================ */

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0; text-wrap: balance; }

h1 { font-size: clamp(40px, 7vw, 74px); line-height: 1.02; letter-spacing: -.03em; }
h2 { font-size: clamp(28px, 4.2vw, 42px); line-height: 1.12; letter-spacing: -.02em; }
h3 { font-size: clamp(19px, 2.2vw, 22px); line-height: 1.28; letter-spacing: -.01em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin: 0 0 14px;
}
.eyebrow.brass { color: var(--brass); }

.lead { font-size: clamp(16.5px, 2vw, 19px); color: var(--text-muted); max-width: 60ch; }
.muted { color: var(--text-muted); }
.dim { color: var(--text-dim); }
.seed-num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; line-height: 1;
  padding: 15px 26px; border-radius: var(--r); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--red); color: #FFFFFF; }
.btn-primary:hover { background: color-mix(in srgb, var(--red) 86%, #000); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--text-muted); background: var(--panel); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ============================================================
   Header
   ============================================================ */

.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.header.scrolled { border-bottom-color: var(--line); }

.nav { display: flex; align-items: center; gap: 18px; height: 68px; }

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: .01em;
  color: var(--text); text-decoration: none; margin-right: auto;
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 26px; height: 34px; border-radius: 4px; flex: none;
  background: var(--card-face); border: 1px solid var(--card-edge);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 15px; font-weight: 700; color: var(--pip-red);
  box-shadow: 0 2px 6px rgba(0,0,0,.28);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--text-muted);
  padding: 9px 13px; border-radius: var(--r); text-decoration: none;
}
.nav-links a:hover { color: var(--text); background: var(--panel); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--text); }

.icon-btn {
  width: 38px; height: 38px; flex: none; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line-strong); border-radius: var(--r);
  color: var(--text-muted); cursor: pointer; padding: 0;
}
.icon-btn:hover { color: var(--text); border-color: var(--text-dim); }
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn .sun { display: none; }
:root[data-theme="light"] .icon-btn .sun { display: block; }
:root[data-theme="light"] .icon-btn .moon { display: none; }

.menu-btn { display: none; }

@media (max-width: 860px) {
  .menu-btn { display: grid; }
  .nav-links {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--menu-bg); border-bottom: 1px solid var(--line);
    padding: 10px 24px 22px;
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a:hover { background: transparent; }
}

/* ============================================================
   Playing card
   ============================================================ */

.pcard {
  background: var(--card-face);
  border: 1px solid var(--card-edge);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  color: var(--pip-black);
  position: relative;
  display: grid; place-items: center;
  font-family: var(--serif);
  user-select: none;
}
.pcard.red { color: var(--pip-red); }
.pcard .corner {
  position: absolute; line-height: 1; text-align: center;
  font-size: .8em; font-weight: 600;
}
.pcard .corner.tl { top: 7px; left: 8px; }
.pcard .corner.br { bottom: 7px; right: 8px; transform: rotate(180deg); }
.pcard .center { font-size: 2.1em; line-height: 1; }
.pcard .corner span { display: block; font-size: .82em; margin-top: 1px; }

/* ============================================================
   Hero — asymmetric: copy left, a fan of cards breaking the grid right
   ============================================================ */

.hero {
  position: relative;
  background: var(--table-glow), var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::after {
  /* faint ruled table, not a texture image */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 88px;
  opacity: .5;
  mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: 40px; align-items: center;
  padding: clamp(60px, 9vw, 104px) 0 clamp(66px, 10vw, 112px);
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 52px; }
}

.hero h1 .rule-word { color: var(--red); }
.hero .lead { margin-top: 22px; font-size: clamp(17px, 2.1vw, 20px); }

.seed-strip {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong); border-radius: var(--r);
  padding: 9px 15px; margin-bottom: 26px;
  background: var(--panel); font-size: 13px; color: var(--text-muted);
}
.seed-strip .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: none;
  box-shadow: 0 0 0 3px var(--red-soft);
}
.seed-strip strong { color: var(--text); font-family: var(--mono); font-weight: 600; letter-spacing: .02em; }

/* the fan */
.fan { position: relative; height: 380px; }
@media (max-width: 900px) { .fan { height: 300px; } }

.fan .pcard {
  position: absolute; top: 50%; left: 50%;
  width: 148px; height: 212px;
  font-size: 20px;
  transform-origin: 50% 148%;
}
@media (max-width: 900px) { .fan .pcard { width: 118px; height: 170px; font-size: 16px; } }

.fan .pcard:nth-child(1) { --a: -34deg; --y: 16px; z-index: 1; }
.fan .pcard:nth-child(2) { --a: -17deg; --y: -2px; z-index: 2; }
.fan .pcard:nth-child(3) { --a:   0deg; --y: -16px; z-index: 3; }
.fan .pcard:nth-child(4) { --a:  17deg; --y: -2px; z-index: 2; }
.fan .pcard:nth-child(5) { --a:  34deg; --y: 16px; z-index: 1; }

.fan .pcard {
  transform: translate(-50%, calc(-50% + var(--y))) rotate(var(--a));
  animation: deal .62s cubic-bezier(.2, .8, .3, 1) backwards;
}
.fan .pcard:nth-child(1) { animation-delay: .05s; }
.fan .pcard:nth-child(2) { animation-delay: .13s; }
.fan .pcard:nth-child(3) { animation-delay: .21s; }
.fan .pcard:nth-child(4) { animation-delay: .29s; }
.fan .pcard:nth-child(5) { animation-delay: .37s; }

@keyframes deal {
  from { transform: translate(-50%, calc(-50% + 130px)) rotate(0deg) scale(.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fan .pcard { animation: none; }
}

/* ============================================================
   Sections
   ============================================================ */

.section { padding: clamp(64px, 8.5vw, 104px) 0; border-bottom: 1px solid var(--line); }
.section.alt { background: var(--felt-alt); }
.section.ink { background: var(--ink); }

.section-head { max-width: 66ch; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; }

/* --- numbered steps: this IS a sequence, so the numbers mean something --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

.step { padding: 30px 28px 32px; border-left: 1px solid var(--line); }
.step:first-child { border-left-color: var(--red); }
@media (max-width: 820px) {
  .step { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top-color: var(--red); }
}
.step .n {
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .1em;
  color: var(--red); margin-bottom: 14px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 15px; }

/* --- feature grid --- */
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .grid.cols-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid.cols-2, .grid.cols-3 { grid-template-columns: 1fr; } }

.cell { background: var(--felt); padding: 30px 26px 32px; }
.section.alt .cell { background: var(--felt-alt); }
.section.ink .cell { background: var(--ink); }
.cell h3 { margin-bottom: 10px; }
.cell p { color: var(--text-muted); font-size: 15px; }
.cell .tag {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brass); background: var(--brass-soft);
  padding: 3px 8px; border-radius: 2px; margin-bottom: 14px;
}

/* --- split feature: copy + artefact --- */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 72px); align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* --- the share card, shown as itself --- */
.share {
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: var(--r);
  box-shadow: var(--shadow-soft); padding: 26px 26px 22px; max-width: 380px;
}
.share-hd {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line);
}
.share-hd .t { font-family: var(--mono); font-size: 14px; font-weight: 600; letter-spacing: .06em; }
.share-hd .s { font-family: var(--mono); font-size: 20px; font-weight: 600; color: var(--brass); }
.share-grid {
  display: flex; gap: 5px; margin-bottom: 16px;
}
.share-grid i {
  width: 26px; height: 26px; border-radius: 2px; display: block;
}
.share-grid i.hit  { background: #2E9E6B; }
.share-grid i.near { background: #D9B94A; }
.share-grid i.miss { background: #3A3F4C; }
:root[data-theme="light"] .share-grid i.miss { background: #C9CBD2; }
.share-grid i.dead { background: var(--red); }
.share-meta { font-family: var(--mono); font-size: 12.5px; color: var(--text-muted); line-height: 1.8; }
.share-foot { display: flex; gap: 10px; align-items: center; margin-top: 18px; }
.copy-btn {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  background: transparent; color: var(--text); border: 1px solid var(--line-strong);
  border-radius: var(--r); padding: 9px 15px; cursor: pointer;
}
.copy-btn:hover { border-color: var(--text-dim); }
.copy-note { font-size: 12.5px; color: var(--text-dim); }

/* ============================================================
   Pricing
   ============================================================ */

.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
         border: 1px solid var(--line); }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }

.tier { background: var(--felt); padding: 32px 28px 34px; display: flex; flex-direction: column; }
.section.alt .tier { background: var(--felt-alt); }
.tier.feature { background: var(--panel); }
.tier .t-name { font-family: var(--serif); font-size: 21px; font-weight: 600; margin-bottom: 6px; }
.tier .t-flag {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px; height: 14px;
}
.tier .t-price {
  font-family: var(--sans); font-size: 38px; font-weight: 600; letter-spacing: -.03em;
  line-height: 1; margin-bottom: 4px;
}
.tier .t-price small { font-size: 15px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.tier .t-sub { font-size: 13.5px; color: var(--text-dim); margin-bottom: 22px; }
.tier ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tier li { font-size: 14.5px; color: var(--text-muted); padding-left: 22px; position: relative; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 9px; height: 2px; background: var(--red);
}
.tier .btn { margin-top: auto; width: 100%; }

/* ============================================================
   FAQ (details/summary — no JS needed)
   ============================================================ */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; gap: 16px; cursor: pointer;
  padding: 20px 0; list-style: none;
  font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; margin-left: auto; flex: none;
  font-family: var(--mono); font-size: 20px; color: var(--red); line-height: 1.2;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { color: var(--red); }
.faq .answer { padding: 0 0 22px; max-width: 74ch; color: var(--text-muted); font-size: 15.5px; }

/* ============================================================
   Documents (support, privacy, terms, deletion)
   ============================================================ */

.page-head {
  background: var(--table-glow), var(--ink);
  border-bottom: 1px solid var(--line);
  padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px);
}
.page-head .lead { margin-top: 18px; }

.doc { display: grid; grid-template-columns: 216px minmax(0, 1fr); gap: 56px; align-items: start;
       padding: clamp(48px, 7vw, 80px) 0; }
@media (max-width: 900px) { .doc { grid-template-columns: 1fr; gap: 34px; } }

.toc { position: sticky; top: 90px; font-size: 14px; }
@media (max-width: 900px) { .toc { position: static; } }
.toc h4 {
  font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 12px;
}
.toc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.toc a {
  display: block; color: var(--text-muted); padding: 7px 0 7px 14px;
  border-left: 1px solid var(--line); text-decoration: none;
}
.toc a:hover { color: var(--text); border-left-color: var(--red); text-decoration: none; }

.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(23px, 3vw, 29px); margin: 46px 0 14px; scroll-margin-top: 92px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 30px 0 10px; }
.prose p, .prose li { color: var(--text-muted); font-size: 15.5px; }
.prose ul, .prose ol { margin: 0 0 1.1em; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.prose table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin: 0 0 1.2em; }
.prose th, .prose td { text-align: left; padding: 11px 14px 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-family: var(--sans); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
            color: var(--text-dim); font-weight: 700; }
.prose td { color: var(--text-muted); }
.table-scroll { overflow-x: auto; }

.callout {
  border: 1px solid var(--line-strong); border-left: 2px solid var(--red);
  background: var(--panel); border-radius: 0 var(--r) var(--r) 0;
  padding: 20px 22px; margin: 26px 0;
}
.callout p { color: var(--text-muted); font-size: 15px; }
.callout strong { color: var(--text); }

.updated {
  font-family: var(--mono); font-size: 12.5px; color: var(--text-dim);
  padding-bottom: 22px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}

/* ============================================================
   Forms
   ============================================================ */

.form-card {
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: var(--r);
  box-shadow: var(--shadow-soft); padding: clamp(24px, 4vw, 36px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--text);
  background: var(--input-bg); border: 1px solid var(--line-strong); border-radius: var(--r);
  padding: 13px 15px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); outline: none; }
.field input:disabled { opacity: .55; }
.field-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.field-row .field { margin-bottom: 0; }
.field-row .btn { padding: 13px 20px; font-size: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.hint { font-size: 13px; color: var(--text-dim); margin-top: 7px; }

.verify-status, .form-status { font-size: 14px; margin-top: 12px; min-height: 1.2em; }
.verify-status.ok, .form-status.ok { color: #35A56E; }
.verify-status.err, .form-status.err { color: var(--red); }
:root[data-theme="light"] .verify-status.ok, :root[data-theme="light"] .form-status.ok { color: #1E7A4C; }

.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ============================================================
   Store badges (placeholders until the apps are live)
   ============================================================ */

.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.store {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-strong); border-radius: var(--r);
  padding: 11px 18px 11px 15px; background: var(--panel);
  color: var(--text); text-decoration: none; min-width: 186px;
}
.store:hover { text-decoration: none; border-color: var(--text-dim); }
.store[aria-disabled="true"] { opacity: .62; cursor: default; }
.store[aria-disabled="true"]:hover { border-color: var(--line-strong); }
.store svg { width: 24px; height: 24px; flex: none; }
.store .s-top { font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); line-height: 1.4; }
.store .s-btm { font-size: 15px; font-weight: 600; line-height: 1.25; }

/* ============================================================
   CTA band + footer
   ============================================================ */

.cta {
  background: var(--table-glow), var(--ink);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px, 8vw, 92px) 0; text-align: center;
}
.cta h2 { max-width: 20ch; margin: 0 auto; }
.cta .lead { margin: 18px auto 0; }
.cta .btn-row { justify-content: center; }

.footer { background: var(--felt-alt); padding: 54px 0 32px; font-size: 14px; }
.footer-top {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 36px; padding-bottom: 34px; border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }

.footer .brand { margin-right: 0; margin-bottom: 14px; }
.footer .blurb { color: var(--text-dim); max-width: 34ch; font-size: 14px; }
.footer h5 {
  font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--text-dim); margin: 0 0 14px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { color: var(--text-muted); text-decoration: none; }
.footer ul a:hover { color: var(--text); text-decoration: none; }

.footer-btm {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: 22px; color: var(--text-dim); font-size: 13px;
}

/* ============================================================
   Reveal on scroll
   ============================================================ */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
