/* Buenos Padel · design tokens (Redesign v3 «Dark Court» · Task 37 · 2026-07)
 *
 * Source of truth: Claude Design project «Buenos Padel» (3 reference screens).
 * Dark editorial theme — deep navy court, lime accent, Unbounded display type.
 *
 * Legacy token names (--paper, --ink, --blue, --green…) are kept and remapped
 * to dark equivalents so per-page CSS written against v2 keeps rendering
 * coherently; new code should prefer the v3 names (--bg, --surface, --accent…).
 */

/* === Fonts (self-hosted variable WOFF2, cyrillic + latin subsets) === */
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-Cyrillic.var.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  src: url('../fonts/Unbounded-Latin.var.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Cyrillic.var.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Latin.var.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* === V3 CORE === */
  --bg:          #050D18;   /* page background */
  --bg-2:        #070F1D;   /* alt band background */
  --surface:     #0A1626;   /* cards */
  --surface-2:   #081426;   /* wells (map, media frames) */
  --line:        #16273D;   /* hairlines, card borders */
  --line-2:      #1C3050;   /* hero stats hairlines */
  --accent:      #93D032;   /* lime — CTAs, prices, eyebrows */
  --accent-ink:  #050D18;   /* text on accent */
  --text:        #F2F6FB;
  --text-soft:   #C6D3E2;
  --muted:       #8FA3BA;
  --dim:         #5B7089;
  --star:        #FFCE31;
  --grad-blue-1: #04264C;   /* hero photo overlay top */
  --grad-blue-2: #04305F;   /* investor band gradient */
  --outline-ink: #1D3A5F;   /* stroked display type in footer */

  /* === LEGACY NAMES → dark remap (v2 pages keep rendering) === */
  --blue:        #04305F;
  --blue-ink:    #04264C;
  --blue-tint:   #0D1F36;
  --green:       #93D032;
  --green-deep:  #7AB322;
  --green-tint:  #14230A;
  --paper:       #050D18;
  --paper-2:     #0A1626;
  --ink:         #F2F6FB;
  --ink-soft:    #C6D3E2;
  --stamp-red:   #93D032;
  --court:       #2B7FB8;

  /* === TYPE === */
  --ff-display:  'Unbounded', 'Arial Black', sans-serif;
  --ff-body:     'Manrope', -apple-system, system-ui, sans-serif;
  --ff-mono:     'Manrope', -apple-system, system-ui, sans-serif;

  /* === SHAPE === */
  --r-card:      20px;
  --r-tile:      16px;
  --r-band:      28px;
  --r-pill:      999px;
}
