:root {
  --ink: #06111f;
  --ink-2: #0c1d30;
  --paper: #f5f8f7;
  --white: #ffffff;
  --blue: #2864ff;
  --cyan: #17d5e8;
  --aqua: #32e6c4;
  --lime: #c9ff67;
  --orange: #ff9466;
  --text: #172538;
  --muted: #637083;
  --line: rgba(10, 30, 51, .13);
  --radius-sm: 16px;
  --radius: 26px;
  --radius-lg: 40px;
  --shadow: 0 24px 70px rgba(2, 18, 37, .13);
  --display: "Plus Jakarta Sans", "Manrope", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--aqua); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

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

.section { padding: 132px 0; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

.site-header.scrolled {
  background: rgba(6, 17, 31, .86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1360px, calc(100% - 48px));
  height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.6px;
}

.brand img { width: 39px; height: 39px; object-fit: contain; }

.desktop-nav { display: flex; align-items: center; gap: 34px; }

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--aqua);
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: right;
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.desktop-cta { justify-self: end; }

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.15px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.button:hover { transform: translateY(-3px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.button span { font-size: 18px; line-height: 1; }
.button-small { min-height: 44px; padding: 0 19px; font-size: 13px; }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { box-shadow: 0 12px 32px rgba(10, 229, 205, .18); }
.button-primary { background: var(--lime); color: var(--ink); box-shadow: 0 14px 38px rgba(201, 255, 103, .16); }
.button-primary:hover { background: #d9ff91; box-shadow: 0 18px 44px rgba(201, 255, 103, .25); }
.button-ghost { border-color: rgba(255, 255, 255, .24); color: var(--white); background: rgba(255, 255, 255, .06); }
.button-ghost:hover { border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .11); }
.button-outline { border-color: var(--line); background: transparent; color: var(--ink); }
.button-outline:hover { border-color: var(--blue); color: var(--blue); }

.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 920px;
  padding: 160px 0 54px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(40, 100, 255, .42), transparent 26%),
    radial-gradient(circle at 15% 42%, rgba(23, 213, 232, .13), transparent 31%),
    linear-gradient(145deg, #06111f 0%, #091b31 55%, #07243a 100%);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -34%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 150px rgba(255,255,255,.012);
}

.hero-water { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-water::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .045;
  background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 42%, #000);
  mask-image: linear-gradient(to right, #000, transparent 42%, #000);
}

.orb { position: absolute; border-radius: 50%; filter: blur(2px); animation: drift 10s ease-in-out infinite; }
.orb-one { width: 280px; height: 280px; top: 20%; right: 7%; background: rgba(50, 230, 196, .09); }
.orb-two { width: 160px; height: 160px; top: 62%; left: 4%; background: rgba(40, 100, 255, .18); animation-delay: -4s; }
.lane { position: absolute; width: 50vw; height: 1px; left: -10vw; background: linear-gradient(90deg, transparent, rgba(50,230,196,.2), transparent); transform: rotate(-18deg); }
.lane-one { top: 24%; animation: laneMove 12s linear infinite; }
.lane-two { top: 46%; animation: laneMove 16s linear infinite reverse; }
.lane-three { top: 68%; animation: laneMove 20s linear infinite; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 60px;
  align-items: center;
}

.hero-copy { padding-bottom: 20px; }

.eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light { color: var(--aqua); }

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 6px rgba(50,230,196,.1);
  animation: livePulse 2s ease-out infinite;
}

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: inherit;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 800;
  letter-spacing: -5.7px;
  line-height: .98;
}

.hero h1 span { color: transparent; -webkit-text-stroke: 1.25px rgba(255, 255, 255, .48); }

.hero-lead {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 30px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}

.text-link:hover { color: var(--aqua); }

.play-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  place-items: center;
}

.hero-note { display: flex; margin-top: 42px; align-items: center; gap: 14px; }
.hero-note p { margin: 0; color: rgba(255,255,255,.52); font-size: 12px; line-height: 1.5; }
.hero-note strong { color: rgba(255,255,255,.85); font-weight: 700; }
.avatar-stack { display: flex; padding-left: 10px; }
.avatar-stack span { display: grid; width: 30px; height: 30px; margin-left: -10px; border: 2px solid var(--ink); border-radius: 50%; background: var(--blue); place-items: center; color: white; font-size: 9px; font-weight: 800; }
.avatar-stack span:nth-child(2) { background: var(--aqua); color: var(--ink); }
.avatar-stack span:nth-child(3) { background: var(--orange); }

.hero-product {
  position: relative;
  padding: 34px 0 58px;
  perspective: 1200px;
}

.product-halo {
  position: absolute;
  top: -12%;
  right: -10%;
  width: 78%;
  height: 92%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,100,255,.34), rgba(40,100,255,0) 68%);
  filter: blur(30px);
  animation: breathe 5s ease-in-out infinite;
}

.browser-frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  background: #eff3f8;
  box-shadow: 0 38px 100px rgba(0, 3, 15, .55), 0 0 0 8px rgba(255,255,255,.025);
  transform: rotateY(-4deg) rotateX(1deg);
  transition: transform .18s ease-out;
}

.browser-topbar {
  height: 44px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #dde5ee;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d7dfe9; }
.browser-dots i:first-child { background: #ff8b73; }
.browser-dots i:nth-child(2) { background: #ffd363; }
.browser-dots i:nth-child(3) { background: #66d6a0; }
.browser-address { justify-self: center; width: min(260px, 100%); padding: 6px 14px; border-radius: 8px; background: #f1f4f7; color: #8793a2; font-size: 9px; text-align: center; }
.lock { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: #68c79b; }
.demo-label { justify-self: end; color: #8d98a6; font-size: 8px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; }
.dashboard-viewport { position: relative; overflow: hidden; background: #eef2f6; }
.dashboard-viewport img { width: 100%; height: auto; transform: scale(1.02); transform-origin: top left; }
.scan-line { position: absolute; top: 0; left: 0; width: 100%; height: 100px; background: linear-gradient(to bottom, transparent, rgba(50,230,196,.07), transparent); animation: scan 5s linear infinite; }

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-width: 188px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 16px;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.93);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(3,10,25,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: cardFloat 5s ease-in-out infinite;
}

.float-card small, .float-card strong { display: block; line-height: 1.35; }
.float-card small { color: #8691a0; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; }
.float-card strong { margin-top: 2px; font-size: 12px; }
.float-icon { display: grid; width: 34px; height: 34px; border-radius: 11px; place-items: center; flex: 0 0 auto; font-size: 13px; font-weight: 800; }
.check-icon { color: #09886d; background: #c9faed; }
.bell-icon { color: #8d5c00; background: #fff0b3; }
.attendance-card { left: -34px; bottom: 20px; }
.progress-card { top: 0; right: 48px; animation-delay: -2s; }
.notification-card { right: -28px; bottom: 92px; animation-delay: -3.5s; }
.mini-chart { display: flex; width: 34px; height: 34px; padding: 7px; border-radius: 11px; align-items: end; justify-content: center; gap: 2px; background: #dbe7ff; }
.mini-chart i { width: 4px; height: 35%; border-radius: 2px; background: var(--blue); }
.mini-chart i:nth-child(2) { height: 62%; }
.mini-chart i:nth-child(3) { height: 50%; }
.mini-chart i:nth-child(4) { height: 82%; }

.hero-bottom {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 42px;
  left: 0;
  display: flex;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.11);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.hero-bottom p { margin: 0; color: rgba(255,255,255,.45); font-size: 12px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.proof-list { display: flex; gap: 24px; color: rgba(255,255,255,.62); font-size: 11px; }
.proof-list b { margin-right: 6px; color: var(--aqua); }

.capability-ticker { overflow: hidden; padding: 17px 0; background: var(--aqua); color: var(--ink); }
.ticker-track { display: flex; width: max-content; align-items: center; animation: ticker 36s linear infinite; }
.ticker-track span { padding: 0 26px; font-size: 12px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; }
.ticker-track i { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }

.section-heading { margin-bottom: 64px; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 80px; }
.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -4.1px;
  line-height: 1.03;
}

.section-heading h2 em, .final-cta h2 em, .comparison-copy h2 em, .faq-intro h2 em { color: var(--blue); font-style: normal; }
.section-heading > p, .split-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-heading.centered { max-width: 800px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.centered p { max-width: 620px; margin: 24px auto 0; }

.section-intro { background: var(--paper); }
.bento-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: auto; gap: 22px; }
.bento-card {
  position: relative;
  min-width: 0;
  min-height: 420px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.bento-card:hover { transform: translateY(-7px); border-color: rgba(40,100,255,.3); box-shadow: var(--shadow); }
.bento-wide { grid-column: 1 / -1; }
.bento-card h3 { position: relative; z-index: 2; margin-bottom: 13px; color: var(--ink); font-size: 27px; letter-spacing: -1.2px; line-height: 1.18; }
.bento-card p { position: relative; z-index: 2; max-width: 520px; margin-bottom: 0; color: var(--muted); font-size: 15px; }
.card-number { position: absolute; top: 26px; right: 29px; color: #9ca8b6; font-size: 11px; font-weight: 800; letter-spacing: 1px; }
.feature-icon { display: grid; width: 46px; height: 46px; margin-bottom: 28px; border-radius: 14px; place-items: center; }
.feature-icon svg { width: 24px; height: 24px; fill: currentColor; }
.session-icon { background: #dffcf6; color: #069878; }
.bolt-icon { background: #dce7ff; color: var(--blue); }
.wallet-icon { background: #fff0e7; color: #e36c39; }
.message-icon { background: #e9e2ff; color: #7951ed; }
.layers-icon { background: #dce7ff; color: var(--blue); }

.attendance-feature { min-height: 520px; display: grid; grid-template-columns: .8fr 1.2fr; background: linear-gradient(145deg, #fff 52%, #e8f4ff); }
.attendance-feature .card-copy { max-width: 460px; align-self: center; }
.feature-tag { display: inline-flex; margin-top: 26px; padding: 7px 12px; border-radius: 99px; background: #dffcf6; color: #04795f; font-size: 10px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.attendance-visual { position: relative; display: grid; place-items: center; }
.session-sheet { position: relative; z-index: 2; width: min(430px, 90%); padding: 25px; border: 1px solid #d8e3ed; border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: 0 30px 60px rgba(15,40,70,.16); transform: rotate(2deg); }
.session-sheet-head { display: flex; padding-bottom: 18px; align-items: center; justify-content: space-between; gap: 20px; }
.session-sheet-head span,.session-sheet-head strong { display: block; }
.session-sheet-head span { margin-bottom: 4px; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: 1px; }
.session-sheet-head strong { color: var(--ink); font-size: 16px; }
.session-sheet-head > b { padding: 7px 10px; border-radius: 99px; color: #05765e; background: #dffcf6; font-size: 9px; }
.session-progress { height: 5px; margin-bottom: 14px; border-radius: 6px; background: #edf1f5; overflow: hidden; }
.session-progress i { display: block; width: 78%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue),var(--aqua)); animation: progressIn 1.4s ease; }
.athlete-row { display: flex; padding: 12px 0; border-bottom: 1px solid #edf1f4; align-items: center; gap: 11px; }
.athlete-row > span { display: grid; width: 34px; height: 34px; border-radius: 11px; flex: 0 0 auto; place-items: center; color: var(--blue); background: #e5edff; font-size: 9px; font-weight: 800; }
.athlete-row p { flex: 1; margin: 0; line-height: 1.35; }
.athlete-row p b,.athlete-row p small { display: block; }
.athlete-row p b { color: var(--ink); font-size: 10px; }
.athlete-row p small { color: #8b97a5; font-size: 8px; }
.athlete-row em { padding: 5px 8px; border-radius: 99px; color: #08795f; background: #dff9ed; font-size: 7px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.athlete-row em.absent { color: #a36208; background: #fff1d6; }
.session-sheet button { width: 100%; margin-top: 18px; padding: 11px; border: 0; border-radius: 11px; color: white; background: var(--blue); font-size: 9px; font-weight: 800; }
.pulse-ring { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(40,100,255,.15); border-radius: 50%; animation: ringPulse 3s ease-out infinite; }

.performance-feature { min-height: 600px; background: var(--ink); color: white; }
.performance-feature h3 { color: white; }
.performance-feature p { color: rgba(255,255,255,.58); }
.performance-chart { position: absolute; right: 0; bottom: 0; left: 0; height: 270px; padding: 30px 32px 26px; background: rgba(255,255,255,.025); }
.chart-label { display: flex; position: relative; z-index: 2; align-items: center; justify-content: space-between; }
.chart-label span { color: rgba(255,255,255,.55); font-size: 11px; text-transform: uppercase; letter-spacing: .8px; }
.chart-label strong { font-size: 26px; letter-spacing: -1.4px; }
.performance-chart svg { position: absolute; right: 0; bottom: 42px; left: 0; width: 100%; height: 160px; overflow: visible; }
.chart-line { fill: none; stroke: var(--aqua); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 600; stroke-dashoffset: 600; }
.performance-feature.is-visible .chart-line { animation: drawLine 2.2s .3s ease forwards; }
.performance-chart circle { fill: var(--ink); stroke: var(--aqua); stroke-width: 4; }
.chart-delta { position: absolute; bottom: 21px; right: 27px; color: var(--aqua); font-size: 10px; font-weight: 800; }

.finance-feature { min-height: 400px; background: #fff9f5; }
.payment-row { position: absolute; right: 34px; bottom: 105px; left: 34px; display: flex; padding: 16px 18px; border: 1px solid rgba(228,109,57,.15); border-radius: 15px; align-items: center; justify-content: space-between; background: white; font-size: 12px; box-shadow: 0 14px 30px rgba(100,50,20,.06); }
.payment-row b { padding: 5px 9px; border-radius: 99px; background: #dff9e9; color: #148248; font-size: 9px; text-transform: uppercase; }
.payment-row.muted { bottom: 42px; color: #7f8b99; box-shadow: none; opacity: .72; }
.payment-row.muted strong { color: #e36c39; font-size: 11px; }

.community-feature { min-height: 520px; background: #f7f3ff; }
.message-stack { position: absolute; right: 30px; bottom: 34px; left: 30px; }
.message-stack > div { display: flex; margin-top: 10px; padding: 15px; border: 1px solid rgba(121,81,237,.14); border-radius: 16px; align-items: center; gap: 11px; background: white; box-shadow: 0 14px 34px rgba(67,42,130,.08); transition: transform .25s ease; }
.message-stack > div:hover { transform: translateX(5px); }
.message-avatar { display: grid; width: 36px; height: 36px; border-radius: 11px; background: #e9e2ff; place-items: center; color: #6842dc; font-size: 10px; font-weight: 800; }
.message-avatar.alt { background: #dffcf6; color: #078168; }
.message-stack p { flex: 1; margin: 0; line-height: 1.4; }
.message-stack b, .message-stack small { display: block; }
.message-stack b { color: var(--ink); font-size: 11px; }
.message-stack small { margin-top: 3px; color: #8290a0; font-size: 9px; }
.message-stack i { color: #a2acb8; font-size: 8px; font-style: normal; }

.operations-feature { min-height: 690px; background: linear-gradient(125deg,#f2f6ff,#fff); }
.operations-copy { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 80px; }
.operations-copy p { padding-bottom: 4px; }
.module-pills { position: absolute; right: 38px; bottom: 38px; left: 38px; display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; }
.module-pills span { display: flex; padding: 14px 10px; border: 1px solid rgba(40,100,255,.13); border-radius: 13px; align-items: center; gap: 8px; background: white; color: #506073; font-size: 10px; font-weight: 700; transition: color .2s ease, background .2s ease, transform .2s ease; }
.module-pills span:hover { color: white; background: var(--blue); transform: translateY(-3px); }
.module-pills b { color: var(--blue); font-size: 8px; }
.module-pills span:hover b { color: var(--aqua); }

.product-tour { position: relative; color: white; background: var(--ink); overflow: hidden; }
.product-tour::before { content: ""; position: absolute; inset: 0; opacity: .045; background-image: radial-gradient(circle, white 1px, transparent 1px); background-size: 30px 30px; }
.tour-glow { position: absolute; top: -200px; left: 30%; width: 600px; height: 600px; border-radius: 50%; background: rgba(40,100,255,.2); filter: blur(100px); }
.product-tour .container { position: relative; z-index: 2; }
.product-tour .section-heading h2 { color: white; }
.product-tour .section-heading h2 em { color: var(--aqua); }
.product-tour .section-heading p { color: rgba(255,255,255,.55); }
.tour-shell { display: grid; min-height: 630px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; grid-template-columns: 260px 1fr; background: rgba(255,255,255,.035); box-shadow: 0 40px 100px rgba(0,0,0,.25); overflow: hidden; }
.tour-tabs { padding: 18px; border-right: 1px solid rgba(255,255,255,.1); background: rgba(3,12,23,.45); }
.tour-tab { position: relative; width: 100%; padding: 19px 16px 19px 43px; border: 0; border-radius: 15px; color: rgba(255,255,255,.45); background: transparent; cursor: pointer; text-align: left; transition: background .25s ease, color .25s ease, transform .25s ease; }
.tour-tab + .tour-tab { margin-top: 6px; }
.tour-tab:hover { color: white; background: rgba(255,255,255,.05); }
.tour-tab.active { color: white; background: rgba(40,100,255,.22); }
.tour-tab > span { position: absolute; top: 21px; left: 15px; color: var(--aqua); font-size: 9px; font-weight: 800; }
.tour-tab b, .tour-tab small { display: block; }
.tour-tab b { margin-bottom: 3px; font-size: 13px; }
.tour-tab small { color: inherit; font-size: 9px; opacity: .58; }
.tour-display { min-width: 0; background: #eef3f8; color: var(--ink); }
.app-chrome { display: flex; height: 60px; padding: 0 26px; align-items: center; justify-content: space-between; background: #0d1929; color: white; }
.app-brand { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 13px; }
.app-brand img { width: 25px; height: 25px; }
.app-actions { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.7); font-size: 9px; }
.app-actions > span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.25); }
.tour-panel { min-height: 570px; padding: 34px; animation: panelIn .4s ease both; }
.tour-panel[hidden] { display: none; }
.panel-head { display: flex; margin-bottom: 28px; align-items: end; justify-content: space-between; gap: 20px; }
.panel-head small { display: block; margin-bottom: 7px; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: 1.2px; }
.panel-head h3 { margin: 0; font-size: 23px; letter-spacing: -1px; }
.panel-head button, .phone-feed button { padding: 9px 13px; border: 0; border-radius: 9px; background: var(--blue); color: white; font-size: 9px; font-weight: 800; }
.metric-grid { display: grid; margin-bottom: 19px; grid-template-columns: repeat(3,1fr); gap: 14px; }
.metric-grid > div { padding: 18px; border: 1px solid #d9e2ec; border-radius: 15px; background: white; }
.metric-grid span, .metric-grid strong, .metric-grid small { display: block; }
.metric-grid span { color: #6c7a8c; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.metric-grid strong { margin: 7px 0 2px; font-family: var(--display); font-size: 29px; }
.metric-grid small { color: #8994a2; font-size: 8px; }
.metric-grid small b { color: #16976b; }
.overview-row { display: grid; grid-template-columns: 1.35fr .65fr; gap: 14px; }
.overview-chart, .activity-list { min-width: 0; height: 285px; padding: 20px; border: 1px solid #d9e2ec; border-radius: 15px; background: white; }
.widget-title { display: flex; align-items: center; justify-content: space-between; }
.widget-title b { font-size: 11px; }
.widget-title span { color: #929dab; font-size: 8px; }
.bar-chart { display: flex; height: 172px; padding-top: 22px; align-items: end; justify-content: space-around; gap: 10px; border-bottom: 1px solid #e4eaf0; }
.bar-chart i { width: 22px; height: var(--h); border-radius: 7px 7px 2px 2px; background: linear-gradient(to top,var(--blue),#6b91ff); transform: scaleY(0); transform-origin: bottom; }
.tour-panel.active .bar-chart i { animation: growBar .7s calc(var(--delay, 0s) + .2s) ease forwards; }
.bar-chart i:nth-child(2) { --delay:.07s; }.bar-chart i:nth-child(3) { --delay:.14s; }.bar-chart i:nth-child(4) { --delay:.21s; }.bar-chart i:nth-child(5) { --delay:.28s; }.bar-chart i:nth-child(6) { --delay:.35s; }.bar-chart i:nth-child(7) { --delay:.42s; }
.bar-labels { display: flex; padding-top: 7px; justify-content: space-around; color: #9da8b5; font-size: 7px; }
.activity-list p { display: grid; margin: 15px 0 0; padding-top: 14px; border-top: 1px solid #eef2f5; grid-template-columns: 8px 1fr auto; align-items: start; gap: 8px; line-height: 1.35; }
.activity-list p > i { width: 6px; height: 6px; margin-top: 3px; border-radius: 50%; }
.activity-list i.green { background: #20c997; }.activity-list i.blue { background: var(--blue); }.activity-list i.yellow { background: #ffbc44; }
.activity-list p span { color: #718092; font-size: 8px; }
.activity-list p b { color: var(--ink); }
.activity-list p small { color: #a3adba; font-size: 7px; }
.athlete-focus { display: grid; grid-template-columns: 1.2fr .8fr; gap: 15px; }
.athlete-card, .big-time { display: flex; min-height: 142px; padding: 24px; border: 1px solid #dbe3ec; border-radius: 16px; align-items: center; background: white; }
.athlete-avatar { display: grid; width: 58px; height: 58px; margin-right: 16px; border-radius: 50%; background: #dce7ff; place-items: center; color: var(--blue); font-size: 14px; font-weight: 800; }
.athlete-card small, .athlete-card b, .athlete-card p { display: block; margin: 0; }
.athlete-card small { color: var(--blue); font-size: 7px; font-weight: 800; letter-spacing: .8px; }
.athlete-card b { margin-top: 5px; font-size: 14px; }
.athlete-card p { color: #8793a0; font-size: 9px; }
.athlete-card > strong { margin-left: auto; color: #0c9e73; font-size: 11px; }
.big-time { display: block; }
.big-time small { display: block; color: #8793a0; font-size: 8px; }
.big-time > strong { display: block; margin-top: 8px; font-size: 32px; letter-spacing: -2px; }
.big-time > strong span { font-size: 18px; color: #667386; }
.big-time p { margin: 2px 0 0; color: #8a96a4; font-size: 8px; }.big-time p b { color: #0b9d70; }
.pace-chart { position: relative; display: flex; height: 250px; margin-top: 17px; padding: 195px 20px 0; border: 1px solid #dbe3ec; border-radius: 16px; justify-content: space-between; background: white; color: #99a4b0; font-size: 7px; overflow: hidden; }
.pace-chart svg { position: absolute; inset: 25px 0 40px; width: 100%; height: 160px; overflow: visible; }
.pace-chart path { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 900; stroke-dashoffset: 900; }.tour-panel.active .pace-chart path { animation: drawLine 2s .1s ease forwards; }.pace-chart circle { fill: white; stroke: var(--blue); stroke-width: 4; }
.family-layout { display: grid; grid-template-columns: 320px 1fr; gap: 45px; align-items: center; }
.phone-feed { width: 240px; min-height: 435px; margin: 0 auto; padding: 18px; border: 8px solid #111e30; border-radius: 30px; background: #f5f7fa; box-shadow: 0 25px 45px rgba(30,50,70,.16); }
.phone-feed-top { display: flex; margin-bottom: 23px; align-items: center; gap: 7px; font-size: 10px; }.phone-feed-top img { width: 24px; }.phone-feed-top span { margin-left: auto; color: var(--orange); font-size: 8px; }
.phone-feed article { padding: 18px; border-radius: 16px; background: linear-gradient(145deg,var(--blue),#684df0); color: white; }.phone-feed article small { font-size: 7px; font-weight: 800; letter-spacing: .8px; }.phone-feed article h4 { margin: 14px 0 3px; font-size: 15px; }.phone-feed article p { margin-bottom: 15px; color: rgba(255,255,255,.7); font-size: 8px; }.phone-feed article button { background: white; color: var(--blue); }
.feed-message { display: flex; margin-top: 14px; padding: 13px; border-radius: 14px; align-items: center; gap: 9px; background: white; box-shadow: 0 8px 20px rgba(20,40,60,.07); }.feed-message > span { display: grid; width: 30px; height: 30px; border-radius: 50%; background: #dffcf6; place-items: center; color: #08775f; font-size: 8px; font-weight: 800; }.feed-message p { flex: 1; margin: 0; line-height: 1.35; }.feed-message b,.feed-message small { display: block; }.feed-message b { font-size: 8px; }.feed-message small { color: #8995a4; font-size: 7px; }.feed-message i { color: #a2adb8; font-size: 6px; font-style: normal; }
.family-copy > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }.family-copy h4 { margin: 10px 0 24px; font-size: 27px; letter-spacing: -1.4px; }.family-copy ul { padding: 0; list-style: none; }.family-copy li { margin: 13px 0; color: #667588; font-size: 11px; }.family-copy li i { display: inline-grid; width: 22px; height: 22px; margin-right: 9px; border-radius: 50%; background: #dffcf6; place-items: center; color: #098168; font-style: normal; }
.finance-summary { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 14px; }.finance-summary > div { padding: 22px; border: 1px solid #dbe3ec; border-radius: 16px; background: white; }.finance-summary small,.finance-summary strong { display: block; }.finance-summary small { color: #7e8b9a; font-size: 8px; text-transform: uppercase; }.finance-summary strong { margin: 9px 0; font-size: 31px; letter-spacing: -1.5px; }.finance-summary p { margin: 0; color: #8995a3; font-size: 8px; }.finance-summary > div > span { display: block; height: 7px; border-radius: 8px; background: #e7ecf1; overflow: hidden; }.finance-summary > div > span i { display: block; width: var(--p); height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--blue),var(--aqua)); animation: progressIn 1.2s ease; }
.finance-table { margin-top: 17px; border: 1px solid #dbe3ec; border-radius: 15px; background: white; overflow: hidden; }.finance-table > div { display: grid; padding: 14px 20px; border-top: 1px solid #edf1f4; grid-template-columns: 1.2fr .8fr .5fr; align-items: center; font-size: 9px; }.finance-table > div:first-child { border: 0; background: #f7f9fb; color: #7a8796; font-size: 8px; text-transform: uppercase; }.finance-table em { justify-self: start; padding: 4px 8px; border-radius: 99px; background: #def7e9; color: #16834d; font-size: 7px; font-style: normal; font-weight: 800; }.finance-table em.pending { background: #fff0d5; color: #a76e05; }
.tour-footnote { margin: 15px 7px 0; color: rgba(255,255,255,.35); font-size: 10px; text-align: right; }

.community-section { background: #eef4f8; }
.role-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.role-card { position: relative; min-height: 610px; padding: 32px; border-radius: 24px; overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.role-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.admin-role { background: var(--blue); color: white; }.coach-role { background: var(--aqua); color: var(--ink); }.family-role { background: #ffdfc9; color: var(--ink); }
.role-top { display: flex; margin-bottom: 35px; align-items: center; justify-content: space-between; font-size: 9px; font-weight: 800; letter-spacing: 1px; }.role-top i { display: grid; width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; place-items: center; font-style: normal; opacity: .55; }
.role-card h3 { margin-bottom: 18px; font-size: 31px; letter-spacing: -1.8px; line-height: 1.08; }.role-card > p { min-height: 78px; color: inherit; font-size: 13px; opacity: .72; }.role-card ul { padding: 0; list-style: none; }.role-card li { padding: 9px 0; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; opacity: .75; }.role-card li::before { content: "↗"; margin-right: 9px; }
.role-visual { position: absolute; right: 25px; bottom: 25px; left: 25px; min-height: 148px; padding: 21px; border: 1px solid rgba(255,255,255,.24); border-radius: 18px; background: rgba(255,255,255,.13); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform .35s ease; }.role-card:hover .role-visual { transform: translateY(-5px) rotate(-1deg); }.role-visual > span,.role-visual > strong { display: block; }.role-visual > span { font-size: 8px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; opacity: .55; }.role-visual > strong { margin-top: 8px; font-size: 18px; }
.admin-visual > div { display: flex; height: 52px; margin-top: 14px; align-items: end; gap: 8px; }.admin-visual i { flex: 1; border-radius: 4px 4px 0 0; background: rgba(255,255,255,.55); }.admin-visual i:nth-child(1) { height: 40%; }.admin-visual i:nth-child(2) { height: 68%; }.admin-visual i:nth-child(3) { height: 50%; }.admin-visual i:nth-child(4) { height: 88%; background: var(--lime); }.admin-visual i:nth-child(5) { height: 73%; }
.coach-visual { border-color: rgba(4,50,48,.12); background: rgba(255,255,255,.46); }.coach-visual > div { display: flex; margin-top: 19px; align-items: center; gap: 7px; }.coach-visual b { font-size: 7px; }.coach-visual i { flex: 1; height: 3px; border-radius: 2px; background: rgba(6,17,31,.18); }
.family-visual { border-color: rgba(80,40,20,.11); background: rgba(255,255,255,.5); }.family-visual > div { position: relative; height: 8px; margin-top: 24px; border-radius: 9px; background: rgba(120,70,40,.12); }.family-visual > div i { display: block; width: 74%; height: 100%; border-radius: inherit; background: var(--blue); }.family-visual > div b { position: absolute; right: 22%; top: -25px; color: var(--blue); font-size: 9px; }
.club-proof { position: relative; display: grid; margin-top: 90px; padding: 48px; border: 1px solid var(--line); border-radius: 28px; grid-template-columns: 180px 1fr 150px; align-items: center; gap: 50px; background: white; overflow: hidden; }.club-logo-wrap { display: grid; width: 150px; height: 150px; padding: 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; place-items: center; background: var(--ink-2); box-shadow: 0 18px 38px rgba(6,17,31,.2); overflow: hidden; isolation: isolate; }.club-logo-wrap img { width: 100%; height: 100%; border-radius: 0; object-fit: contain; filter: invert(1); mix-blend-mode: screen; transform: none; }.proof-quote > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: 1.3px; }.proof-quote blockquote { max-width: 760px; margin: 14px 0; font-family: var(--display); color: var(--ink); font-size: 22px; font-weight: 700; letter-spacing: -.8px; line-height: 1.45; }.proof-quote p { margin: 0; color: #7a8796; font-size: 11px; }.proof-stamp svg { width: 120px; height: 120px; animation: rotateStamp 22s linear infinite; }.proof-stamp text { fill: var(--blue); font-size: 7px; font-weight: 800; letter-spacing: 1px; }.proof-stamp > svg > path { fill: none; stroke: var(--aqua); stroke-width: 4; stroke-linecap: round; }

.comparison-section { background: white; }
.comparison-grid { display: grid; grid-template-columns: .68fr 1.32fr; align-items: center; gap: 80px; }
.comparison-copy h2,.faq-intro h2 { margin-bottom: 24px; color: var(--ink); font-size: clamp(42px,4.6vw,66px); letter-spacing: -3.5px; line-height: 1.04; }.comparison-copy p,.faq-intro p { max-width: 450px; margin-bottom: 34px; color: var(--muted); font-size: 15px; }.dark-link { color: var(--ink); }.dark-link:hover { color: var(--blue); }.dark-link > span { margin-left: 7px; color: var(--blue); }
.comparison-board { display: grid; padding: 10px; border-radius: 26px; grid-template-columns: 1fr 1fr; gap: 10px; background: #eef2f5; }.comparison-board > div { min-height: 415px; padding: 34px; border-radius: 20px; }.comparison-board > div > span { display: inline-flex; margin-bottom: 38px; padding: 7px 10px; border-radius: 99px; font-size: 8px; font-weight: 800; letter-spacing: 1px; }.comparison-board p { display: flex; margin: 0; padding: 17px 0; border-bottom: 1px solid currentColor; align-items: center; gap: 10px; font-size: 12px; font-weight: 700; opacity: .77; }.comparison-board p i { display: grid; width: 22px; height: 22px; border-radius: 50%; place-items: center; flex: 0 0 auto; font-style: normal; }
.before-column { color: #506073; background: white; }.before-column > span { color: #9b5e49; background: #ffede5; }.before-column p { border-color: #edf0f3; }.before-column p i { background: #ffede5; color: #bd6546; }
.after-column { color: white; background: var(--blue); }.after-column > span { color: var(--ink); background: var(--lime); }.after-column p { border-color: rgba(255,255,255,.14); }.after-column p i { background: rgba(255,255,255,.14); color: var(--aqua); }

.faq-section { background: #f0f6f5; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 100px; }
.faq-intro { position: sticky; top: 130px; }
.faq-list details { border-top: 1px solid var(--line); }.faq-list details:last-child { border-bottom: 1px solid var(--line); }.faq-list summary { display: flex; padding: 27px 3px; align-items: center; justify-content: space-between; gap: 30px; color: var(--ink); cursor: pointer; font-family: var(--display); font-size: 17px; font-weight: 700; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary i { position: relative; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; flex: 0 0 auto; transition: transform .3s ease, background .3s ease; }.faq-list summary i::before,.faq-list summary i::after { content:""; position:absolute; top:50%; left:50%; width:10px; height:1px; background:var(--ink); transform:translate(-50%,-50%); }.faq-list summary i::after { transform:translate(-50%,-50%) rotate(90deg); transition: transform .3s ease; }.faq-list details[open] summary i { background: var(--aqua); transform: rotate(180deg); }.faq-list details[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }.faq-list details p { max-width: 720px; margin: -5px 50px 27px 3px; color: var(--muted); font-size: 14px; animation: faqIn .3s ease; }

.final-cta { position: relative; min-height: 700px; display: grid; padding: 125px 0; place-items: center; color: white; background: radial-gradient(circle at 50% 100%,rgba(23,213,232,.21),transparent 40%),linear-gradient(135deg,#06111f,#09253b); overflow: hidden; }
.final-cta::before { content:""; position:absolute; inset:0; opacity:.05; background-image:linear-gradient(rgba(255,255,255,.7) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.7) 1px,transparent 1px); background-size:60px 60px; }
.cta-current i { position: absolute; left: -10%; width: 120%; height: 230px; border: 1px solid rgba(50,230,196,.12); border-radius: 50%; }.cta-current i:nth-child(1){bottom:-140px}.cta-current i:nth-child(2){bottom:-90px;transform:rotate(-4deg)}.cta-current i:nth-child(3){bottom:-20px;transform:rotate(4deg)}
.cta-content { position: relative; z-index: 2; text-align: center; }.final-cta h2 { margin: 0; font-size: clamp(54px,7vw,96px); letter-spacing: -5.7px; line-height: .98; }.final-cta h2 em { color: var(--aqua); }.final-cta p { max-width: 650px; margin: 28px auto 36px; color: rgba(255,255,255,.6); font-size: 17px; }.cta-actions { display: flex; justify-content: center; gap: 12px; }.cta-assurance { display: flex; margin-top: 32px; justify-content: center; gap: 25px; color: rgba(255,255,255,.48); font-size: 10px; }.cta-assurance span::first-letter { color: var(--aqua); }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.6); background: #030b14; }.footer-main { display: grid; padding-bottom: 60px; grid-template-columns: 1.5fr .7fr 1fr auto; gap: 70px; }.footer-brand .brand { color:white; }.footer-brand p { max-width: 330px; margin: 20px 0 0; font-size: 13px; }.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }.footer-links h3 { margin: 5px 0 11px; color:white; font-family:var(--body); font-size:10px; letter-spacing:1.1px; text-transform:uppercase; }.footer-links a { font-size:12px; transition:color .2s ease; }.footer-links a:hover { color:var(--aqua); }.footer-jump { display:grid; width:50px; height:50px; border:1px solid rgba(255,255,255,.17); border-radius:50%; place-items:center; color:white; transition:background .2s ease,color .2s ease,transform .2s ease; }.footer-jump:hover { color:var(--ink); background:var(--aqua); transform:translateY(-4px); }.footer-bottom { display:flex; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); justify-content:space-between; color:rgba(255,255,255,.3); font-size:10px; }

.cursor-glow { position: fixed; z-index: 200; width: 18px; height: 18px; border: 1px solid rgba(50,230,196,.8); border-radius: 50%; pointer-events: none; opacity: 0; transform: translate(-50%,-50%); transition: width .2s ease,height .2s ease,opacity .2s ease; mix-blend-mode: difference; }
.cursor-glow.active { opacity: .8; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.bento-grid .reveal:nth-child(2),.role-grid .reveal:nth-child(2) { transition-delay: .08s; }.bento-grid .reveal:nth-child(3),.role-grid .reveal:nth-child(3) { transition-delay: .16s; }.bento-grid .reveal:nth-child(4) { transition-delay: .22s; }

@keyframes drift { 0%,100%{transform:translate3d(0,0,0) scale(1)}50%{transform:translate3d(-25px,30px,0) scale(1.08)} }
@keyframes laneMove { from{transform:translateX(-15%) rotate(-18deg)}to{transform:translateX(45%) rotate(-18deg)} }
@keyframes livePulse { 0%{box-shadow:0 0 0 0 rgba(50,230,196,.35)}70%{box-shadow:0 0 0 9px rgba(50,230,196,0)}100%{box-shadow:0 0 0 0 rgba(50,230,196,0)} }
@keyframes breathe { 0%,100%{transform:scale(.95);opacity:.7}50%{transform:scale(1.08);opacity:1} }
@keyframes scan { from{transform:translateY(-120px)}to{transform:translateY(550px)} }
@keyframes cardFloat { 0%,100%{transform:translateY(0)}50%{transform:translateY(-11px)} }
@keyframes ticker { to{transform:translateX(-50%)} }
@keyframes ringPulse { 0%{transform:scale(.75);opacity:.55}100%{transform:scale(1.25);opacity:0} }
@keyframes drawLine { to{stroke-dashoffset:0} }
@keyframes panelIn { from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)} }
@keyframes growBar { to{transform:scaleY(1)} }
@keyframes progressIn { from{width:0} }
@keyframes rotateStamp { to{transform:rotate(360deg)} }
@keyframes faqIn { from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)} }

@media (max-width: 1100px) {
  .hero { min-height: 860px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: clamp(52px,7vw,74px); letter-spacing: -4.5px; }
  .float-card { min-width: 166px; }
  .notification-card { right: -5px; }
  .attendance-card { left: -8px; }
  .split-heading { gap: 40px; }
  .role-card { padding: 27px; }
  .role-card h3 { font-size: 27px; }
  .club-proof { grid-template-columns: 150px 1fr 110px; gap: 32px; }
  .faq-grid { gap: 60px; }
}

@media (max-width: 900px) {
  .section { padding: 100px 0; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav,.desktop-cta { display: none; }
  .menu-toggle { display: flex; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; flex-direction: column; align-items: center; justify-content: center; gap: 6px; background: transparent; }
  .menu-toggle span { width: 17px; height: 1px; background: white; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: -1; top: 0; right: 0; left: 0; height: 100dvh; padding: 120px 30px 40px; display: flex; flex-direction: column; gap: 8px; background: rgba(6,17,31,.98); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: opacity .3s ease,visibility .3s ease,transform .3s ease; }
  .mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu > a:not(.button) { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--display); font-size: 28px; font-weight: 700; }.mobile-menu .button { margin-top: 24px; }
  .hero { min-height: auto; padding: 145px 0 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero h1 { max-width: 760px; font-size: clamp(58px,11vw,88px); }
  .hero-product { margin-top: 50px; }
  .browser-frame { transform: none; }
  .hero-bottom { position: relative; bottom: auto; margin-top: 75px; }
  .split-heading { grid-template-columns: 1fr; align-items: start; }
  .split-heading > p { max-width: 660px; }
  .bento-grid { grid-template-columns: 1fr; }
  .attendance-feature,.operations-copy { grid-template-columns: 1fr 1fr; }
  .bento-card { min-height: 460px; }
  .bento-wide { grid-column: auto; }
  .operations-feature { min-height: 860px; }
  .module-pills { grid-template-columns: repeat(4,1fr); }
  .tour-shell { grid-template-columns: 1fr; }
  .tour-tabs { display: grid; padding: 10px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); grid-template-columns: repeat(4,1fr); gap: 7px; }
  .tour-tab { padding: 14px 9px; text-align: center; }.tour-tab + .tour-tab { margin: 0; }.tour-tab > span,.tour-tab small { display: none; }
  .role-grid { grid-template-columns: 1fr; }.role-card { min-height: 540px; }.role-card > p { min-height: auto; max-width: 550px; }.role-visual { left: 45%; }
  .club-proof { grid-template-columns: 120px 1fr; }.proof-stamp { display: none; }
  .comparison-grid { grid-template-columns: 1fr; gap: 50px; }.comparison-copy { max-width: 650px; }
  .faq-grid { grid-template-columns: 1fr; }.faq-intro { position: static; max-width: 650px; }
  .footer-main { grid-template-columns: 1.4fr .7fr 1fr auto; gap: 30px; }
}

@media (max-width: 680px) {
  .container,.nav-shell { width: min(100% - 30px,1240px); }
  .section { padding: 80px 0; }
  .nav-shell { height: 74px; }
  .brand { font-size: 19px; }.brand img { width: 34px; height: 34px; }
  .hero { padding: 125px 0 95px; }
  .hero h1 { font-size: clamp(48px,15vw,70px); letter-spacing: -4px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }.hero-actions .button { width: 100%; }.hero-actions .text-link { justify-content: center; }
  .hero-note { margin-top: 32px; }
  .hero-product { margin-top: 28px; padding-bottom: 88px; }
  .browser-topbar { height: 35px; grid-template-columns: 1fr 2fr 1fr; }.browser-address { padding: 3px 6px; font-size: 6px; }.demo-label { font-size: 5px; }
  .float-card { min-width: 150px; padding: 9px 11px; border-radius: 12px; }.float-card strong { font-size: 9px; }.float-card small { font-size: 7px; }.float-icon,.mini-chart { width: 28px; height: 28px; border-radius: 8px; }.attendance-card { bottom: 38px; }.notification-card { right: 0; bottom: 2px; }.progress-card { top: 3px; right: 8px; }
  .hero-bottom { margin-top: 45px; align-items: flex-start; flex-direction: column; }.proof-list { align-items: flex-start; flex-direction: column; gap: 8px; }
  .section-heading { margin-bottom: 45px; }.section-heading h2,.comparison-copy h2,.faq-intro h2 { font-size: clamp(38px,12vw,54px); letter-spacing: -2.8px; }.split-heading { gap: 24px; }
  .bento-card { min-height: 500px; padding: 27px; }.bento-card h3 { font-size: 24px; }
  .attendance-feature { min-height: 720px; display: block; }.attendance-visual { height: 430px; margin-top: 12px; }.session-sheet { width: 100%; padding: 20px; transform: rotate(1deg); }
  .performance-feature { min-height: 570px; }
  .finance-feature { min-height: 460px; }.payment-row { right: 24px; left: 24px; }
  .community-feature { min-height: 560px; }.message-stack { right: 20px; bottom: 25px; left: 20px; }
  .operations-feature { min-height: 1030px; }.operations-copy { grid-template-columns: 1fr; gap: 10px; }.module-pills { right: 25px; bottom: 25px; left: 25px; grid-template-columns: 1fr 1fr; }
  .product-tour { padding-bottom: 70px; }.tour-shell { min-height: 0; border-radius: 20px; }.tour-tabs { grid-template-columns: 1fr 1fr; }.tour-tab { font-size: 11px; }.app-chrome { height: 49px; padding: 0 17px; }.tour-panel { min-height: 600px; padding: 20px 15px; }.panel-head { align-items: start; }.panel-head h3 { font-size: 18px; }.panel-head button { flex: 0 0 auto; font-size: 7px; }.metric-grid { gap: 7px; }.metric-grid > div { padding: 12px 9px; }.metric-grid strong { font-size: 22px; }.overview-row { grid-template-columns: 1fr; }.overview-chart { height: 255px; }.activity-list { display: none; }.athlete-focus { grid-template-columns: 1fr; }.athlete-card,.big-time { min-height: 110px; padding: 16px; }.pace-chart { height: 210px; padding-top: 165px; }.family-layout { grid-template-columns: 1fr; gap: 22px; }.phone-feed { min-height: 400px; transform: scale(.86); margin-top: -25px; margin-bottom: -25px; }.family-copy { display: none; }.finance-summary { grid-template-columns: 1fr 1fr; }.finance-summary > div { padding: 15px; }.finance-summary > div:first-child { grid-column: 1/-1; }.finance-table > div { padding: 12px 10px; grid-template-columns: 1fr .8fr .6fr; font-size: 7px; }
  .role-card { min-height: 590px; padding: 27px; }.role-visual { left: 24px; }.club-proof { padding: 30px; grid-template-columns: 1fr; text-align: center; }.club-logo-wrap { margin: 0 auto; }.proof-quote blockquote { font-size: 18px; }
  .comparison-board { grid-template-columns: 1fr; }.comparison-board > div { min-height: auto; padding: 28px; }.comparison-board > div > span { margin-bottom: 22px; }
  .faq-list summary { padding: 22px 2px; font-size: 15px; }.faq-list details p { margin-right: 30px; font-size: 13px; }
  .final-cta { min-height: 680px; padding: 90px 0; }.final-cta h2 { font-size: clamp(48px,14vw,66px); letter-spacing: -4px; }.final-cta p { font-size: 15px; }.cta-actions { align-items: stretch; flex-direction: column; }.cta-actions .button { width: 100%; }.cta-assurance { align-items: center; flex-direction: column; gap: 7px; }
  .footer-main { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1/-1; }.footer-jump { grid-column: 2; justify-self: end; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

@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; }
  .chart-line,.pace-chart path { stroke-dashoffset: 0; }
  .bar-chart i { transform: scaleY(1); }
}
