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

    :root {
      --brand:          #005BFF;
      --brand-soft:     rgba(0,91,255,0.08);
      --brand-border:   rgba(0,91,255,0.25);
      --brand-mid:      rgba(0,91,255,0.15);
      --black:          #0B0B0B;
      --white:          #FFFFFF;
      --bg:             #F4F6F9;
      --surface:        #FFFFFF;
      --surface-2:      #EEF1F6;
      --border:         rgba(11,11,11,0.09);
      --border-mid:     rgba(11,11,11,0.16);
      --text-primary:   #0B0B0B;
      --text-secondary: rgba(11,11,11,0.60);
      --text-muted:     rgba(11,11,11,0.38);
      --green:          #00A86B;
      --green-soft:     rgba(0,168,107,0.09);
      --green-border:   rgba(0,168,107,0.22);
      --amber:          #D97706;
      --amber-soft:     rgba(217,119,6,0.09);
      --amber-border:   rgba(217,119,6,0.22);
      --purple:         #5B35C4;
      --purple-soft:    rgba(91,53,196,0.08);
      --purple-border:  rgba(91,53,196,0.22);
      --radius:         14px;
      --radius-sm:      9px;
      --shadow:         0 1px 8px rgba(11,11,11,0.07), 0 4px 20px rgba(11,11,11,0.05);
      --shadow-hover:   0 4px 20px rgba(11,11,11,0.12), 0 8px 32px rgba(11,11,11,0.07);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body-family, var(--font-stack-body, inherit));
      background: var(--bg);
      color: var(--text-primary);
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
    }

    /* ── HERO ── */
    .hero {
      background: var(--black);
      padding: 72px 24px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -80px; left: 50%; transform: translateX(-50%);
      width: 800px; height: 360px;
      background: radial-gradient(ellipse, rgba(0,91,255,0.22) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--brand), transparent);
    }
    .hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--brand-soft); border: 1px solid var(--brand-border);
      border-radius: 4px; padding: 6px 16px;
      font-size: 11px; font-weight: 500; color: var(--brand);
      letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 24px;
    }
    .hero-badge svg { width: 13px; height: 13px; }
    .hero h1 {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit));
      font-size: clamp(38px, 7vw, 66px);
      font-weight: 700; color: #fff; line-height: 1.0;
      text-transform: uppercase; letter-spacing: -0.01em; margin-bottom: 20px;
    }
    .hero h1 span { color: var(--brand); }
    .hero p {
      font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65);
      line-height: 1.75; max-width: 520px; margin: 0 auto;
    }

    /* ── STATS STRIP ── */
    .stats-strip { background: var(--brand); padding: 0; }
    .stats-inner {
      display: flex; align-items: stretch;
      flex-wrap: wrap;
    }
    .stat-item {
      flex: 1; min-width: 160px;
      padding: 20px 24px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .stat-item:last-child { border-right: none; }
    .stat-value {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit));
      font-size: 28px; font-weight: 700; color: #fff; line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.70);
      letter-spacing: 0.07em; text-transform: uppercase;
    }

    /* ── MAIN ── */
    .main { width: 100%; padding: 52px 40px 80px; }

    /* ── INTRO BLOCK ── */
    .intro-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px 40px 36px;
      margin-bottom: 28px;
      box-shadow: var(--shadow);
      display: grid;
      gap: 0;
    }
    .intro-left { padding-right: 40px; }
    .intro-divider { background: var(--border); }
    .intro-label {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 10px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--brand); margin-bottom: 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .intro-label::before {
      content: ''; display: inline-block; width: 3px; height: 14px;
      background: var(--brand); border-radius: 2px;
    }
    .intro-title {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: clamp(22px, 3vw, 30px);
      font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em;
      color: var(--text-primary); line-height: 1.1; margin-bottom: 16px;
    }
    .intro-title span { color: var(--brand); }
    p.body {
      font-size: 14px; font-weight: 300; color: var(--text-secondary);
      line-height: 1.80; margin-bottom: 14px;
    }
    p.body:last-child { margin-bottom: 0; }
    strong { color: var(--text-primary); font-weight: 500; }

    /* ── SECTION HEADING ── */
    .section-label {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 11px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

    /* ── VALUES GRID ── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-bottom: 28px;
    }
    .value-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px 22px;
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
      position: relative; overflow: hidden;
    }
    .value-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: transparent; transition: background 0.22s;
    }
    .value-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--border-mid); }
    .value-card:hover::before { background: linear-gradient(90deg, transparent, var(--brand), transparent); }
    .value-icon {
      width: 44px; height: 44px; border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .value-icon svg { width: 22px; height: 22px; }
    .icon-blue   { background: var(--brand-soft); color: var(--brand); border: 1px solid var(--brand-border); }
    .icon-green  { background: var(--green-soft); color: var(--green); border: 1px solid var(--green-border); }
    .icon-amber  { background: var(--amber-soft); color: var(--amber); border: 1px solid var(--amber-border); }
    .icon-purple { background: var(--purple-soft); color: var(--purple); border: 1px solid var(--purple-border); }
    .value-title {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 16px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
      color: var(--text-primary); margin-bottom: 8px; line-height: 1.2;
    }
    .value-desc { font-size: 13px; font-weight: 300; color: var(--text-secondary); line-height: 1.65; }

    /* ── CATALOGUE BLOCK ── */
    .catalogue-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px 36px 32px;
      margin-bottom: 28px;
      box-shadow: var(--shadow);
    }
    .catalogue-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 24px; padding-bottom: 18px;
      border-bottom: 1px solid var(--border);
    }
    .catalogue-header-icon {
      width: 46px; height: 46px; border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .catalogue-header-icon svg { width: 22px; height: 22px; }
    .catalogue-header-title {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 22px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-primary); line-height: 1.1;
    }
    .catalogue-header-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
      margin: 20px 0;
    }
    .category-card {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 16px 18px;
      display: flex; align-items: center; gap: 14px;
      transition: border-color 0.15s, background 0.15s;
      text-decoration: none;
    }
    .category-card:hover { border-color: var(--brand-border); background: var(--brand-soft); }
    .cat-icon {
      width: 38px; height: 38px; border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .cat-icon svg { width: 18px; height: 18px; }
    .cat-name {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 14px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-primary);
    }
    .cat-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

    /* ── BRANDS BLOCK ── */
    .brands-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 36px;
      margin-bottom: 28px;
      box-shadow: var(--shadow);
    }
    .brands-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 22px; padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .brands-header-icon {
      width: 46px; height: 46px; border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .brands-header-icon svg { width: 22px; height: 22px; }
    .brands-header-title {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 22px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-primary);
    }
    .brands-header-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
    .brands-grid {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .brand-pill {
      background: var(--surface-2); border: 1px solid var(--border);
      border-radius: var(--radius-sm); padding: 8px 18px;
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 13px; font-weight: 600;
      letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-secondary);
      transition: border-color 0.15s, color 0.15s, background 0.15s;
    }
    .brand-pill:hover { border-color: var(--brand-border); color: var(--brand); background: var(--brand-soft); }

    /* ── PLAYER LEVELS BLOCK ── */
    .levels-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 36px;
      margin-bottom: 28px;
      box-shadow: var(--shadow);
    }
    .levels-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 22px; padding-bottom: 16px;
      border-bottom: 1px solid var(--border);
    }
    .levels-header-icon {
      width: 46px; height: 46px; border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .levels-header-icon svg { width: 22px; height: 22px; }
    .levels-header-title {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 22px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.02em; color: var(--text-primary);
    }
    .levels-header-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
    .levels-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 12px;
    }
    .level-card {
      border-radius: var(--radius-sm);
      padding: 18px 20px;
      position: relative;
    }
    .level-beginner { background: var(--green-soft); border: 1px solid var(--green-border); }
    .level-intermediate { background: var(--amber-soft); border: 1px solid var(--amber-border); }
    .level-advanced { background: var(--brand-soft); border: 1px solid var(--brand-border); }
    .level-pro { background: var(--purple-soft); border: 1px solid var(--purple-border); }
    .level-label {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 13px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
    }
    .level-beginner .level-label    { color: var(--green); }
    .level-intermediate .level-label { color: var(--amber); }
    .level-advanced .level-label    { color: var(--brand); }
    .level-pro .level-label         { color: var(--purple); }
    .level-desc { font-size: 12px; font-weight: 300; color: var(--text-secondary); line-height: 1.6; }

    /* ── WHY US CHECKLIST ── */
    .why-block {
      background: var(--black);
      border-radius: var(--radius);
      padding: 36px 40px;
      margin-bottom: 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 48px;
    }
    .why-title {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 22px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.02em; color: #fff;
      margin-bottom: 22px; grid-column: 1 / -1;
      padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.10);
    }
    .why-title span { color: var(--brand); }
    .why-item {
      display: flex; align-items: flex-start; gap: 12px;
    }
    .why-item-icon {
      width: 34px; height: 34px; border-radius: var(--radius-sm);
      background: var(--brand-soft); border: 1px solid var(--brand-border);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .why-item-icon svg { width: 16px; height: 16px; color: var(--brand); }
    .why-item-title {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 14px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.04em; color: #fff; margin-bottom: 3px;
    }
    .why-item-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.50); line-height: 1.6; }

    /* ── CTA STRIP ── */
    .cta-strip {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px 36px;
      display: flex; align-items: center; gap: 24px;
      flex-wrap: wrap; box-shadow: var(--shadow);
      position: relative; overflow: hidden;
    }
    .cta-strip::before {
      content: ''; position: absolute;
      left: 0; top: 0; bottom: 0; width: 3px;
      background: var(--brand);
    }
    .cta-strip svg { width: 36px; height: 36px; color: var(--brand); flex-shrink: 0; }
    .cta-body { flex: 1; min-width: 0; }
    .cta-body h3 {
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 18px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
      color: var(--text-primary); margin-bottom: 6px;
    }
    .cta-body p { font-size: 13px; font-weight: 300; color: var(--text-secondary); margin: 0; line-height: 1.65; }
    .cta-body a { color: var(--brand); text-decoration: none; font-weight: 500; }
    .cta-body a:hover { text-decoration: underline; }
    .cta-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--brand); color: #fff;
      font-family: var(--font-heading-family, var(--font-stack-heading, inherit)); font-size: 13px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.06em;
      padding: 12px 22px; border-radius: var(--radius-sm);
      text-decoration: none; flex-shrink: 0;
      transition: background 0.15s, transform 0.15s;
    }
    .cta-btn:hover { background: #0047CC; transform: translateY(-1px); }
    .cta-btn svg { width: 14px; height: 14px; }
.intro-right { padding-left: 0; padding-top:50px }
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .main { padding: 32px 20px 56px; }
      .intro-block { grid-template-columns: 1fr; }
      .intro-divider { display: none; }
      .intro-left { padding-right: 0; padding-bottom: 28px; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
      .intro-right { padding-left: 0; padding-top:50px }
      .why-block { grid-template-columns: 1fr; padding: 28px 24px; }
      .cta-strip { padding: 24px 28px; }
    }
    @media (max-width: 600px) {
      .stat-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.12); }
      .why-block { gap: 14px; }
    }
