/* ==========================================================================
   Playout — landing page
   Palette: violet / white / light grey, with gold (coins) and mint (payouts)
   ========================================================================== */

:root {
  /* light palette (default) */
  --paper:      #ffffff;
  --mist:       #f5f3fc;
  --mist-deep:  #ece8f8;
  --line:       #e4dff4;
  --ink:        #17102b;
  --ink-soft:   #4c4266;
  --ink-faint:  #8479a1;

  --violet:     #6d3bf5;
  --violet-dk:  #5628d6;
  --lilac:      #a98bff;
  --azure:      #3b8cf5;
  --gold:       #ffb627;
  --gold-dk:    #e0910a;
  --mint:       #14c38e;

  --band:       #1d0f42;   /* deep violet full-bleed bands */
  --band-2:     #2a1461;
  --on-band:    #f2ecff;
  --on-band-dim:#b4a3dd;

  --shadow-sm: 0 1px 2px rgba(23, 16, 43, .06), 0 2px 8px rgba(23, 16, 43, .05);
  --shadow-md: 0 2px 4px rgba(23, 16, 43, .05), 0 14px 34px rgba(45, 22, 110, .10);
  --shadow-lg: 0 4px 8px rgba(23, 16, 43, .06), 0 30px 70px rgba(45, 22, 110, .18);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 38px;

  --shell: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --f-display: "Gabarito", "Trebuchet MS", system-ui, sans-serif;
  --f-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-data: "DM Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:      #1a1233;
    --mist:       #120c24;
    --mist-deep:  #221743;
    --line:       #2f2354;
    --ink:        #f4f0ff;
    --ink-soft:   #c3b8e2;
    --ink-faint:  #8d80b2;

    --violet:     #8f66ff;
    --violet-dk:  #7d51ff;
    --lilac:      #bda4ff;
    --azure:      #62a5ff;
    --gold:       #ffc247;
    --gold-dk:    #ffb02e;
    --mint:       #2ad9a2;

    --band:       #0d0720;
    --band-2:     #1b0f3d;
    --on-band:    #f2ecff;
    --on-band-dim:#a493cf;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-md: 0 2px 4px rgba(0, 0, 0, .3), 0 14px 34px rgba(0, 0, 0, .45);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, .35), 0 30px 70px rgba(0, 0, 0, .6);
  }
}

:root[data-theme="dark"] {
  --paper:      #1a1233;
  --mist:       #120c24;
  --mist-deep:  #221743;
  --line:       #2f2354;
  --ink:        #f4f0ff;
  --ink-soft:   #c3b8e2;
  --ink-faint:  #8d80b2;

  --violet:     #8f66ff;
  --violet-dk:  #7d51ff;
  --lilac:      #bda4ff;
  --azure:      #62a5ff;
  --gold:       #ffc247;
  --gold-dk:    #ffb02e;
  --mint:       #2ad9a2;

  --band:       #0d0720;
  --band-2:     #1b0f3d;
  --on-band:    #f2ecff;
  --on-band-dim:#a493cf;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, .3), 0 14px 34px rgba(0, 0, 0, .45);
  --shadow-lg: 0 4px 8px rgba(0, 0, 0, .35), 0 30px 70px rgba(0, 0, 0, .6);
}

/* --------------------------------------------------------------- base ---- */

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

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

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(2rem, 4.3vw, 3rem); }
h3 { font-size: 1.22rem; line-height: 1.25; }

p { margin: 0; }

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

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--f-data);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.lede {
  font-size: clamp(1.03rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 54ch;
}

/* ------------------------------------------------------------- buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 0;
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn--play {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 26px -8px rgba(109, 59, 245, .7);
  padding-block: 13px;
}
.btn--play:hover { background: var(--violet-dk); transform: translateY(-2px); }
.btn--play svg { flex: none; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }

.btn--gold {
  background: var(--gold);
  color: #2a1a00;
  box-shadow: 0 12px 30px -10px rgba(255, 182, 39, .8);
}
.btn--gold:hover { background: var(--gold-dk); transform: translateY(-2px); }

.btn__sub {
  display: block;
  font-family: var(--f-data);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .78;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 3px;
}
.btn__main { display: block; line-height: 1.1; font-size: 1.06rem; }

.btn--lg {
  padding: 17px 32px;
  gap: 14px;
  box-shadow: 0 14px 34px -10px rgba(109, 59, 245, .75);
}
.btn--lg .btn__sub { font-size: .68rem; margin-bottom: 4px; }
.btn--lg .btn__main { font-size: 1.3rem; letter-spacing: -.01em; }
.btn--gold.btn--lg { box-shadow: 0 16px 38px -12px rgba(255, 182, 39, .85); }

/* -------------------------------------------------------------- header --- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--mist) 82%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.masthead.is-stuck { border-bottom-color: var(--line); }

.masthead__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.02em;
}
.brand img { width: 34px; height: 34px; border-radius: 10px; box-shadow: var(--shadow-sm); }

.masthead nav {
  display: flex;
  gap: 30px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.masthead nav a { text-decoration: none; }
.masthead nav a:hover { color: var(--violet); }

@media (max-width: 820px) { .masthead nav { display: none; } }
@media (max-width: 520px) { .masthead .btn { display: none; } }

/* ---------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  padding-block: clamp(18px, 2vw, 26px) clamp(44px, 6vw, 80px);
  overflow: hidden;
}

/* one soft glow, positioned behind the phone only */
.hero::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -12%;
  width: 62vw;
  height: 62vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle at center,
              color-mix(in srgb, var(--violet) 30%, transparent) 0%,
              color-mix(in srgb, var(--azure) 14%, transparent) 42%,
              transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .88fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.pill svg { flex: none; }
.pill--stars { color: var(--ink); }

h1 .hl {
  position: relative;
  color: var(--violet);
  white-space: nowrap;
}
h1 .hl::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: .06em;
  height: .2em;
  background: color-mix(in srgb, var(--gold) 55%, transparent);
  border-radius: 3px;
  z-index: -1;
}

.hero h1 { margin-bottom: 18px; }
.hero .lede { margin-top: 22px; max-width: 48ch; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__proof {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  font-size: .86rem;
  color: var(--ink-faint);
  font-weight: 600;
}
.hero__proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero__proof a { color: var(--violet); text-decoration: none; border-bottom: 1.5px solid color-mix(in srgb, var(--violet) 35%, transparent); }
.hero__proof a:hover { border-bottom-color: var(--violet); }
.hero__proof .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--mint) 22%, transparent);
}

/* -------------------------------------------------------- install card --- */

.installer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  max-width: 560px;
}

/* perforated edge — reads as a physical ticket / voucher */
.installer::after {
  content: "";
  position: absolute;
  inset-block: 22px;
  left: calc(20px + 188px + 11px);
  width: 1px;
  background-image: linear-gradient(var(--line) 60%, transparent 0);
  background-size: 1px 9px;
}

.narrow-only { display: none; }

@media (max-width: 620px) {
  .installer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 24px 22px 26px;
  }
  .installer::after { display: none; }
  .installer .qr { display: none; }
  .installer__copy { align-items: center; }
  .installer__copy .btn { margin-top: 12px; width: 100%; justify-content: center; }
  .wide-only { display: none; }
  .narrow-only { display: block; }
}

.qr {
  position: relative;
  width: 188px;
  height: 188px;
  flex: none;
  padding: 10px;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}
.qr__code { width: 100%; height: 100%; }
.qr__chip {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 44px; height: 44px;
  border-radius: 13px;
  box-shadow: 0 0 0 5px #fff, var(--shadow-sm);
}

.installer__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.installer__copy h3 { font-size: 1.42rem; }
.installer__copy p { font-size: .92rem; color: var(--ink-soft); }
.installer__copy .btn { margin-top: 8px; }


/* --------------------------------------------------------------- phone --- */

.phone-stage {
  position: relative;
  width: min(100%, 400px);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.phone {
  position: relative;
  width: min(300px, 78vw);
  border-radius: 42px;
  padding: 11px;
  background: linear-gradient(160deg, #ffffff 0%, #d9d2ef 48%, #ffffff 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .8);
  transform: rotate(-2.2deg);
}

.phone__screen {
  position: relative;
  border-radius: 32px;
  background: #ffffff;
  overflow: hidden;
  color: #17102b;
  font-size: 14px;
}

.phone__notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 20px;
  border-radius: 999px;
  background: #17102b;
  z-index: 3;
}

.screen__top {
  background: linear-gradient(155deg, var(--azure) 0%, #6d3bf5 100%);
  padding: 44px 18px 30px;
  text-align: center;
  color: #fff;
}
.screen__label {
  font-family: var(--f-data);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .82;
}
.screen__amount {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.screen__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: .7rem;
  font-weight: 700;
}
.screen__chip .coin {
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 33% 30%, #ffe08a, var(--gold) 62%, var(--gold-dk));
}

.screen__list { padding: 6px 14px 16px; background: #fff; }

.row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 9px 2px;
  border-bottom: 1px solid #efecf8;
}
.row:last-child { border-bottom: 0; }
.row img { width: 34px; height: 34px; border-radius: 10px; }
.row__name {
  font-weight: 700;
  font-size: .84rem;
  color: #241a41;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.row__sub { font-size: .68rem; color: #8479a1; font-weight: 600; }
.row__amt {
  font-weight: 800;
  font-size: .88rem;
  color: #14c38e;
  font-variant-numeric: tabular-nums;
}

/* floating reward cards around the phone */
.float {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: bob 5.5s ease-in-out infinite;
}
.float--a { left: -66px;  top: 17%; animation-delay: -.4s; }
.float--b { right: -46px; top: 26%; animation-delay: -2.2s; }
.float--c { left: -58px;  bottom: 12%; animation-delay: -3.6s; }

@media (max-width: 520px) {
  .float { font-size: .72rem; padding: 8px 11px; }
  .float--a { left: -14px; }
  .float--b { right: -14px; }
  .float--c { left: -8px; }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-11px) rotate(1.5deg); }
}

.float .tag {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  font-size: .78rem;
  color: #fff;
}
.tag--pp   { background: #0070ba; }
.tag--amz  { background: #111827; }
.tag--gp   { background: linear-gradient(135deg, #00c6ff, #ff3a44); }
.tag--gold { background: linear-gradient(135deg, #ffd76e, var(--gold-dk)); color: #4a2f00; }

/* --------------------------------------------------------------- bands --- */

.band {
  background: var(--band);
  color: var(--on-band);
  position: relative;
  overflow: hidden;
}
.band--ticker { padding-block: 13px 15px; }

.ticker__head {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: var(--f-data);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-band-dim);
  margin-bottom: 10px;
}
.ticker__head .live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--mint) 70%, transparent);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--mint) 65%, transparent); }
  70%  { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track {
  display: flex;
  flex: none;
  gap: 14px;
  padding-right: 14px;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-100%); } }

.marquee--rev .marquee__track { animation-duration: 46s; animation-direction: reverse; }

.payout {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 8px 17px 8px 9px;
  border-radius: 999px;
  background: var(--band-2);
  border: 1px solid color-mix(in srgb, var(--lilac) 24%, transparent);
}
.payout__logo {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 9px;
  font-size: .8rem;
  font-weight: 800;
  color: #fff;
  flex: none;
}
.payout__txt { font-size: .88rem; font-weight: 600; color: var(--on-band-dim); }
.payout__txt b { color: var(--on-band); font-weight: 800; }
.payout__amt {
  font-family: var(--f-data);
  font-weight: 500;
  color: var(--mint);
  font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------------------- section --- */

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--paper { background: var(--paper); }

.section__head {
  max-width: 62ch;
  margin-bottom: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section__head--center { margin-inline: auto; text-align: center; align-items: center; }

/* ------------------------------------------------------------- games ---- */

.games { background: var(--band); color: var(--on-band); position: relative; }
.games .eyebrow { color: var(--on-band-dim); }
.games .lede { color: var(--on-band-dim); }
.games h2 { color: var(--on-band); }

.rails { display: flex; flex-direction: column; gap: 14px; }

.game {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
  padding: 12px 22px 12px 12px;
  border-radius: 20px;
  background: var(--band-2);
  border: 1px solid color-mix(in srgb, var(--lilac) 22%, transparent);
  transition: transform .2s ease, border-color .2s ease;
}
.game:hover { transform: translateY(-3px); border-color: var(--lilac); }
.game img {
  width: 58px; height: 58px;
  border-radius: 16px;
  flex: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
}
.game__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.game__meta {
  font-family: var(--f-data);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-band-dim);
}

.games__foot {
  margin-top: 34px;
  text-align: center;
  font-size: .92rem;
  color: var(--on-band-dim);
}

/* -------------------------------------------------------------- steps --- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  counter-reset: step;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 30px 26px 28px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section--paper .step { background: var(--mist); }

.step__n {
  counter-increment: step;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--violet);
  color: #fff;
  margin-bottom: 6px;
}
.step__n::before { content: counter(step); }
.step p { font-size: .95rem; color: var(--ink-soft); }

/* arrow connector between steps */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 48px;
  width: 12px; height: 12px;
  border-right: 2px solid var(--line);
  border-top: 2px solid var(--line);
  transform: rotate(45deg);
}
@media (max-width: 860px) { .step:not(:last-child)::after { display: none; } }

/* ------------------------------------------------------------ rewards --- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

.card {
  padding: 26px 24px;
  border-radius: var(--r-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card p { font-size: .94rem; color: var(--ink-soft); }

.card__icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  background: color-mix(in srgb, var(--violet) 12%, transparent);
  color: var(--violet);
}
.card--gold .card__icon { background: color-mix(in srgb, var(--gold) 20%, transparent); color: var(--gold-dk); }
.card--mint .card__icon { background: color-mix(in srgb, var(--mint) 16%, transparent); color: var(--mint); }
.card--azure .card__icon { background: color-mix(in srgb, var(--azure) 14%, transparent); color: var(--azure); }

/* ---------------------------------------------------------------- faq --- */

.faq {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: color-mix(in srgb, var(--violet) 45%, transparent); }

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 22px;
  position: relative;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 9px; height: 9px;
  margin-top: -6px;
  border-right: 2.2px solid var(--violet);
  border-bottom: 2.2px solid var(--violet);
  transform: rotate(45deg);
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq .answer { padding: 0 22px 20px; color: var(--ink-soft); font-size: .97rem; }

/* -------------------------------------------------------------- final --- */

.final {
  background: var(--band);
  color: var(--on-band);
  padding-block: clamp(60px, 8vw, 104px);
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  left: 50%; top: -30%;
  width: 120vw; height: 80vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
              color-mix(in srgb, var(--violet) 42%, transparent) 0%,
              transparent 62%);
  pointer-events: none;
}

.final__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 800px) {
  .final__grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
}
@media (max-width: 620px) {
  .qr-big { display: none; }
  .final__cta .btn { width: 100%; justify-content: center; }
}

.final h2 { color: var(--on-band); margin-bottom: 16px; }
.final .lede { color: var(--on-band-dim); margin-bottom: 28px; }
.final .eyebrow { color: var(--on-band-dim); margin-bottom: 14px; display: block; }

.qr-big {
  position: relative;
  padding: 18px;
  border-radius: var(--r-xl);
  background: #fff;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8);
}
.qr-big .qr {
  width: min(272px, 64vw);
  height: min(272px, 64vw);
  box-shadow: none;
  padding: 0;
}
.qr-big .qr__chip { width: 62px; height: 62px; border-radius: 18px; box-shadow: 0 0 0 7px #fff; }
.qr-big__cap {
  margin-top: 14px;
  text-align: center;
  font-family: var(--f-data);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6b5f8a;
}

.final__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
@media (max-width: 800px) { .final__cta { justify-content: center; } }

/* ------------------------------------------------------------- footer --- */

.footer {
  background: var(--band);
  color: var(--on-band-dim);
  border-top: 1px solid color-mix(in srgb, var(--lilac) 16%, transparent);
  padding-block: 30px 36px;
  font-size: .85rem;
}
.footer__in {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  align-items: center;
  justify-content: space-between;
}
.footer a { text-decoration: none; }
.footer a:hover { color: var(--on-band); }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }

/* -------------------------------------------------------------- reveal --- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; overflow-x: auto; }
}
