/* ==========================================================================
   Aira331 - Minimal Dark Asymmetric
   Design system: charcoal + white + gray-blue, editorial negative space
   ========================================================================== */

:root {
  /* Brand */
  --charcoal: #23292e;
  --charcoal-deep: #1b2024;
  --white: #ffffff;
  --gray-blue: #4a5568;
  --surface: #f7f8fa;

  /* Derived text/ink */
  --ink: #23292e;
  --ink-soft: #4a5568;
  --ink-muted: #6b7480;
  --line: #e5e8ec;
  --line-dark: #333c44;

  /* On-dark */
  --on-dark: #ffffff;
  --on-dark-soft: #b9c1cb;
  --on-dark-muted: #8b96a2;

  /* Accent signals */
  --pos: #2f9e6f;
  --neg: #c8493f;
  --warn: #c99a2e;

  /* Type */
  --font-head: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --wrap: 1200px;
  --wrap-narrow: 820px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, picture { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); margin: 0; line-height: 1.05; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0 0 1.1em; }
:focus-visible { outline: 2px solid var(--gray-blue); outline-offset: 3px; }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: var(--wrap-narrow); }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray-blue);
  margin: 0 0 1.1rem;
  display: inline-block;
}
.eyebrow.on-dark { color: var(--on-dark-muted); }
.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.65; }
.center { text-align: center; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 11vw, 140px) 0; }
.section--tight { padding: clamp(48px, 8vw, 96px) 0; }
.section--dark { background: var(--charcoal); color: var(--on-dark); }
.section--dark .lead { color: var(--on-dark-soft); }
.section--surface { background: var(--surface); }

.section-head { max-width: 720px; margin: 0 0 clamp(40px, 6vw, 72px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
}
.section-head p { margin-top: 1.2rem; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease),
              border-color var(--dur) var(--ease), padding var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.nav.scrolled {
  background: rgba(35, 41, 46, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-logo img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  color: var(--on-dark-soft); transition: color 0.25s var(--ease); position: relative;
}
.nav-links a:hover { color: var(--on-dark); }
.nav-links a.nav-cta {
  border: 1px solid var(--gray-blue); color: var(--on-dark);
  padding: 0.55rem 1.2rem; border-radius: var(--radius);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.nav-links a.nav-cta:hover { background: var(--gray-blue); border-color: var(--gray-blue); }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; color: var(--on-dark);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 84px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(27, 32, 36, 0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    padding: 12px var(--gutter) 28px;
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav.open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 15px 0; width: 100%; font-size: 1.05rem; border-bottom: 1px solid var(--line-dark); }
  .nav-links a.nav-cta { margin-top: 14px; text-align: center; border-bottom: 1px solid var(--gray-blue); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 0.95rem 1.8rem; border-radius: var(--radius);
  border: 1px solid transparent; transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  line-height: 1; cursor: pointer; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--white); color: var(--charcoal); }
.btn-primary:hover { background: var(--on-dark-soft); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--charcoal-deep); }
.btn-ghost { background: transparent; border-color: var(--gray-blue); color: inherit; }
.btn-ghost:hover { background: var(--gray-blue); color: var(--white); border-color: var(--gray-blue); }
.btn-ghost.on-dark { color: var(--on-dark); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.06rem; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 2rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--charcoal); color: var(--on-dark);
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
}
.hero::after {
  content: ""; position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
  width: 46vw; height: 46vw; max-width: 720px; max-height: 720px;
  border: 1px solid var(--line-dark); border-radius: 50%;
  opacity: 0.5; pointer-events: none;
}
.hero::before {
  content: ""; position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: 30vw; height: 30vw; max-width: 460px; max-height: 460px;
  border: 1px solid var(--line-dark); border-radius: 50%;
  opacity: 0.4; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 960px; }
.hero-brand {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(4.5rem, 17vw, 15rem);
  line-height: 0.86; letter-spacing: -0.04em;
  margin: 0 0 0.15em; text-transform: uppercase;
}
.hero-brand .thin { font-weight: 800; color: var(--on-dark-muted); }
.hero h1 {
  font-size: clamp(1.5rem, 3.6vw, 2.6rem); font-weight: 700;
  max-width: 20ch; margin: 0 0 1.4rem; line-height: 1.1;
}
.hero p { max-width: 52ch; color: var(--on-dark-soft); font-size: 1.15rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 2.6rem;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-muted); font-family: var(--font-head); font-weight: 600;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; background: var(--gray-blue); border-radius: 50%; }

/* ==========================================================================
   Asymmetric split
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.split--left { grid-template-columns: 1.15fr 0.85fr; }
.split--right { grid-template-columns: 0.85fr 1.15fr; }
.split--right .split-text { order: 2; }
.split--right .split-visual { order: 1; }
.split-text h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.2rem; }
.split-visual figure { margin: 0; }
.split-visual img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.section--dark .split-visual img { border-color: var(--line-dark); }
.split-visual figcaption {
  margin-top: 0.9rem; font-size: 0.82rem; color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.section--dark .split-visual figcaption { color: var(--on-dark-muted); }

.feature-list { list-style: none; margin: 1.6rem 0 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list .fx {
  flex: 0 0 auto; width: 26px; height: 26px; border: 1px solid currentColor;
  border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; opacity: 0.85;
  margin-top: 2px;
}
.feature-list strong { font-weight: 600; }
.feature-list span.ft-body { color: var(--ink-soft); display: block; font-size: 0.98rem; }
.section--dark .feature-list span.ft-body { color: var(--on-dark-soft); }

@media (max-width: 860px) {
  .split, .split--left, .split--right { grid-template-columns: 1fr; }
  .split--right .split-text { order: 1; }
  .split--right .split-visual { order: 2; }
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: clamp(18px, 2.5vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px); background: var(--white);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover { border-color: var(--gray-blue); transform: translateY(-3px); }
.section--dark .card { background: transparent; border-color: var(--line-dark); }
.section--dark .card:hover { border-color: var(--gray-blue); }
.card .num {
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
  color: var(--gray-blue); letter-spacing: 0.1em; display: block; margin-bottom: 1rem;
}
.card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; font-weight: 800; }
.card p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }
.section--dark .card p { color: var(--on-dark-soft); }
.card .card-ico {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius);
  display: grid; place-items: center; margin-bottom: 1.2rem; font-size: 1.2rem;
}
.section--dark .card .card-ico { border-color: var(--line-dark); }

/* Stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px,3vw,48px); }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .n { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; letter-spacing: -0.03em; }
.stat .l { display: block; margin-top: 0.6rem; font-size: 0.9rem; color: var(--ink-muted); letter-spacing: 0.04em; }
.section--dark .stat .l { color: var(--on-dark-muted); }

/* Payment chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6rem; }
.chip {
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; padding: 0.5rem 1rem; border: 1px solid var(--line);
  border-radius: 999px; color: var(--ink-soft);
}
.section--dark .chip { border-color: var(--line-dark); color: var(--on-dark-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: var(--wrap-narrow); margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; padding: 1.5rem 3rem 1.5rem 0;
  font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--ink);
  position: relative; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-q .pm { position: absolute; right: 4px; width: 18px; height: 18px; flex: 0 0 auto; }
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; top: 50%; left: 0; width: 18px; height: 2px; background: var(--gray-blue);
  transition: transform 0.3s var(--ease);
}
.faq-q .pm::after { transform: rotate(90deg); }
.faq-item.open .faq-q .pm::after { transform: rotate(0deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 3rem 1.6rem 0; color: var(--ink-soft); }
.faq-a-inner p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px,2.5vw,28px); }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote {
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: clamp(26px,3vw,38px);
}
.quote p { font-size: 1.05rem; color: var(--on-dark); line-height: 1.6; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 1.4rem; }
.quote .who .av {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gray-blue);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 0.95rem;
}
.quote .who .meta b { font-weight: 600; font-size: 0.95rem; display: block; }
.quote .who .meta span { font-size: 0.82rem; color: var(--on-dark-muted); }
.stars { color: var(--warn); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.8rem; }

/* ==========================================================================
   Tools
   ========================================================================== */
.tool {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 48px); background: var(--white);
}
.tool-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.tool-head h3 { font-size: 1.5rem; }
.tool-tag { font-family: var(--font-head); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-blue); }

.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--ink-soft); }
.field input, .field select {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink);
  transition: border-color 0.25s var(--ease);
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gray-blue); }
.field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.tool-out { margin-top: 1.6rem; border-top: 1px solid var(--line); padding-top: 1.6rem; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 560px) { .tool-out { grid-template-columns: 1fr; } }
.out-cell .k { font-size: 0.8rem; color: var(--ink-muted); letter-spacing: 0.04em; display: block; margin-bottom: 0.3rem; }
.out-cell .v { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; letter-spacing: -0.02em; }
.v.pos { color: var(--pos); }
.v.neg { color: var(--neg); }

/* Segmented control */
.seg { display: inline-flex; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; flex-wrap: wrap; }
.seg button {
  background: var(--white); border: 0; padding: 0.7rem 1.1rem; font-family: var(--font-body);
  font-weight: 600; font-size: 0.9rem; color: var(--ink-soft); border-right: 1px solid var(--line);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.seg button:last-child { border-right: 0; }
.seg button.active { background: var(--charcoal); color: var(--white); }

/* Memory game */
.memory-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 460px; margin: 1.5rem auto 0; }
.mcard { aspect-ratio: 1; perspective: 700px; background: none; border: 0; padding: 0; }
.mcard-inner { position: relative; width: 100%; height: 100%; transition: transform 0.5s var(--ease); transform-style: preserve-3d; }
.mcard.flipped .mcard-inner, .mcard.matched .mcard-inner { transform: rotateY(180deg); }
.mface { position: absolute; inset: 0; display: grid; place-items: center; border-radius: var(--radius); backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.mface-back { background: var(--charcoal); color: var(--on-dark-muted); border: 1px solid var(--line-dark); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.mface-front { background: var(--surface); border: 1px solid var(--line); transform: rotateY(180deg); font-size: clamp(1.4rem, 5vw, 2rem); }
.mcard.matched .mface-front { border-color: var(--pos); background: #eef7f2; }
.game-bar { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; font-family: var(--font-head); font-weight: 700; }
.game-bar .gm span { color: var(--ink-muted); font-weight: 500; font-family: var(--font-body); font-size: 0.85rem; margin-right: 6px; }
.game-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.win-banner { text-align: center; margin-top: 1.4rem; padding: 1.2rem; border: 1px solid var(--pos); border-radius: var(--radius); background: #eef7f2; display: none; }
.win-banner.show { display: block; }

/* Picks generator */
.picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 1.8rem; }
@media (max-width: 700px) { .picks-grid { grid-template-columns: 1fr; } }
.pick {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem;
  opacity: 0; transform: translateY(14px) rotateX(12deg); transform-origin: top;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.pick.reveal { opacity: 1; transform: none; }
.pick .match { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; margin-bottom: 0.3rem; }
.pick .outcome { color: var(--gray-blue); font-weight: 600; font-size: 0.95rem; margin-bottom: 1rem; }
.pick .odds { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.9rem; }
.pick .odds b { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }
.pick .odds span { font-size: 0.8rem; color: var(--ink-muted); }
.conf { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.conf i { display: block; height: 100%; background: var(--charcoal); width: 0; transition: width 0.8s var(--ease); }
.conf-label { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.5rem; display: flex; justify-content: space-between; }

/* ==========================================================================
   Forms (auth + contact)
   ========================================================================== */
.auth {
  min-height: 100vh; display: grid; place-items: center;
  background: var(--surface); padding: 120px var(--gutter) 64px;
}
.auth-card {
  width: 100%; max-width: 460px; background: var(--charcoal); color: var(--on-dark);
  border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 52px);
}
.auth-card.wide { max-width: 540px; }
.auth-card h1 { font-size: clamp(1.7rem, 4vw, 2.2rem); margin-bottom: 0.5rem; }
.auth-card .sub { color: var(--on-dark-soft); margin-bottom: 2rem; font-size: 0.98rem; }
.auth-logo { margin-bottom: 1.8rem; }
.auth-logo img { height: 26px; }
.auth .field label { color: var(--on-dark-soft); }
.auth .field input {
  background: var(--charcoal-deep); border-color: var(--line-dark); color: var(--white);
}
.auth .field input::placeholder { color: var(--on-dark-muted); }
.auth .field input:focus { border-color: var(--gray-blue); }
.pw-wrap { position: relative; }
.pw-toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: var(--on-dark-muted); font-size: 0.8rem; font-weight: 600;
  padding: 8px 10px; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--font-head);
}
.pw-toggle:hover { color: var(--on-dark); }

.strength { margin-top: 0.7rem; }
.strength-bars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.strength-bars i { height: 4px; border-radius: 999px; background: var(--line-dark); transition: background 0.3s var(--ease); }
.strength-label { font-size: 0.78rem; color: var(--on-dark-muted); margin-top: 0.4rem; display: block; }

.check {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 1rem;
  font-size: 0.86rem; color: var(--on-dark-soft); line-height: 1.5;
}
.check input { margin-top: 3px; flex: 0 0 auto; width: 16px; height: 16px; accent-color: var(--gray-blue); }
.check a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }

.auth-alt { text-align: center; margin-top: 1.6rem; font-size: 0.92rem; color: var(--on-dark-soft); }
.auth-alt a { color: var(--white); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.forgot { display: inline-block; margin-top: 0.4rem; font-size: 0.85rem; color: var(--on-dark-muted); text-decoration: underline; text-underline-offset: 2px; }
.forgot:hover { color: var(--on-dark); }
.field-hint { font-size: 0.78rem; color: var(--on-dark-muted); margin-top: 0.4rem; }
.err-msg { color: #f0a59d; font-size: 0.82rem; margin-top: 0.4rem; display: none; }
.err-msg.show { display: block; }

/* Contact form on light */
.form-light .field label { color: var(--ink-soft); }
.form-light textarea {
  width: 100%; padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); resize: vertical; min-height: 140px; color: var(--ink);
}
.form-light textarea:focus { outline: none; border-color: var(--gray-blue); }

/* ==========================================================================
   Legal / prose pages
   ========================================================================== */
.page-hero {
  background: var(--charcoal); color: var(--on-dark);
  padding: clamp(130px, 18vw, 200px) 0 clamp(56px, 8vw, 96px);
}
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); max-width: 16ch; }
.page-hero p { color: var(--on-dark-soft); max-width: 60ch; margin-top: 1.2rem; font-size: 1.1rem; }
.page-hero .updated { margin-top: 1.6rem; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-dark-muted); font-family: var(--font-head); font-weight: 600; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin: 2.6rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 1.8rem 0 0.7rem; font-weight: 800; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.2rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--gray-blue); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 600; }
.callout {
  border: 1px solid var(--line); border-left: 3px solid var(--gray-blue);
  border-radius: var(--radius); padding: 1.3rem 1.5rem; margin: 1.8rem 0; background: var(--surface);
}
.callout p:last-child { margin-bottom: 0; }
.toc {
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem; margin-bottom: 2.6rem;
}
.toc b { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-blue); display: block; margin-bottom: 0.8rem; }
.toc ol { columns: 2; column-gap: 2rem; padding-left: 1.1rem; margin: 0; }
@media (max-width: 560px) { .toc ol { columns: 1; } }
.toc a { color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--gray-blue); text-decoration: underline; }

/* ==========================================================================
   Responsible gaming banner + footer
   ========================================================================== */
.rg-strip {
  background: var(--charcoal-deep); color: var(--on-dark-soft);
  border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark);
  padding: 1.1rem 0; font-size: 0.9rem;
}
.rg-strip .wrap { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; text-align: center; }
.rg-strip .tag18 {
  font-family: var(--font-head); font-weight: 900; border: 2px solid var(--warn); color: var(--warn);
  border-radius: 50%; width: 38px; height: 38px; display: grid; place-items: center; font-size: 0.8rem; flex: 0 0 auto;
}
.rg-strip a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }

.footer { background: var(--charcoal); color: var(--on-dark-soft); padding: clamp(56px, 8vw, 88px) 0 40px; }
.footer-top { text-align: center; max-width: 640px; margin: 0 auto; }
.footer-logo img { height: 30px; margin: 0 auto 1.4rem; }
.footer-top p { color: var(--on-dark-muted); font-size: 0.95rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center; margin: 2rem 0; list-style: none; }
.footer-nav a { color: var(--on-dark-soft); font-size: 0.92rem; transition: color 0.25s var(--ease); }
.footer-nav a:hover { color: var(--white); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 2rem 0; }
.footer-badges .badge {
  font-family: var(--font-head); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.1em;
  border: 1px solid var(--line-dark); border-radius: 999px; padding: 0.5rem 1rem; color: var(--on-dark-soft);
}
.footer-rg {
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 1.4rem 1.6rem;
  max-width: 760px; margin: 0 auto 2rem; text-align: center; font-size: 0.88rem; color: var(--on-dark-muted); line-height: 1.6;
}
.footer-rg a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 1.8rem; text-align: center; font-size: 0.82rem; color: var(--on-dark-muted); }
.footer-bottom .pays { margin-top: 0.8rem; display: flex; gap: 8px 16px; justify-content: center; flex-wrap: wrap; font-size: 0.78rem; letter-spacing: 0.04em; }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.parallax { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .pick { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
