 :root {
      --bg: #0b1020;
      --bg-2: #10172b;
      --surface: rgba(255, 255, 255, 0.08);
      --surface-strong: rgba(255, 255, 255, 0.14);
      --surface-soft: rgba(255, 255, 255, 0.045);
      --border: rgba(255, 255, 255, 0.14);
      --border-strong: rgba(255, 255, 255, 0.24);
      --text: #f8fafc;
      --text-muted: rgba(248, 250, 252, 0.92);
      --text-soft: rgba(248, 250, 252, 0.74);
      --accent: #22c55e;
      --accent-2: #7dd3fc;
      --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.35);
      --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.26);
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --container: 1200px;
      --section-space: clamp(4rem, 8vw, 7rem);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top right, rgba(34, 197, 94, 0.16), transparent 24%),
        radial-gradient(circle at top left, rgba(125, 211, 252, 0.10), transparent 18%),
        linear-gradient(180deg, #09111d 0%, #0a1421 42%, #0c1827 100%);
      line-height: 1.6;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    iframe {
      display: block;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .video {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.video img,
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video img {
  object-fit: cover;
}

.video iframe {
  display: block;
}

.media-card {
  min-width: 0;
}

.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1rem;
  min-height: 220px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 2rem));
      margin-inline: auto;
    }

/* =================================
   SECTION BASE STYLE
================================= */

.section {
  padding: 90px 0;
  position: relative;
}

/* =================================
   HERO / SECTION BACKGROUND STYLE
================================= */

.hero-shell,
.section-shell,
.section > .container {

  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem);

  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);

  background:

    /* softer yard lines */
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.025) 0px,
      rgba(255,255,255,0.025) 2px,
      transparent 2px,
      transparent 110px
    ),

    /* green turf glow */
    radial-gradient(
      circle at 50% 20%,
      rgba(125,211,252,0.18),
      transparent 50%
    ),

    radial-gradient(
      circle at 10% 80%,
      rgba(56,189,248,0.20),
      transparent 55%
    ),

    /* blue stadium lights */
    radial-gradient(
      circle at top right,
      rgba(34,197,94,0.14),
      transparent 45%
    ),

    radial-gradient(
      circle at top left,
      rgba(22,163,74,0.10),
      transparent 40%
    ),

    /* calmer dark overlay + turf */
    linear-gradient(180deg, rgba(6, 10, 20, 0.10), rgba(6, 10, 20, 0.24)),
    linear-gradient(
      180deg,
      #0d2619 0%,
      #0a1d15 40%,
      #081711 100%
    );

  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}


/* =================================
   FOOTBALL LACES DECORATION
================================= */

.section > .container::before,
.hero-shell::before {

  content: "";

  position: absolute;

  top: 16px;
  left: 50%;

  transform: translateX(-50%);

  width: 140px;
  height: 6px;

  opacity: 0.18;

  background:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 10px,
      white 10px,
      white 14px
    );
}


/* =================================
   MOBILE
================================= */

@media (max-width: 760px) {

  .hero-shell,
  .section > .container {

    padding: 1.25rem;
    border-radius: 20px;

  }

}

    .section-heading {
      max-width: 760px;
      margin-bottom: 2rem;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.72rem 1.12rem;
      border: 1px solid rgba(34, 197, 94, 0.34);
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(34,197,94,0.26), rgba(34,197,94,0.12));
      color: #ffffff;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
      margin-bottom: 1rem;
    }

    .section-heading h2,
    .cta-box h2,
    .hero h1 {
      margin: 0;
      line-height: 0.95;
      letter-spacing: -0.04em;
      font-weight: 800;
    }

    .section-heading h2 {
      font-size: clamp(2rem, 4vw, 3.6rem);
      margin-bottom: 1rem;
    }

    .section-heading p,
    .hero-copy,
    .cta-box p,
    .seo-copy,
    .card p,
    .media-card p,
    .showcase-caption p,
    .founder-box p,
    .problem-item,
    .problem-highlight p,
    .audience-card p,
    .audience-hero-copy p,
    .launch-lead,
    .launch-form-card p {
      color: var(--text-muted);
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(16px);
      background: rgba(11, 16, 32, 0.72);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: 4.5rem;
    }

    .brand {
      font-size: 0.92rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .nav {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .nav-link {
      padding: 0.7rem 0.95rem;
      border-radius: 999px;
      color: rgba(248, 250, 252, 0.82);
      transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .nav-link:hover {
      color: var(--text);
      background: rgba(255, 255, 255, 0.06);
    }

    .lang-switcher {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.35rem;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.03);
    }

    .lang-pill {
      padding: 0.55rem 0.8rem;
      border-radius: 999px;
      color: var(--text-soft);
      font-size: 0.84rem;
      font-weight: 600;
    }

    .lang-pill.is-active {
      color: var(--text);
      background: rgba(255, 255, 255, 0.1);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3.2rem;
      padding: 0 1.2rem;
      border-radius: 1rem;
      border: 1px solid transparent;
      font-weight: 700;
      transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-primary {
      background: linear-gradient(135deg, #bbf7d0 0%, #dcfce7 100%);
      color: #052e16;
      box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
    }

    .btn-secondary {
      background: linear-gradient(180deg, rgba(8, 12, 24, 0.72), rgba(8, 12, 24, 0.58));
      border-color: var(--border);
      color: var(--text);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .hero {
      padding: 4.5rem 0 2.5rem;
    }

    .hero-shell {
      position: relative;
      overflow: hidden;
      padding: clamp(1.5rem, 3vw, 3rem);
      border-radius: 2.25rem;
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at top center, rgba(34, 197, 94, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
      box-shadow: var(--shadow-lg);
      isolation: isolate;
    }

    .hero-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 20%, rgba(125, 211, 252, 0.08), transparent 22%),
        radial-gradient(circle at 85% 12%, rgba(125, 211, 252, 0.10), transparent 24%);
      pointer-events: none;
      z-index: -1;
    }

    .hero-stack {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 2rem;
    }

    .hero-heading {
      max-width: 980px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.65rem 1rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--surface);
      color: var(--text-muted);
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .hero h1 {
      font-size: clamp(3rem, 8vw, 6.4rem);
      line-height: 0.93;
      letter-spacing: -0.05em;
      font-weight: 800;
      max-width: 12ch;
      margin-inline: auto;
    }

    .hero-visual {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .hero-image {
      width: min(100%, 920px);
      max-height: none;
      object-fit: contain;
      border-radius: 1.5rem;
      filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.28));
    }

    .hero-content {
      max-width: 820px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-copy {
      max-width: 62ch;
      font-size: 1.08rem;
      line-height: 1.9;
      margin: 0;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.75rem;
    }

    .hero-stats,
    .feature-grid,
    .showcase-grid,
    .audience-grid,
    .media-grid {
      display: grid;
      gap: 1rem;
    }

    .hero-stats {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 2rem;
      width: 100%;
      max-width: 720px;
    }

    .card,
    .stat-card,
    .feature-card,
    .step-card,
    .audience-card,
    .media-card,
    .gallery-card,
    .problem-box,
    .founder-box,
    .section-photo,
    .cta-box,
    .showcase-card,
    .designer-photo-wrap {
      border: 1px solid var(--border);
      background: linear-gradient(180deg, rgba(8, 12, 24, 0.72), rgba(8, 12, 24, 0.58));
      backdrop-filter: blur(6px);
      box-shadow: var(--shadow-md);
      border-radius: var(--radius-lg);
    }

    .stat-card {
      padding: 1rem 1.1rem;
      text-align: center;
      background: rgba(255, 255, 255, 0.04);
      border-radius: var(--radius-md);
    }

    .stat-card strong {
      display: block;
      font-size: 1.3rem;
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .stat-card span {
      color: rgba(248, 250, 252, 0.82);
      font-size: 0.94rem;
    }

    .problem-box {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1rem;
      padding: 1rem;
      margin-bottom: 1.5rem;
    }

    .problem-highlight,
    .problem-item {
      padding: 1.25rem;
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, rgba(8, 12, 24, 0.74), rgba(8, 12, 24, 0.60));
      border: 1px solid rgba(255, 255, 255, 0.10);
      backdrop-filter: blur(6px);
    }

    .problem-highlight h3,
    .problem-highlight h2 {
      margin: 0 0 0.75rem;
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
      color: #ffffff;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
    }

    .problem-list {
      display: grid;
      gap: 0.75rem;
    }

    .problem-item strong {
      display: block;
      margin-bottom: 0.35rem;
      color: var(--text);
    }

    .section-photo {
      overflow: hidden;
      padding: 0.75rem;
    }

    .section-photo img {
      border-radius: calc(var(--radius-lg) - 8px);
      width: 100%;
      object-fit: cover;
    }

    .feature-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin-bottom: 1.5rem;
    }

    .feature-card,
    .audience-card,
    .media-card {
      padding: 1.25rem;
    }

    .feature-card h3,
    .audience-card strong,
    .showcase-caption h3,
    .step-card h3,
    .media-card h3 {
      margin: 0 0 0.65rem;
      color: #ffffff;
    }

    .showcase-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .showcase-card {
      overflow: hidden;
    }

    .showcase-card img {
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .showcase-caption {
      padding: 1rem 1rem 1.15rem;
      background: linear-gradient(180deg, rgba(8, 12, 24, 0.08), rgba(8, 12, 24, 0.22));
    }

    .timeline {
      display: grid;
      gap: 1rem;
    }

    .step-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      padding: 1rem;
      align-items: start;
    }

    .step-index {
      width: 3.2rem;
      height: 3.2rem;
      display: grid;
      place-items: center;
      border-radius: 999px;
      font-weight: 800;
      color: #091120;
      background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
      flex-shrink: 0;
    }

    .step-media {
      margin-top: 1rem;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
    }

    .step-media img {
      width: 100%;
      max-height: 360px;
      object-fit: cover;
    }

    .media-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .media-frame {
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border-radius: 1rem;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.03);
      margin-bottom: 1rem;
      min-height: 220px;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.5rem;
      align-items: start;
    }

    .designer-copy::after {
      content: "";
      display: block;
      clear: both;
    }

    .designer-photo-wrap {
      float: left;
      width: min(42%, 300px);
      padding: 0.75rem;
      margin: 0.3rem 1.2rem 0.8rem 0;
      overflow: hidden;
    }

    .designer-photo {
      width: 100%;
      max-height: 420px;
      object-fit: contain;
      border-radius: 1rem;
      background: #0b1020;
    }

    .founder-box {
      padding: 1.5rem;
    }

    .seo-copy {
      max-width: 900px;
      font-size: 1.02rem;
      background: linear-gradient(180deg, rgba(8, 12, 24, 0.68), rgba(8, 12, 24, 0.54));
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: var(--radius-lg);
      padding: 1.35rem 1.4rem;
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(6px);
    }

    .cta-wrap {
      padding: 2rem 0 6rem;
    }

    .cta-box {
      text-align: center;
      padding: clamp(1.5rem, 4vw, 2.5rem);
      background:
        radial-gradient(circle at top center, rgba(34, 197, 94, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(8, 12, 24, 0.78), rgba(8, 12, 24, 0.62));
      backdrop-filter: blur(8px);
    }

    .cta-box h2 {
      font-size: clamp(2.2rem, 5vw, 4.5rem);
      max-width: 12ch;
      margin-inline: auto;
    }

    .cta-box p {
      max-width: 62ch;
      margin: 1rem auto 0;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;

    }

    .audience-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.audience-hero-media {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.72), rgba(8, 12, 24, 0.58));
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
}

.audience-portrait {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  background: #0b1020;
}

.audience-hero-copy {
  max-width: 720px;
}

.audience-hero-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.audience-hero-copy p {
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.8;
}

.audience-grid-strong {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.audience-card {
  padding: 1.25rem;
  min-width: 0;
}

.audience-card strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.audience-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .audience-hero {
    grid-template-columns: 1fr;
  }

  .audience-grid-strong {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .audience-grid-strong {
    grid-template-columns: 1fr;
  }

  .audience-hero {
    gap: 1rem;
  }

  .audience-hero-copy h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}

    footer {
      padding: 0 0 2.5rem;
    }

    .footer-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: var(--text-soft);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    @media (max-width: 1100px) {
      .problem-box,
      .two-col {
        grid-template-columns: 1fr;
      }

      .feature-grid,
      .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .media-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      .topbar-inner {
        min-height: auto;
        padding: 0.85rem 0;
        align-items: flex-start;
        flex-direction: column;
      }

      .nav {
        width: 100%;
      }

      .hero {
        padding: 2rem 0 1.5rem;
      }

      .hero-shell {
        padding: 1.25rem;
        border-radius: 1.5rem;
      }

      .hero-stack {
        gap: 1.5rem;
      }

      .hero h1 {
        font-size: clamp(2.4rem, 11vw, 4rem);
        max-width: 10ch;
      }

      .hero-copy {
        font-size: 1rem;
        line-height: 1.7;
      }

      .hero-stats,
      .feature-grid,
      .showcase-grid,
      .audience-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
      }

      .step-card {
        grid-template-columns: 1fr;
      }

      .step-index {
        width: 3rem;
        height: 3rem;
      }

      .designer-photo-wrap {
        float: none;
        width: 100%;
        margin: 0 0 1rem;
      }

      .card,
      .stat-card,
      .feature-card,
      .step-card,
      .audience-card,
      .media-card,
      .gallery-card,
      .problem-box,
      .founder-box,
      .section-photo,
      .cta-box,
      .showcase-card,
      .designer-photo-wrap {
        border-radius: 1.25rem;
      }
    }







    .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.launch-shell {
  padding: clamp(1.5rem, 3vw, 3rem);
}

.launch-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.launch-copy {
  max-width: 760px;
}

.launch-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.launch-lead {
  margin: 0;
  max-width: 60ch;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.launch-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.launch-benefit {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.10);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.launch-form-wrap {
  min-width: 0;
}

.launch-form-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(8, 12, 24, 0.78), rgba(8, 12, 24, 0.62));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}

.launch-form-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  line-height: 1.1;
}

.launch-form-card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.launch-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.launch-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.launch-form input::placeholder {
  color: var(--text-soft);
}

.launch-submit {
  width: 100%;
}

.launch-note {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}

@media (max-width: 1100px) {
  .launch-grid {
    grid-template-columns: 1fr;
  }
}

.football-btn{
  display:inline-block;
  padding:14px 30px;
  background:#8B4513;
  color:white;
  text-decoration:none;
  font-weight:700;
  border-radius:60% / 50%;
  position:relative;
  font-size:14px;
  line-height:1.25;
  text-align:center;
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:0 8px 18px rgba(0,0,0,0.34);
  transition:all 0.2s ease;
}

/* Laces horizontal */
.football-btn::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:60px;
  height:4px;
  background:black;
  transform:translate(-50%,-50%);
}

/* Laces vertical */
.football-btn::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:4px;
  height:20px;
  background:black;
  transform:translate(-50%,-50%);
  box-shadow:
    -15px 0 0 black,
    -7px 0 0 black,
    7px 0 0 black,
    15px 0 0 black;
}

.football-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 20px rgba(0,0,0,0.4);
}

.section-lang-switcher{
display:flex;
justify-content:center;
gap:10px;
margin-bottom:30px;
flex-wrap:wrap;
}

.section-lang-switcher .lang-pill{
padding:6px 14px;
border-radius:20px;
border:1px solid #ddd;
background:#ffffff;
color:#111;
font-size:13px;
cursor:pointer;
transition:all 0.2s ease;
font-weight:600;
}

.section-lang-switcher .lang-pill:hover{
background:#f0f0f0;
}

.section-lang-switcher .lang-pill.is-active{
background:#0b1020;
color:white;
border-color:#0b1020;
}

#hero-title,
#problem-title,
#audience-title,
#solution-title,
#gallery-title,
#rules-title,
#videos-title,
#seo-title,
#cta-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.section-heading p,
.problem-highlight p,
.problem-item,
.showcase-caption p,
.media-card p,
.audience-card p,
.audience-hero-copy p,
.seo-copy p,
.launch-lead,
.launch-form-card p {
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

@media (max-width: 760px) {
  .section-label {
    padding: 0.68rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .seo-copy {
    padding: 1.1rem 1rem;
  }
}


/* =================================
   PREMIUM / KICKSTARTER LOOK TUNING
================================= */

:root {
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.14);
  --card-top: rgba(255, 255, 255, 0.10);
  --card-bottom: rgba(255, 255, 255, 0.04);
  --premium-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --premium-line: rgba(255, 255, 255, 0.12);
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(34, 197, 94, 0.20), transparent 28%),
    radial-gradient(circle at 0% 0%, rgba(125, 211, 252, 0.08), transparent 20%),
    linear-gradient(180deg, #07111a 0%, #08131d 35%, #0a1621 100%);
}

.topbar {
  background: rgba(7, 12, 24, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.brand {
  letter-spacing: 0.22em;
  color: #ffffff;
}

.nav-link {
  color: rgba(248, 250, 252, 0.76);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.hero-shell,
.section-shell,
.section > .container {
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--premium-shadow);
}

.hero-shell {
  background:
    radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.18), transparent 26%),
    radial-gradient(circle at 15% 20%, rgba(125, 211, 252, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.82), rgba(7, 12, 22, 0.72));
}

.section-label,
.eyebrow,
.launch-benefit,
.lang-switcher,
.section-lang-switcher .lang-pill {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.section-label {
  background:
    linear-gradient(180deg, rgba(34,197,94,0.28), rgba(34,197,94,0.12));
  border-color: rgba(34, 197, 94, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 10px 28px rgba(0,0,0,0.24);
}

.hero h1,
.section-heading h2,
.audience-hero-copy h2,
.cta-box h2,
.launch-copy h2,
.problem-highlight h2,
.problem-highlight h3 {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.26),
    0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-copy,
.section-heading p,
.problem-highlight p,
.problem-item,
.showcase-caption p,
.media-card p,
.audience-card p,
.audience-hero-copy p,
.seo-copy,
.launch-lead,
.launch-form-card p {
  color: rgba(248, 250, 252, 0.94);
}

.card,
.stat-card,
.feature-card,
.step-card,
.audience-card,
.media-card,
.gallery-card,
.problem-box,
.founder-box,
.section-photo,
.cta-box,
.showcase-card,
.designer-photo-wrap,
.seo-copy,
.launch-form-card,
.audience-hero-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(8, 12, 24, 0.78), rgba(8, 12, 24, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.problem-highlight,
.problem-item {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(8, 12, 24, 0.82), rgba(8, 12, 24, 0.68));
}

.showcase-card,
.media-card,
.feature-card,
.audience-card,
.stat-card,
.step-card,
.launch-form-card {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.showcase-card:hover,
.media-card:hover,
.feature-card:hover,
.audience-card:hover,
.stat-card:hover,
.step-card:hover,
.launch-form-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 24px 50px rgba(0, 0, 0, 0.34);
}

.showcase-card img,
.section-photo img,
.hero-image,
.designer-photo,
.audience-portrait {
  filter: saturate(1.04) contrast(1.03);
}

.btn {
  border-radius: 999px;
  padding-inline: 1.35rem;
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(220,252,231,0.98), rgba(187,247,208,0.94));
  box-shadow:
    0 14px 30px rgba(255,255,255,0.12),
    0 10px 24px rgba(0,0,0,0.12);
}

.btn-primary:hover {
  box-shadow:
    0 18px 36px rgba(255,255,255,0.16),
    0 14px 26px rgba(0,0,0,0.14);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border-color: rgba(255,255,255,0.12);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
}

.stat-card strong {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.feature-card h3,
.audience-card strong,
.showcase-caption h3,
.step-card h3,
.media-card h3,
.launch-form-card h3 {
  letter-spacing: -0.02em;
}

.showcase-caption,
.cta-box,
.launch-form-card,
.seo-copy {
  position: relative;
}

.showcase-caption::before,
.cta-box::before,
.launch-form-card::before,
.seo-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 24%);
}

.cta-box {
  background:
    radial-gradient(circle at top center, rgba(34, 197, 94, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.86), rgba(8, 12, 24, 0.74));
  overflow: hidden;
}

.cta-box h2 {
  max-width: 11ch;
}

.launch-form input {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.launch-form input:focus {
  border-color: rgba(34, 197, 94, 0.70);
  box-shadow:
    0 0 0 4px rgba(34, 197, 94, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
  outline: none;
}

.media-frame,
.step-media {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.footer-bar {
  color: rgba(248, 250, 252, 0.72);
}

@media (max-width: 760px) {
  .btn {
    min-height: 3.05rem;
  }

  .showcase-card:hover,
  .media-card:hover,
  .feature-card:hover,
  .audience-card:hover,
  .stat-card:hover,
  .step-card:hover,
  .launch-form-card:hover {
    transform: none;
  }
}



/* =================================
   STADIUM EDGE TREATMENT
================================= */

.hero-shell,
.section-shell,
.section > .container,
.cta-box,
.launch-form-card,
.problem-box,
.showcase-card,
.media-card,
.feature-card,
.audience-card,
.stat-card,
.step-card,
.seo-copy,
.audience-hero-media,
.section-photo,
.founder-box,
.designer-photo-wrap {
  position: relative;
  overflow: hidden;
}

/* top and bottom stadium light rails */
.hero-shell::after,
.section-shell::after,
.section > .container::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.00) 8%,
      rgba(125,211,252,0.10) 18%,
      rgba(34,197,94,0.12) 34%,
      rgba(255,255,255,0.14) 50%,
      rgba(34,197,94,0.12) 66%,
      rgba(125,211,252,0.10) 82%,
      rgba(255,255,255,0.00) 92%,
      transparent 100%) top / 100% 2px no-repeat,
    linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.00) 8%,
      rgba(125,211,252,0.08) 18%,
      rgba(34,197,94,0.10) 34%,
      rgba(255,255,255,0.12) 50%,
      rgba(34,197,94,0.10) 66%,
      rgba(125,211,252,0.08) 82%,
      rgba(255,255,255,0.00) 92%,
      transparent 100%) bottom / 100% 2px no-repeat;
  opacity: 0.95;
}

/* subtle bowl curvature on sides */
.hero-shell .stadium-edge,
.section-shell .stadium-edge,
.section > .container .stadium-edge {
  display: none;
}

.hero-shell::before,
.section > .container::before {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* side flood lights */
.hero-shell > * ,
.section-shell > *,
.section > .container > * {
  position: relative;
  z-index: 1;
}

.hero-shell::marker,
.section-shell::marker,
.section > .container::marker {
  content: "";
}

.hero-shell,
.section-shell,
.section > .container {
  box-shadow:
    inset 16px 0 40px rgba(125,211,252,0.04),
    inset -16px 0 40px rgba(34,197,94,0.05),
    var(--premium-shadow);
}

/* corner stadium brackets */
.cta-box::after,
.launch-form-card::after,
.problem-box::after,
.showcase-card::after,
.media-card::after,
.feature-card::after,
.audience-card::after,
.stat-card::after,
.step-card::after,
.seo-copy::after,
.audience-hero-media::after,
.section-photo::after,
.founder-box::after,
.designer-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(inherit - 6px);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.04);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  padding: 8px;
  opacity: 0.7;
}

/* stronger stadium look for section wrappers */
.hero-shell,
.section-shell,
.section > .container {
  border-radius: 34px;
}

@media (max-width: 760px) {
  .hero-shell,
  .section-shell,
  .section > .container {
    border-radius: 22px;
  }
}



/* =================================
   STADIUM SEATING INSIDE MAIN (SECTIONS)
================================= */

.section {
  position: relative;
  z-index: 0;
}

/* seating left + right */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;

  background:

    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.06) 0px,
      rgba(255,255,255,0.06) 2px,
      transparent 2px,
      transparent 14px
    ) left center / 120px 80% no-repeat,

    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.055) 0px,
      rgba(255,255,255,0.055) 2px,
      transparent 2px,
      transparent 14px
    ) right center / 120px 80% no-repeat,

    radial-gradient(
      ellipse at left center,
      rgba(125,211,252,0.12),
      transparent 50%
    ) left center / 200px 100% no-repeat,

    radial-gradient(
      ellipse at right center,
      rgba(34,197,94,0.12),
      transparent 50%
    ) right center / 200px 100% no-repeat;

  opacity: 0.7;
}

/* top seating */
.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 60px;
  pointer-events: none;

  background:
    repeating-linear-gradient(
      to right,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 10px,
      transparent 10px,
      transparent 18px
    );

  opacity: 0.5;
}

/* keep content above */
.section > * {
  position: relative;
  z-index: 2;
}
