:root {
  --bg: #09090b;
  --bg-soft: #111113;
  --surface: #171719;
  --surface-2: #202023;
  --line: rgba(255,255,255,.11);
  --line-strong: rgba(255,255,255,.2);
  --text: #f7f7f5;
  --muted: #a2a2a7;
  --faint: #6e6e73;
  --white: #fff;
  --black: #080809;
  --radius: 26px;
  --container: 1180px;
  --header-h: 82px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body { margin: 0; background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.5; overflow-x: hidden; }
body.menu-open, body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-shell { position: relative; padding: 120px 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; padding: 12px 18px; background: white; color: black; border-radius: 12px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; height: var(--header-h); z-index: 100; border-bottom: 1px solid transparent; background: rgba(9,9,11,.68); backdrop-filter: blur(18px); transition: border-color .25s, background .25s; }
.site-header.scrolled { border-color: var(--line); background: rgba(9,9,11,.9); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 24px; font-weight: 800; letter-spacing: -.8px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a, .text-link { color: #c6c6ca; font-size: 14px; font-weight: 650; transition: color .2s; }
.main-nav a:hover, .text-link:hover { color: white; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 1.5px; background: white; margin: 6px; transition: transform .2s; }

.button { border: 1px solid white; background: white; color: #0a0a0b; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 20px; font-weight: 800; font-size: 14px; cursor: pointer; transition: transform .22s, background .22s, color .22s, border-color .22s; }
.button:hover { transform: translateY(-2px); background: #dcdcdf; border-color: #dcdcdf; }
.button-small { padding: 11px 18px; }
.button-large { padding: 16px 25px; font-size: 15px; }
.button-ghost { border-color: var(--line-strong); background: rgba(255,255,255,.035); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.35); }
.button-dark { background: #09090b; color: white; border-color: #09090b; }
.button-dark:hover { background: #252528; border-color: #252528; }
.button-outline-dark { background: transparent; color: #09090b; border-color: rgba(0,0,0,.25); }
.button-outline-dark:hover { background: rgba(0,0,0,.07); border-color: rgba(0,0,0,.4); }
.full-width { width: 100%; }

.eyebrow { display: flex; align-items: center; gap: 10px; color: #b7b7bb; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: rgba(0,0,0,.58); justify-content: center; }
h1,h2,h3,p { margin-top: 0; }
h1,h2 { letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(54px, 7.5vw, 102px); margin: 28px 0 30px; max-width: 850px; }
h2 { font-size: clamp(44px, 6vw, 76px); margin: 22px 0 28px; }
h1 em, h2 em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.05em; }
.section-heading { max-width: 850px; margin-bottom: 62px; }
.section-heading > p { color: var(--muted); max-width: 650px; font-size: 18px; line-height: 1.7; }
.split-heading { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.split-heading > div { max-width: 780px; }
.split-heading > p { max-width: 380px; margin-bottom: 34px; }

.hero { min-height: 100vh; padding-top: calc(var(--header-h) + 82px); padding-bottom: 56px; overflow: hidden; background: radial-gradient(circle at 75% 35%, rgba(255,255,255,.08), transparent 27%), linear-gradient(180deg,#0b0b0d 0%,#09090b 88%); }
.hero-glow { position: absolute; width: 750px; height: 750px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -200px; top: 100px; box-shadow: 0 0 140px rgba(255,255,255,.035) inset; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(430px,.9fr); align-items: center; gap: 60px; }
.hero-copy { position: relative; z-index: 2; }
.hero-lead { max-width: 650px; color: #b3b3b7; font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 13px; margin-top: 38px; flex-wrap: wrap; }
.hero-actions.centered { justify-content: center; }
.hero-notes { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 30px; color: #77777d; font-size: 12px; font-weight: 700; }
.hero-notes span::before { content: "•"; color: white; margin-right: 8px; }
.hero-visual { min-height: 670px; display: grid; place-items: center; position: relative; }
.phone-frame { width: 332px; height: 660px; padding: 10px; border-radius: 49px; background: linear-gradient(145deg,#4a4a4f,#111113 16%,#020203 55%,#323236); box-shadow: 0 48px 120px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.18) inset; transform: rotate(2deg); position: relative; z-index: 2; }
.phone-speaker { position: absolute; width: 84px; height: 22px; border-radius: 0 0 16px 16px; background: #050506; left: 50%; top: 10px; transform: translateX(-50%); z-index: 4; }
.app-screen { height: 100%; border-radius: 40px; background: #0c0c0e; padding: 35px 18px 15px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); }
.app-topbar { display: flex; justify-content: space-between; align-items: center; }
.app-topbar small { display: block; color: #6f6f75; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.app-topbar strong { display: block; font-size: 19px; margin-top: 2px; }
.avatar { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: white; color: black; font-weight: 900; }
.balance-card { margin-top: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: 23px; padding: 18px; background: radial-gradient(circle at 90% 0,rgba(255,255,255,.18),transparent 33%),linear-gradient(135deg,#242427,#121214); }
.balance-card small { color: #aaaab0; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.balance-card div { display: flex; align-items: baseline; gap: 7px; margin-top: 6px; }
.balance-card strong { font-size: 43px; line-height: 1; }
.balance-card span { font-weight: 900; }
.balance-card p { color: #a9a9ae; font-size: 10px; margin: 8px 0 0; }
.app-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin-top: 12px; }
.app-tile { border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: #171719; padding: 13px; min-height: 100px; }
.app-tile > span { font-size: 17px; color: #d5d5d8; }
.app-tile strong,.app-tile small { display: block; }
.app-tile strong { font-size: 12px; margin-top: 10px; }
.app-tile small { color: #68686e; font-size: 9px; margin-top: 3px; }
.next-card { display: flex; gap: 12px; align-items: center; margin-top: 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: 13px; background: #171719; }
.next-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 12px; background: white; color: black; font-size: 10px; }
.next-card small,.next-card strong,.next-card span { display: block; }
.next-card small { color: #6c6c72; font-size: 8px; text-transform: uppercase; }
.next-card strong { font-size: 11px; margin-top: 2px; }
.next-card span { color: #85858a; font-size: 9px; margin-top: 2px; }
.app-nav { display: flex; justify-content: space-around; margin-top: 16px; color: #56565c; font-size: 13px; }
.app-nav span:first-child { color: white; }
.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.15); background: rgba(28,28,31,.84); backdrop-filter: blur(14px); box-shadow: 0 18px 50px rgba(0,0,0,.3); border-radius: 17px; padding: 13px 15px; font-size: 11px; }
.floating-chip strong,.floating-chip small { display: block; }
.floating-chip small { color: #808086; margin-top: 2px; }
.chip-icon,.rank-medal { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: white; color: black; font-weight: 900; }
.chip-top { top: 92px; left: -10px; animation: float 5s ease-in-out infinite; }
.chip-bottom { bottom: 90px; right: -12px; animation: float 5s 1.2s ease-in-out infinite; }
.rank-medal { background: #2a2a2e; color: white; border: 1px solid var(--line-strong); }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.08); }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 660px; height: 660px; }
.hero-footer { border-top: 1px solid var(--line); padding-top: 34px; margin-top: 45px; display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.hero-footer p { color: #77777d; font-size: 13px; margin: 0; }
.sport-line { display: flex; align-items: center; gap: 15px; color: #606066; font-size: 10px; letter-spacing: .15em; font-weight: 800; }
.sport-line i { width: 3px; height: 3px; border-radius: 50%; background: #4e4e53; }
@keyframes float { 50% { transform: translateY(-9px); } }

.problem-section { background: #f1f1ef; color: #0b0b0c; }
.problem-section .eyebrow { color: #606065; }
.problem-section .section-heading > p { color: #55555a; }
.before-after { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: stretch; }
.comparison-card { min-height: 430px; border-radius: 32px; padding: 42px; }
.muted-card { background: #dfdfdc; color: #77777b; }
.bright-card { background: #0a0a0b; color: white; box-shadow: 0 25px 60px rgba(0,0,0,.12); }
.comparison-label { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.comparison-card h3 { font-size: 33px; letter-spacing: -.04em; margin: 38px 0 42px; color: inherit; }
.comparison-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 21px; }
.comparison-card li { display: flex; align-items: center; gap: 14px; font-size: 15px; font-weight: 650; }
.comparison-card li span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; border: 1px solid currentColor; font-size: 13px; }
.comparison-arrow { display: grid; place-items: center; color: #0b0b0c; font-size: 25px; }

.pillars-section { background: var(--bg); }
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pillar-card { min-height: 520px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; padding: 32px; background: linear-gradient(155deg,rgba(255,255,255,.055),rgba(255,255,255,.015)); }
.pillar-card::after { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.035); right: -140px; top: -140px; }
.pillar-number { color: #5f5f65; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.pillar-symbol { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; border: 1px solid var(--line-strong); margin-top: 42px; font-size: 22px; }
.pillar-card h3 { font-size: 34px; letter-spacing: -.04em; margin: 28px 0 15px; }
.pillar-card > p { color: #98989e; line-height: 1.7; }
.mini-ui { position: absolute; inset: auto 24px 24px; border-radius: 20px; border: 1px solid var(--line); background: #101012; padding: 17px; box-shadow: 0 16px 36px rgba(0,0,0,.22); }
.news-ui small,.news-ui strong,.news-ui span { display: block; }
.news-ui small { color: #66666d; font-size: 8px; letter-spacing: .1em; }
.news-ui strong { font-size: 13px; margin-top: 8px; }
.news-ui span { color: #7f7f85; font-size: 10px; margin-top: 5px; line-height: 1.5; }
.team-ui { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.team-ui div { text-align: center; border-right: 1px solid var(--line); }
.team-ui div:last-child { border: 0; }
.team-ui b,.team-ui span { display: block; }
.team-ui b { font-size: 18px; }
.team-ui span { color: #707076; font-size: 8px; margin-top: 4px; }
.reward-ui { display: flex; align-items: center; gap: 10px; }
.reward-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 12px; background: white; color: black; }
.reward-ui div:nth-child(2) { flex: 1; }
.reward-ui small,.reward-ui strong { display: block; }
.reward-ui small { color: #707076; font-size: 7px; letter-spacing: .08em; }
.reward-ui strong { font-size: 10px; margin-top: 4px; }
.reward-ui > b { font-size: 11px; }

.feature-showcase { background: #111113; overflow: hidden; }
.feature-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 70px; }
.feature-copy h2 { font-size: clamp(45px,5vw,68px); }
.feature-copy > p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.check-list { list-style: none; padding: 0; margin: 35px 0; display: grid; gap: 14px; }
.check-list li { color: #d2d2d5; display: flex; align-items: center; gap: 12px; }
.check-list span { width: 23px; height: 23px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 10px; }
.inline-link { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid #777; padding-bottom: 5px; font-weight: 800; }
.desktop-panel { width: 760px; border-radius: 20px; border: 1px solid rgba(255,255,255,.14); background: #0b0b0d; box-shadow: 0 40px 100px rgba(0,0,0,.45); overflow: hidden; transform: perspective(1200px) rotateY(-7deg) rotateX(3deg); transform-origin: left center; }
.desktop-bar { height: 42px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 7px; padding: 0 15px; }
.desktop-bar i { width: 8px; height: 8px; border-radius: 50%; background: #3d3d42; }
.desktop-bar span { margin-left: 10px; color: #5f5f65; font-size: 9px; }
.desktop-body { min-height: 470px; display: grid; grid-template-columns: 155px 1fr; }
.desktop-body aside { border-right: 1px solid var(--line); padding: 18px 13px; display: flex; flex-direction: column; gap: 7px; }
.side-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 11px; }
.side-brand img { width: 23px; height: 23px; }
.desktop-body aside > span { color: #616168; font-size: 9px; padding: 9px 10px; border-radius: 8px; }
.desktop-body aside > span.active { background: white; color: black; font-weight: 800; }
.desktop-content { padding: 28px; }
.dashboard-title { display: flex; align-items: center; justify-content: space-between; }
.dashboard-title small { color: #66666c; font-size: 8px; letter-spacing: .1em; }
.dashboard-title h3 { font-size: 26px; margin: 3px 0 0; }
.dashboard-title button { background: white; color: black; border: 0; border-radius: 999px; padding: 8px 16px; font-size: 9px; font-weight: 900; }
.dashboard-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 25px; }
.dashboard-stats div { border: 1px solid var(--line); border-radius: 13px; padding: 16px; background: #141416; }
.dashboard-stats b,.dashboard-stats span { display: block; }
.dashboard-stats b { font-size: 19px; }
.dashboard-stats span { color: #6e6e74; font-size: 8px; margin-top: 4px; }
.scouting-list { margin-top: 18px; border: 1px solid var(--line); border-radius: 15px; overflow: hidden; }
.scouting-list > div { display: flex; align-items: center; gap: 12px; padding: 14px; border-bottom: 1px solid var(--line); }
.scouting-list > div:last-child { border: 0; }
.scouting-list > div > span { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-size: 8px; }
.scouting-list p { flex: 1; margin: 0; }
.scouting-list b,.scouting-list small { display: block; }
.scouting-list b { font-size: 10px; }
.scouting-list small { color: #606066; font-size: 8px; margin-top: 3px; }
.scouting-list em { font-style: normal; color: #aaa; }

.vc-section { background: #f1f1ef; color: #0a0a0b; overflow: hidden; }
.vc-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.vc-copy .eyebrow { color: #5d5d62; }
.vc-copy > p { color: #55555a; font-size: 18px; line-height: 1.7; }
.metric-list { margin-top: 42px; display: grid; }
.metric-list > div { display: flex; gap: 22px; padding: 24px 0; border-top: 1px solid rgba(0,0,0,.14); }
.metric-list > div:last-child { border-bottom: 1px solid rgba(0,0,0,.14); }
.metric-list > div > b { color: #949499; font-size: 11px; letter-spacing: .1em; padding-top: 5px; }
.metric-list strong,.metric-list small { display: block; }
.metric-list strong { font-size: 17px; }
.metric-list small { color: #6d6d72; margin-top: 7px; line-height: 1.55; }
.vc-visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.vc-coin { width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle at 35% 30%,#fff 0,#cfcfd2 20%,#57575b 52%,#111113 78%); box-shadow: 0 45px 70px rgba(0,0,0,.22), inset 0 0 0 10px #171719, inset 0 0 0 12px #76767a; color: white; display: flex; align-items: center; justify-content: center; gap: 8px; transform: rotate(-8deg); position: relative; z-index: 2; }
.vc-coin span { font-size: 105px; font-weight: 950; letter-spacing: -.12em; text-shadow: 0 5px 15px rgba(0,0,0,.35); }
.vc-coin strong { font-size: 23px; margin-top: 75px; }
.coin-ring { position: absolute; border: 1px solid rgba(0,0,0,.12); border-radius: 50%; }
.ring-a { width: 440px; height: 440px; }
.ring-b { width: 590px; height: 590px; }
.reward-card { position: absolute; z-index: 3; width: 215px; border-radius: 18px; padding: 17px; background: white; box-shadow: 0 22px 50px rgba(0,0,0,.14); border: 1px solid rgba(0,0,0,.08); }
.reward-card small,.reward-card strong,.reward-card span { display: block; }
.reward-card small { color: #96969b; font-size: 8px; letter-spacing: .1em; }
.reward-card strong { font-size: 12px; margin-top: 8px; }
.reward-card span { font-size: 11px; font-weight: 900; margin-top: 10px; }
.reward-one { left: 0; top: 120px; transform: rotate(-5deg); }
.reward-two { right: 0; bottom: 105px; transform: rotate(5deg); }

.roles-section { background: var(--bg); }
.role-tabs { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 5px; gap: 4px; margin-bottom: 30px; }
.role-tab { border: 0; background: transparent; color: #77777d; padding: 11px 22px; border-radius: 999px; cursor: pointer; font-weight: 800; font-size: 13px; }
.role-tab.active { background: white; color: black; }
.role-panel { min-height: 460px; border: 1px solid var(--line); border-radius: 32px; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; background: #121214; }
.role-copy { padding: 55px; border-right: 1px solid var(--line); }
.role-kicker { color: #6f6f75; font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.role-copy h3 { font-size: 38px; line-height: 1.08; letter-spacing: -.045em; margin: 22px 0; }
.role-copy > p { color: var(--muted); line-height: 1.7; }
.role-copy ul { padding: 0; margin: 32px 0 0; list-style: none; display: grid; gap: 13px; color: #d2d2d5; }
.role-copy li::before { content: "✓"; margin-right: 12px; color: #777; }
.role-art { padding: 50px; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at center,rgba(255,255,255,.07),transparent 55%); }
.org-card { min-width: 145px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); background: #19191c; border-radius: 16px; padding: 14px; box-shadow: 0 15px 30px rgba(0,0,0,.18); }
.org-card img { width: 34px; height: 34px; }
.org-card span { flex: 1; }
.org-card small,.org-card strong { display: block; }
.org-card small { color: #5f5f66; font-size: 7px; letter-spacing: .08em; }
.org-card strong { font-size: 10px; margin-top: 4px; }
.org-card b { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: #28282c; font-size: 9px; }
.org-main { min-width: 250px; }
.org-line { height: 65px; width: 1px; background: var(--line-strong); position: relative; }
.org-line::after { content: ""; position: absolute; width: 400px; height: 1px; background: var(--line-strong); bottom: 0; left: 50%; transform: translateX(-50%); }
.org-row { display: flex; gap: 22px; margin-top: 22px; }
.role-art[data-role-art="coach"] .org-line,.role-art[data-role-art="coach"] .org-row,.role-art[data-role-art="player"] .org-line,.role-art[data-role-art="player"] .org-row { display: none; }
.role-art[data-role-art="coach"]::before,.role-art[data-role-art="player"]::before { content: ""; width: 300px; height: 310px; border: 1px solid var(--line); border-radius: 35px; background: linear-gradient(155deg,#242427,#111113); box-shadow: 0 25px 55px rgba(0,0,0,.35); }
.role-art[data-role-art="coach"] .org-main,.role-art[data-role-art="player"] .org-main { position: absolute; min-width: 240px; }

.steps-section { background: #111113; }
.steps-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.steps-grid li { min-height: 265px; padding: 34px 28px; border-right: 1px solid var(--line); }
.steps-grid li:last-child { border: 0; }
.steps-grid li > span { color: #57575d; font-size: 11px; letter-spacing: .12em; font-weight: 900; }
.steps-grid h3 { font-size: 23px; margin: 75px 0 12px; letter-spacing: -.035em; }
.steps-grid p { color: #7f7f85; font-size: 14px; line-height: 1.65; }

.pricing-section { background: #f1f1ef; color: #0a0a0b; }
.pricing-section .eyebrow { color: #5f5f64; }
.pricing-section .section-heading > p { color: #5b5b60; }
.billing-toggle { width: max-content; max-width: 100%; display: flex; align-items: center; gap: 5px; margin: -18px auto 42px; padding: 5px; border: 1px solid rgba(0,0,0,.12); border-radius: 999px; background: #e5e5e2; }
.billing-option { border: 0; border-radius: 999px; padding: 11px 18px; background: transparent; color: #5e5e63; font: inherit; font-size: 12px; font-weight: 900; cursor: pointer; transition: background .2s,color .2s,box-shadow .2s; }
.billing-option span { margin-left: 5px; font-size: 9px; font-weight: 800; opacity: .68; }
.billing-option.active { background: #0a0a0b; color: white; box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.price-card { position: relative; min-height: 500px; display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,.13); border-radius: 26px; padding: 28px; background: #e6e6e3; }
.price-card.featured { background: #0a0a0b; color: white; transform: translateY(-12px); box-shadow: 0 25px 55px rgba(0,0,0,.16); }
.price-badge { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 999px; background: white; color: black; font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.price-name { font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: #69696e; }
.featured .price-name { color: #8f8f95; }
.price-value { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-top: 26px; }
.price-value strong { font-size: 30px; font-weight: 900; letter-spacing: -.04em; }
.price-value small { color: #727277; font-size: 11px; font-weight: 800; }
.price-equivalent { min-height: 18px; margin-top: 5px; color: #77777c; font-size: 10px; font-weight: 700; }
.featured .price-equivalent,.featured .price-value small { color: #89898f; }
.price-subtitle { color: #68686d; font-size: 13px; min-height: 55px; margin-top: 8px; line-height: 1.55; }
.featured .price-subtitle { color: #85858b; }
.price-limits { display: flex; gap: 18px; padding: 23px 0; margin: 20px 0; border-top: 1px solid rgba(0,0,0,.12); border-bottom: 1px solid rgba(0,0,0,.12); }
.featured .price-limits { border-color: var(--line); }
.price-limits div { flex: 1; }
.price-limits b,.price-limits span { display: block; }
.price-limits b { font-size: 18px; }
.price-limits span { color: #77777c; font-size: 9px; margin-top: 3px; }
.price-features { list-style: none; padding: 0; margin: 0 0 25px; display: grid; gap: 11px; font-size: 12px; color: #55555a; }
.featured .price-features { color: #b9b9bd; }
.price-features li::before { content: "✓"; margin-right: 8px; font-weight: 900; }
.price-card .button { margin-top: auto; }
.price-card:not(.featured) .button { background: transparent; color: black; border-color: rgba(0,0,0,.22); }
.price-card:not(.featured) .button:hover { background: black; color: white; }
.pricing-note { text-align: center; margin: 45px 0 0; color: #626267; }
.pricing-note button { border: 0; background: transparent; color: black; text-decoration: underline; cursor: pointer; font-weight: 800; }

.faq-section { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; }
.faq-heading { position: sticky; top: 130px; align-self: start; }
.faq-heading h2 { font-size: 56px; }
.faq-heading > p { color: var(--muted); line-height: 1.7; margin-bottom: 30px; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; font-size: 17px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary span { color: #77777d; font-size: 22px; transition: transform .2s; }
details[open] summary span { transform: rotate(45deg); }
details p { color: #96969c; max-width: 690px; padding: 0 45px 27px 0; line-height: 1.7; }

.final-cta { background: #111113; padding-top: 0; }
.cta-box { background: #f1f1ef; color: #080809; border-radius: 42px; text-align: center; padding: 80px 30px; overflow: hidden; }
.cta-mark { width: 95px; height: 95px; margin: 0 auto 35px; }
.cta-box h2 { font-size: clamp(55px,7vw,90px); margin-bottom: 25px; }
.cta-box > p { color: #5e5e63; max-width: 580px; margin: 0 auto; font-size: 18px; line-height: 1.65; }

.site-footer { padding: 75px 0 25px; background: #070708; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 60px; padding-bottom: 60px; }
.footer-brand > p { color: #6f6f75; max-width: 320px; font-size: 13px; line-height: 1.7; margin-top: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-links strong { font-size: 12px; margin-bottom: 7px; }
.footer-links a,.footer-links button { border: 0; padding: 0; background: transparent; color: #737379; font-size: 12px; cursor: pointer; }
.footer-links a:hover,.footer-links button:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid var(--line); color: #525258; font-size: 10px; }

.contact-dialog { width: min(660px,calc(100% - 26px)); max-height: calc(100vh - 28px); padding: 0; border: 1px solid var(--line-strong); border-radius: 28px; background: #111113; color: white; box-shadow: 0 40px 100px rgba(0,0,0,.65); }
.contact-dialog::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(8px); }
.contact-card { position: relative; padding: 42px; overflow-y: auto; max-height: calc(100vh - 30px); }
.contact-card h2 { font-size: 46px; margin-bottom: 15px; }
.contact-card > p { color: #88888e; font-size: 14px; }
.dialog-close { position: absolute; top: 20px; right: 20px; border: 1px solid var(--line); background: #1d1d20; color: white; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 20px; }
.contact-card label { display: grid; gap: 7px; margin-top: 16px; color: #c9c9cc; font-size: 11px; font-weight: 800; }
.contact-card input,.contact-card select,.contact-card textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; background: #09090b; color: white; padding: 13px 14px; outline: none; resize: vertical; }
.contact-card input:focus,.contact-card select:focus,.contact-card textarea:focus { border-color: rgba(255,255,255,.45); }
.contact-card .button { margin-top: 22px; }
.contact-card > small { display: block; color: #64646a; text-align: center; margin-top: 13px; }
.contact-card > small a { color: #aaa; text-decoration: underline; }
.contact-card .privacy-check { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; font-weight: 500; line-height: 1.55; }
.contact-card .privacy-check input { width: 16px; height: 16px; margin-top: 2px; padding: 0; accent-color: white; }
.contact-card .privacy-check a { color: white; text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .main-nav { gap: 18px; }
  .text-link { display: none; }
  .hero-grid { grid-template-columns: 1fr .75fr; gap: 25px; }
  .hero-visual { transform: scale(.9); margin-inline: -35px; }
  .feature-layout { grid-template-columns: 1fr; }
  .desktop-panel { width: 100%; transform: none; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
  .price-card.featured { transform: none; }
  .vc-grid { gap: 40px; }
  .org-row { gap: 8px; }
  .org-card { min-width: 120px; }
}

@media (max-width: 820px) {
  :root { --header-h: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-shell { padding: 85px 0; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav { position: fixed; inset: var(--header-h) 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px 14px 28px; background: rgba(9,9,11,.98); border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 15px 12px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-actions .button { padding: 10px 14px; font-size: 12px; }
  .brand { font-size: 21px; }
  .brand img { width: 37px; height: 37px; }
  .hero { padding-top: calc(var(--header-h) + 60px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions,.hero-notes { justify-content: center; }
  .hero-visual { transform: scale(.86); min-height: 615px; margin-top: -15px; margin-bottom: -45px; }
  .hero-footer { flex-direction: column; text-align: center; }
  .split-heading { display: block; }
  .split-heading > p { margin-bottom: 0; }
  .before-after { grid-template-columns: 1fr; gap: 12px; }
  .comparison-arrow { height: 45px; transform: rotate(90deg); }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 430px; }
  .feature-layout { gap: 55px; }
  .desktop-body { grid-template-columns: 115px 1fr; }
  .desktop-content { padding: 20px; }
  .vc-grid { grid-template-columns: 1fr; }
  .vc-visual { order: 2; }
  .role-panel { grid-template-columns: 1fr; }
  .role-copy { border-right: 0; border-bottom: 1px solid var(--line); }
  .org-row { flex-wrap: wrap; justify-content: center; }
  .org-line::after { width: 270px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid li:nth-child(2) { border-right: 0; }
  .steps-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .faq-heading { position: static; }
  .footer-top { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  h1 { font-size: 52px; }
  h2 { font-size: 44px; }
  .nav-actions { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-notes { flex-direction: column; gap: 8px; }
  .hero-visual { transform: scale(.73); margin-inline: -70px; min-height: 535px; margin-top: -45px; margin-bottom: -70px; }
  .chip-top { left: 8px; }
  .chip-bottom { right: 4px; }
  .sport-line { display: none; }
  .comparison-card { padding: 28px; min-height: 390px; }
  .comparison-card h3 { font-size: 28px; }
  .pillar-card { padding: 26px; }
  .feature-showcase { overflow: hidden; }
  .desktop-panel { width: 700px; transform: scale(.62); transform-origin: left top; margin-bottom: -180px; }
  .feature-visual { overflow: visible; }
  .vc-visual { min-height: 500px; transform: scale(.8); margin: -45px; }
  .role-tabs { display: grid; grid-template-columns: repeat(3,1fr); width: 100%; }
  .role-tab { padding: 11px 10px; }
  .role-copy { padding: 32px 25px; }
  .role-copy h3 { font-size: 31px; }
  .role-art { padding: 40px 15px; min-height: 380px; overflow: hidden; }
  .org-main { min-width: 210px; }
  .org-row { width: 450px; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid li { border-right: 0; border-bottom: 1px solid var(--line); min-height: 220px; }
  .steps-grid li:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps-grid h3 { margin-top: 45px; }
  .billing-toggle { width: 100%; margin-top: -10px; }
  .billing-option { flex: 1; padding-inline: 10px; }
  .billing-option span { display: block; margin: 2px 0 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 455px; }
  .faq-heading h2 { font-size: 44px; }
  .cta-box { padding: 60px 20px; border-radius: 28px; }
  .cta-box .hero-actions { align-items: stretch; }
  .footer-top { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
  .contact-card { padding: 35px 22px 25px; }
  .contact-card h2 { font-size: 37px; }
}

@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 { opacity: 1; transform: none; }
}
