/* ==================================================
       DESIGN TOKENS
       ================================================== */
    :root {
      --gold: #ebb400;
      --gold-light: #fce08a;
      --gold-muted: rgba(235, 180, 0, 0.2);
      --gold-border: rgba(235, 180, 0, 0.3);
      --black: #000000;
      --white: #ffffff;
      --dark: #1a1a1a;
      --border: #333333;
      --border-light: rgba(0, 0, 0, 0.1);
      --text: #374151;
      --text-muted: #4b5563;
      --text-subtle: #6b7280;
      --text-dim: #9ca3af;
      --text-dim-light: #d1d5db;
      --wrap-max: 1440px;
      --gutter: 20px;
      --gutter-md: 32px;
      --gutter-lg: 40px;
      --gutter-xl: 48px;
      --font-head: "Hanken Grotesk", system-ui, sans-serif;
      --font-body: "Inter", system-ui, sans-serif;
      --section-y: 48px;
      --section-y-md: 72px;
      --section-y-lg: 96px;
      --radius-sm: 2px;
      --radius-md: 4px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-full: 9999px;
      --shadow-card: 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      --shadow-hero: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      --shadow-gold-lg: 0 10px 30px rgba(235, 180, 0, 0.3);
    }

    /* ==================================================
       RESET & BASE
       ================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }
    ul, ol { list-style: none; }

    /* ==================================================
       LAYOUT
       ================================================== */
    .wrap {
      width: 100%;
      max-width: var(--wrap-max);
      margin-inline: auto;
      padding-inline: var(--gutter);
    }

    .page-main { display: flex; flex-direction: column; }

    /* ==================================================
       TYPOGRAPHY
       ================================================== */
    .heading {
      font-family: var(--font-head);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }
    .heading--dark { color: var(--black); font-size: 1.5rem; line-height: 1.25; }
    .heading--light { color: var(--white); font-size: 1.75rem; line-height: 1.2; font-weight: 800; }
    .heading__gold { color: var(--gold); }

    .section-head { display: flex; flex-direction: column; gap: 1rem; }
    .section-head--center { align-items: center; text-align: center; }
    .section-head__line { width: 80px; height: 4px; background: var(--gold); }
    .section-head__desc { color: var(--text-dim); font-size: 1rem; line-height: 1.55; max-width: 42rem; }

    /* ==================================================
       BUTTONS
       ================================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 700;
      border-radius: var(--radius-sm);
      transition: opacity 0.2s, transform 0.2s;
      white-space: nowrap;
    }
    .btn:hover { opacity: 0.9; }
    .btn:active { transform: scale(0.98); }
    .btn--fill { background: var(--gold); color: var(--black); padding: 0.85rem 1.75rem; font-size: 1rem; font-weight: 800; }
    .btn--line { background: transparent; color: var(--white); border: 1px solid var(--white); padding: 0.8rem 1.75rem; font-size: 1rem; }
    .btn--outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 0.5rem 1.25rem; font-size: 0.875rem; font-weight: 600; }
    .btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
    .btn--lg { padding: 1.1rem 2.5rem; font-size: 1.125rem; text-transform: uppercase; font-weight: 800; }

   
    /* ==================================================
       HERO
       ================================================== */
    .hero {
      background: var(--black);
      border-bottom: 1px solid var(--border);
      padding-block: var(--section-y);
      overflow: hidden;
    }
    .hero__inner { display: flex; flex-direction: column; gap: 2.5rem; }
    .hero__body { display: flex; flex-direction: column; gap: 1rem; }
    .hero__tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 1rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--gold-border);
      border-radius: var(--radius-full);
      width: fit-content;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--gold);
    }
    .hero__title {
      font-family: var(--font-head);
      font-size: 1.75rem;
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: var(--white);
    }
    .hero__title mark {
      background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
    }
    .hero__lead { color: var(--text-dim); font-size: 1rem; line-height: 1.6; max-width: 32rem; }
    .hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; padding-top: 0.5rem; }
    .hero__proof {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding-top: 1.5rem;
      margin-top: 0.5rem;
      border-top: 1px solid var(--border);
    }
    .hero__avatars { display: flex; align-items: center; flex-shrink: 0; }
    .hero__count {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid var(--black);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--white);
    }
    .hero__avatar {
      display: flex;
      margin-left: -0.75rem;
    }
    .hero__avatar img {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: var(--radius-full);
      background: var(--gold);
      border: 2px solid var(--black);
    }
    .hero__proof-text { font-size: 0.75rem; font-weight: 500; color: var(--text-dim); line-height: 1.4; }
    .hero__visual { position: relative; }
    .hero__glow {
      position: absolute;
      top: -3rem;
      right: -3rem;
      width: 12rem;
      height: 12rem;
      background: var(--gold);
      border-radius: var(--radius-full);
      opacity: 0.1;
      filter: blur(32px);
      pointer-events: none;
    }
    .hero__frame {
      padding: 0.5rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--gold-muted);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(2px);
    }
    .hero__frame img {
      width: 100%;
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-hero);
      object-fit: cover;
      aspect-ratio: 1;
    }

    /* ==================================================
       ABOUT
       ================================================== */
    .about { background:#000; padding-block: var(--section-y); }
    .about__inner { display: flex; flex-direction: column; gap: 2.5rem; }
    .about__content { display: flex; flex-direction: column; gap: 1.5rem; }
    .about__text { color: var(--text); line-height: 1.625; }
    .about__quote {
      background: var(--black);
      border-left: 4px solid var(--gold);
      border-radius: var(--radius-md);
      padding: 1.5rem 1.25rem;
    }
    .about__quote p { color: var(--white); font-style: italic; font-size: 1.05rem; line-height: 1.55; }
    .about__cards { display: flex; flex-direction: column; gap: 1.25rem; }

    .info-card {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      padding: 1.75rem;
      border-radius: var(--radius-md);
      background: var(--white);
      border: 2px solid var(--black);
    }
    .info-card__icon { width: auto; height: 2.5rem; }
    .info-card__title {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--black);
      padding-top: 0.25rem;
    }
    .info-card__text { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); line-height: 1.4; }

    /* ==================================================
       PLATFORM
       ================================================== */
    .platform { background: var(--black); padding-block: var(--section-y); }
    .platform__inner { display: flex; flex-direction: column; gap: 3rem; }
    .platform__board { display: flex; flex-direction: row; flex-wrap: wrap; gap: 1.25rem; }

    .platform__highlight {
      background: linear-gradient(90deg, rgba(235,180,0,0.2) 0%, rgba(235,180,0,0.5) 50%, rgba(235,180,0,0.2) 100%);
      border-radius: var(--radius-lg);
      padding: 4px;
      flex: 1 1 100%;
      order: 1;
    }
    .platform__highlight-box {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding: 2rem 1.25rem;
      background: rgba(0, 0, 0, 0.9);
      border-radius: 15px;
      overflow: hidden;
      backdrop-filter: blur(12px);
    }
    .platform__highlight-deco {
      position: absolute;
      top: -5rem;
      right: -5rem;
      opacity: 0.05;
      pointer-events: none;
    }
    .platform__icon-ring {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 8rem;
      height: 8rem;
      margin-inline: auto;
      background: rgba(235, 180, 0, 0.1);
      border: 1px solid var(--gold-border);
      border-radius: var(--radius-full);
    }
    .platform__highlight-body { display: flex; flex-direction: column; gap: 1rem; align-item:center;}
    .platform__highlight-title {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
    }
    .platform__highlight-text { color: var(--text-dim); line-height: 1.625; }
    .platform__badges { display: flex; flex-wrap: wrap; gap: 1rem; }
    .platform__badge { display: flex; align-items: center; gap: 0.5rem; color: var(--gold); font-size: 1rem; }

    .platform__tile {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      padding: 1.75rem;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
      flex: 1 1 calc(50% - 0.625rem);
      order: 3;
    }
    .platform__tile-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 5rem;
      height: 5rem;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-lg);
    }
    .platform__tile-title {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 0.25rem;
    }
    .platform__tile-text { color: var(--text-subtle); font-size: 1rem; line-height: 1.5; }

    .platform__sports {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 2rem 1.5rem;
      background: var(--gold);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-hero);
      overflow: hidden;
      flex: 1 1 100%;
      order: 2;
    }
    .platform__sports-deco { position: absolute; right: -2.5rem; bottom: -2.5rem; opacity: 0.2; pointer-events: none; }
    .platform__sports-body { position: relative; display: flex; flex-direction: column; gap: 0.75rem; }
    .platform__sports-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 4rem;
      height: 4rem;
      background: var(--black);
      border-radius: var(--radius-md);
    }
    .platform__sports-title {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--black);
    }
    .platform__sports-text { color: rgba(0, 0, 0, 0.8); line-height: 1.625; }
    .platform__sports-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
    }

    /* ==================================================
       PROCESS (STEPS)
       ================================================== */
    .process {
      background: var(--white);
      border-block: 1px solid var(--border-light);
      padding-block: var(--section-y);
    }
    .process__inner { display: flex; flex-direction: column; gap: 3rem; }
    .process__track { position: relative; }
    .process__line { display: none; }
    .process__list { display: flex; flex-direction: column; gap: 2rem; }
    .process__step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .process__num {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 4rem;
      height: 4rem;
      background: var(--black);
      border: 4px solid var(--white);
      border-radius: var(--radius-full);
      box-shadow: var(--shadow-card);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
    }
    .process__step-title {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--black);
      padding-top: 1.5rem;
    }
    .process__step-text {
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--text-muted);
      padding-top: 0.5rem;
      max-width: 14rem;
      line-height: 1.4;
    }

    /* ==================================================
       SECURITY
       ================================================== */
    .security { background: var(--black); padding-block: var(--section-y); }
    .security__panels { display: flex; flex-direction: row; gap: 1.25rem; }
    .security__panel {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1.5rem;
      border-radius: var(--radius-lg);
      width: 50%;
    }
    .security__panel--light { background: var(--white); box-shadow: var(--shadow-card); }
    .security__panel--dark {
      position: relative;
      background: var(--dark);
      border: 1px solid var(--gold-muted);
      overflow: hidden;
    }
    .security__panel-head { display: flex; align-items: center; gap: 1rem; }
    .security__panel-title {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--black);
    }
    .security__panel-title.is-gold { color: var(--gold); }
    .security__rules { display: flex; flex-direction: column; gap: 2rem; }
    .security__rule { display: flex; gap: 1.25rem; align-items: flex-start; }
    .security__rule img { flex-shrink: 0; }
    .security__rule-title {
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--black);
      margin-bottom: 0.25rem;
    }
    .security__rule-text { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); line-height: 1.4; }
    .security__pay-text { color: var(--text-dim-light); line-height: 1.625; }
    .security__pay-deco { position: absolute; right: -3rem; bottom: -3rem; opacity: 0.1; pointer-events: none; }
    .security__pay-list { display: flex; flex-direction: column; gap: 1rem; }
    .security__pay-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--white);
    }

    /* ==================================================
       TRUST
       ================================================== */
    .trust { background:#fff; padding-block: var(--section-y); }
    .trust__inner { display: flex; flex-direction: column; gap: 2rem; }
    .trust__desc { color: var(--text-muted); font-size: 1rem; line-height: 1.55; max-width: 42rem; }
    .trust__stats {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border-light);
    }
    .trust__stat { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
    .trust__stat-num {
      font-family: var(--font-head);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--gold);
      line-height: 1.2;
    }
    .trust__stat-label {
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--black);
    }

    /* ==================================================
       RESPONSIBLE GAMING
       ================================================== */
    .gaming { background: var(--black); padding-block: var(--section-y); }
    .gaming__panel {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 1.5rem;
      background: var(--dark);
      border: 2px solid var(--gold-muted);
      border-radius: var(--radius-xl);
      box-shadow: 0 0 50px rgba(235, 180, 0, 0.05);
    }
    .gaming__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 6rem;
      height: 6rem;
      background: var(--gold);
      border-radius: var(--radius-lg);
      transform: rotate(3deg);
      flex-shrink: 0;
    }
    .gaming__body { display: flex; flex-direction: column; gap: 1.5rem; }
    .gaming__title {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
    }
    .gaming__title span { color: var(--gold); }
    .gaming__text { color: var(--text-dim); line-height: 1.55; }
    .gaming__cols { display: flex; flex-direction: column; gap: 2rem; padding-top: 0.5rem; }
    .gaming__col-title {
      font-family: var(--font-head);
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .gaming__list { display: flex; flex-direction: column; gap: 0.6rem; }
    .gaming__list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text-dim-light);
    }
    .gaming__list li::before {
      content: "";
      flex-shrink: 0;
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: var(--radius-full);
    }

    /* ==================================================
       FAQ
       ================================================== */
    .faq { background: var(--white); padding-block: var(--section-y); }
    .faq__inner { display: flex; flex-direction: column; gap: 2.5rem; max-width: 48rem; margin-inline: auto; }
    .faq__list { display: flex; flex-direction: column; gap: 1rem; }
    .faq__item { border: 1px solid var(--black); border-radius: var(--radius-md); overflow: hidden; }
    .faq__trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--black);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 1.25rem;
      font-weight: 600;
      cursor: pointer;
      list-style: none;
    }
    .faq__trigger::-webkit-details-marker { display: none; }
    .faq__arrow { flex-shrink: 0; transition: transform 0.2s; }
    .faq__item[open] .faq__arrow { transform: rotate(180deg); }
    .faq__body { padding: 0 1.5rem 1.5rem; background: var(--black); }
    .faq__body p { color: var(--text-dim); line-height: 1.5; }

    /* ==================================================
       PROMO CTA
       ================================================== */
    .promo {
      background: var(--white);
      border-top: 1px solid var(--border-light);
      padding-block: var(--section-y);
    }
    .promo__box {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
      padding: 3rem 1.5rem;
      background: var(--black);
      border: 4px solid var(--gold-muted);
      box-shadow: var(--shadow-hero);
      overflow: hidden;
    }
    .promo__glow {
      position: absolute;
      inset: 4px;
      background: radial-gradient(closest-side, var(--gold) 0%, transparent 70%);
      opacity: 0.1;
      pointer-events: none;
    }
    .promo__title {
      position: relative;
      font-family: var(--font-head);
      font-size: 1.75rem;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.15;
    }
    .promo__text { position: relative; color: var(--text-dim); max-width: 28rem; }
    .promo__actions {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
      max-width: 20rem;
    }
    .promo__actions .btn--fill { box-shadow: var(--shadow-gold-lg); }
    .promo__actions .btn--line { border-width: 2px; }

    
    /* ==================================================
       CHAT FAB
       ================================================== */
    .chat-fab {
      position: fixed;
      right: 1.25rem;
      bottom: 1.25rem;
      z-index: 90;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 4rem;
      height: 4rem;
      background: var(--gold);
      border-radius: var(--radius-full);
      box-shadow: 0 0 20px rgba(235, 180, 0, 0.4);
      transition: transform 0.2s;
    }
    .chat-fab:hover { transform: scale(1.05); }
    .chat-fab__tip {
      position: absolute;
      right: calc(100% + 0.75rem);
      white-space: nowrap;
      padding: 0.5rem 1rem;
      background: var(--black);
      border: 1px solid rgba(235, 180, 0, 0.5);
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--white);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .chat-fab:hover .chat-fab__tip { opacity: 1; }

    /* ==================================================
       RESPONSIVE — Tablet 768–1023px
       ================================================== */
    @media (min-width: 768px) and (max-width: 1023px) {
      .wrap { padding-inline: var(--gutter-md); }
      .hero, .about, .platform, .process, .security, .trust, .gaming, .faq, .promo, .site-footer {
        padding-block: var(--section-y-md);
      }
      .topbar__nav, .topbar__actions { display: flex; }
      .topbar__menu-btn { display: none; }
      .hero__inner { flex-direction: row; align-items: center; gap: 2rem; }
      .hero__body, .hero__visual { flex: 1; }
      .hero__title { font-size: 2.25rem; }
      .about__inner { flex-direction: row; flex-wrap: wrap; gap: 2.5rem; }
      .about__content, .about__cards { flex: 1 1 calc(50% - 1.25rem); }
      .heading--light { font-size: 2.25rem; }
      .platform__highlight-box { flex-direction: row; align-items: center; padding: 2.5rem 2rem; }
      .platform__sports { flex-direction: row; align-items: center; }
      .process__list { flex-direction: row; flex-wrap: wrap; justify-content: center; }
      .process__step { flex: 1 1 calc(33.333% - 1.5rem); max-width: calc(33.333% - 1.5rem); }
      .process__line {
        display: block;
        position: absolute;
        top: 2rem;
        left: 10%;
        right: 10%;
        height: 4px;
        background: rgba(0, 0, 0, 0.05);
      }
      .trust__stats { flex-direction: row; flex-wrap: wrap; justify-content: space-between; }
      .trust__stat { flex: 1 1 calc(33.333% - 1.5rem); }
      .gaming__panel { flex-direction: row; padding: 2.5rem 2rem; }
      .gaming__cols { flex-direction: row; flex-wrap: wrap; }
      .gaming__col { flex: 1 1 calc(50% - 1rem); }
      .promo__actions { flex-direction: row; max-width: none; justify-content: center; }
      .site-footer__top { flex-direction: row; flex-wrap: wrap; }
      .site-footer__brand, .site-footer__col { flex: 1 1 calc(50% - 1.25rem); }
    }

    /* ==================================================
       RESPONSIVE — Desktop 1024px+
       ================================================== */
    @media (min-width: 1024px) {
      .wrap { padding-inline: var(--gutter-lg); }
      .hero, .about, .platform, .process, .security, .trust, .gaming, .faq, .promo, .site-footer {
        padding-block: var(--section-y-lg);
      }
        .about__content {
    flex: 1 1 42%;
  }
      .heading--dark { font-size: 2rem; }
      .heading--light { font-size: 3rem; }
      .hero__inner { flex-direction: row; align-items: center; gap: 3rem; }
      .hero__body, .hero__visual { flex: 1 1 50%; }
      .hero__title { font-size: 3rem; }
      .hero__lead { font-size: 1.125rem; }
      .about__content { flex: 1 1 42%; }
      .about__cards { flex: 1 1 55%; flex-direction: row; flex-wrap: wrap; }
      .about__cards .info-card { flex: 1 1 calc(50% - 0.625rem); }
      .platform__highlight { flex: 1 1 calc(66.666% - 1rem); }
      .platform__sports { flex: 1 1 calc(33.333% - 1.35rem); flex-direction: column; align-items: flex-start; }
      .platform__tile { flex: 1 1 calc(50% - 1rem); }
      .process__list { flex-direction: row; flex-wrap: nowrap; justify-content: space-between; gap: 3rem; }
      .process__step { flex: 1 1 0; max-width: none; }
      .trust__desc { font-size: 1.125rem; }
      .trust__stat-num { font-size: 3.5rem; }
      .gaming__title { font-size: 2rem; }
      .promo__box { padding: 5rem 4rem; border-radius: 3rem; }
      .promo__title { font-size: 3rem; }
      .promo__text { font-size: 1.25rem; }
      .promo__actions { flex-direction: row; gap: 1.5rem; }
      .site-footer__top { flex-direction: row; flex-wrap: nowrap; justify-content: space-between; gap: 4rem; }
      .site-footer__brand { flex: 2 1 0; }
      .site-footer__col { flex: 1 1 0; }
    }

    /* ==================================================
       RESPONSIVE — Large 1920px+
       ================================================== */
    @media (min-width: 1920px) {
      .wrap { padding-inline: var(--gutter-xl); }
      .hero__title { font-size: 3.25rem; }
      .heading--light { font-size: 3.25rem; }
      .platform__highlight-title { font-size: 2rem; }
      .promo__title { font-size: 3.25rem; }
      .chat-fab { right: 2rem; bottom: 2rem; }
    }

    /* ==================================================
       RESPONSIVE — Mobile max 767px
       ================================================== */
    @media (max-width: 767px) {
      .chat-fab__tip { display: none; }
      .hero__actions .btn { flex: 1; min-width: 0; }
      .promo__actions .btn { width: 100%; }
      .platform__tile { flex-direction: column; align-items: flex-start; flex: 1 1 100%; }
      .security__panel { width: 100%; }
    }