    :root {
      --bg: #07090c;
      --bg-soft: #10151b;
      --bg-card: #151d25;
      --line: #28323d;
      --text: #edf2f6;
      --text-soft: #9ba9b5;
      --emerald: #1ac383;
      --gold: #c9a669;
      --danger: #ff8f8f;
      --ok: #25d366;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'Manrope', sans-serif;
      background: linear-gradient(180deg, #07090c 0%, #0c1014 34%, #07090c 100%);
      color: var(--text);
      line-height: 1.45;
      padding-bottom: 82px;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      margin: 0;
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: 0.01em;
      line-height: 0.94;
    }

    p { margin: 0; }

    a { color: inherit; text-decoration: none; }

    img { max-width: 100%; height: auto; display: block; }

    .container {
      width: min(1120px, calc(100vw - 24px));
      margin: 0 auto;
    }

    .logo-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      border-radius: 12px;
      padding: 9px 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    }

    .logo-badge img {
      height: 28px;
      width: auto;
    }

    .focus-ring:focus-visible {
      outline: 2px solid #dac08f;
      outline-offset: 2px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(201, 166, 105, 0.4);
      border-radius: 999px;
      color: #e8d3ab;
      background: rgba(201, 166, 105, 0.12);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 6px 10px;
    }

    .btn {
      border: 0;
      border-radius: 12px;
      padding: 13px 16px;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.01em;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .btn-primary {
      color: #ffffff;
      background: linear-gradient(140deg, #1ac383 0%, #179e6b 100%);
      box-shadow: 0 8px 20px rgba(26, 195, 131, 0.24);
    }

    .btn-secondary {
      color: var(--text);
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.02);
    }

    .btn-gold {
      color: #1a1208;
      background: linear-gradient(140deg, #b8925b 0%, #dfc897 100%);
      box-shadow: 0 8px 20px rgba(184, 146, 91, 0.22);
    }

    .live-bar {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: #0a0d10;
      padding: 8px 0;
    }

    .live-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-soft);
      font-weight: 700;
      flex-wrap: wrap;
    }

    .live-secondary {
      opacity: 0.95;
    }

    .live-inner > div {
      max-width: 100%;
    }

    .live-badge {
      background: #d4b67f;
      color: #271c0d;
      border-radius: 8px;
      padding: 3px 7px;
      margin-right: 6px;
      font-size: 10px;
    }

    header {
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: linear-gradient(180deg, rgba(22, 29, 36, 0.52), rgba(7, 9, 12, 0));
    }

    .hero {
      padding: 16px 0 36px;
    }

    .hero-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .season-pill {
      border: 1px solid rgba(201, 166, 105, 0.42);
      color: #e7d1a8;
      background: rgba(201, 166, 105, 0.1);
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: normal;
      line-height: 1.2;
      max-width: 100%;
    }

    .hero-layout {
      display: grid;
      gap: 16px;
    }

    .hero-layout > *,
    .system-grid > *,
    .signup-layout > *,
    .cards > *,
    .community-grid > *,
    .testimonials > * {
      min-width: 0;
    }

    .hero-copy h1 {
      font-size: clamp(2.2rem, 13vw, 3.2rem);
      margin-top: 10px;
      margin-bottom: 12px;
      max-width: 12ch;
    }

    .hero-copy .accent { color: #8be8c2; }

    .hero-copy p {
      color: #c5d0d8;
      font-size: 0.96rem;
      line-height: 1.55;
      margin-bottom: 14px;
      max-width: 62ch;
    }

    .cta-group {
      display: grid;
      gap: 10px;
      margin-bottom: 14px;
    }

    .hero-media {
      margin-bottom: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 12px;
      overflow: hidden;
      background: #0b1016;
      aspect-ratio: 16 / 10;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center right;
      display: block;
    }

    .hero-points {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .point-item {
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 11px;
      background: rgba(255, 255, 255, 0.02);
      color: #cad4dc;
      font-size: 13px;
      padding: 10px;
    }

    .hero-panel {
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: var(--bg-soft);
      border-radius: 14px;
      padding: 14px;
      display: grid;
      gap: 12px;
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }

    .panel-head h3 {
      font-size: 1.55rem;
      letter-spacing: 0.03em;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #d8c08a;
    }

    .panel-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .panel-metric {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      background: var(--bg-card);
      padding: 10px;
    }

    .panel-metric strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.45rem;
      line-height: 1;
    }

    .panel-metric span {
      color: var(--text-soft);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .mini-card {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 11px;
      background: var(--bg-card);
      padding: 10px;
    }

    .mini-card-title {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-soft);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .ranking-row {
      display: grid;
      grid-template-columns: 22px 1fr auto;
      gap: 8px;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 5px 0;
      font-size: 12px;
    }

    .ranking-row:last-child { border-bottom: 0; }

    .ranking-row b { font-weight: 600; }

    .ranking-row .up {
      color: #8be8c2;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
    }

    .playoff-lane {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 6px;
    }

    .playoff-stage {
      border: 1px solid rgba(201, 166, 105, 0.3);
      border-radius: 8px;
      background: rgba(201, 166, 105, 0.08);
      text-align: center;
      color: #d6c9ae;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 7px 4px;
    }

    .field-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: var(--text-soft);
      font-weight: 700;
      margin-bottom: 6px;
      display: block;
    }

    select,
    input,
    button {
      font: inherit;
    }

    select,
    input[type='text'],
    input[type='email'],
    input[type='tel'] {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #33404d;
      background: #0f151b;
      color: #f0f5f9;
      padding: 11px 12px;
    }

    select:focus,
    input:focus {
      outline: 2px solid rgba(201, 166, 105, 0.4);
      border-color: rgba(201, 166, 105, 0.6);
    }

    .city-status {
      border: 1px solid rgba(201, 166, 105, 0.35);
      background: rgba(201, 166, 105, 0.1);
      border-radius: 11px;
      color: #e5d3b3;
      font-size: 13px;
      line-height: 1.45;
      padding: 10px;
    }

    .section {
      padding: 48px 0;
    }

    .section-title h2 {
      font-size: clamp(2rem, 11vw, 2.8rem);
      margin-top: 10px;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #b1bfca;
      font-size: 0.95rem;
      line-height: 1.55;
      max-width: 64ch;
    }

    .stats-band {
      padding: 14px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: #0b0f13;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    .stats-item {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      background: var(--bg-soft);
      padding: 10px;
      text-align: center;
    }

    .stats-item strong {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.5rem;
      line-height: 1;
    }

    .stats-item span {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-soft);
      font-weight: 700;
    }

    .cards,
    .steps,
    .community-grid,
    .testimonials,
    .signup-layout,
    .system-grid {
      display: grid;
      gap: 10px;
      grid-template-columns: 1fr;
    }

    .card,
    .step-card,
    .experience-card,
    .testimonial,
    .score-card,
    .form-card,
    .confirm-card,
    .system-wrap {
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 12px;
      background: var(--bg-soft);
      padding: 13px;
    }

    .experience-card {
      position: relative;
      overflow: hidden;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .experience-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 10, 13, 0.15), rgba(7, 10, 13, 0.86));
      pointer-events: none;
    }

    .experience-card > * {
      position: relative;
      z-index: 1;
    }

    .experience-card--1 {
      background-image: url('/assets/photos/community-1.png');
    }

    .experience-card--2 {
      background-image: url('/assets/photos/community-2.png');
    }

    .experience-card--3 {
      background-image: url('/assets/photos/community-3.png');
    }

    .card h3,
    .step-card h3,
    .experience-card h3 {
      font-size: 1.45rem;
      margin-bottom: 7px;
    }

    .card p,
    .step-card p,
    .experience-card p,
    .testimonial p {
      color: #b8c4ce;
      font-size: 14px;
      line-height: 1.5;
    }

    .problem-flag,
    .solution-flag {
      display: inline-flex;
      border-radius: 999px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.09em;
      font-weight: 700;
      padding: 4px 7px;
      margin-bottom: 8px;
    }

    .problem-flag {
      color: #ffb3b3;
      border: 1px solid rgba(255, 143, 143, 0.45);
      background: rgba(255, 143, 143, 0.1);
    }

    .solution-flag {
      color: #96e6c7;
      border: 1px solid rgba(26, 195, 131, 0.35);
      background: rgba(26, 195, 131, 0.08);
    }

    .step-number {
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: #d4b67f;
      color: #22180a;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.4rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .division-list {
      display: grid;
      gap: 8px;
    }

    .division-item {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      background: var(--bg-card);
      padding: 10px;
      display: grid;
      gap: 4px;
    }

    .division-item strong {
      font-size: 1.2rem;
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: 0.02em;
    }

    .division-meta {
      color: var(--text-soft);
      font-size: 12px;
      line-height: 1.35;
    }

    .movement-up { color: #8be8c2; font-weight: 700; }
    .movement-down { color: #ffabab; font-weight: 700; }
    .movement-playoff { color: #e9d1a7; font-weight: 700; }

    .score-card h4 {
      font-size: 1.35rem;
      margin-bottom: 8px;
    }

    .score-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 7px 0;
      color: #c3d0d9;
      font-size: 13px;
    }

    .score-line:last-child { border-bottom: 0; }

    .score-line b {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 1.22rem;
      color: #eaf1f7;
    }

    .testimonial span {
      display: block;
      margin-top: 8px;
      color: var(--text-soft);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .form-grid-2 {
      display: grid;
      gap: 10px;
      grid-template-columns: 1fr;
    }

    .field { margin-bottom: 10px; }

    .radio-group {
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 11px;
      background: rgba(255, 255, 255, 0.02);
      padding: 10px;
      margin-bottom: 10px;
    }

    .radio-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 14px;
      margin-top: 8px;
    }

    .radio-row label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #d4dee6;
      font-size: 14px;
    }

    input[type='radio'],
    input[type='checkbox'] { accent-color: var(--emerald); }

    .disclaimer {
      border: 1px solid rgba(201, 166, 105, 0.35);
      border-radius: 10px;
      background: rgba(201, 166, 105, 0.1);
      color: #e4d0ab;
      font-size: 13px;
      line-height: 1.45;
      padding: 10px;
      margin-bottom: 11px;
    }

    .consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: #bac7d1;
      font-size: 13px;
      line-height: 1.45;
      margin-bottom: 10px;
    }

    #form-error {
      border: 1px solid rgba(255, 143, 143, 0.44);
      border-radius: 10px;
      background: rgba(255, 143, 143, 0.11);
      color: #ffb3b3;
      padding: 9px;
      font-size: 14px;
      margin-bottom: 10px;
    }

    .confirm-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(26, 195, 131, 0.14);
      border: 1px solid rgba(26, 195, 131, 0.4);
      color: #86e1be;
      font-size: 1.5rem;
      margin-bottom: 8px;
    }

    .final-cta {
      border-top: 1px solid rgba(255, 255, 255, 0.09);
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
      text-align: center;
      background: #0a0d11;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: linear-gradient(180deg, rgba(8, 11, 15, 0.88), rgba(8, 11, 15, 0.9)), url('/assets/photos/hero-alt.png');
      background-size: cover;
      background-position: center;
      pointer-events: none;
    }

    .final-cta .container {
      position: relative;
      z-index: 1;
    }

    .final-cta h2 {
      font-size: clamp(2.1rem, 11vw, 3rem);
      margin-bottom: 10px;
    }

    .final-cta p {
      color: #c0ccd6;
      font-size: 0.96rem;
      line-height: 1.55;
      max-width: 62ch;
      margin: 0 auto 14px;
    }

    footer {
      padding: 24px 0 18px;
      text-align: center;
      color: #82909b;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .mobile-sticky {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 50;
      padding: 8px 12px calc(10px + env(safe-area-inset-bottom));
      background: linear-gradient(180deg, rgba(7, 9, 12, 0), rgba(7, 9, 12, 0.97) 26%, rgba(7, 9, 12, 1));
      transition: opacity 220ms ease, transform 220ms ease;
    }

    .mobile-sticky.is-hidden {
      opacity: 0;
      transform: translateY(8px);
      pointer-events: none;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 580ms ease, transform 580ms ease;
    }

    .fade-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .hidden { display: none !important; }

    @media (min-width: 740px) {
      body { padding-bottom: 0; }

      .mobile-sticky { display: none; }

      .btn { width: auto; }

      .cta-group {
        display: flex;
        flex-wrap: wrap;
      }

      .hero-points { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      .stats-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

      .cards.cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cards.cards-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      .steps,
      .community-grid,
      .testimonials,
      .signup-layout,
      .system-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .form-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

      .hero-copy h1 {
        font-size: clamp(2.8rem, 7vw, 4.6rem);
        max-width: 11ch;
      }

      .hero-media {
        aspect-ratio: 16 / 8;
      }

      .section { padding: 64px 0; }

      .section-title h2 {
        font-size: clamp(2.6rem, 6vw, 3.8rem);
      }

      .hero-nav { margin-bottom: 24px; }
      .logo-badge img { height: 34px; }
      .season-pill { font-size: 11px; padding: 7px 11px; }
      .live-inner { font-size: 11px; letter-spacing: 0.1em; }
    }

    @media (min-width: 1024px) {
      .hero-layout {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: stretch;
      }

      .cards.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .cards.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

      .steps,
      .community-grid,
      .testimonials { grid-template-columns: repeat(3, minmax(0, 1fr)); }

      .signup-layout,
      .system-grid { grid-template-columns: 1.1fr 0.9fr; }

      .hero { padding: 28px 0 56px; }
      .logo-badge img { height: 38px; }
    }

    @media (max-width: 390px) {
      .hero-copy h1 { font-size: 2.1rem; }
      .stats-item strong { font-size: 1.35rem; }
      .panel-metric strong { font-size: 1.3rem; }
      .live-inner { font-size: 9px; }
      .live-secondary { display: none; }
    }
