:root {
  --ink: #102522;
  --muted: #58706b;
  --cream: #f7f4eb;
  --paper: #fffdf8;
  --teal: #08aeb6;
  --teal-dark: #057c83;
  --navy: #06285f;
  --lime: #cbe641;
  --line: rgba(16, 37, 34, .12);
  --shadow: 0 24px 70px rgba(21, 52, 47, .12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 90% 8%, rgba(203, 230, 65, .20), transparent 26rem),
    radial-gradient(circle at 5% 32%, rgba(8, 174, 182, .12), transparent 30rem),
    var(--paper);
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .7rem 1rem; background: var(--navy); color: white; border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 84px;
  padding: .75rem clamp(1rem, 5vw, 5rem);
  border-bottom: 1px solid rgba(16, 37, 34, .08);
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(18px);
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { width: 126px; height: 66px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 1.8rem; font-size: .94rem; font-weight: 700; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.button):hover { color: var(--teal-dark); }
.menu-button { display: none; border: 0; background: none; color: var(--navy); font: inherit; font-weight: 800; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 50px;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(6, 40, 95, .15);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 15px 32px rgba(6, 40, 95, .22); }
.button.accent { background: var(--lime); color: var(--ink); box-shadow: 0 10px 25px rgba(124, 148, 13, .19); }
.button.ghost { border-color: var(--line); background: transparent; color: var(--ink); box-shadow: none; }
.button.small { min-height: 42px; padding: .55rem 1rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1440px;
  min-height: calc(100vh - 84px);
  margin: auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6rem);
}
.eyebrow { margin: 0 0 1rem; color: var(--teal-dark); font-size: .78rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 1.5rem; font-size: clamp(3.4rem, 6.5vw, 6.9rem); }
h1 em { color: var(--teal-dark); font-family: Georgia, serif; font-weight: 500; }
.hero-copy { max-width: 680px; margin: 0 0 2rem; color: var(--muted); font-size: clamp(1.08rem, 1.5vw, 1.32rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.trust-row { display: flex; flex-wrap: wrap; gap: .65rem 1.3rem; margin-top: 2rem; color: var(--muted); font-size: .9rem; font-weight: 700; }
.trust-row span::before { content: "✓"; margin-right: .45rem; color: var(--teal-dark); }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: -8% 15% 18% -10%; z-index: -1; border-radius: 48% 52% 42% 58%; background: var(--lime); opacity: .65; transform: rotate(-7deg); }
.hero-visual img { width: 100%; aspect-ratio: 4 / 3; border-radius: 45% 55% 48% 52% / 50% 42% 58% 50%; object-fit: cover; box-shadow: var(--shadow); }
.hero-badge { position: absolute; right: -1rem; bottom: 8%; max-width: 220px; padding: 1.1rem 1.3rem; border-radius: 18px; background: var(--navy); color: white; box-shadow: var(--shadow); }
.hero-badge strong { display: block; font-size: 1.1rem; }
.hero-badge span { color: rgba(255,255,255,.75); font-size: .82rem; }

.section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem); }
.section-inner { max-width: 1320px; margin: auto; }
.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2.5rem, 5vw, 5rem); }
.section-heading p:last-child { max-width: 640px; margin: 0; color: var(--muted); font-size: 1.08rem; }
.tinted { background: var(--cream); }

.sport-story { overflow: hidden; background: #071d1a; color: white; }
.sport-story .section-heading p:last-child { color: rgba(255,255,255,.68); }
.sport-story .eyebrow { color: var(--lime); }
.sport-overview { position: relative; overflow: hidden; margin: 0 0 2.5rem; border-radius: var(--radius); background: var(--navy); box-shadow: 0 26px 70px rgba(0,0,0,.28); }
.sport-overview img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.sport-overview::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(4,20,18,.91)); pointer-events: none; }
.sport-overview figcaption { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding: clamp(1.5rem, 4vw, 3.5rem); }
.sport-overview h3 { margin: 0; font-size: clamp(1.8rem, 4vw, 3.8rem); }
.sport-slider-heading { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin: 0 0 1.5rem; }
.story-intro { display: grid; flex: 1; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 1rem; color: rgba(255,255,255,.72); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.story-intro span { height: 1px; background: rgba(255,255,255,.2); }
.sport-slider-controls { display: flex; align-items: center; gap: .45rem; }
.sport-slider-controls span { min-width: 3.5rem; color: rgba(255,255,255,.65); font-size: .78rem; font-variant-numeric: tabular-nums; text-align: center; }
.sport-slider-controls button { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: transparent; color: white; font-size: 1.15rem; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.sport-slider-controls button:hover { border-color: var(--lime); background: var(--lime); color: var(--ink); }
.sport-slider-controls button:disabled { cursor: default; opacity: .3; }
.sport-slider-controls button:disabled:hover { border-color: rgba(255,255,255,.24); background: transparent; color: white; }
.sport-slider { overflow: hidden; }
.sport-track { display: flex; gap: 1rem; overflow-x: auto; padding: 0 0 1rem; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: none; }
.sport-track::-webkit-scrollbar { display: none; }
.sport-card { overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.05); color: white; cursor: pointer; scroll-snap-align: start; text-align: left; transition: transform .25s ease, border-color .25s ease; }
.sport-card { flex: 0 0 calc((100% - 3rem) / 4); }
.sport-card:hover { transform: translateY(-5px); border-color: var(--lime); }
.sport-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sport-card > span { display: block; padding: 1.35rem 1.4rem 1.6rem; }
.sport-card small { display: block; margin-bottom: .5rem; color: var(--lime); font-size: .68rem; font-style: normal; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.sport-card strong { display: block; font-size: 1.35rem; line-height: 1.12; }
.sport-card em { display: block; margin-top: .55rem; color: rgba(255,255,255,.65); font-size: .9rem; font-style: normal; }
.sport-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: .45rem; margin-top: .7rem; }
.sport-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.24); cursor: pointer; transition: width .2s ease, border-radius .2s ease, background .2s ease; }
.sport-dots button.is-active { width: 25px; border-radius: 99px; background: var(--lime); }
.swipe-note { margin: .5rem 0 0; color: rgba(255,255,255,.55); font-size: .8rem; }

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.benefit { padding: 2rem; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.62); }
.benefit-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 2rem; border-radius: 50%; background: var(--lime); color: var(--ink); font-weight: 900; }
.benefit h3 { margin-bottom: .6rem; font-size: 1.35rem; }
.benefit p { margin: 0; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.feature-card { position: relative; overflow: hidden; min-height: 420px; padding: 0; border: 0; border-radius: 24px; background: var(--navy); color: white; cursor: pointer; text-align: left; box-shadow: 0 12px 34px rgba(16,37,34,.10); }
.feature-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; transition: transform .55s ease; }
.feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(5, 22, 42, .92)); }
.feature-card:hover img { transform: scale(1.035); }
.feature-copy { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: 2rem; }
.feature-copy small { display: block; margin-bottom: .55rem; color: var(--lime); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.feature-copy strong { display: block; font-size: 1.5rem; line-height: 1.12; }
.feature-copy span { display: block; margin-top: .6rem; color: rgba(255,255,255,.78); }
.feature-card:nth-child(1), .feature-card:nth-child(8) { grid-column: span 2; }

.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; counter-reset: step; }
.process article { position: relative; padding-top: 5rem; }
.process article::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; color: var(--teal); font-family: Georgia, serif; font-size: 3.4rem; line-height: 1; }
.process article:not(:last-child)::after { content: ""; position: absolute; top: 1.7rem; left: 4.7rem; right: -1rem; height: 1px; background: var(--line); }
.process h3 { font-size: 1.35rem; }
.process p { color: var(--muted); }

.support-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: var(--radius); background: var(--navy); color: white; box-shadow: var(--shadow); }
.support-panel img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.support-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 6vw, 6rem); }
.support-copy .eyebrow { color: var(--lime); }
.support-copy h2 { margin-bottom: 1.5rem; font-size: clamp(2.4rem, 4vw, 4.2rem); }
.support-copy p { color: rgba(255,255,255,.74); }
.support-list { display: grid; gap: .7rem; margin: 1rem 0 2rem; padding: 0; list-style: none; }
.support-list li::before { content: "●"; margin-right: .7rem; color: var(--lime); }
.support-copy button { align-self: flex-start; border: 0; cursor: pointer; }

.flyer-panel { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.flyer-preview { display: block; overflow: hidden; border-radius: 22px; background: white; box-shadow: var(--shadow); transform: rotate(-1deg); transition: transform .25s ease; }
.flyer-preview:hover { transform: rotate(0) translateY(-4px); }
.flyer-preview img { width: 100%; }
.flyer-copy h2 { margin-bottom: 1rem; font-size: clamp(2.5rem, 5vw, 5rem); }
.flyer-copy > p:not(.eyebrow) { color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 2rem; padding: clamp(2.5rem, 6vw, 5rem); border-radius: var(--radius); background: var(--lime); }
.cta-panel h2 { margin-bottom: .8rem; font-size: clamp(2.6rem, 5vw, 5rem); }
.cta-panel p { max-width: 650px; margin: 0; }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: .8rem; }

.site-footer { padding: 3rem clamp(1.25rem, 6vw, 6rem); background: #071d1a; color: rgba(255,255,255,.72); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 2rem; max-width: 1320px; margin: auto; }
.footer-brand img { width: 120px; height: 72px; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { max-width: 480px; margin: .5rem 0 0; }
.footer-links { display: flex; flex-wrap: wrap; align-content: center; justify-content: flex-end; gap: 1rem 1.5rem; }
.footer-links a:hover { color: white; }
.legal-note { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.legal-page { min-height: calc(100vh - 84px); padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 6rem); }
.legal-content { max-width: 840px; margin: auto; }
.legal-content h1 { margin-bottom: 1rem; font-size: clamp(3rem, 7vw, 6rem); }
.legal-content h2 { margin-top: 3rem; margin-bottom: .8rem; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.legal-content h3 { margin-top: 2rem; margin-bottom: .6rem; font-size: 1.25rem; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--teal-dark); font-weight: 700; }
.legal-content address { color: var(--muted); font-style: normal; }
.legal-content ul { padding-left: 1.25rem; }
.legal-meta { margin-bottom: 3rem; color: var(--muted); }
.legal-back { display: inline-flex; margin-bottom: 2rem; color: var(--teal-dark); font-weight: 800; text-decoration: none; }

dialog { width: min(980px, calc(100% - 2rem)); max-height: calc(100vh - 2rem); padding: 0; border: 0; border-radius: 28px; background: var(--paper); color: var(--ink); box-shadow: 0 30px 90px rgba(0,0,0,.35); }
dialog::backdrop { background: rgba(4, 18, 28, .72); backdrop-filter: blur(5px); }
.dialog-grid { display: grid; grid-template-columns: 1.05fr .95fr; }
.dialog-grid img { width: 100%; height: 100%; min-height: 530px; object-fit: cover; }
.dialog-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.dialog-copy h2 { margin-bottom: 1rem; font-size: clamp(2.2rem, 4vw, 4rem); }
.dialog-teaser { color: var(--teal-dark); font-weight: 800; }
.dialog-description { color: var(--muted); }
.dialog-close { position: absolute; top: 1rem; right: 1rem; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); font-size: 1.3rem; cursor: pointer; }
.question-dialog-copy { position: relative; padding: clamp(2rem, 6vw, 5rem); }
.question-dialog-copy h2 { max-width: 720px; margin-bottom: 2rem; font-size: clamp(2rem, 4vw, 3.7rem); }
.question-answer { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; align-items: start; padding: 1rem 0; border-top: 1px solid var(--line); }
.question-answer span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--lime); font-weight: 900; }
.question-answer p { margin: 0; color: var(--muted); }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .site-nav { position: absolute; top: 84px; right: 1rem; left: 1rem; display: none; flex-direction: column; align-items: stretch; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav.legal-nav { position: static; display: flex; flex-direction: row; align-items: center; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { max-width: 720px; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(1), .feature-card:nth-child(8) { grid-column: span 1; }
  .support-panel, .cta-panel, .flyer-panel { grid-template-columns: 1fr; }
  .sport-card { flex-basis: calc((100% - 1rem) / 2); }
  .support-panel img { max-height: 520px; }
}

@media (max-width: 680px) {
  .site-header { min-height: 72px; }
  .logo img { width: 104px; height: 54px; }
  .site-nav.legal-nav a:not(.button) { display: none; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero { padding-top: 3rem; }
  .hero-badge { right: -.5rem; bottom: -1.5rem; }
  .benefits, .feature-grid, .process { grid-template-columns: 1fr; }
  .sport-overview img { aspect-ratio: 4 / 3; }
  .sport-overview figcaption { align-items: flex-start; flex-direction: column; }
  .sport-overview figcaption .button { display: none; }
  .sport-slider-heading { align-items: flex-end; }
  .story-intro { display: block; }
  .story-intro strong:not(:nth-of-type(2)) { display: none; }
  .story-intro span { display: none; }
  .sport-card { flex-basis: 88%; }
  .feature-card, .feature-card img { min-height: 380px; }
  .process article:not(:last-child)::after { display: none; }
  .footer-inner, .dialog-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .dialog-grid img { min-height: 260px; max-height: 38vh; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
