/* ============================================================================
   CASINO69BET — styles.css (KASYNOWY MOTYW: ZŁOTO + CIEMNOŚĆ)
   ============================================================================ */

:root {

  /* ══════════════════════════════════════════════════════════════════
       🎨  KOLOR MARKI — złoto kasynowe
     ══════════════════════════════════════════════════════════════════ */
  --brand: #e6b23a;            /*  złoto kasynowe  */
  --on-brand: #0a0a0a;         /*  tekst na złotym tle  */

  --gold:  #e6b23a;            /*  kolor gwiazdek  */

  /* — Ciemne, eleganckie tło — */
  --bg:        #0a0a0a;        /* tło strony            */
  --bg-tint:   #121212;        /* delikatne sekcje         */
  --surface:   #1a1a1a;        /* karty, panele              */
  --surface-2: #222222;        /* inputy, wypukłe elementy   */
  --ink:       #f5f5f5;        /* główny tekst               */
  --muted:     #999999;        /* tekst poboczny              */
  --line:      #333333;        /* obramowania                */

  /* — Pochodne od marki — */
  --brand-strong: color-mix(in srgb, var(--brand) 88%, #fff);
  --brand-deep:   color-mix(in srgb, var(--brand) 75%, #000);
  --brand-soft:   color-mix(in srgb, var(--brand) 12%, #0a0a0a);
  --brand-tint:   color-mix(in srgb, var(--brand) 25%, #0a0a0a);
  --brand-border: color-mix(in srgb, var(--brand) 40%, #0a0a0a);
  --brand-shadow: color-mix(in srgb, var(--brand) 55%, transparent);

  /* — Typografia — */
  --font-display: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* — Rytm / geometria — */
  --container: 1140px;
  --gutter: clamp(16px, 5vw, 32px);
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 22px;
  --section-y: clamp(3rem, 7vw, 5.5rem);

  --shadow-sm: 0 1px 2px rgba(0,0,0,.6), 0 6px 20px -12px rgba(0,0,0,.8);
  --shadow:    0 24px 60px -24px rgba(0,0,0,.85);

  --fs-hero: clamp(2.2rem, 1.3rem + 4vw, 3.9rem);
  --fs-h2:   clamp(1.6rem, 1.15rem + 2vw, 2.45rem);
  --fs-h3:   clamp(1.15rem, 1rem + .6vw, 1.4rem);
  --fs-lead: clamp(1.05rem, 1rem + .35vw, 1.22rem);
}

/* ============================================================================ BASE */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(230, 178, 58, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(230, 178, 58, 0.02) 0%, transparent 50%);
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--brand-strong); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { padding-left: 1.15rem; }
li { margin-block: .35rem; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--brand); color: var(--on-brand); }
:focus-visible { outline: 3px solid var(--brand-strong); outline-offset: 2px; border-radius: 6px; }
.num, table td.num, .stat-value, .offer-amount, .odds-btn { font-family: var(--font-mono); font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

/* ============================================================================ TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: var(--fs-hero); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; }
.lead { font-size: var(--fs-lead); color: var(--muted); max-width: 60ch; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-strong); font-weight: 700; }
.eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--brand); transform: rotate(45deg); }
.byline { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem .8rem; color: var(--muted); font-size: .85rem; margin: -.2rem 0 1.4rem; }
.byline .byline-av { width: 28px; height: 28px; border-radius: 50%; background: var(--brand-soft); border: 1px solid var(--brand-border); display: grid; place-items: center; color: var(--brand-strong); font-weight: 700; font-size: .72rem; font-family: var(--font-display); }
.byline strong { color: var(--ink); font-weight: 600; }
.byline span + span::before { content: "·"; margin-right: .8rem; opacity: .5; }
.byline .byline-av + span::before { content: none; margin: 0; }
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; font-size: 1.2rem; }
.prose p, .prose li { color: #b0b0b0; }
.prose strong { color: var(--ink); }

/* ============================================================================ LAYOUT */
.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--bg-tint); }
.section--tight { padding-block: clamp(2rem, 5vw, 3rem); }
.section-head { max-width: 60ch; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section-head .eyebrow { margin-bottom: .85rem; }
.section-head p { margin-top: .6rem; color: var(--muted); }
.center { text-align: center; }
.center .section-head, .center .lead { margin-inline: auto; }
.grid { display: grid; gap: clamp(14px, 2vw, 22px); grid-template-columns: 1fr; align-items: stretch; }
.grid > * { min-width: 0; }
@media (min-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .cols-3 { grid-template-columns: repeat(3, 1fr); } .cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================================ HEADER + MENU */
.site-header { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 1rem; height: 70px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); letter-spacing: -.02em; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand .dot { width: 24px; height: 24px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); display: grid; place-items: center; color: var(--on-brand); font-size: .72rem; font-weight: 800; }
.nav-checkbox { display: none; }
.nav-links { display: flex; align-items: center; gap: .2rem; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .95rem; padding: .5rem .8rem; border-radius: 9px; }
.nav-links a:hover { color: var(--ink); background: var(--brand-soft); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.nav-burger { display: none; width: 46px; height: 46px; border-radius: 11px; background: var(--brand-soft); border: 1px solid var(--brand-border); cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 20px; height: 2.5px; border-radius: 2px; background: var(--brand-strong); transition: transform .25s, opacity .2s; }
@media (max-width: 900px) {
  .nav-burger { display: inline-flex; }
  .nav-links { position: absolute; left: 0; right: 0; top: 70px; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: .4rem var(--gutter) 1rem; max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .3s ease, visibility .3s; }
  .nav-checkbox:checked ~ .nav-links { max-height: 60vh; visibility: visible; }
  .nav-links a { padding: .9rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-checkbox:checked ~ .nav-actions .nav-burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-checkbox:checked ~ .nav-actions .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-checkbox:checked ~ .nav-actions .nav-burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ============================================================================ BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 700; font-size: 1rem; line-height: 1; padding: .95rem 1.6rem; border-radius: 999px; border: 2px solid transparent; transition: transform .14s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease; white-space: nowrap; }
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { color: var(--on-brand); background: var(--brand); border-color: var(--brand); box-shadow: 0 10px 26px -8px var(--brand-shadow); }
.btn-primary:hover { background: var(--brand-strong); border-color: var(--brand-strong); transform: translateY(-2px); box-shadow: 0 16px 34px -8px var(--brand-shadow); }
.btn-ghost { color: var(--ink); background: var(--surface-2); border-color: var(--brand-border); }
.btn-ghost:hover { background: var(--brand-soft); border-color: var(--brand); color: var(--brand-strong); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.1rem 1.9rem; font-size: 1.08rem; }
.btn-sm { padding: .6rem 1rem; font-size: .9rem; }

/* ============================================================================ CHIPS / BADGES / STARS */
.chip { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .8rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: .84rem; color: var(--muted); font-weight: 500; }
.chip strong { color: var(--ink); font-weight: 700; }
.chip--brand { border-color: var(--brand-border); color: var(--brand-strong); background: var(--brand-soft); }
.badge { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; padding: .32rem .6rem; border-radius: 6px; background: var(--brand-soft); color: var(--brand-strong); }
.badge--live { background: color-mix(in srgb, #f0484d 20%, #0a0a0a); color: #ff8a8d; }
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1rem; }
.rating-inline { display: inline-flex; align-items: center; gap: .5rem; }

/* ============================================================================ CARDS */
.card { display: flex; flex-direction: column; height: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.15rem, 2.5vw, 1.6rem); box-shadow: var(--shadow-sm); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.card--hover:hover { border-color: var(--brand-border); transform: translateY(-4px); box-shadow: var(--shadow), 0 0 0 1px var(--brand-border); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); }
.card__icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 1rem; display: grid; place-items: center; font-size: 1.25rem; background: var(--brand-soft); color: var(--brand-strong); border: 1px solid var(--brand-border); }
.card__media { aspect-ratio: 16 / 10; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(135deg, var(--surface-2), var(--bg-tint)); border: 1px solid var(--line); margin-bottom: .9rem; display: grid; place-items: center; color: var(--muted); font-size: .8rem; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
a.game-card { text-decoration: none; color: inherit; }
a.game-card:hover { text-decoration: none; }
.game-card .card__media { aspect-ratio: 3 / 4; margin-bottom: .75rem; }
.game-card h3 { font-size: 1rem; margin-bottom: .15rem; }
.game-card .meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; }
.game-card .meta .num { color: var(--brand-strong); }
.game-card .play-tag { margin-top: .7rem; display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .85rem; color: var(--brand-strong); }
.game-card:hover .play-tag { color: var(--brand); }
.provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 620px) { .provider-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .provider-grid { grid-template-columns: repeat(6, 1fr); } }
.provider { display: grid; place-items: center; text-align: center; min-height: 84px; padding: 1rem; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); color: var(--muted); font-family: var(--font-display); font-weight: 700; transition: color .2s, border-color .2s, background .2s; }
.provider:hover { color: var(--ink); border-color: var(--brand-border); background: var(--brand-soft); }
.pay-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 620px) { .pay-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 960px) { .pay-grid { grid-template-columns: repeat(6, 1fr); } }
.pay { display: grid; place-items: center; min-height: 74px; padding: .75rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); font-weight: 700; font-size: .92rem; text-align: center; }

/* ============================================================================ STEPS */
.steps { display: grid; gap: 16px; counter-reset: step; }
@media (min-width: 760px) { .steps.cols-2 { grid-template-columns: repeat(2, 1fr); } }
.step { counter-increment: step; position: relative; padding-left: 3.8rem; }
.step::before { content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: -.15rem; font-family: var(--font-mono); font-size: 1.05rem; font-weight: 700; color: var(--on-brand); width: 2.7rem; height: 2.7rem; border-radius: 12px; display: grid; place-items: center; background: var(--brand); box-shadow: 0 8px 20px -8px var(--brand-shadow); }
.step h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.step p { color: var(--muted); }

/* ============================================================================ REVIEWS */
.review .review-top { display: flex; align-items: center; gap: .8rem; margin-bottom: .8rem; }
.review .avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; background: var(--brand-soft); border: 1px solid var(--brand-border); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--brand-strong); }
.review .who { font-weight: 700; line-height: 1.2; }
.review blockquote { color: var(--muted); border: 0; padding: 0; margin: 0; }

/* ============================================================================ HERO + OFFER CARD */
.hero { position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 55% at 85% -10%, var(--brand-soft), transparent 60%), radial-gradient(55% 45% at 0% 0%, color-mix(in srgb, var(--brand) 8%, transparent), transparent 60%); }
.hero-grid { display: grid; gap: clamp(1.75rem, 4vw, 3rem); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { margin: 1rem 0 1.1rem; }
.hero h1 .accent { color: var(--brand-strong); text-shadow: 0 0 30px var(--brand-shadow); }
.hero .lead { margin-bottom: 1.6rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem; }
.offer-card { background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.3rem, 3vw, 1.9rem); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.offer-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--brand), var(--brand-strong)); }
.offer-card::after { content: ""; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, var(--brand-soft) 0%, transparent 50%); z-index: -1; }
.offer-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.offer-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 6vw, 2.9rem); background: linear-gradient(135deg, var(--brand), var(--brand-strong)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.05; letter-spacing: -.02em; }
.offer-sub { color: var(--muted); margin: .4rem 0 1.1rem; }
.offer-rows { display: grid; gap: 0; margin: 1rem 0 1.25rem; border-top: 1px dashed var(--line); padding-top: 1rem; }
.offer-row { display: flex; align-items: center; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.offer-row span:first-child { color: var(--muted); font-size: .92rem; }
.offer-row span:last-child { font-family: var(--font-mono); color: var(--ink); font-weight: 700; }
.offer-fine { font-size: .78rem; color: var(--muted); margin-top: .9rem; text-align: center; }

/* ============================================================================ STATS BAR */
.statbar { display: grid; grid-template-columns: repeat(2, 1fr); background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
@media (min-width: 760px) { .statbar { grid-template-columns: repeat(4, 1fr); } }
.stat { padding: clamp(1.2rem, 3vw, 1.7rem); text-align: center; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat:nth-child(2n) { border-right: 0; }
@media (min-width: 760px) { .stat { border-bottom: 0; } .stat:nth-child(2n) { border-right: 1px solid var(--line); } .stat:last-child { border-right: 0; } }
.stat-value { display: block; font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700; color: var(--ink); }
.stat-value .unit { color: var(--brand-strong); }
.stat-label { color: var(--muted); font-size: .85rem; margin-top: .25rem; }

/* ============================================================================ TOC */
.toc { background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 1.6rem); box-shadow: var(--shadow-sm); }
.toc h2 { font-size: 1.15rem; margin-bottom: .9rem; }
.toc ol { list-style: none; padding: 0; display: grid; gap: 0; counter-reset: toc; grid-template-columns: 1fr; }
@media (min-width: 700px) { .toc ol { grid-template-columns: 1fr 1fr; column-gap: 2rem; } }
.toc li { counter-increment: toc; margin: 0; }
.toc a { display: flex; gap: .7rem; padding: .6rem 0; color: var(--muted); border-bottom: 1px solid var(--line); font-weight: 500; }
.toc a:hover { color: var(--brand-strong); text-decoration: none; }
.toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--font-mono); color: var(--brand-strong); font-weight: 700; font-size: .85rem; }

/* ============================================================================ TABLES */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 420px; background: var(--surface); }
caption { text-align: left; color: var(--muted); padding: .85rem 1.1rem; font-size: .85rem; font-weight: 600; }
th, td { text-align: left; padding: .9rem 1.15rem; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--bg-tint); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .9rem; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--bg-tint) 55%, var(--surface)); }
td.num { color: var(--brand-strong); font-weight: 700; }
.info-table th[scope="row"] { color: var(--muted); font-family: var(--font-body); font-weight: 500; width: 42%; background: var(--surface); }
.info-table td { color: var(--ink); }

/* ============================================================================ ODDS BOARD */
.oddsboard { display: grid; gap: 12px; }
.match { display: grid; grid-template-columns: 1fr auto; gap: .75rem 1rem; align-items: center; background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem 1.15rem; box-shadow: var(--shadow-sm); transition: border-color .2s; }
.match:hover { border-color: var(--brand-border); }
.match .teams { font-weight: 700; }
.match .league { color: var(--brand-strong); font-size: .78rem; font-family: var(--font-mono); letter-spacing: .05em; }
.match .odds-row { display: flex; gap: .5rem; }
.odds-btn { min-width: 64px; text-align: center; padding: .55rem .65rem; border-radius: 9px; background: var(--surface-2); border: 1.5px solid var(--brand-border); color: var(--ink); font-weight: 700; font-size: .95rem; transition: border-color .15s, color .15s, background .15s, transform .12s; }
.odds-btn small { display: block; font-family: var(--font-body); font-weight: 600; color: var(--muted); font-size: .68rem; margin-bottom: .15rem; }
.odds-btn:hover { border-color: var(--brand); color: var(--brand-strong); background: var(--brand-soft); text-decoration: none; transform: translateY(-1px); }

/* ============================================================================ VIP TIERS */
.tier { text-align: center; }
.tier .tier-name { font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; color: var(--brand-strong); font-weight: 700; }
.tier .tier-medal { width: 56px; height: 56px; border-radius: 50%; margin: .1rem auto 1rem; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); display: grid; place-items: center; color: var(--on-brand); font-family: var(--font-display); font-weight: 800; box-shadow: 0 0 0 5px var(--brand-soft); }
.tier ul { list-style: none; padding: 0; margin-top: .5rem; text-align: left; }
.tier li { padding: .45rem 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.tier li::before { content: "✦"; color: var(--brand-strong); margin-right: .5rem; }

/* ============================================================================ APP / PHONE */
.app-split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 900px) { .app-split { grid-template-columns: 1fr 1fr; } }
.phone { margin-inline: auto; width: min(280px, 78%); aspect-ratio: 9 / 19; border-radius: 36px; background: var(--surface-2); border: 1px solid var(--line); box-shadow: var(--shadow), inset 0 0 0 1px var(--brand-border); position: relative; padding: 12px; }
.phone::before { content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 90px; height: 6px; border-radius: 999px; background: var(--line); }
.phone .screen { width: 100%; height: 100%; border-radius: 26px; overflow: hidden; background: linear-gradient(165deg, var(--brand-soft), var(--bg-tint)); display: grid; place-items: center; color: var(--muted); font-size: .8rem; text-align: center; padding: 1rem; }
.store-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.store-badge { display: inline-flex; align-items: center; gap: .6rem; padding: .8rem 1.15rem; border-radius: 12px; background: var(--surface-2); color: var(--ink); border: 1px solid var(--line); font-weight: 600; transition: transform .14s, box-shadow .2s, border-color .2s; }
.store-badge:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--brand-border); box-shadow: var(--shadow); }
.store-badge small { display: block; color: var(--muted); font-size: .68rem; font-weight: 500; }
.store-badge b { font-family: var(--font-display); font-size: .95rem; }

/* ============================================================================ FAQ */
.faq { display: grid; gap: 12px; }
.faq details { background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .2s; }
.faq details[open] { border-color: var(--brand-border); }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 1.5rem; color: var(--brand-strong); transition: transform .2s; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.25rem 1.25rem; color: var(--muted); }

/* ============================================================================ CTA BAND */
.cta-band { text-align: center; background: linear-gradient(135deg, var(--brand), var(--brand-deep)); color: var(--on-brand); border-radius: var(--radius-lg); padding: clamp(2.2rem, 6vw, 3.6rem); box-shadow: 0 24px 60px -24px var(--brand-shadow); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%); }
.cta-band .eyebrow { color: var(--on-brand); }
.cta-band .eyebrow::before { background: var(--on-brand); }
.cta-band h2 { color: var(--on-brand); margin-bottom: .6rem; }
.cta-band p { color: color-mix(in srgb, var(--on-brand) 82%, var(--brand)); max-width: 54ch; margin: 0 auto 1.6rem; }
.cta-band .btn-primary { background: var(--on-brand); color: var(--brand-deep); border-color: var(--on-brand); box-shadow: 0 12px 28px -12px rgba(0,0,0,.5); }
.cta-band .btn-primary:hover { background: var(--ink); color: var(--brand-deep); border-color: var(--ink); }

/* ============================================================================ STICKY MOBILE CTA */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: .7rem; align-items: center; padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(14px); border-top: 1px solid var(--brand-border); box-shadow: 0 -8px 24px -12px rgba(0,0,0,.8); }
.mobile-cta .mc-text { flex: 1; min-width: 0; }
.mobile-cta .mc-text b { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--brand-strong); }
.mobile-cta .mc-text small { color: var(--muted); font-size: .75rem; }
.mobile-cta .btn { flex: none; }
@media (max-width: 760px) { .mobile-cta { display: flex; } body { padding-bottom: 82px; } }

/* ============================================================================ FOOTER */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-tint); margin-top: var(--section-y); }
.footer-grid { display: grid; gap: 2rem; padding-block: clamp(2.5rem, 6vw, 3.5rem); grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 980px) { .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; } }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-strong); font-family: var(--font-mono); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: var(--muted); font-weight: 500; }
.footer-col a:hover { color: var(--brand-strong); text-decoration: none; }
.footer-brand p { color: var(--muted); font-size: .92rem; margin: .8rem 0 1rem; max-width: 42ch; }
.rg-badges { display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.rg-badge { display: inline-grid; place-items: center; height: 34px; padding: 0 .7rem; border: 1px solid var(--line); border-radius: 8px; color: var(--muted); font-family: var(--font-mono); font-size: .72rem; background: var(--surface); }
.age-badge { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--brand); color: var(--brand-strong); font-family: var(--font-display); font-weight: 800; font-size: .85rem; flex: none; }
.footer-disclaimer { padding-bottom: 2rem; }
.footer-disclaimer p { color: #777777; font-size: .78rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.5rem; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-bottom p { color: var(--muted); font-size: .82rem; }

/* ============================================================================ LOGIN / AUTH */
.auth-hero { background: var(--bg-tint); border-bottom: 1px solid var(--line); }
.auth-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 900px) { .auth-grid { grid-template-columns: 1fr 1fr; } }
.auth-intro h1 { margin: 1rem 0; }
.auth-intro ul { list-style: none; padding: 0; display: grid; gap: .7rem; margin-top: 1.5rem; max-width: 40ch; }
.auth-intro li { display: flex; gap: .6rem; color: var(--muted); }
.auth-intro li::before { content: "✓"; color: var(--brand-strong); font-weight: 800; }
.auth-card { width: min(100%, 440px); margin-inline: auto; background: linear-gradient(135deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.2rem); box-shadow: var(--shadow); }
.auth-card h2 { text-align: center; margin-bottom: .35rem; }
.auth-card .sub { color: var(--muted); text-align: center; margin-bottom: 1.6rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; color: var(--ink); font-weight: 600; margin-bottom: .45rem; }
.field input { width: 100%; padding: .9rem 1rem; border-radius: 12px; color: var(--ink); background: var(--bg-tint); border: 1.5px solid var(--line); font: inherit; transition: border-color .15s, box-shadow .15s; }
.field input::placeholder { color: #666666; }
.field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.field-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: -.2rem 0 1.3rem; font-size: .9rem; }
.field-row label { display: inline-flex; align-items: center; gap: .5rem; color: var(--muted); margin: 0; font-weight: 500; }
.divider-or { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: .8rem; margin: 1.4rem 0; text-transform: uppercase; }
.divider-or::before, .divider-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.auth-alt { text-align: center; color: var(--muted); margin-top: 1.4rem; font-size: .92rem; }

/* ============================================================================ HELPERS */
.mt-2 { margin-top: .75rem; } .mt-4 { margin-top: 1.5rem; }
.flow > * + * { margin-top: 1rem; }

/* ============================================================================ IMAGES */
.brand-logo { height: 30px; width: auto; display: block; filter: drop-shadow(0 0 8px var(--brand-shadow)); }
.footer-brand .brand-logo { height: 34px; }
.provider img { max-height: 46px; max-width: 82%; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.7); transition: filter .2s; }
.provider:hover img { filter: grayscale(0%) opacity(1); }
.pay img { max-height: 34px; max-width: 82%; width: auto; object-fit: contain; filter: grayscale(100%) opacity(0.7); transition: filter .2s; }
.pay:hover img { filter: grayscale(0%) opacity(1); }
.phone .screen img { width: 100%; height: 100%; object-fit: cover; }