/* PokerStock portal — main stylesheet.
 *
 * Extracted from the inline <style> in the legacy index.html. Kept
 * faithful to the original, except .email-btn:hover was duplicated on
 * two consecutive lines — the redundant copy is dropped here.
 *
 * Known carry-over from the legacy palette (tracked in NOTES.md):
 *   - .btn-primary:hover and .tg-btn:hover still carry a warm
 *     rgba(200,169,110,...) box-shadow (golden tan); should be green.
 *
 * Phase 2 migration (May 2026): the dark-plus token set picked by
 * partners during the TMT Union + FenixPC review has been promoted
 * to :root defaults; the legacy --gold token (named for the original
 * golden landing palette but actually carrying brand green) has been
 * renamed to --accent. Old per-token values are archived inline in
 * the :root block for rollback context. The .theme-dark-plus class
 * override and frontmatter theme: flags were dropped in step 3 —
 * Phase 2 is complete.
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Phase 2 — dark-plus promoted to defaults (May 2026, after partner
     review of TMT Union + FenixPC). Previous values archived per
     token for rollback context. The .theme-dark-plus class override
     and frontmatter theme: flags were dropped in step 3 — these tokens
     are the portal's actual palette now, not an opt-in variant. */
  --accent: #4dcb5d;                       /* was --gold; prev: #3dbb4d */
  --accent-light: #8fff7a;                 /* was --gold-light; prev: #7fff6a */
  --accent-dim: #1a5a25;                   /* was --gold-dim; prev: #1a5a25 (no dark-plus override — kept) */
  --accent-pale: rgba(77, 203, 93, 0.12);  /* was --gold-pale; prev: rgba(61, 187, 77, 0.08) */
  --bg: #060a06;                           /* prev: #060a06 (unchanged) */
  --bg2: #16241a;                          /* prev: #0a0f0a */
  --bg3: #213723;                          /* prev: #101810 */
  --surface: #1a2c1c;                      /* prev: #0d140d */
  --surface2: #213723;                     /* prev: #131f13 */
  --text: #f0f8f0;                         /* prev: #e8f5e8 */
  --muted: #8aa88a;                        /* prev: #5a7a5a */
  --muted2: #9ec09e;                       /* prev: #7a9a7a */
  --nav-rest: #b8e0b8;                     /* prev: #9bc09b */
  --border: rgba(61, 187, 77, 0.25);       /* prev: rgba(61, 187, 77, 0.12) */
  --border2: rgba(61, 187, 77, 0.45);      /* prev: rgba(61, 187, 77, 0.28) */
  --border3: rgba(61, 187, 77, 0.65);      /* prev: rgba(61, 187, 77, 0.5) */
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

/* LANG SWITCHER */
.lang-switch { display: flex; gap: 0; border: 0.5px solid var(--border2); border-radius: 2px; overflow: hidden; }
.lang-btn { padding: 7px 14px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border: none; background: transparent; color: var(--muted); transition: all 0.2s; font-family: 'Syne', sans-serif; }
.lang-btn.active { background: var(--accent); color: #000; }
.lang-btn:hover:not(.active) { color: var(--accent); }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 48px; display: flex; align-items: center; justify-content: space-between; background: linear-gradient(to bottom, rgba(8, 8, 9, 0.98) 0%, rgba(8, 8, 9, 0.0) 100%); backdrop-filter: blur(12px); }
.logo { display: flex; align-items: center; }
.logo-poker { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--text); letter-spacing: 1px; }
.logo-stock { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.logo-dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; margin: 0 1px 3px; }
nav ul { display: flex; gap: 36px; list-style: none; }
nav ul a { font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0.8px; text-transform: uppercase; transition: color 0.2s; }
nav ul a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta { background: transparent; border: 0.5px solid var(--border3); color: var(--accent); font-size: 12px; font-weight: 600; padding: 9px 22px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.8px; transition: all 0.2s; font-family: 'Syne', sans-serif; cursor: pointer; }
.nav-cta:hover { background: var(--accent); color: #000; }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 0 48px; text-align: center; }
.hero-noise { position: absolute; inset: 0; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-size: 200px; }
.hero-glow { position: absolute; width: 900px; height: 900px; border-radius: 50%; background: radial-gradient(circle, rgba(61, 187, 77, 0.07) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.hero-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-lines::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: linear-gradient(rgba(61, 187, 77, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(61, 187, 77, 0.04) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 75%); }
.hero-card { position: absolute; right: 8%; top: 50%; transform: translateY(-50%) rotate(6deg); width: 200px; opacity: 0.07; pointer-events: none; }
.hero-card-inner { aspect-ratio: 2 / 3; border: 1px solid var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 120px; color: var(--accent); }
.hero-card2 { position: absolute; right: 13%; top: 50%; transform: translateY(-58%) rotate(-4deg); width: 200px; opacity: 0.04; pointer-events: none; }

.hero-content { position: relative; max-width: 800px; padding-top: 80px; display: flex; flex-direction: column; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.hero-line { width: 32px; height: 0.5px; background: var(--accent); }
.hero-eyebrow-text { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 2.5px; }

h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(52px, 7.5vw, 96px); font-weight: 700; line-height: 0.95; margin-bottom: 32px; letter-spacing: -1px; }
h1 .outline { -webkit-text-stroke: 1px var(--accent); color: transparent; }
h1 em { color: var(--accent); font-style: normal; }

.hero-desc { font-size: 16px; font-weight: 400; color: var(--muted2); max-width: 500px; margin-bottom: 48px; line-height: 1.75; text-align: center; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; }
.btn-primary { background: var(--accent); color: #000; font-size: 12px; font-weight: 700; padding: 16px 36px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.25s; cursor: pointer; border: none; font-family: 'Syne', sans-serif; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200, 169, 110, 0.25); }
.btn-outline { border: 0.5px solid var(--border2); color: var(--text); font-size: 12px; font-weight: 600; padding: 16px 36px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.25s; cursor: pointer; background: transparent; font-family: 'Syne', sans-serif; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-stats { display: flex; gap: 0; margin-top: 72px; padding-top: 40px; border-top: 0.5px solid var(--border); justify-content: center; }
.hero-stat { padding-right: 48px; margin-right: 48px; border-right: 0.5px solid var(--border); }
.hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 6px; }

/* MARQUEE */
.marquee-wrap { padding: 20px 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); background: var(--bg2); overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg2), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg2), transparent); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 28s linear infinite; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item { display: flex; align-items: center; padding: 0 32px; gap: 32px; white-space: nowrap; }
.marquee-name { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; }
.marquee-sep { font-size: 16px; color: var(--border2); }

/* SECTIONS */
section { padding: 80px 48px; }
.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-line { width: 24px; height: 0.5px; background: var(--accent); }
.section-label { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 2.5px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4.5vw, 58px); font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.section-sub { font-size: 15px; color: var(--muted2); max-width: 500px; line-height: 1.75; }

/* HOW */
.how { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin-top: 64px; border: 0.5px solid var(--border); }
.step { background: var(--surface); padding: 48px 40px; position: relative; transition: background 0.3s; }
.step:hover { background: var(--surface2); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 24px; transition: color 0.3s; }
.step:hover .step-num { color: var(--border2); }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.step p { font-size: 14px; color: var(--muted2); line-height: 1.75; }
.step-tag { display: inline-block; margin-top: 24px; font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; border-bottom: 0.5px solid var(--border2); padding-bottom: 2px; }

/* ABOUT */
.about { background: var(--bg2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 64px; }
.about-text { font-size: 15px; color: var(--muted2); line-height: 1.85; margin-bottom: 20px; }
.about-perks { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.perk { display: flex; align-items: flex-start; gap: 16px; }
.perk-icon { width: 36px; height: 36px; border: 0.5px solid var(--border2); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.perk-text h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.perk-text p { font-size: 13px; color: var(--muted2); line-height: 1.6; }
.about-right { position: relative; }
.about-card-big { background: var(--surface); border: 0.5px solid var(--border); padding: 48px; border-radius: 2px; }
.about-card-stat { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 0.5px solid var(--border); }
.about-card-stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.about-num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 700; color: var(--accent); line-height: 1; }
.about-stat-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* FEATURES */
.features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); margin-top: 64px; border: 0.5px solid var(--border); }
.feature { background: var(--surface); padding: 52px 48px; transition: background 0.3s; position: relative; overflow: hidden; }
.feature::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--accent); transition: height 0.4s ease; }
.feature:hover { background: var(--surface2); }
.feature:hover::before { height: 100%; }
.feature-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 700; color: var(--border); line-height: 1; margin-bottom: 20px; }
.feature h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.feature p { font-size: 14px; color: var(--muted2); line-height: 1.75; }

/* CTA */
.cta-section { background: var(--bg); padding: 140px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(61, 187, 77, 0.07) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.cta-ornament { font-family: 'Cormorant Garamond', serif; font-size: 300px; color: rgba(61, 187, 77, 0.025); position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); line-height: 1; pointer-events: none; user-select: none; }
.cta-section .section-eyebrow { justify-content: center; }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5.5vw, 72px); font-weight: 700; margin-bottom: 20px; line-height: 1.05; position: relative; }
.cta-section h2 em { color: var(--accent); font-style: normal; }
.cta-section p { font-size: 16px; color: var(--muted2); margin-bottom: 52px; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.75; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.tg-btn { background: var(--accent); color: #000; font-size: 12px; font-weight: 700; padding: 18px 44px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.25s; display: inline-flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; }
.tg-btn:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 16px 48px rgba(200, 169, 110, 0.3); }
.tg-btn svg { width: 18px; height: 18px; }
.email-btn { background: transparent; border: 0.5px solid var(--border2); color: var(--text); font-size: 12px; font-weight: 600; padding: 18px 44px; border-radius: 2px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.25s; display: inline-block; font-family: 'Syne', sans-serif; cursor: pointer; }
.email-btn:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

/* FOOTER */
footer { background: var(--bg2); border-top: 0.5px solid var(--border); padding: 44px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo-text { font-family: 'Arial Black', sans-serif; font-size: 18px; letter-spacing: 1px; color: #e8f5e8; }
.footer-logo-text span { color: #3dbb4d; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 11px; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-right { display: none; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  nav ul { display: none; }
  .hero { padding: 100px 24px 60px; }
  section { padding: 56px 24px; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stat { padding-right: 32px; margin-right: 32px; margin-bottom: 24px; }
  footer { flex-direction: column; gap: 24px; text-align: center; padding: 36px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}

/* SOCIAL ICONS */
.social-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.social-link { width: 46px; height: 46px; border: 0.5px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted2); transition: all 0.25s; background: rgba(0, 0, 0, 0.2); }
.social-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); background: rgba(61, 187, 77, 0.08); }
.social-link svg { width: 20px; height: 20px; fill: currentColor; }
.footer-socials { display: flex; gap: 12px; align-items: center; }
.footer-socials .social-link { width: 38px; height: 38px; }
.footer-socials .social-link svg { width: 16px; height: 16px; }

/* EMAIL COPY BLOCK */
.email-copy { display: inline-flex; align-items: stretch; border: 0.5px solid var(--border2); border-radius: 2px; overflow: hidden; background: rgba(0, 0, 0, 0.2); transition: all 0.25s; font-family: 'Syne', sans-serif; }
.email-copy:hover { border-color: var(--accent); }
.email-copy-text { padding: 18px 22px; font-size: 13px; color: var(--text); letter-spacing: 0.5px; font-weight: 500; display: flex; align-items: center; }
.email-copy-btn { background: transparent; border: none; border-left: 0.5px solid var(--border2); padding: 0 22px; color: var(--muted2); cursor: pointer; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.25s; font-family: 'Syne', sans-serif; display: flex; align-items: center; gap: 8px; }
.email-copy-btn:hover { background: var(--accent); color: #000; }
.email-copy-btn svg { width: 14px; height: 14px; fill: currentColor; }
.email-copy-btn.copied { background: var(--accent); color: #000; }

/* EMAIL MODAL */
.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box { background: var(--surface); border: 0.5px solid var(--border2); border-radius: 4px; padding: 48px 44px; max-width: 460px; width: 90%; text-align: center; position: relative; transform: translateY(20px); transition: transform 0.3s; }
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; background: transparent; border: none; color: var(--muted); font-size: 24px; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: color 0.2s; font-family: 'Syne', sans-serif; line-height: 1; }
.modal-close:hover { color: var(--accent); }
.modal-icon { width: 56px; height: 56px; border: 0.5px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--accent); }
.modal-icon svg { width: 24px; height: 24px; fill: currentColor; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: 0.5px; }
.modal-sub { font-size: 13px; color: var(--muted2); margin-bottom: 28px; line-height: 1.6; }
.modal-email-row { display: flex; align-items: stretch; border: 0.5px solid var(--border2); border-radius: 2px; overflow: hidden; background: rgba(0, 0, 0, 0.3); margin-bottom: 8px; }
.modal-email-text { flex: 1; padding: 16px 18px; font-size: 14px; color: var(--text); font-family: 'Syne', sans-serif; letter-spacing: 0.5px; text-align: left; display: flex; align-items: center; font-weight: 500; }
.modal-copy-btn { background: var(--accent); color: #000; border: none; padding: 0 24px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.25s; font-family: 'Syne', sans-serif; display: flex; align-items: center; gap: 8px; }
.modal-copy-btn:hover { background: var(--accent-light); }
.modal-copy-btn svg { width: 14px; height: 14px; fill: currentColor; }
.modal-copy-btn.copied { background: #4dcc5d; }
.modal-hint { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 16px; }


/* =========================================================================
   PORTAL CHROME — site header, site footer, mobile menu, lang switcher.
   Loaded BEFORE the homepage block so portal regions can neutralise the
   legacy global `nav { position: fixed; ... }` cascade extracted from
   the old landing.
   ========================================================================= */

/* Neutralise legacy global nav styles inside portal regions.
   NB: .site-header nav is intentionally split off from the display:block
   block — the .site-header__nav BEM rule needs to set its own display
   (flex), and adding `display:block` here would beat it on specificity
   (.site-header nav = 0,1,1 vs .site-header__nav = 0,1,0). */
.site-header nav,
.site-footer nav,
.lang-switch {
  position: static; top: auto; left: auto; right: auto;
  padding: 0; background: none; backdrop-filter: none;
  z-index: auto;
}
.site-footer nav {
  display: block;
}
.site-header nav ul,
.site-footer nav ul {
  list-style: none; padding: 0; margin: 0;
}
.site-header nav ul a,
.site-footer nav ul a {
  font-size: inherit; font-weight: inherit; color: inherit;
  letter-spacing: normal; text-transform: none; transition: color 0.2s;
}

/* SITE HEADER ----------------------------------------------------------- */
.site-header { position: sticky; top: 0; left: 0; right: 0; z-index: 80;
  background: rgba(8, 12, 8, 0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 0.5px solid var(--border); }
.site-header__inner { max-width: 1280px; margin: 0 auto; padding: 16px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 64px; width: auto; display: block; }
/* (F14) Text wordmark in the header — brand two-tone: POKER light, STOCK accent. */
.site-header__wordmark { display: inline-block; font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 800; letter-spacing: 2px; color: var(--text); text-transform: uppercase; line-height: 1; }
.site-header__wordmark-accent { color: var(--accent); }
/* (F15/F16) Two-tone "PokerStock" brandmark for visible prose (NOT the logo):
   uppercase logo-style mark, Poker brighter green, Stock accent-green. The
   DOM text stays "Poker"/"Stock" — the caps are CSS-only. #b8e6a0 is a
   deliberate local value for the brandmark (brighter than --muted2), not a
   global token. */
.brandmark { font-family: 'Syne', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; font-size: 0.92em; }
.brandmark__poker { color: #b8e6a0; }
.brandmark__stock { color: var(--accent); }
.site-header__nav { flex: 1; display: flex; justify-content: center; }
.site-header__nav ul { display: flex; gap: 32px; align-items: center; flex-wrap: nowrap; }
/* Selectors prefixed with .site-header to lift specificity to (0,2,1),
   beating the neutraliser block `.site-header nav ul a` (0,1,2) a few
   rules above. Without the prefix, color/letter-spacing/font-weight all
   fell back to the inherited body values. */
.site-header .site-header__nav a { position: relative; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 500; color: var(--nav-rest); letter-spacing: 1.8px; text-transform: uppercase; padding: 4px 0; white-space: nowrap; transition: color 0.2s; }
.site-header .site-header__nav a:hover { color: var(--accent); }
.site-header .site-header__nav a[aria-current="page"] { color: var(--accent); }
.site-header .site-header__nav a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--accent); }
.site-header__right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* LANG SWITCHER (portal flavor) — overrides legacy .lang-btn padding tweaks */
.lang-switch { display: inline-flex; gap: 0; border: 0.5px solid var(--border2); border-radius: 2px; overflow: hidden; }
.lang-switch .lang-btn { padding: 7px 12px; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: transparent; color: var(--muted); transition: all 0.2s; font-family: 'Manrope', sans-serif; line-height: 1; cursor: pointer; }
.lang-switch .lang-btn.active { background: var(--accent); color: #000; }
.lang-switch .lang-btn:hover:not(.active) { color: var(--accent); }

/* SITE FOOTER ----------------------------------------------------------- */
.site-footer { background: var(--bg2); border-top: 0.5px solid var(--border); margin-top: 56px; padding: 48px 48px 28px; display: block; flex-wrap: nowrap; justify-content: stretch; align-items: stretch; gap: 0; }
.site-footer__top { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 48px; }
.site-footer__col--brand { display: flex; flex-direction: column; gap: 16px; }
.site-footer__logo img { height: 44px; width: auto; display: block; }
.site-footer__blurb { font-size: 13px; color: var(--muted2); line-height: 1.7; max-width: 320px; }
.site-footer__socials { display: flex; gap: 10px; margin-top: 6px; }
.site-footer__social { width: 36px; height: 36px; border: 0.5px solid var(--border2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--muted2); transition: all 0.25s; }
.site-footer__social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.site-footer__social svg { width: 16px; height: 16px; }
.site-footer__heading { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer__list a { font-size: 13px; color: var(--muted2); transition: color 0.2s; }
.site-footer__list a:hover { color: var(--accent); }
.site-footer__contacts { display: flex; flex-direction: column; gap: 8px; }
.site-footer__contact { display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border: 0.5px solid var(--border2); border-radius: 2px; font-size: 12px; font-weight: 600; color: var(--text); letter-spacing: 0.5px; text-transform: uppercase; transition: all 0.2s; background: rgba(0, 0, 0, 0.2); }
.site-footer__contact:hover { border-color: var(--accent); color: var(--accent); }
.site-footer__contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.site-footer__bottom { max-width: 1280px; margin: 48px auto 0; padding-top: 24px; border-top: 0.5px solid var(--border); display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 24px; align-items: center; }
.site-footer__copy { font-size: 11px; color: var(--muted); }
.site-footer__rg { font-size: 11px; color: var(--muted); line-height: 1.6; }
.site-footer__lang { justify-self: end; }

/* SITE HEADER + FOOTER — responsive ------------------------------------- */
@media (max-width: 1024px) {
  .site-header__inner { flex-wrap: wrap; column-gap: 16px; row-gap: 0; }
  .site-header__nav { order: 10; flex-basis: 100%; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; padding-top: 6px; }
  .site-header__nav::-webkit-scrollbar { display: none; }
  .site-header__nav ul { gap: 22px; padding: 2px 4px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { grid-template-columns: 1fr; text-align: center; }
  .site-footer__lang { justify-self: center; }
}
@media (max-width: 640px) {
  .site-header__inner { padding: 12px 20px; column-gap: 14px; }
  .site-header__logo img { height: 48px; }
  .site-header__nav ul { gap: 18px; }
  .site-footer { padding: 40px 24px 24px; margin-top: 40px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 36px; }
}

/* ALT CHANNELS — inline link hints under primary CTAs ----------------- */
.alt-channels { font-size: 12px; color: var(--muted); margin-top: 14px; letter-spacing: 0.6px; text-align: center; }
.inline-link { color: var(--accent); text-decoration: underline; text-decoration-thickness: 0.5px; text-underline-offset: 3px; text-decoration-color: var(--border2); transition: color 0.2s, text-decoration-color 0.2s; }
.inline-link:hover { color: var(--accent-light); text-decoration-color: var(--accent); }

/* APP SNAPSHOT — compact post-hero block on platform pages ------------ */
.app-snapshot { padding: 22px 48px; background: var(--bg2); border-bottom: 0.5px solid var(--border); }
.app-snapshot__inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.app-snapshot__text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.app-snapshot__title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.4; margin: 0; }
.app-snapshot__stores { display: flex; gap: 10px; flex-shrink: 0; }
.app-snapshot__store { display: inline-flex; align-items: center; padding: 10px 18px; border: 0.5px solid var(--border2); border-radius: 2px; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; color: var(--text); letter-spacing: 0.8px; text-transform: uppercase; transition: border-color 0.2s, color 0.2s; white-space: nowrap; }
.app-snapshot__store:hover { border-color: var(--accent); color: var(--accent); }
.app-snapshot__store--soon { color: var(--muted); cursor: not-allowed; }
.app-snapshot__store--soon:hover { border-color: var(--border2); color: var(--muted); }
@media (max-width: 640px) {
  .app-snapshot { padding: 18px 20px; }
  .app-snapshot__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .app-snapshot__stores { width: 100%; }
  .app-snapshot__store { flex: 1; justify-content: center; padding: 10px 12px; }
}

/* UNION PAGE — TMT Union and future union showcases ------------------- */
.union-settlement { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 720px; margin: 0 auto; }
.union-settlement__item { padding: 22px 24px; border: 0.5px solid var(--border2); border-radius: 4px; background: var(--surface); }
.union-settlement__label { font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 8px; }
.union-settlement__value { font-size: 16px; color: var(--text); }
.union-rules { list-style: none; padding: 0; margin: 0 0 18px; }
.union-rules li { padding: 12px 0 12px 24px; border-bottom: 0.5px solid var(--border); color: var(--text); font-size: 14px; line-height: 1.6; position: relative; }
.union-rules li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.union-rules li:last-child { border-bottom: none; }
.union-note { font-size: 13px; color: var(--muted2); line-height: 1.7; margin: 0 0 14px; }
.union-flag { font-size: 14px; color: var(--text); margin: 0; }
.union-flag strong { color: var(--accent); }
.union-rake-tables { display: flex; flex-direction: column; gap: 36px; max-width: 1080px; margin: 0 auto; }
.union-rake-table__title { font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.8px; margin: 0 0 14px; }
.union-rake-scroll { overflow-x: auto; border: 0.5px solid var(--border2); border-radius: 4px; background: var(--bg2); }
.union-rake-scroll table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
.union-rake-scroll th { background: var(--surface); color: var(--accent); font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-align: left; padding: 10px 14px; border-bottom: 0.5px solid var(--border2); white-space: nowrap; }
.union-rake-scroll td { padding: 8px 14px; color: var(--text); border-bottom: 0.5px solid var(--border); white-space: nowrap; }
.union-rake-scroll tbody tr:nth-child(even) { background: rgba(61, 187, 77, 0.04); }
.union-rake-scroll tbody tr:last-child td { border-bottom: none; }
.union-rake-scroll th:nth-child(4),
.union-rake-scroll th:nth-child(5),
.union-rake-scroll th:nth-child(6),
.union-rake-scroll td:nth-child(4),
.union-rake-scroll td:nth-child(5),
.union-rake-scroll td:nth-child(6) { text-align: right; }
.union-rake-table__source { margin: 10px 0 0; font-size: 12px; color: var(--muted); }
.union-rake-table__source a { color: var(--muted); text-decoration: underline; text-decoration-color: var(--border2); text-underline-offset: 3px; transition: color 0.2s, text-decoration-color 0.2s; }
.union-rake-table__source a:hover { color: var(--accent); text-decoration-color: var(--accent); }
.union-placeholder { font-size: 14px; color: var(--muted2); line-height: 1.7; max-width: 640px; }

/* Single-line rake summary used by detailed-club layout (FenixPC and
   future partner clubs where the deal is one rate across all tables —
   no per-game breakdown). Card-style so it doesn't read as body copy. */
.club-rake-summary { font-size: 16px; color: var(--text); line-height: 1.6; padding: 22px 26px; border: 0.5px solid var(--border2); border-radius: 4px; background: var(--surface); max-width: 640px; margin: 0 auto; text-align: center; }

/* Direct app-link disclosure in the bottom CTA of a detailed-club page.
   Muted on purpose: this is a transparency note ("the deal flows via
   PokerStock, but the raw app link exists"), not a CTA we want to
   compete with the Telegram primary button. */
.club-direct-link { font-size: 12px; color: var(--muted); line-height: 1.6; margin: 22px 0 0; }
.club-direct-link a { color: var(--muted); text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 3px; transition: color 0.2s, text-decoration-color 0.2s; }
.club-direct-link a:hover { color: var(--muted2); text-decoration-color: var(--border2); }

@media (max-width: 640px) {
  .union-settlement { grid-template-columns: 1fr; gap: 12px; }
  .union-rake-tables { gap: 28px; }
}

/* =========================================================================
   HOMEPAGE (portal — /en/, /ru/)
   Self-contained block. Reuses tokens from :root and shared utility classes
   (.section-eyebrow/.section-line/.section-label/.section-title/.section-sub,
   .btn-primary/.btn-outline, .stat-num/.stat-label) defined above.
   Namespaced under .home-* / .platform-card / .value-card / .number-card /
   .testimonial-card / .faq-item / .news-card to avoid clashing with the
   legacy landing in /index.html.
   ========================================================================= */

.home-section { max-width: 1280px; margin: 0 auto; }
.home-section__head { max-width: 720px; margin-bottom: 56px; }
.home-section__head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; max-width: none; }
.home-section__head--row > div:first-child { max-width: 720px; }

/* HERO ------------------------------------------------------------------ */
.home-hero { position: relative; padding: 112px 48px 80px; max-width: none; text-align: center; overflow: hidden; }
.home-hero__decor { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 600px at 50% 0%, rgba(61, 187, 77, 0.08), transparent 70%),
    linear-gradient(rgba(61, 187, 77, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(90deg, rgba(61, 187, 77, 0.04) 1px, transparent 1px) 0 0 / 80px 80px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 30%, black 0%, transparent 80%);
}
.home-hero__inner { position: relative; max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.home-hero .section-eyebrow { justify-content: center; }
/* (F14) Brand mark in the hero — prominent, served from logo-lg for crispness. */
.home-hero__mark { display: block; height: 210px; width: auto; margin: 0 auto 8px; }
@media (max-width: 640px) { .home-hero__mark { height: 150px; } }

/* (F14) Hero consultation CTA — label + two equal contact buttons. */
.home-hero__cta { margin-top: 32px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.home-hero__cta-label { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.4px; color: var(--accent); }
.home-hero__btn { min-width: 190px; text-align: center; }
@media (max-width: 420px) { .home-hero__btn { min-width: 150px; } }

/* (F14) Six figures directly under the hero buttons (moved from the old
   "By the numbers" block). 3×2 on desktop, 2×3 on small screens. */
.home-hero__figures { margin-top: 56px; padding-top: 36px; border-top: 0.5px solid var(--border); width: 100%; max-width: 680px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 36px; }
.home-hero__figure { text-align: center; }
.home-hero__figure-value { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; color: var(--accent); line-height: 1; font-feature-settings: "lnum" 1, "tnum" 1; font-variant-numeric: lining-nums tabular-nums; }
.home-hero__figure-label { font-size: 11px; color: var(--muted2); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 8px; }
@media (max-width: 560px) { .home-hero__figures { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.home-hero__h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(46px, 7vw, 88px); font-weight: 700; line-height: 1.02; letter-spacing: -1px; margin: 16px 0 28px; max-width: 14ch; }
.home-hero__h1 em { color: var(--accent); font-style: normal; }
.home-hero__sub { font-size: 17px; color: var(--muted2); max-width: 580px; line-height: 1.7; margin-bottom: 40px; }
.home-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.home-hero__stats { display: flex; gap: 0; margin-top: 64px; padding-top: 36px; border-top: 0.5px solid var(--border); flex-wrap: wrap; justify-content: center; }
.home-hero__stat { padding: 0 44px; border-right: 0.5px solid var(--border); }
.home-hero__stat:last-child { border-right: none; }

/* PLATFORM GRID --------------------------------------------------------- */
.home-platforms__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); }
.platform-card { background: var(--surface); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: background 0.25s, transform 0.25s; color: var(--text); }
.platform-card:hover { background: var(--surface2); transform: translateY(-2px); }
.platform-card__emblem { width: 48px; height: 48px; border: 0.5px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 700; color: var(--accent); letter-spacing: 0.5px; background: rgba(0, 0, 0, 0.25); }
/* (F10) Real platform logo on the grid card. Height matches the 48px emblem
   circle so logo-cards and emblem-fallback cards keep the same vertical
   rhythm; spacing comes from the card's flex gap, no own margin. */
.platform-card__logo { display: block; height: 48px; width: auto; }
.platform-card__name { font-size: 16px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.platform-card__tagline { font-size: 13px; color: var(--muted2); line-height: 1.55; min-height: 40px; }
.platform-card__bullets { list-style: none; padding: 0; margin: 6px 0 14px; display: flex; flex-direction: column; gap: 8px; }
.platform-card__bullets li { position: relative; padding-left: 16px; font-size: 13px; color: var(--text); line-height: 1.5; }
.platform-card__bullets li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 1px; background: var(--accent); }
.platform-card__cta { margin-top: auto; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent); padding-top: 14px; border-top: 0.5px solid var(--border); }

/* MULTI-CHANNEL BANNER -------------------------------------------------- */
.home-banner { padding: 56px 48px; }
.home-banner__inner { background: linear-gradient(135deg, rgba(61, 187, 77, 0.08), rgba(61, 187, 77, 0.02)); border: 0.5px solid var(--border2); border-radius: 4px; padding: 56px 40px; text-align: center; max-width: 1120px; margin: 0 auto; }
.home-banner__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; line-height: 1.1; margin-bottom: 12px; }
.home-banner__sub { font-size: 14px; color: var(--muted2); margin-bottom: 28px; }
.home-banner__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* VALUE PROP ------------------------------------------------------------ */
.home-value__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); }
.value-card { background: var(--surface); padding: 36px 32px; display: flex; flex-direction: column; gap: 14px; transition: background 0.25s; }
.value-card:hover { background: var(--surface2); }
.value-card__icon { width: 44px; height: 44px; border: 0.5px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); background: rgba(0, 0, 0, 0.25); }
.value-card__icon svg { width: 22px; height: 22px; }
.value-card__title { font-size: 15px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.value-card__desc { font-size: 14px; color: var(--muted2); line-height: 1.7; }

/* NUMBERS --------------------------------------------------------------- */
.home-numbers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--bg2); border: 0.5px solid var(--border); }
.number-card { padding: 44px 28px; text-align: center; border-right: 0.5px solid var(--border); }
.number-card:last-child { border-right: none; }
.number-card__value { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 6vw, 76px); font-weight: 700; color: var(--accent); line-height: 1; letter-spacing: -1px; white-space: nowrap; }
/* Text values in number cards (e.g. "Same Day") need a smaller, tighter
   size — the display font at 76px wraps awkwardly for two-word strings,
   so we cap text values around the size of a 3-digit numeric value. */
.number-card--text .number-card__value { font-size: clamp(32px, 4vw, 52px); }
.number-card__label { font-size: 12px; color: var(--muted2); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 12px; }
/* (F14) Figures block now mixes numeric (25+, 24/7, 1500+) and text values
   ("Up to 85%", "since 2019") — smaller size + allow wrap so they fit a 1/3
   column without overflowing the nowrap numeric default. */
.home-numbers .number-card__value { font-size: clamp(30px, 3.4vw, 46px); white-space: normal; }

/* (F14) FEATURED CLUBS — locked set of 6 in a 3×2 grid (variant-B cards). */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.featured-card { display: flex; flex-direction: column; gap: 14px; background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; padding: 26px 24px; color: var(--text); transition: border-color 0.25s, transform 0.25s; }
.featured-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.featured-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.featured-card__name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; line-height: 1.1; }
.featured-card__logo { height: 20px; width: auto; flex-shrink: 0; opacity: 0.9; }
.featured-card__tagline { font-size: 13px; color: var(--muted2); line-height: 1.6; }
.featured-card__facts { display: flex; flex-direction: column; gap: 10px; margin: 0; }
.featured-fact { display: flex; flex-direction: column; gap: 2px; }
.featured-fact dt { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; }
.featured-fact dd { margin: 0; font-size: 13px; color: var(--text); line-height: 1.5; }
.featured-card__btn { margin-top: auto; align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); border: 0.5px solid var(--border2); border-radius: 2px; padding: 10px 18px; transition: border-color 0.2s, background 0.2s; }
.featured-card:hover .featured-card__btn { border-color: var(--accent); background: rgba(61, 187, 77, 0.06); }
@media (max-width: 900px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .featured-grid { grid-template-columns: 1fr; } }

/* TESTIMONIALS ---------------------------------------------------------- */
.home-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; padding: 30px 28px; display: flex; flex-direction: column; gap: 18px; transition: border-color 0.25s, transform 0.25s; }
.testimonial-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.testimonial-card__head { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; color: var(--accent); background: rgba(61, 187, 77, 0.12); border: 0.5px solid var(--border2); }
.testimonial-card__avatar[data-region="eu"] { background: rgba(61, 187, 77, 0.18); }
.testimonial-card__avatar[data-region="as"] { background: rgba(61, 187, 77, 0.22); }
.testimonial-card__label { font-size: 13px; font-weight: 700; color: var(--text); letter-spacing: 0.3px; }
.testimonial-card__profile { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: 0.4px; }
.testimonial-card__text { font-size: 14px; color: var(--muted2); line-height: 1.7; font-style: italic; }
.testimonial-card__text::before { content: '\201C'; color: var(--accent); font-family: 'Cormorant Garamond', serif; font-size: 28px; line-height: 0; vertical-align: -8px; margin-right: 4px; }

/* FAQ ------------------------------------------------------------------- */
.home-faq__list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 0.5px solid var(--border); }
.faq-item { background: var(--surface); transition: background 0.2s; }
.faq-item[open] { background: var(--surface2); }
.faq-item__q { padding: 24px 28px; font-size: 15px; font-weight: 600; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--text); }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--accent); }
.faq-item__chevron { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 300; color: var(--accent); transition: transform 0.25s; line-height: 1; }
.faq-item[open] .faq-item__chevron { transform: rotate(45deg); }
.faq-item__a { padding: 0 28px 26px; font-size: 14px; color: var(--muted2); line-height: 1.75; max-width: 800px; }

/* LATEST NEWS ----------------------------------------------------------- */
.home-news__more { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; padding-bottom: 4px; border-bottom: 0.5px solid var(--border2); transition: border-color 0.2s; flex-shrink: 0; }
.home-news__more:hover { border-color: var(--accent); }
.home-news__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.news-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: border-color 0.25s, transform 0.25s; color: var(--text); }
.news-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.news-card__cover { aspect-ratio: 1200 / 630; width: 100%; overflow: hidden; background: linear-gradient(135deg, var(--bg3) 0%, var(--surface2) 50%, rgba(61, 187, 77, 0.08) 100%); position: relative; }
.news-card__cover::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(61, 187, 77, 0.15), transparent 60%); }
.news-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.news-card__meta { display: flex; align-items: center; gap: 12px; }
.news-card__chip { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; padding: 4px 8px; border: 0.5px solid var(--border2); border-radius: 2px; background: rgba(61, 187, 77, 0.06); }
.news-card__date { font-size: 11px; color: var(--muted); letter-spacing: 0.4px; }
.news-card__title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; line-height: 1.2; }
.news-card__excerpt { font-size: 13px; color: var(--muted2); line-height: 1.65; }
.news-card__cta { margin-top: auto; font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; padding-top: 12px; }
/* Placeholder modifier: muted, non-promising CTA on planned-article cards
   while the real /en/blog/{slug}/ pages don't exist yet. Drops the green
   accent, replaces "Read article →" with a quieter "Planned" label. */
.news-card__cta--muted { color: var(--muted); }
/* (F11/F11.1/F13) Real cover image on a blog card — an <img> that fills the
   1200/630 banner box (.news-card__cover); height:100% + object-fit:cover stop
   it stretching to its intrinsic size, and ::after (the gradient's radial
   overlay) is suppressed. Ratio matches the asset, so no crop. */
.news-card__cover--img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.news-card__cover--img::after { content: none; }

/* (F11) BLOG POST PAGE -------------------------------------------------- */
/* Hero meta line: date · PokerStock team. Sits between H1 and the lead. */
.post-meta { margin: 14px 0 0; font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1.8px; display: flex; align-items: center; gap: 10px; }
.post-meta__sep { color: var(--accent); }
/* Body deltas on top of .club-prose (shared long-page rhythm): post bodies
   are full articles, so they also need blockquote + strong treatment. */
.post-body blockquote { margin: 0 0 18px; padding: 14px 20px; border-left: 2px solid var(--accent); background: rgba(61, 187, 77, 0.05); color: var(--muted2); }
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body strong { color: var(--text); }

/* (F11.1) Inline callout — TL;DR/checklist box that "cuts into" the prose.
   Isolated component (does not touch .club-prose defaults elsewhere); stays
   at normal paragraph width to keep the reading rhythm. */
.post-callout { margin: 28px 0; padding: 20px 24px; background: color-mix(in srgb, var(--accent) 7%, var(--surface)); border-left: 3px solid var(--accent); border-radius: 4px; }
.post-callout__title { margin: 0 0 12px; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.8px; color: var(--accent); }
.post-callout__list { margin: 0; padding-left: 22px; list-style: decimal; }
.post-callout__list li { margin-bottom: 10px; color: var(--muted2); line-height: 1.7; }
.post-callout__list li:last-child { margin-bottom: 0; }
.post-callout__list li::marker { color: var(--accent); font-weight: 700; }
.post-callout__list strong { color: var(--text); }
@media (max-width: 480px) { .post-callout { padding: 16px 18px; } .post-callout__list { padding-left: 20px; } }

/* (F11.1) Comparison table — scannable green/red-flags grid inside a post.
   Isolated under .post-body (doesn't touch .club-prose elsewhere). The wrap
   scrolls horizontally on narrow screens (table keeps min-width). --flag-danger
   is component-local: the project palette is all-green, no global danger token. */
.post-table-wrap { margin: 28px 0; overflow-x: auto; border: 0.5px solid var(--border); border-radius: 4px; }
.post-table { --flag-danger: #e07a74; width: 100%; min-width: 480px; border-collapse: collapse; font-size: 15px; line-height: 1.6; }
.post-table th, .post-table td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 0.5px solid var(--border); }
.post-table thead th { background: var(--surface2); font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted); }
.post-table thead th.is-good { color: var(--accent); }
.post-table thead th.is-bad { color: var(--flag-danger); }
.post-table tbody th[scope="row"] { color: var(--text); font-weight: 700; white-space: nowrap; }
.post-table td { color: var(--muted2); }
.post-table--flags td:nth-child(2) { background: color-mix(in srgb, var(--accent) 6%, transparent); }
.post-table--flags td:nth-child(3) { background: color-mix(in srgb, var(--flag-danger) 7%, transparent); }
.post-table tbody tr:last-child th, .post-table tbody tr:last-child td { border-bottom: none; }

/* RESPONSIVE — homepage ------------------------------------------------- */
@media (max-width: 1024px) {
  .home-platforms__grid { grid-template-columns: repeat(2, 1fr); }
  .home-value__grid     { grid-template-columns: repeat(2, 1fr); }
  .home-numbers__grid   { grid-template-columns: repeat(2, 1fr); }
  .home-numbers .number-card:nth-child(2) { border-right: none; }
  .home-news__grid      { grid-template-columns: repeat(2, 1fr); }
  .home-testimonials__grid { grid-template-columns: 1fr; }
  .home-section__head--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .home-hero { padding: 88px 24px 60px; }
  .home-platforms__grid,
  .home-value__grid,
  .home-numbers__grid,
  .home-news__grid { grid-template-columns: 1fr; }
  .home-numbers .number-card { border-right: none; border-bottom: 0.5px solid var(--border); }
  .home-numbers .number-card:last-child { border-bottom: none; }
  .home-banner { padding: 40px 24px; }
  .home-banner__inner { padding: 40px 24px; }
  .home-hero__stats { gap: 24px; }
  .home-hero__stat { padding: 0 20px; }
  .faq-item__q { padding: 20px 22px; font-size: 14px; }
  .faq-item__a { padding: 0 22px 22px; }
}

/* =========================================================================
   CLUB PAGE — /en/clubs/{slug}/. Layout: layouts/club.njk. Self-contained
   namespaced under .club-* / .quick-fact / .how-step / .copy-pill /
   .related-club-card. Reuses tokens from :root and shared utilities
   (.section-eyebrow, .section-line, .section-label, .btn-primary,
   .btn-outline, .home-faq__list, .faq-item).
   ========================================================================= */

.club-section { padding: 64px 48px; }
.club-section--alt { background: var(--bg2); }
.club-section--prose { padding-top: 56px; padding-bottom: 56px; }
.club-section__inner { max-width: 1280px; margin: 0 auto; }
.club-section__inner--narrow { max-width: 820px; }
.club-section__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; line-height: 1.1; margin: 8px 0 32px; }

/* HERO ------------------------------------------------------------------ */
.club-hero { position: relative; padding: 96px 48px 64px; overflow: hidden; }
.club-hero__decor { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(61, 187, 77, 0.10), transparent 70%),
    linear-gradient(rgba(61, 187, 77, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(90deg, rgba(61, 187, 77, 0.04) 1px, transparent 1px) 0 0 / 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 25%, black 0%, transparent 80%);
}
.club-hero__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.club-hero__platform { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--accent); padding: 6px 14px; border: 0.5px solid var(--border2); border-radius: 999px; background: rgba(61, 187, 77, 0.08); text-transform: uppercase; transition: border-color 0.2s, color 0.2s; }
.club-hero__platform:hover { border-color: var(--accent); }
.club-hero__platform-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.club-hero__h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 6vw, 78px); font-weight: 700; line-height: 1.02; letter-spacing: -1px; margin: 4px 0 0; max-width: 16ch; }
.club-hero__tagline { font-size: 17px; color: var(--muted2); max-width: 620px; line-height: 1.7; margin: 4px 0 12px; }
.club-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* TAGS ------------------------------------------------------------------ */
.club-tags { display: flex; gap: 8px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
.club-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; padding: 5px 12px; border: 0.5px solid var(--border2); border-radius: 999px; color: var(--text); background: rgba(0, 0, 0, 0.2); }

/* QUICK FACTS ----------------------------------------------------------- */
.club-quick-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); margin-top: 8px; }
.quick-fact { background: var(--surface); padding: 22px 24px; display: flex; flex-direction: column; gap: 6px; }
.quick-fact__label { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; }
.quick-fact__value { font-size: 14px; color: var(--text); line-height: 1.5; }
/* Gated "get IDs from your manager" link — reads as a real text link with hover. */
.quick-fact__manager-link { color: var(--accent); text-decoration: underline; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); text-underline-offset: 3px; transition: color .15s ease, text-decoration-color .15s ease; }
.quick-fact__manager-link::after { content: " →"; }
.quick-fact__manager-link:hover, .quick-fact__manager-link:focus-visible { color: var(--accent-light); text-decoration-color: currentColor; }
.quick-fact__flag { font-size: 16px; line-height: 1; }
.quick-fact--copy { padding-bottom: 18px; }

/* COPY PILL — Club ID / Referral ID with tap-to-copy ------------------ */
.copy-pill { display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border: 0.5px solid var(--border2); border-radius: 2px; background: rgba(0, 0, 0, 0.3); color: var(--text); cursor: pointer; font-family: 'Syne', sans-serif; font-size: 13px; letter-spacing: 0.6px; transition: all 0.2s; align-self: flex-start; }
.copy-pill:hover { border-color: var(--accent); }
.copy-pill.copied { border-color: var(--accent); background: rgba(61, 187, 77, 0.12); }
.copy-pill__label { font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.4px; }
.copy-pill__text { font-weight: 600; }
.copy-pill__cta { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; padding-left: 6px; border-left: 0.5px solid var(--border2); }
.copy-pill.copied .copy-pill__cta { color: var(--accent); }
.copy-pill--compact { padding: 11px 14px; gap: 12px; }

/* PROSE BODY ------------------------------------------------------------ */
/* About-this-club section uses the wide outer container (1280px) but
   centers the eyebrow and the prose into a single ~720px column so the
   block reads as one self-contained, visually balanced unit instead of
   eyebrow-far-left + prose-narrow-middle. */
.club-section--prose .section-eyebrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.club-prose { font-size: 16px; color: var(--text); line-height: 1.8; max-width: 720px; margin-left: auto; margin-right: auto; }
.club-prose p { margin: 0 0 18px; color: var(--muted2); }
.club-prose p:last-child { margin-bottom: 0; }
.club-prose h2, .club-prose h3 { font-family: 'Cormorant Garamond', serif; color: var(--text); line-height: 1.2; }
.club-prose h2 { font-size: 30px; font-weight: 700; margin: 36px 0 14px; }
.club-prose h2:first-child { margin-top: 8px; }
.club-prose h3 { font-size: 22px; font-weight: 700; margin: 28px 0 12px; }
.club-prose ul, .club-prose ol { padding-left: 22px; margin: 0 0 18px; color: var(--muted2); }
.club-prose li { margin-bottom: 6px; }
.club-prose a { color: var(--accent); border-bottom: 0.5px solid var(--border2); transition: border-color 0.2s; }
.club-prose a:hover { border-color: var(--accent); }

/* SCREENSHOTS ----------------------------------------------------------- */
.club-screenshots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.club-screenshot { background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.club-screenshot__cover { aspect-ratio: 16 / 10; background:
  linear-gradient(135deg, var(--bg3) 0%, var(--surface2) 50%, rgba(61, 187, 77, 0.10) 100%);
  position: relative; }
.club-screenshot__cover::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 65% 35%, rgba(61, 187, 77, 0.18), transparent 60%); }
.club-screenshot__caption { padding: 14px 18px; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; }

/* HOW TO JOIN ----------------------------------------------------------- */
.club-how-to-join { list-style: none; padding: 0; margin: 8px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 0.5px solid var(--border); }
.how-step { background: var(--surface); padding: 36px 32px; display: flex; flex-direction: column; gap: 12px; }
.how-step__num { font-family: 'Cormorant Garamond', serif; font-size: 56px; font-weight: 700; color: var(--border); line-height: 1; }
.how-step__title { font-size: 15px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.how-step__text { font-size: 14px; color: var(--muted2); line-height: 1.7; }
.how-step__links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.how-step__link { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; padding: 8px 14px; border: 0.5px solid var(--border2); border-radius: 2px; transition: border-color 0.2s; }
.how-step__link:hover { border-color: var(--accent); }
.how-step__copies { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; align-items: flex-start; }
.club-how-to-join__cta { text-align: center; margin-top: 36px; }

/* APP DOWNLOAD BUTTONS — Step 01 of platform "How to Join". One per device
   (iOS / Android / macOS / PC). Equal-sized dark pills with a thin accent
   outline and an inline-SVG platform glyph on the left. Row of up to 4 on
   desktop, wraps to 2×2 on narrow screens. Buttons render conditionally,
   so platforms without macos_url / windows_url simply show fewer. */
.app-dl-btns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.app-dl-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 14px; background: rgba(0, 0, 0, 0.35); border: 0.5px solid var(--border2); border-radius: 2px; color: var(--text); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.app-dl-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(61, 187, 77, 0.08); }
.app-dl-btn__icon { width: 16px; height: 16px; flex: none; color: var(--accent); }
.app-dl-btn__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; }
@media (max-width: 640px) { .app-dl-btns { grid-template-columns: repeat(2, 1fr); } }

/* CTA BANNER ------------------------------------------------------------ */
.club-banner { padding: 56px 48px; }
.club-banner__inner { background: linear-gradient(135deg, rgba(61, 187, 77, 0.08), rgba(61, 187, 77, 0.02)); border: 0.5px solid var(--border2); border-radius: 4px; padding: 56px 40px; text-align: center; max-width: 1120px; margin: 0 auto; }
.club-banner__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; line-height: 1.1; margin-bottom: 12px; }
.club-banner__sub { font-size: 14px; color: var(--muted2); margin-bottom: 28px; }
.club-banner__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* RELATED CLUBS --------------------------------------------------------- */
.club-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-club-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; padding: 24px 22px; display: flex; flex-direction: column; gap: 12px; color: var(--text); transition: border-color 0.2s, transform 0.2s; }
.related-club-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.related-club-card__name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; line-height: 1.2; }
.related-club-card__tagline { font-size: 13px; color: var(--muted2); line-height: 1.55; }
.related-club-card__tags { list-style: none; padding: 0; margin: 0; display: flex; gap: 6px; flex-wrap: wrap; }
.related-club-card__tags li { font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border: 0.5px solid var(--border2); border-radius: 999px; color: var(--muted); }
.related-club-card__cta { margin-top: auto; font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; padding-top: 8px; }

/* =========================================================================
   PLATFORM PAGE — /en/platforms/{slug}/. Layout: layouts/platform.njk.
   Namespaced under .platform-* / .related-platform-card. Reuses tokens
   from :root, utility classes (.section-eyebrow, .btn-primary,
   .btn-outline), and shared blocks (.club-how-to-join / .how-step from
   the club page so the 3-step pattern stays visually consistent across
   the portal).
   ========================================================================= */

.platform-section { padding: 64px 48px; }
.platform-section--alt { background: var(--bg2); }
.platform-section__inner { max-width: 1280px; margin: 0 auto; }
.platform-section__inner--narrow { max-width: 820px; }
.platform-section__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.6vw, 44px); font-weight: 700; line-height: 1.1; margin: 8px 0 32px; }
/* Section title flanked by small decorative icons (Hot Deals / How to Join /
   App Review). Icons are aria-hidden PNGs sized ~28px. */
.platform-section__title--icons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.section-title-icon { height: 38px; width: auto; flex: none; vertical-align: -7px; }

/* HERO ------------------------------------------------------------------ */
.platform-hero { position: relative; padding: 96px 48px 64px; overflow: hidden; }
.platform-hero__decor { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(61, 187, 77, 0.10), transparent 70%),
    linear-gradient(rgba(61, 187, 77, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(90deg, rgba(61, 187, 77, 0.04) 1px, transparent 1px) 0 0 / 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 25%, black 0%, transparent 80%);
}
.platform-hero__inner { position: relative; max-width: 880px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.platform-hero__emblem { width: 64px; height: 64px; border-radius: 50%; border: 0.5px solid var(--border2); background: rgba(61, 187, 77, 0.10); color: var(--accent); font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
/* Platform logo in hero (when frontmatter ships `logo`). margin-bottom mirrors
   __emblem's 4px so the hero rhythm doesn't shift (parent already gaps 18px). */
.platform-hero__logo { display: block; margin: 0 auto 4px; height: 48px; width: auto; }
@media (max-width: 640px) { .platform-hero__logo { height: 40px; } }
/* When the logo IS the H1 (hero), the heading is a thin wrapper around the
   wordmark image — strip the text-heading metrics so it doesn't add height. */
.platform-hero__h1--logo { margin: 0; line-height: 0; font-size: 0; letter-spacing: 0; }
.platform-hero__h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 6.5vw, 84px); font-weight: 700; line-height: 1; letter-spacing: -1.5px; margin: 0; }
.platform-hero__tagline { font-size: 18px; color: var(--muted2); max-width: 640px; line-height: 1.6; margin: 4px 0 8px; }
.platform-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* STICKY TOC ------------------------------------------------------------ */
.platform-toc { position: sticky; top: 62px; z-index: 50; background: rgba(22, 36, 26, 0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 0.5px solid var(--border2); border-bottom: 0.5px solid var(--border2); }
.platform-toc__inner { max-width: 1280px; margin: 0 auto; padding: 14px 48px; display: flex; gap: 28px; overflow-x: auto; }
.platform-toc--union .platform-toc__inner { justify-content: center; }
.platform-toc a { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); transition: color 0.2s; white-space: nowrap; }
.platform-toc a:hover { color: var(--accent); }

/* OVERVIEW PROSE -------------------------------------------------------- */
/* Same self-contained centered-column pattern as the club page's About
   section: eyebrow + section title + prose share a 720px centered column
   so the overview reads as one balanced block rather than eyebrow far
   left + prose narrow middle (which on a 1400px viewport visually drifts
   to the right side of the page). */
.platform-section--prose .section-eyebrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.platform-section--prose .platform-section__title { max-width: 720px; margin-left: auto; margin-right: auto; }
.platform-prose { font-size: 16px; color: var(--text); line-height: 1.8; max-width: 720px; margin-left: auto; margin-right: auto; }
.platform-prose p { margin: 0 0 18px; color: var(--muted2); }
.platform-prose p:last-child { margin-bottom: 0; }

/* CLUBS ON THIS PLATFORM ------------------------------------------------ */
.platform-clubs { /* inherits .club-related grid */ }
.platform-clubs__cta { margin-top: 32px; text-align: center; }
.platform-empty { font-size: 14px; color: var(--muted2); padding: 24px 0; text-align: center; }

/* APP REVIEW ------------------------------------------------------------ */
.platform-review { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 1px; background: var(--border); border: 0.5px solid var(--border); }
.platform-review__pros, .platform-review__cons, .platform-review__shot { background: var(--surface); padding: 32px 30px; }
.platform-review__heading { font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.platform-review__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.platform-review__list li { position: relative; padding-left: 18px; font-size: 14px; color: var(--text); line-height: 1.55; }
.platform-review__list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--accent); }
.platform-review__shot { display: flex; flex-direction: column; gap: 12px; }
.platform-review__shot-cover { aspect-ratio: 4 / 3; border-radius: 4px;
  background:
    linear-gradient(135deg, var(--bg3) 0%, var(--surface2) 50%, rgba(61, 187, 77, 0.10) 100%);
  position: relative; }
.platform-review__shot-cover::after { content: ''; position: absolute; inset: 0; border-radius: 4px; background: radial-gradient(circle at 65% 30%, rgba(61, 187, 77, 0.18), transparent 60%); }
.platform-review__shot-caption { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; }

/* SAFETY & TRUST -------------------------------------------------------- */
.platform-safety { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 22px; }
.platform-safety li { font-size: 15px; color: var(--muted2); line-height: 1.7; padding-left: 26px; position: relative; }
.platform-safety li::before { content: ''; position: absolute; left: 0; top: 11px; width: 14px; height: 1px; background: var(--accent); }
.platform-safety strong { color: var(--text); font-weight: 700; }
/* Anti-scam callout inside the PokerStock guarantee partial. Subtle accent-tinted note. */
.guarantee-note { margin: 26px 0 0; padding: 16px 20px; font-size: 13.5px; line-height: 1.65; color: var(--muted2); background: var(--accent-pale); border: 0.5px solid var(--border2); border-radius: 4px; }
.guarantee-note strong { color: var(--text); font-weight: 700; }

/* RELATED PLATFORMS ----------------------------------------------------- */
.platform-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-platform-card { background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; padding: 28px 24px; display: flex; flex-direction: column; gap: 12px; color: var(--text); transition: border-color 0.2s, transform 0.2s; }
.related-platform-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.related-platform-card__emblem { width: 44px; height: 44px; border-radius: 50%; border: 0.5px solid var(--border2); background: rgba(61, 187, 77, 0.08); color: var(--accent); font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.related-platform-card__name { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; line-height: 1.2; }
.related-platform-card__tagline { font-size: 13px; color: var(--muted2); line-height: 1.55; flex: 1; }
.related-platform-card__cta { margin-top: auto; font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; }

/* RESPONSIVE — platform page ------------------------------------------- */
@media (max-width: 1024px) {
  .platform-review { grid-template-columns: 1fr; }
  .platform-related { grid-template-columns: repeat(2, 1fr); }
  .platform-related .related-platform-card:nth-child(3) { display: none; }
  .platform-toc { display: none; } /* TOC hidden on tablet — uses scroll TOC inside content if added later */
  /* Union TOC opts BACK IN on mobile as a vertical button stack — partners
     viewing union pages on phone need quick section jumps. Scoped to the
     --union modifier so platform pages stay hidden. */
  .platform-toc.platform-toc--union { display: block; position: static; background: var(--bg); border-top: 0; border-bottom: 0; }
  .platform-toc--union .platform-toc__inner { flex-direction: column; gap: 8px; overflow-x: visible; padding: 20px; max-width: 520px; justify-content: flex-start; }
  .platform-toc--union .platform-toc__inner a { display: block; padding: 12px 16px; border: 0.5px solid var(--border2); border-radius: 2px; color: var(--text); background: var(--surface); text-align: left; transition: border-color 0.2s, color 0.2s; }
  .platform-toc--union .platform-toc__inner a:hover { border-color: var(--accent); color: var(--accent); }
}
@media (max-width: 640px) {
  .platform-hero { padding: 72px 24px 48px; }
  .platform-section { padding: 48px 24px; }
  .platform-related { grid-template-columns: 1fr; }
  .platform-related .related-platform-card:nth-child(n+2) { display: none; }
}

/* =========================================================================
   COMING SOON — shared placeholder section used by /blog/, /free-tools/
   and /faq/ at MVP. Centred narrow column, dark portal background, plain
   bullet list of "what's coming", primary Telegram CTA.
   ========================================================================= */

.coming-soon { position: relative; padding: 140px 24px 100px; min-height: 70vh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.coming-soon__decor { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 500px at 50% 0%, rgba(61, 187, 77, 0.10), transparent 70%),
    linear-gradient(rgba(61, 187, 77, 0.04) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(90deg, rgba(61, 187, 77, 0.04) 1px, transparent 1px) 0 0 / 80px 80px;
  mask-image: radial-gradient(ellipse 65% 60% at 50% 35%, black 0%, transparent 80%);
}
.coming-soon__inner { position: relative; max-width: 720px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.coming-soon__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); }
.coming-soon__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5.5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -1px; margin: 4px 0 0; }
.coming-soon__intro { font-size: 17px; color: var(--muted2); line-height: 1.7; max-width: 600px; }
.coming-soon__features { width: 100%; max-width: 480px; margin-top: 20px; padding: 28px 32px; background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; text-align: left; }
.coming-soon__features-title { font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.coming-soon__features ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.coming-soon__features li { position: relative; padding-left: 18px; font-size: 14px; color: var(--text); line-height: 1.55; }
.coming-soon__features li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 1px; background: var(--accent); }
.coming-soon__cta { margin-top: 12px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.coming-soon__cta p { font-size: 13px; color: var(--muted); letter-spacing: 0.6px; }
.coming-soon__cta .btn-outline { margin-left: 4px; }

@media (max-width: 640px) {
  .coming-soon { padding: 100px 20px 80px; }
  .coming-soon__features { padding: 22px 22px; }
}

/* =========================================================================
   BECOME AGENT PAGE — /en/become-agent/. Reuses platform-section /
   club-hero / club-banner / home-numbers__grid / number-card. Adds:
   .agent-paths (3-column), .agent-path (card), .agent-steps (numbered
   list with large numeral on the left).
   ========================================================================= */

.agent-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.agent-path { background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; transition: border-color 0.25s, transform 0.25s; }
.agent-path:hover { border-color: var(--border2); transform: translateY(-2px); }
.agent-path--highlight { background: linear-gradient(160deg, rgba(61, 187, 77, 0.06), var(--surface) 60%); border-color: var(--border2); }
.agent-path__icon { width: 34px; height: 34px; color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.agent-path__icon svg { width: 100%; height: 100%; display: block; }
.agent-path__name { font-size: 17px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; }
.agent-path__desc { font-size: 14px; color: var(--muted2); line-height: 1.7; flex: 1; }
.agent-path__rate { font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 1.4px; padding-top: 12px; border-top: 0.5px solid var(--border); }

.agent-steps { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 8px; counter-reset: agent-steps; }
.agent-step { background: var(--surface); border: 0.5px solid var(--border); border-radius: 4px; padding: 22px 26px; display: flex; gap: 22px; align-items: flex-start; }
.agent-step__num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--accent); line-height: 1; flex-shrink: 0; min-width: 52px; }
.agent-step__body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.agent-step__title { font-size: 15px; font-weight: 700; letter-spacing: 0.4px; text-transform: uppercase; color: var(--text); }
.agent-step__body p { font-size: 14px; color: var(--muted2); line-height: 1.65; margin: 0; }

@media (max-width: 1024px) {
  .agent-paths { grid-template-columns: 1fr; }
  .agent-path--highlight { order: -1; }
}
@media (max-width: 640px) {
  .agent-step { padding: 18px 20px; gap: 16px; }
  .agent-step__num { font-size: 28px; min-width: 40px; }
}

/* CLUBS CATALOG --------------------------------------------------------- */
.clubs-stats { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 18px; }
.clubs-stats__chip { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted2); padding: 6px 12px; border: 0.5px solid var(--border); border-radius: 999px; background: rgba(0, 0, 0, 0.18); }
.clubs-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-chip { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; padding: 9px 18px; border: 0.5px solid var(--border2); border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; transition: all 0.2s; }
.filter-chip[disabled], .filter-chip[aria-disabled="true"] { opacity: 0.45; cursor: not-allowed; }
.filter-chip--active { background: var(--accent); color: #000; border-color: var(--accent); }
.clubs-catalog { /* inherits .club-related grid */ }
.clubs-catalog__card { position: relative; padding-top: 38px; }
.clubs-catalog__platform { position: absolute; top: 16px; left: 22px; font-size: 10px; font-weight: 700; letter-spacing: 1.6px; color: var(--accent); text-transform: uppercase; }
.clubs-empty { font-size: 14px; color: var(--muted2); padding: 40px 0; text-align: center; }

/* RESPONSIVE — club page ----------------------------------------------- */
@media (max-width: 1024px) {
  .club-quick-facts { grid-template-columns: repeat(2, 1fr); }
  .club-screenshots { grid-template-columns: repeat(2, 1fr); }
  .club-screenshots .club-screenshot:nth-child(3) { display: none; }
  .club-how-to-join { grid-template-columns: 1fr; }
  .club-related { grid-template-columns: repeat(2, 1fr); }
  .club-related .related-club-card:nth-child(3) { display: none; }
  .clubs-catalog.club-related { grid-template-columns: repeat(2, 1fr); }
  .clubs-catalog.club-related .related-club-card:nth-child(n) { display: flex; }
  .clubs-catalog.club-related .related-club-card:nth-child(3) { display: flex; }
}
@media (max-width: 640px) {
  .club-hero { padding: 72px 24px 48px; }
  .club-section { padding: 48px 24px; }
  .club-banner { padding: 40px 24px; }
  .club-banner__inner { padding: 40px 24px; }
  .club-quick-facts { grid-template-columns: 1fr; }
  .club-screenshots { grid-template-columns: 1fr; }
  .club-screenshots .club-screenshot:nth-child(n+2) { display: none; }
  .club-related { grid-template-columns: 1fr; }
  .club-related .related-club-card:nth-child(n+2) { display: none; }
  /* Catalog overrides — the "related clubs" pattern caps at 3 cards, but the
     catalog shows every club, so cancel the visibility cap for catalogs. */
  .clubs-catalog.club-related .related-club-card:nth-child(n) { display: flex; }
}
