:root {
  --green-950: #032718;
  --green-900: #054b2e;
  --green-800: #08653c;
  --green-700: #087443;
  --green-600: #10a957;
  --green-500: #19c766;
  --green-300: #82eba8;
  --green-100: #d9fbe5;
  --green-50: #f1fbf5;
  --ink: #0d1913;
  --muted: #5c6c63;
  --line: #dce8e1;
  --paper: #ffffff;
  --soft: #f5f8f6;
  --radius-sm: 15px;
  --radius: 26px;
  --radius-lg: 42px;
  --shadow: 0 24px 70px rgba(3, 71, 40, 0.13);
  --shadow-strong: 0 40px 100px rgba(2, 30, 17, 0.28);
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; min-width: 320px; overflow-x: clip; color: var(--ink); background: var(--paper); }
body, button, a { -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }

::selection { color: #fff; background: var(--green-700); }
:focus-visible { outline: 3px solid #f2c84b; outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--green-900);
  font-weight: 850;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.section-shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

.site-header,
.nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px) saturate(140%);
  transition: min-height .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled,
.nav { min-height: 70px; border-color: rgba(16, 26, 21, .08); box-shadow: 0 10px 35px rgba(16, 26, 21, .06); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: auto;
  color: var(--green-900);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -.045em;
}
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; }

.main-nav,
.nav nav { display: flex; align-items: center; gap: 30px; }
.main-nav a,
.nav nav a { position: relative; color: #314139; font-size: 13px; font-weight: 780; }
.main-nav a::after,
.nav nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--green-600);
  transition: right .24s ease;
}
.main-nav a:hover::after,
.nav nav a:hover::after { right: 0; }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 13px;
  background: var(--green-50);
  cursor: pointer;
}
.menu-toggle span { width: 19px; height: 2px; display: block; margin: 3px auto; border-radius: 99px; background: var(--green-900); }

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
}
.button:hover,
.nav-cta:hover { transform: translateY(-2px); }
.button-small,
.nav-cta { min-height: 43px; padding-inline: 19px; font-size: 12px; }
.button-primary { color: #fff; background: var(--green-600); box-shadow: 0 16px 36px rgba(16, 169, 87, .25); }
.button-primary:hover { background: var(--green-700); box-shadow: 0 20px 44px rgba(16, 169, 87, .32); }
.button-dark,
.nav-cta { color: #fff; background: var(--green-950); }
.button-white { color: var(--green-900); background: #fff; box-shadow: 0 18px 42px rgba(3, 39, 24, .18); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--green-800); font-size: 14px; font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(4px); }

.status-pill,
.kicker,
.eyebrow {
  width: max-content;
  max-width: 100%;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 35px;
  padding: 0 13px;
  border: 1px solid #c7ead4;
  border-radius: 999px;
  background: rgba(239, 253, 245, .82);
}
.status-pill > span { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 6px rgba(25, 199, 102, .12); animation: status-pulse 2s ease-out infinite; }
.kicker-light { color: var(--green-300); }

.hero {
  min-height: 860px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 42px;
  padding-top: 118px;
  padding-bottom: 66px;
}
.hero-copy { position: relative; z-index: 4; max-width: 600px; }
.hero h1 {
  max-width: 640px;
  margin: 25px 0 23px;
  font-size: clamp(64px, 6.5vw, 94px);
  line-height: .88;
  letter-spacing: -.075em;
}
.hero h1 em { display: block; color: var(--green-600); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-copy > p { max-width: 550px; margin-bottom: 31px; color: var(--muted); font-size: 17px; line-height: 1.68; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.platforms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 37px; }
.platforms > span { display: flex; align-items: center; gap: 9px; min-height: 38px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); background: #fff; font-size: 10px; font-weight: 700; }
.platforms b { color: var(--ink); font-size: 11px; }

.hero-visual {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  min-height: 690px;
  border: 1px solid #cce7d6;
  border-radius: 54px;
  background:
    radial-gradient(circle at 48% 37%, rgba(116, 237, 158, .7), transparent 36%),
    linear-gradient(145deg, #e9fbef 0%, #d7f7e2 47%, #f7fbf8 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 34px 90px rgba(8, 101, 60, .13);
  isolation: isolate;
  perspective: 1200px;
}
.hero-visual::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(8, 116, 67, .1); border-radius: 38px; pointer-events: none; }
.hero-halo { position: absolute; border: 1px solid rgba(8, 116, 67, .17); border-radius: 50%; }
.halo-one { width: 520px; height: 520px; top: 80px; left: 50%; transform: translateX(-50%); }
.halo-two { width: 390px; height: 390px; top: 145px; left: 50%; border-style: dashed; transform: translateX(-50%); animation: spin 34s linear infinite; }

.phone {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 43px;
  background: #0b1711;
  box-shadow: 0 33px 68px rgba(2, 43, 23, .25), inset 0 0 0 1px rgba(0,0,0,.58);
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.phone img { width: 100%; height: 100%; border-radius: 35px; object-fit: cover; }
.phone-speaker { position: absolute; z-index: 4; top: 14px; left: 50%; width: 30%; height: 18px; border-radius: 0 0 14px 14px; background: #0b1711; transform: translateX(-50%); }
.phone-main {
  width: 316px;
  height: 684px;
  top: 28px;
  left: 50%;
  transform: translateX(calc(-50% + var(--pointer-x) * 9px)) translateY(calc(var(--pointer-y) * 7px)) rotateY(calc(var(--pointer-x) * -4deg)) rotateX(calc(var(--pointer-y) * 3deg));
  animation: phone-float 5.5s ease-in-out infinite;
}
.phone-side { z-index: 2; width: 218px; height: 472px; top: 123px; opacity: .96; }
.phone-side-left { left: -23px; transform: translate(calc(var(--pointer-x) * -13px), calc(var(--pointer-y) * -8px)) rotate(-9deg); }
.phone-side-right { right: -19px; transform: translate(calc(var(--pointer-x) * 16px), calc(var(--pointer-y) * 9px)) rotate(9deg); }
.phone-side .phone-speaker { height: 13px; top: 12px; }

.hero-label {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 17px;
  color: var(--green-900);
  background: rgba(255,255,255,.88);
  box-shadow: 0 17px 40px rgba(5, 75, 46, .14);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 850;
  line-height: 1.2;
}
.hero-label i,
.hero-label b { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; color: #fff; background: var(--green-600); font-style: normal; }
.hero-label i::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.25); }
.label-find { top: 81px; left: 38px; animation: label-float 4.6s ease-in-out infinite; }
.label-create { right: 30px; bottom: 66px; animation: label-float 4.6s .8s ease-in-out infinite; }

.capability-strip { overflow: hidden; color: #fff; background: var(--green-950); }
.capability-track { width: max-content; min-height: 116px; display: flex; align-items: center; animation: marquee 34s linear infinite; }
.capability-track span { display: inline-flex; align-items: center; gap: 16px; padding: 0 42px; white-space: nowrap; font-size: clamp(18px, 2.1vw, 28px); font-weight: 820; letter-spacing: -.03em; }
.capability-track i { color: var(--green-300); font-family: Georgia, serif; font-size: 12px; font-style: italic; font-weight: 500; }

.story-section { padding: 135px 0 115px; color: #fff; background: var(--green-950); }
.story-heading { display: grid; grid-template-columns: 1fr .38fr; align-items: end; column-gap: 70px; }
.story-heading .kicker { grid-column: 1 / -1; color: var(--green-300); }
.story-heading h2 { max-width: 830px; margin: 18px 0 0; font-size: clamp(51px, 6.3vw, 86px); line-height: .93; letter-spacing: -.07em; }
.story-heading > p { margin: 0; color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.7; }
.story-layout { display: grid; grid-template-columns: .84fr 1.16fr; gap: 90px; margin-top: 85px; }
.story-steps { padding-bottom: 16vh; }
.story-step { min-height: 67vh; display: grid; grid-template-columns: 55px 1fr; align-content: center; gap: 19px; padding: 50px 0; opacity: .28; transition: opacity .45s ease, transform .45s ease; }
.story-step.is-active { opacity: 1; transform: translateX(8px); }
.story-number { padding-top: 4px; color: var(--green-300); font-family: Georgia, serif; font-size: 14px; font-style: italic; }
.story-step small { display: block; margin-bottom: 18px; color: var(--green-300); font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .16em; }
.story-step h3 { max-width: 520px; margin-bottom: 20px; font-size: clamp(34px, 3.6vw, 54px); line-height: 1; letter-spacing: -.055em; }
.story-step p { max-width: 520px; margin: 0; color: rgba(255,255,255,.66); font-size: 15px; line-height: 1.7; }
.story-mobile-preview { display: none; }

.story-stage { position: sticky; top: 96px; height: calc(100vh - 122px); min-height: 680px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 46px; background: radial-gradient(circle at 50% 46%, #188c53 0%, #075d37 46%, #043723 100%); }
.story-orbit { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.orbit-a { width: 570px; height: 570px; }
.orbit-b { width: 430px; height: 430px; border-style: dashed; animation: orbit-spin 32s linear infinite reverse; }
.story-phone { position: relative; z-index: 3; width: 302px; height: 654px; overflow: hidden; padding: 8px; border: 1px solid rgba(255,255,255,.6); border-radius: 43px; background: #08120d; box-shadow: var(--shadow-strong); }
.story-phone .phone-speaker { top: 13px; }
.story-screen { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); border-radius: 35px; object-fit: cover; opacity: 0; transform: translateY(24px) scale(.985); transition: opacity .55s ease, transform .65s cubic-bezier(.2,.75,.2,1); }
.story-screen.is-active { z-index: 2; opacity: 1; transform: translateY(0) scale(1); }
.story-chip { position: absolute; z-index: 5; min-height: 39px; display: inline-flex; align-items: center; padding: 0 15px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: #fff; background: rgba(3,39,24,.5); backdrop-filter: blur(12px); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .09em; }
.chip-top { top: 16%; right: 8%; animation: label-float 4.8s ease-in-out infinite; }
.chip-bottom { bottom: 13%; left: 8%; animation: label-float 4.8s .7s ease-in-out infinite; }

.features-section { padding-top: 140px; padding-bottom: 150px; }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; }
.section-heading .kicker { grid-column: 1 / -1; }
.section-heading h2,
.trust-intro h2 { max-width: 900px; margin: 17px 0 0; font-size: clamp(48px, 6vw, 80px); line-height: .94; letter-spacing: -.068em; }
.feature-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 20px; margin-top: 65px; }
.feature-card { position: relative; min-height: 650px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); isolation: isolate; }
.feature-card-map { grid-row: span 2; color: #fff; background: linear-gradient(145deg, #063f29, #0c7d49); }
.feature-card-create { min-height: 520px; background: #f3f5fb; }
.feature-card-feed { min-height: 630px; grid-column: 1 / -1; display: grid; grid-template-columns: .82fr 1.18fr; background: var(--green-100); }
.feature-copy { position: relative; z-index: 5; padding: 46px; }
.feature-copy > span { display: block; margin-bottom: 18px; color: var(--green-700); font-size: 10px; font-weight: 950; text-transform: uppercase; letter-spacing: .15em; }
.feature-card-map .feature-copy > span { color: var(--green-300); }
.feature-copy h3 { max-width: 630px; margin-bottom: 16px; font-size: clamp(33px, 3.7vw, 52px); line-height: 1; letter-spacing: -.055em; }
.feature-copy p { max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.feature-card-map .feature-copy p { color: rgba(255,255,255,.7); }
.feature-shot { position: absolute; z-index: 2; overflow: hidden; border: 7px solid #0a1510; border-radius: 35px; background: #fff; box-shadow: 0 27px 65px rgba(2, 36, 19, .28); }
.feature-shot img { width: 100%; height: 100%; object-fit: cover; }
.map-shot { width: 66%; height: 72%; right: -5%; bottom: -10%; transform: rotate(4deg); }
.create-shot { width: 54%; height: 70%; right: -2%; bottom: -9%; transform: rotate(5deg); }
.feed-shot { position: relative; align-self: end; width: 62%; height: 560px; right: auto; bottom: -90px; justify-self: center; transform: rotate(3deg); }
.feature-card-feed .feature-copy { align-self: center; padding: 62px; }
.reaction-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.reaction-pills b { min-height: 35px; display: inline-flex; align-items: center; padding: 0 12px; border: 1px solid rgba(8,116,67,.18); border-radius: 999px; color: var(--green-900); background: rgba(255,255,255,.65); font-size: 10px; }

.sports-section { padding: 130px 0; overflow: hidden; color: #fff; background: linear-gradient(120deg, #06482d, #087443 55%, #0b8a50); }
.sports-inner { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 74px; }
.sports-copy h2 { max-width: 580px; margin: 17px 0 22px; font-size: clamp(50px, 5.9vw, 78px); line-height: .94; letter-spacing: -.068em; }
.sports-copy p { max-width: 550px; margin: 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; }
.sport-cloud { min-height: 520px; display: flex; align-content: center; align-items: center; justify-content: center; flex-wrap: wrap; gap: 13px; padding: 55px 38px; border: 1px solid rgba(255,255,255,.14); border-radius: 48px; background: rgba(3,39,24,.25); }
.sport-pill { display: inline-flex; align-items: center; justify-content: center; min-height: 58px; padding: 0 20px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(255,255,255,.11); backdrop-filter: blur(9px); font-weight: 800; letter-spacing: -.025em; box-shadow: 0 13px 30px rgba(3,39,24,.12); transition: transform .25s ease, background .25s ease; }
.sport-pill:hover { background: rgba(255,255,255,.2); transform: translateY(-5px) rotate(-1deg); }
.sport-pill-sm { font-size: 13px; }
.sport-pill-md { min-height: 66px; padding-inline: 25px; font-size: 17px; }
.sport-pill-lg { min-height: 74px; padding-inline: 29px; font-size: 21px; }
.sport-pill-xl { min-height: 84px; padding-inline: 34px; font-size: 25px; }

.trust-section { padding-top: 140px; padding-bottom: 150px; }
.trust-intro { max-width: 900px; }
.trust-intro > p { max-width: 700px; margin: 24px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 60px; }
.trust-card { min-height: 285px; padding: 32px; border: 1px solid var(--line); border-radius: 28px; background: var(--soft); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.trust-card:hover { border-color: #b9dfc7; box-shadow: var(--shadow); transform: translateY(-7px); }
.trust-card > span { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 58px; border-radius: 15px; color: #fff; background: var(--green-600); font-size: 18px; font-weight: 950; box-shadow: 0 0 0 8px var(--green-100); }
.trust-card h3 { margin-bottom: 10px; font-size: 22px; letter-spacing: -.04em; }
.trust-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

.final-cta { position: relative; min-height: 430px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 44px; margin-bottom: 110px; padding: 72px; overflow: hidden; border-radius: 48px; color: #fff; background: var(--green-600); box-shadow: 0 34px 85px rgba(16,169,87,.28); isolation: isolate; }
.cta-copy { position: relative; z-index: 3; }
.final-cta h2 { margin: 12px 0 9px; font-size: clamp(67px, 8vw, 112px); line-height: .86; letter-spacing: -.075em; }
.final-cta p { max-width: 620px; margin: 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.6; }
.final-cta .button { position: relative; z-index: 3; min-width: 235px; }
.cta-rings { position: absolute; z-index: 1; right: 20%; top: 50%; width: 100px; height: 100px; transform: translateY(-50%); }
.cta-rings i { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.cta-rings i:nth-child(2) { inset: -70px; }
.cta-rings i:nth-child(3) { inset: -140px; }

.site-footer { color: #fff; background: #03180f; }
.footer-main { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 54px; padding-top: 72px; padding-bottom: 65px; }
.brand-light { color: #fff; }
.footer-brand p { max-width: 280px; margin: 20px 0 12px; color: #9cb2a5; font-size: 14px; line-height: 1.55; }
.footer-email { color: var(--green-300); font-size: 13px; font-weight: 750; }
.footer-main nav { display: grid; align-content: start; gap: 12px; }
.footer-main nav strong { margin-bottom: 8px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.footer-main nav a { width: max-content; max-width: 100%; color: #9cb2a5; font-size: 13px; font-weight: 650; }
.footer-main nav a:hover { color: var(--green-300); }
.footer-bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #73877b; font-size: 11px; }

/* Legal and support pages share the official shell. */
.legal-page { min-height: 100vh; padding: 140px 24px 90px; background: linear-gradient(180deg, var(--green-50), #fff 320px); }
.legal-card { width: min(860px, 100%); margin: 0 auto; padding: 54px 60px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.legal-card h1 { margin: 16px 0 10px; font-size: clamp(42px, 6vw, 66px); line-height: 1; letter-spacing: -.055em; }
.legal-card h2 { margin: 40px 0 12px; color: var(--green-900); font-size: 22px; letter-spacing: -.025em; }
.legal-card p { color: #526159; font-size: 15px; line-height: 1.75; }
.legal-card a:not(.button) { color: var(--green-700); font-weight: 750; text-decoration: underline; text-decoration-color: #a7d8b8; text-underline-offset: 3px; }
.legal-updated { padding-bottom: 25px; border-bottom: 1px solid var(--line); font-size: 12px !important; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.support-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 42px; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .78s cubic-bezier(.2,.75,.2,1), transform .78s cubic-bezier(.2,.75,.2,1); }
.js .reveal-left { transform: translateX(-34px); }
.js .reveal-scale { transform: translateY(24px) scale(.975); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.trust-card:nth-child(2) { transition-delay: .08s; }
.trust-card:nth-child(3) { transition-delay: .16s; }
.feature-grid > :nth-child(2) { transition-delay: .08s; }

@keyframes status-pulse { 0% { box-shadow: 0 0 0 0 rgba(25,199,102,.25); } 70%, 100% { box-shadow: 0 0 0 9px rgba(25,199,102,0); } }
@keyframes phone-float { 0%, 100% { margin-top: 0; } 50% { margin-top: -11px; } }
@keyframes label-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes spin { to { transform: translateX(-50%) rotate(360deg); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1120px) {
  .site-header, .nav { padding-inline: 24px; }
  .main-nav, .nav nav { gap: 19px; }
  .hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(760px, 100%); min-height: 720px; margin-inline: auto; }
  .story-heading { grid-template-columns: 1fr .5fr; }
  .story-layout { gap: 45px; }
  .story-phone { width: 274px; height: 593px; }
  .feature-card-feed .feature-copy { padding: 48px; }
  .sports-inner { gap: 42px; }
}

@media (max-width: 860px) {
  .site-header, .nav { min-height: 70px; }
  .main-nav { position: absolute; top: 62px; left: 16px; right: 16px; display: none; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 13px; border-radius: 10px; }
  .main-nav a:hover { background: var(--soft); }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .nav nav { display: none; }
  .hero { gap: 42px; }
  .story-heading { grid-template-columns: 1fr; gap: 23px; }
  .story-heading .kicker { grid-column: auto; }
  .story-heading > p { max-width: 650px; }
  .story-layout { grid-template-columns: 1fr; margin-top: 52px; }
  .story-steps { display: grid; gap: 20px; padding-bottom: 0; }
  .story-step { min-height: 0; display: grid; grid-template-columns: 45px 1fr; align-content: start; padding: 35px; border: 1px solid rgba(255,255,255,.13); border-radius: 31px; opacity: 1; background: rgba(255,255,255,.05); }
  .story-step.is-active { transform: none; }
  .story-mobile-preview { grid-column: 1 / -1; width: min(320px, 86%); display: block; margin: 34px auto -110px; overflow: hidden; padding: 7px; border: 1px solid rgba(255,255,255,.4); border-radius: 37px; background: #09140f; box-shadow: var(--shadow-strong); }
  .story-mobile-preview img { border-radius: 30px; }
  .story-step { overflow: hidden; padding-bottom: 0; }
  .story-step + .story-step { margin-top: 80px; }
  .story-stage { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card-map { grid-row: auto; }
  .feature-card-feed { grid-column: auto; grid-template-columns: 1fr; }
  .feature-card { min-height: 680px; }
  .feature-card-feed { min-height: 900px; }
  .feed-shot { width: min(390px, 66%); height: 610px; margin-inline: auto; }
  .sports-inner { grid-template-columns: 1fr; }
  .sport-cloud { min-height: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card { min-height: 230px; }
  .trust-card > span { margin-bottom: 40px; }
  .final-cta { grid-template-columns: 1fr; padding: 55px 40px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .legal-page { padding-top: 110px; }
}

@media (max-width: 620px) {
  .section-shell { width: min(100% - 28px, 1240px); }
  .brand { font-size: 18px; }
  .brand img { width: 38px; height: 38px; }
  .hero { min-height: auto; padding-top: 118px; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .platforms { align-items: stretch; flex-direction: column; }
  .platforms > span { width: max-content; }
  .hero-visual { min-height: 570px; border-radius: 34px; }
  .hero-visual::before { inset: 13px; border-radius: 24px; }
  .halo-one { width: 390px; height: 390px; top: 90px; }
  .halo-two { width: 290px; height: 290px; top: 142px; }
  .phone-main { width: 248px; height: 537px; top: 17px; }
  .phone-side { width: 158px; height: 342px; top: 124px; border-radius: 31px; padding: 6px; }
  .phone-side img { border-radius: 25px; }
  .phone-side-left { left: -57px; }
  .phone-side-right { right: -58px; }
  .phone-speaker { top: 12px; height: 14px; }
  .hero-label { padding: 8px 10px; font-size: 8px; }
  .hero-label i, .hero-label b { width: 23px; height: 23px; }
  .label-find { top: 73px; left: 8px; }
  .label-create { right: 7px; bottom: 33px; }
  .capability-track { min-height: 94px; }
  .capability-track span { padding-inline: 28px; }
  .story-section { padding: 92px 0; }
  .story-heading h2, .section-heading h2, .trust-intro h2 { font-size: 43px; }
  .story-step { grid-template-columns: 33px 1fr; padding: 25px 19px 0; border-radius: 25px; }
  .story-step h3 { font-size: 35px; }
  .story-step p { font-size: 13px; }
  .story-mobile-preview { width: 88%; margin-top: 28px; margin-bottom: -80px; border-radius: 31px; }
  .story-mobile-preview img { border-radius: 25px; }
  .story-step + .story-step { margin-top: 60px; }
  .features-section { padding-top: 92px; padding-bottom: 100px; }
  .feature-grid { margin-top: 40px; }
  .feature-card { min-height: 650px; border-radius: 29px; }
  .feature-copy, .feature-card-feed .feature-copy { padding: 29px 25px; }
  .feature-copy h3 { font-size: 35px; }
  .map-shot { width: 78%; height: 69%; }
  .create-shot { width: 68%; height: 67%; }
  .feature-card-feed { min-height: 820px; }
  .feed-shot { width: 74%; height: 530px; bottom: -70px; }
  .sports-section { padding: 92px 0; }
  .sports-copy h2 { font-size: 45px; }
  .sport-cloud { gap: 9px; padding: 32px 16px; border-radius: 30px; }
  .sport-pill { min-height: 52px; padding-inline: 15px; font-size: 13px; }
  .sport-pill-lg, .sport-pill-xl { min-height: 59px; padding-inline: 18px; font-size: 16px; }
  .trust-section { padding-top: 92px; padding-bottom: 100px; }
  .trust-grid { margin-top: 40px; }
  .trust-card { padding: 26px; border-radius: 23px; }
  .final-cta { min-height: 430px; margin-bottom: 70px; padding: 43px 25px; border-radius: 29px; }
  .final-cta h2 { font-size: 69px; }
  .final-cta .button { width: 100%; min-width: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; padding-top: 55px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { min-height: 105px; align-items: flex-start; justify-content: center; flex-direction: column; }
  .legal-page { padding: 100px 14px 55px; }
  .legal-card { padding: 34px 23px; border-radius: 22px; }
  .legal-card h1 { font-size: 43px; }
  .support-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .js .reveal { opacity: 1; transform: none; }
  .capability-track { animation: none; }
}
