:root {
  --ink: #111827;
  --muted: #5b6575;
  --line: #d7dee8;
  --paper: #f7f9fc;
  --panel: #ffffff;
  --field: #1f6feb;
  --field-dark: #0b3f91;
  --clay: #cf3f4c;
  --gold: #bf7d1a;
  --grass: #147a56;
  --shadow: 0 18px 48px rgba(22, 34, 51, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: var(--field-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 170px;
  height: auto;
  max-height: 112px;
  object-fit: contain;
}

.footer-logo {
  width: 200px;
  height: auto;
  max-height: 138px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 750;
}

.site-nav .portal-nav-link {
  color: #930b0b;
  font-weight: 950;
}

.site-nav a[href="/support/#support-form"].button.secondary {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--field);
  box-shadow: none;
}

.site-nav a[href="/support/#support-form"].button.secondary:hover {
  background: transparent;
  color: var(--field-dark);
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid var(--field);
  border-radius: 8px;
  background: var(--field);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.button:hover {
  background: var(--field-dark);
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  color: var(--field-dark);
  border-color: var(--line);
}

.hero {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 3.4vw, 38px) clamp(18px, 5vw, 64px) 22px;
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.9), rgba(247, 249, 252, 0.72)),
    linear-gradient(135deg, rgba(31, 111, 235, 0.11), rgba(20, 122, 86, 0.08));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--field-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(36px, 5vw, 40px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: #324053;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.founder-signal {
  display: grid;
  gap: 4px;
  max-width: 540px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 79, 146, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(22, 34, 51, 0.1);
}

.founder-signal span {
  color: #173967;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-signal p {
  margin: 0;
  color: #324053;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.hero-readiness-card {
  display: grid;
  gap: 7px;
  max-width: 360px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(31, 111, 235, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(22, 34, 51, 0.12);
}

.hero-readiness-card strong {
  color: var(--field-dark);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.15;
}

.hero-readiness-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.missing-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.missing-checklist li {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 8px;
  border: 1px solid rgba(20, 79, 146, 0.14);
  border-radius: 999px;
  background: #f3f7ff;
  color: #243348;
  font-size: 11px;
  font-weight: 850;
}

.readiness-disclaimer {
  max-width: 520px;
  color: #68768c;
  font-size: 11px;
  line-height: 1.35;
}

.parent-deadline-note {
  max-width: 560px;
  margin: 14px 0 0;
  color: #1f2937;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 800;
  line-height: 1.38;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-signup-card {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #c6d4e7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(22, 34, 51, 0.12);
}

.hero-signup-card strong {
  display: block;
  color: #10213b;
  font-size: 20px;
  line-height: 1.1;
}

.hero-signup-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-signup-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.hero-signup-fields > .form-field {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.hero-signup-fields > .form-field > label {
  margin: 0;
}

.hero-signup-card .button {
  width: fit-content;
  margin-top: 0;
}

.hero-consent {
  font-size: 13px;
  margin-bottom: 0;
}

.hero-signup-card .form-status {
  min-height: 0;
  margin-top: 0;
}

.hero-signup-card .field-error:empty,
.hero-signup-card .form-status:empty {
  display: none;
}

.portal-entry-card {
  position: relative;
  isolation: isolate;
  display: block;
  max-width: 680px;
  margin-top: 22px;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(198, 212, 231, 0.62);
  border-radius: 8px;
  background: #07111f;
  box-shadow: 0 18px 46px rgba(7, 17, 31, 0.26);
  transform-origin: 50% 50%;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.portal-entry-card::before,
.portal-entry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
}

.portal-entry-card::before {
  background:
    radial-gradient(circle at 54% 52%, rgba(255, 246, 217, 0.95) 0 7%, rgba(255, 165, 76, 0.78) 8% 12%, rgba(77, 224, 255, 0.46) 13% 18%, transparent 19%),
    radial-gradient(circle at 54% 52%, rgba(77, 224, 255, 0.36), transparent 42%);
  transform: scale(0.22);
}

.portal-entry-card::after {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(255, 255, 255, 0.88) 49% 51%, transparent 56% 100%),
    radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.72), transparent 36%);
  transform: scaleX(0.04);
}

.portal-entry-card.is-launching {
  box-shadow:
    0 22px 60px rgba(7, 17, 31, 0.34),
    0 0 0 4px rgba(255, 200, 87, 0.24);
  transform: translateY(-1px) scale(1.012);
}

.portal-entry-card.is-launching::before {
  animation: portal-open-burst 900ms ease-out both;
}

.portal-entry-card.is-launching::after {
  animation: portal-open-slit 900ms cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

.portal-swing-link {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.portal-swing-link:hover {
  text-decoration: none;
}

.portal-swing-link:focus-visible {
  outline: 3px solid #ffc857;
  outline-offset: 3px;
}

.portal-carousel-track {
  position: absolute;
  inset: 0;
  display: block;
}

.portal-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  animation: portal-carousel-fade 36s linear infinite;
}

.portal-carousel-single {
  opacity: 1;
  animation: none;
}

.portal-carousel-slide-two {
  animation-delay: 4s;
}

.portal-carousel-slide-three {
  animation-delay: 8s;
}

.portal-carousel-slide-four {
  animation-delay: 12s;
}

.portal-carousel-slide-five {
  animation-delay: 16s;
}

.portal-carousel-slide-six {
  animation-delay: 20s;
}

.portal-carousel-slide-seven {
  animation-delay: 24s;
}

.portal-carousel-slide-eight {
  animation-delay: 28s;
}

.portal-carousel-slide-nine {
  animation-delay: 32s;
}

.portal-carousel-slide-ten {
  animation-delay: 36s;
}

.portal-carousel-slide-eleven {
  animation-delay: 40s;
}

.portal-carousel-slide-twelve {
  animation-delay: 44s;
}

.portal-carousel-slide-thirteen {
  animation-delay: 48s;
}

.portal-carousel-slide-fourteen {
  animation-delay: 52s;
}

.portal-carousel-slide-fifteen {
  animation-delay: 56s;
}

.portal-carousel-slide-sixteen {
  animation-delay: 60s;
}

.portal-carousel-slide-seventeen {
  animation-delay: 64s;
}

.portal-carousel-slide-eighteen {
  animation-delay: 68s;
}

.portal-motion-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.portal-motion-ball,
.portal-motion-puck,
.portal-motion-trail {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.portal-motion-ball {
  left: 58%;
  top: 42%;
  width: 24px;
  height: 24px;
  border: 2px solid #e15f42;
  border-radius: 999px;
  background: #fff8eb;
  box-shadow: inset -4px -3px 0 rgba(191, 125, 26, 0.22);
}

.portal-motion-puck {
  left: 45%;
  top: 66%;
  width: 28px;
  height: 12px;
  border-radius: 999px;
  background: #111827;
  box-shadow: inset 0 -3px 0 rgba(255, 255, 255, 0.24);
}

.portal-motion-trail {
  left: 42%;
  top: 54%;
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 200, 87, 0.9));
  transform: scaleX(0) rotate(-12deg);
  transform-origin: right center;
}

.portal-swing-link:hover .portal-carousel-slide {
  filter: saturate(1.08) brightness(1.04);
}

.portal-swing-link.is-launching {
  cursor: progress;
}

.portal-swing-link.is-launching .portal-carousel-slide {
  animation-play-state: paused;
  transform: scale(1.08) translate3d(3%, -2%, 0);
  transition: transform 900ms cubic-bezier(0.17, 0.84, 0.44, 1), filter 900ms ease;
  filter: saturate(1.18) brightness(1.16);
}

.portal-swing-link.is-launching .portal-motion-ball {
  animation: portal-entry-ball-shot 900ms cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

.portal-swing-link.is-launching .portal-motion-puck {
  animation: portal-entry-puck-shot 900ms cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

.portal-swing-link.is-launching .portal-motion-trail {
  animation: portal-entry-motion-trail 900ms ease-out both;
}

.swing-stage {
  position: relative;
  display: block;
  width: 88px;
  height: 58px;
}

.sport-scene {
  position: absolute;
  inset: 0;
}

.baseball-scene {
  opacity: 1;
  animation: scene-baseball 7.2s ease-in-out infinite;
}

.hockey-scene {
  opacity: 0;
  animation: scene-hockey 7.2s ease-in-out infinite;
}

.swing-bat {
  position: absolute;
  left: 6px;
  top: 28px;
  width: 70px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6d3e16, #d49b47 68%, #f2c36c);
  transform: rotate(-28deg);
  transform-origin: 12px 50%;
  box-shadow: 0 2px 0 rgba(16, 33, 59, 0.24);
}

.swing-bat::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #5a2d0f;
}

.swing-ball {
  position: absolute;
  right: 2px;
  top: 21px;
  width: 24px;
  height: 24px;
  border: 2px solid #e15f42;
  border-radius: 999px;
  background: #fff8eb;
  box-shadow: inset -4px -3px 0 rgba(191, 125, 26, 0.2);
}

.swing-trail {
  position: absolute;
  right: 20px;
  top: 28px;
  width: 0;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 200, 87, 0.95));
  opacity: 0;
  transform: rotate(-22deg);
  transform-origin: right center;
}

.swing-burst {
  position: absolute;
  right: 0;
  top: 19px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 200, 87, 0.72);
  opacity: 0;
  transform: scale(0.2);
}

.hockey-net {
  position: absolute;
  right: 0;
  top: 8px;
  width: 30px;
  height: 36px;
  border: 4px solid #ffffff;
  border-left-width: 3px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.55) 47% 53%, transparent 53%),
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(255, 255, 255, 0.38) 7px 9px);
  box-shadow: inset 0 -18px 0 rgba(16, 33, 59, 0.16);
}

.hockey-stick {
  position: absolute;
  left: 12px;
  top: 9px;
  width: 9px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f7d084, #b36b24);
  box-shadow: 0 2px 0 rgba(16, 33, 59, 0.24);
  transform: rotate(34deg);
  transform-origin: 50% 78%;
}

.hockey-stick::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: -7px;
  width: 34px;
  height: 9px;
  border-radius: 999px;
  background: #8b4a18;
  transform: rotate(-18deg);
}

.hockey-puck {
  position: absolute;
  left: 43px;
  top: 39px;
  width: 19px;
  height: 10px;
  border-radius: 999px;
  background: #172033;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.24);
}

.hockey-burst {
  position: absolute;
  right: 16px;
  top: 24px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: scale(0.2);
}

.portal-swing-link.is-launching {
  cursor: progress;
}

.portal-swing-link.is-launching .baseball-scene {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

.portal-swing-link.is-launching .hockey-scene {
  animation: none;
  opacity: 0;
  transform: translateY(5px);
}

.portal-swing-link.is-launching .swing-bat {
  animation: bat-swing 760ms cubic-bezier(0.2, 0.82, 0.2, 1) both;
}

.portal-swing-link.is-launching .swing-trail {
  animation: ball-trail 900ms ease-out both;
}

.portal-swing-link.is-launching .swing-ball {
  animation: ball-hit 900ms cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

.portal-swing-link.is-launching .swing-burst {
  animation: hit-burst 900ms ease-out both;
}

.portal-entry-card.is-launching .portal-entry-flight {
  opacity: 1;
}

.portal-entry-card.is-launching .portal-entry-flight-ball {
  animation: portal-photo-ball-flight 900ms cubic-bezier(0.17, 0.84, 0.44, 1) both;
}

.portal-entry-card.is-launching .portal-entry-flight-trail {
  animation: portal-photo-trail 900ms ease-out both;
}

.portal-swing-link.is-launching .hockey-stick {
  animation: none;
}

.portal-swing-link.is-launching .hockey-puck {
  animation: none;
}

.portal-swing-link.is-launching .hockey-burst {
  animation: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

@keyframes bat-swing {
  0% {
    transform: rotate(-28deg);
  }
  55%,
  100% {
    transform: rotate(18deg);
  }
}

@keyframes scene-baseball {
  0%,
  42% {
    opacity: 1;
    transform: translateY(0);
  }
  49%,
  92% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scene-hockey {
  0%,
  42% {
    opacity: 0;
    transform: translateY(5px);
  }
  49%,
  92% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(5px);
  }
}

@keyframes ball-hit {
  0%,
  38% {
    transform: translate(0, 0);
  }
  56% {
    transform: translate(17px, -9px) scale(0.92);
    opacity: 1;
  }
  100% {
    transform: translate(58px, -30px) scale(0.46);
    opacity: 0;
  }
}

@keyframes ball-trail {
  0%,
  38% {
    width: 0;
    opacity: 0;
    transform: translate(0, 0) rotate(-22deg);
  }
  56% {
    width: 40px;
    opacity: 0.95;
    transform: translate(10px, -6px) rotate(-22deg);
  }
  100% {
    width: 62px;
    opacity: 0;
    transform: translate(38px, -19px) rotate(-22deg);
  }
}

@keyframes portal-carousel-fade {
  0%,
  8.25% {
    opacity: 1;
  }
  10%,
  98% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes portal-open-burst {
  0% {
    opacity: 0;
    transform: scale(0.18);
  }
  36% {
    opacity: 0.95;
    transform: scale(0.62);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes portal-open-slit {
  0% {
    opacity: 0;
    transform: scaleX(0.04);
  }
  42% {
    opacity: 0.85;
    transform: scaleX(0.18);
  }
  100% {
    opacity: 0;
    transform: scaleX(1.1);
  }
}

@keyframes portal-photo-ball-flight {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.72);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--flight-distance), -48px, 0) scale(1.24);
  }
}

@keyframes portal-photo-trail {
  0% {
    opacity: 0;
    transform: scaleX(0) rotate(-9deg);
  }
  42% {
    opacity: 0.95;
    transform: scaleX(0.72) rotate(-9deg);
  }
  100% {
    opacity: 0;
    transform: scaleX(1) rotate(-9deg);
  }
}

@keyframes portal-entry-ball-shot {
  0% {
    opacity: 0;
    transform: translate3d(-24px, 18px, 0) scale(0.72);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(170px, -96px, 0) scale(1.18);
  }
}

@keyframes portal-entry-puck-shot {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 8px, 0) scale(0.82);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(190px, -42px, 0) scale(0.92);
  }
}

@keyframes portal-entry-motion-trail {
  0% {
    opacity: 0;
    transform: scaleX(0) rotate(-12deg);
  }
  44% {
    opacity: 0.9;
    transform: scaleX(0.72) rotate(-12deg);
  }
  100% {
    opacity: 0;
    transform: scaleX(1.18) rotate(-12deg);
  }
}

@keyframes hockey-stick-shot {
  0% {
    transform: rotate(34deg);
  }
  55%,
  100% {
    transform: rotate(48deg);
  }
}

@keyframes hockey-puck-shot {
  0%,
  45% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, -12px) scale(0.72);
    opacity: 0;
  }
}

@keyframes hockey-burst {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.2);
  }
  56% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes hit-burst {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.2);
  }
  56% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

.fast-path-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fast-path-strip a {
  display: grid;
  gap: 4px;
  min-height: 78px;
  align-content: center;
  padding: 14px;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #f7fbff;
  color: #172033;
  text-decoration: none;
}

.fast-path-strip a:hover,
.fast-path-strip a:focus-visible {
  border-color: var(--field);
  background: #eef5ff;
  text-decoration: none;
}

.fast-path-strip span {
  color: #0b4fb3;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.fast-path-strip strong {
  font-size: clamp(15px, 2vw, 18px);
}

.page .faq-jump-strip {
  margin: 24px 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
}

.quick-explainer {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 18px clamp(18px, 5vw, 64px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-explainer article {
  display: grid;
  gap: 6px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbff;
}

.quick-explainer .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--field);
  color: #ffffff;
  font-weight: 950;
}

.quick-explainer article div {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.quick-explainer strong {
  color: #172033;
  font-size: 16px;
}

.quick-explainer em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e8f1ff;
  color: #0b4fb3;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.quick-explainer p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pilot-signup-strip {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.95fr) minmax(230px, 0.5fr);
  align-items: center;
  padding: 22px clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(20, 79, 146, 0.18);
  border-bottom: 1px solid rgba(20, 79, 146, 0.18);
  background:
    linear-gradient(135deg, rgba(232, 241, 255, 0.96), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 90% 10%, rgba(47, 107, 255, 0.12), transparent 26%);
}

.pilot-signup-copy h2 {
  margin: 6px 0 8px;
  color: #172033;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.05;
}

.pilot-signup-copy p:not(.eyebrow) {
  margin: 0;
  color: #324053;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 750;
}

.founding-family-note {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(47, 107, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #173967;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
}

.pilot-signup-form {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(22, 34, 51, 0.12);
}

.pilot-field-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pilot-field-grid label {
  display: grid;
  gap: 5px;
}

.pilot-field-grid label > span:first-child {
  color: #47566b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.pilot-consent {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #47566b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.pilot-consent input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
}

.pilot-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.parent-trust-note {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  border: 1px dashed #b7c8dd;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.parent-trust-note span {
  color: #47566b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.parent-trust-note blockquote {
  margin: 0;
  color: #172033;
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 950;
  line-height: 1.18;
}

.parent-trust-note p {
  margin: 0;
  color: #58697d;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.club-inquiry-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 255, 0.98)),
    radial-gradient(circle at 92% 18%, rgba(47, 107, 255, 0.1), transparent 28%);
}

.club-inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
  align-items: start;
}

.club-inquiry-form {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: clamp(16px, 3vw, 22px);
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(22, 34, 51, 0.1);
}

.club-inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.club-inquiry-grid label {
  display: grid;
  gap: 5px;
}

.club-inquiry-grid label.full {
  grid-column: 1 / -1;
}

.club-inquiry-grid label > span:first-child {
  color: #47566b;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.98)),
    radial-gradient(circle at 12% 0%, rgba(47, 107, 255, 0.08), transparent 30%);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid #d8e2ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 28, 45, 0.08);
  overflow: hidden;
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  color: #11213a;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e9f1ff;
  color: #215ccf;
  font-weight: 950;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: #44546a;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.55;
}

.positioning-section {
  background:
    linear-gradient(135deg, #0f2544, #143967),
    radial-gradient(circle at 100% 0%, rgba(255, 215, 84, 0.16), transparent 32%);
  color: #f7fbff;
}

.positioning-section .section-header {
  color: #f7fbff;
}

.positioning-section .section-header h2,
.positioning-section .section-header p {
  color: #f7fbff;
}

.positioning-section .eyebrow {
  color: #ffd966;
}

.positioning-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.positioning-list li {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.positioning-list strong {
  color: #ffffff;
  font-size: 18px;
}

.positioning-list span {
  color: #dbe8f8;
  font-size: 15px;
  line-height: 1.45;
}

.section-feedback {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(86, 109, 139, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.section-feedback-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.section-feedback-row span {
  color: #26364d;
  font-size: 13px;
  font-weight: 900;
}

.section-feedback-row button,
.section-feedback-comment button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  color: #173967;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.section-feedback-row button.is-selected {
  border-color: #2f6bff;
  background: #2f6bff;
  color: #ffffff;
}

.section-feedback-comment {
  display: grid;
  gap: 7px;
}

.section-feedback-comment[hidden] {
  display: none;
}

.section-feedback-comment span {
  color: #26364d;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-feedback-comment textarea {
  min-height: 72px;
  resize: vertical;
}

.section-feedback .form-status {
  min-height: 18px;
  font-size: 13px;
}

.product-shot {
  background: #10151d;
  color: #eef4ff;
  border: 1px solid #263246;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 13px;
  background: #17202d;
  border-bottom: 1px solid #263246;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f87171;
}

.dot:nth-child(2) {
  background: #fbbf24;
}

.dot:nth-child(3) {
  background: #34d399;
}

.window-title {
  margin-left: 10px;
  color: #a8b7cd;
  font-size: 13px;
  font-weight: 800;
}

.cinematic-shot {
  align-self: start;
  margin-top: clamp(58px, 5.6vw, 78px);
}

.cinematic-preview {
  position: relative;
  aspect-ratio: 16 / 10.7;
  min-height: 360px;
  overflow: hidden;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.hero-completed-showcase {
  align-self: start;
  display: grid;
  gap: 14px;
  min-width: 0;
  margin-top: clamp(28px, 3.4vw, 44px);
  padding: 14px;
  border: 1px solid rgba(20, 79, 146, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #edf5ff);
  box-shadow: 0 28px 80px rgba(15, 39, 72, 0.14);
}

.showcase-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.showcase-stage {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  transition: min-height 240ms ease;
}

.showcase-stage.is-showing-portrait {
  min-height: 540px;
}

.completed-video-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(20, 79, 146, 0.2);
  border-radius: 8px;
  background: #ffffff;
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.completed-video-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.completed-video-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #07111f;
}

.completed-video-card.is-landscape .completed-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.completed-video-card.is-portrait .completed-video-frame {
  width: min(100%, 292px);
  aspect-ratio: 9 / 16;
}

.completed-video-card.is-portrait {
  justify-content: center;
}

.completed-video-frame span {
  display: none;
}

.completed-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: saturate(1.04) contrast(1.03);
}

.video-fallback-thumb,
.video-noscript-thumb {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100%;
  background: #10151d;
  object-fit: cover;
}

.completed-video-frame .video-fallback-thumb,
.completed-video-frame .video-noscript-thumb {
  object-fit: contain;
}

.video-fallback-visible .video-fallback-thumb,
.video-noscript-thumb {
  display: block;
}

.video-fallback-visible video {
  opacity: 0;
}

.completed-video-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.05;
}

.completed-video-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.showcase-dots span {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(20, 79, 146, 0.18);
}

.showcase-dots span.is-active {
  background: var(--field);
}

.cinematic-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 21, 29, 0.04), rgba(16, 21, 29, 0.74)),
    linear-gradient(90deg, rgba(16, 21, 29, 0.45), rgba(16, 21, 29, 0.06) 44%, rgba(16, 21, 29, 0.38));
  pointer-events: none;
}

.cinematic-overlay {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.workflow-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(207, 225, 255, 0.2);
  border-radius: 8px;
  background: rgba(16, 21, 29, 0.76);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.workflow-card p {
  margin: 4px 0 0;
  color: #d7e3f6;
  font-size: 13px;
}

.app-preview {
  padding: 18px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.metric {
  min-height: 72px;
  padding: 12px;
  border: 1px solid #29364b;
  border-radius: 8px;
  background: #151d29;
}

.metric strong {
  display: block;
  font-size: 24px;
}

.metric span {
  display: block;
  color: #9fb0c8;
  font-size: 12px;
}

.workflow {
  display: grid;
  gap: 10px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #29364b;
  border-radius: 8px;
  background: #151d29;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #20314a;
  color: #9dc0ff;
  font-weight: 900;
}

.workflow-step p {
  margin: 4px 0 0;
  color: #a8b7cd;
  font-size: 13px;
}

.tag {
  padding: 5px 8px;
  border-radius: 999px;
  background: #21324b;
  color: #cfe1ff;
  font-size: 12px;
  font-weight: 850;
}

.section {
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 64px);
}

.section.light {
  background: #fff;
}

.athlete-proof-section {
  background:
    linear-gradient(135deg, rgba(7, 27, 58, 0.98), rgba(16, 21, 29, 0.96)),
    radial-gradient(circle at 18% 10%, rgba(31, 111, 235, 0.2), transparent 28%);
  color: #f7fbff;
}

.athlete-proof-section .section-header p {
  color: #c8d7ed;
}

.athlete-proof-section .eyebrow {
  color: #ffc857;
}

.sample-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sample-video-card {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(207, 225, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.sample-video-card.featured {
  border-color: rgba(255, 200, 87, 0.46);
}

.comparison-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(232, 241, 255, 0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sample-video-card.featured .comparison-label {
  background: rgba(255, 200, 87, 0.18);
  color: #ffe7a5;
}

.sample-video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(207, 225, 255, 0.2);
  border-radius: 8px;
  background: #10151d;
}

.sample-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-video-card h3 {
  margin-top: 14px;
}

.sample-video-card p {
  margin: 8px 0 0;
  color: #c8d7ed;
}

.sample-athlete-view {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 200, 87, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 200, 87, 0.12), rgba(47, 107, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
}

.sample-athlete-view h3 {
  color: #ffffff;
  font-size: clamp(22px, 3vw, 30px);
}

.sample-athlete-view p {
  margin: 10px 0 0;
  color: #d8e5f8;
}

.sample-athlete-view ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sample-athlete-view li {
  padding: 10px 12px;
  border: 1px solid rgba(207, 225, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 10, 20, 0.2);
  color: #edf5ff;
  font-weight: 750;
}

.section-header {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-header p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 198px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 8px 24px rgba(22, 34, 51, 0.06);
}

.card p {
  color: var(--muted);
}

.feature-grid .card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 12px;
  min-height: 132px;
  align-content: start;
  padding: 16px;
}

.feature-grid .card h3 {
  margin: 0;
  font-size: 18px;
}

.feature-grid .card p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
}

.audience-proof-section {
  background: #f7fbff;
}

.audience-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.audience-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(22, 34, 51, 0.05);
}

.audience-proof-strip strong {
  margin-right: 4px;
  color: #172033;
}

.approval-gate-section {
  background:
    linear-gradient(180deg, #ffffff, #f7fbff),
    radial-gradient(circle at 12% 18%, rgba(47, 107, 255, 0.12), transparent 30%);
}

.approval-gate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.approval-screen-card,
.approval-proof-list article {
  min-width: 0;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.approval-screen-card {
  overflow: hidden;
}

.approval-screen-header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #e1eaf6;
  background: #f7fbff;
  color: #47566b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.approval-screen-header strong {
  color: #b45309;
  font-size: 12px;
}

.approval-video-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.approval-video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #10151d;
}

.approval-video-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approval-video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0b4fb3;
  font-size: 18px;
  font-weight: 950;
  transform: translate(-50%, -50%);
}

.approval-screen-card h3 {
  margin: 0;
  color: #172033;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.14;
}

.approval-screen-card p {
  margin: 8px 0 0;
  color: #47566b;
}

.approval-checklist {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0 16px 16px;
}

.approval-checklist span {
  position: relative;
  min-height: 38px;
  padding: 9px 10px 9px 34px;
  border: 1px solid #d5e1f1;
  border-radius: 8px;
  background: #f7fbff;
  color: #243348;
  font-size: 13px;
  font-weight: 850;
}

.approval-checklist span::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #14804a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.approval-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 16px 14px;
}

.approval-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  color: #0b4fb3;
  font-size: 14px;
  font-weight: 950;
}

.approval-actions .approval-action-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #2f6bff, #0b4fb3);
  color: #ffffff;
}

.approval-screen-card .approval-note {
  margin: 0;
  padding: 0 16px 16px;
  color: #68768c;
  font-size: 11px;
  line-height: 1.35;
}

.approval-proof-list {
  display: grid;
  gap: 12px;
}

.approval-proof-list article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
}

.approval-proof-list p {
  margin: 0;
  color: #47566b;
  font-size: 14px;
  line-height: 1.42;
}

.coach-email-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

.coach-insight-card,
.coach-inbox-card,
.coach-open-card {
  min-width: 0;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.coach-insight-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  background: linear-gradient(135deg, #ffffff, #eef5ff);
}

.coach-insight-card p {
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.45;
}

.coach-inbox-card,
.coach-open-card {
  overflow: hidden;
}

.coach-inbox-topline,
.coach-open-header {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #e1eaf6;
  background: #f7fbff;
  color: #47566b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.coach-inbox-topline strong,
.coach-open-header strong {
  color: #0b4fb3;
  font-size: 12px;
}

.coach-inbox-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
}

.coach-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #144f92;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.coach-inbox-from {
  margin: 0 0 5px;
  color: #64748b;
  font-size: 12px;
  font-weight: 850;
}

.coach-inbox-card h3,
.coach-open-card h3 {
  margin: 0;
  color: #172033;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.16;
}

.coach-inbox-card p,
.coach-open-card p {
  margin: 8px 0 0;
  color: #47566b;
  font-size: 14px;
  line-height: 1.42;
}

.coach-open-body {
  display: grid;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
}

.coach-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #10151d;
}

.coach-thumbnail img,
.coach-thumbnail video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-thumbnail span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0b4fb3;
  font-size: 18px;
  font-weight: 950;
  transform: translate(-50%, -50%);
}

.coach-email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.coach-email-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f1ff;
  color: #0b4fb3;
  font-size: 12px;
  font-weight: 900;
}

.coach-open-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.coach-open-copy li {
  padding: 5px 8px;
  border: 1px solid #d5e1f1;
  border-radius: 999px;
  color: #334155;
  font-size: 12px;
  font-weight: 850;
}

.coach-open-card .coach-email-disclaimer {
  margin: 0;
  padding: 0 16px 16px;
  color: #68768c;
  font-size: 11px;
  line-height: 1.35;
}

.coach-package-section {
  background:
    linear-gradient(180deg, #f7fbff, #ffffff),
    radial-gradient(circle at 88% 18%, rgba(47, 107, 255, 0.12), transparent 28%);
}

.coach-package-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 0.85fr));
  gap: 16px;
}

.compact-coach-package {
  margin-top: 18px;
}

.coach-package-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.coach-package-card-main {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(47, 107, 255, 0.32), transparent 42%),
    linear-gradient(135deg, #071b3a, #10151d);
  border-color: rgba(47, 107, 255, 0.38);
}

.coach-package-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 3vw, 36px);
}

.coach-package-card p {
  color: #47566b;
}

.coach-package-card-main p {
  color: #d8e5f8;
}

.package-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eaf1ff;
  color: #0b3f91;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-package-card-main .package-label {
  background: rgba(255, 200, 87, 0.16);
  color: #ffc857;
}

.compact-coach-package .coach-package-card {
  min-height: 168px;
  padding: 18px;
}

.compact-coach-package .coach-package-card h3 {
  font-size: clamp(20px, 2.4vw, 28px);
}

.compact-coach-package .coach-package-card p {
  margin-bottom: 0;
}

.package-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 22px;
  padding: 14px;
  border: 1px solid rgba(207, 225, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.package-link-row strong {
  color: #55d187;
}

.number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 8px;
  background: #eaf1ff;
  color: var(--field-dark);
  font-weight: 900;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
}

.persona-grid .card,
.trust-card {
  border-top: 4px solid var(--field);
}

.trust-card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  color: #172033;
  font-size: 18px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.trust-mini-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.trust-mini-list a {
  font-weight: 850;
}

.inspectable-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #f8fbff;
}

.inspectable-proof-list strong {
  margin-right: auto;
  color: #172033;
  font-size: 16px;
}

.inspectable-proof-list a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #c6d4e7;
  border-radius: 8px;
  background: #ffffff;
  color: #0b3f91;
  font-weight: 850;
}

.inspectable-proof-list a:hover {
  text-decoration: none;
  border-color: var(--field);
}

.policy-status-panel {
  padding: 24px;
  border: 1px solid #c8d7ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.policy-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.policy-status-grid article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 16px;
  border: 1px solid #d7e2f2;
  border-radius: 8px;
  background: #f8fbff;
}

.policy-status-grid strong {
  color: #172033;
  font-size: 18px;
}

.policy-status-grid p {
  margin: 0;
  color: #47566b;
}

.partner-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.partner-evidence-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid #d7e2f2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.partner-evidence-card h3 {
  margin: 0;
  color: #172033;
  font-size: 20px;
}

.partner-policy-link {
  font-size: 13px;
  font-weight: 850;
}

.partner-evidence-card p {
  margin: 0;
  color: #47566b;
}

.partner-evidence-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.partner-evidence-card a {
  overflow-wrap: anywhere;
}

.data-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.data-evidence-grid article {
  padding: 16px;
  border: 1px solid #d7e2f2;
  border-radius: 8px;
  background: #f8fbff;
}

.data-evidence-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #172033;
  font-size: 17px;
}

.data-evidence-grid p {
  margin: 0;
  color: #47566b;
}

.status-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.status-chip.current {
  background: #e9f8ef;
  color: #067647;
}

.status-chip.review {
  background: #fff3d6;
  color: #8a5a00;
}

.status-chip.limited {
  background: #eef2f7;
  color: #334155;
}

.form-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-intro {
  margin: 0 0 14px;
  color: #324053;
  font-size: 15px;
  font-weight: 750;
}

.public-support-form {
  margin-top: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: block;
  color: #263246;
  font-size: 14px;
  font-weight: 800;
}

.form-field {
  display: grid;
  gap: 6px;
}

.optional-details {
  margin-top: 4px;
  padding: 12px;
  border: 1px solid #d7e2f2;
  border-radius: 8px;
  background: #f7faff;
}

.optional-details summary {
  width: fit-content;
  color: var(--field-dark);
  cursor: pointer;
  font-weight: 900;
}

.optional-details-helper {
  max-width: 680px;
  margin: 8px 0 0;
  color: #536174;
  font-size: 14px;
}

.optional-field-grid {
  margin-top: 14px;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid #c7d1df;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.button:focus-visible,
.sticky-waitlist-cta:focus-visible,
a:focus-visible {
  outline: 3px solid #ffc857;
  outline-offset: 3px;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.14);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.checkbox input {
  width: auto;
  min-height: 0;
  margin-top: 5px;
}

.field-error {
  min-height: 18px;
  color: #b42318;
  font-size: 12px;
  font-weight: 800;
}

.field-error:empty {
  display: none;
}

.form-status {
  min-height: 22px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
}

.form-status:empty,
#waitlist-role-note:empty {
  display: none;
}

.form-status.success {
  color: #067647;
}

.form-status.error {
  color: #b42318;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.note {
  color: var(--muted);
  font-size: 13px;
}

.note a,
.checkbox a {
  color: #0b4fb3;
  font-weight: 900;
}

.sticky-waitlist-cta {
  display: none;
}

.sticky-waitlist-cta.is-hidden {
  display: none;
}

.page {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: 58px 0 74px;
}

.page h1 {
  font-size: clamp(36px, 6vw, 64px);
}

.page section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.page p,
.page li {
  color: #3d4b5f;
}

.site-footer {
  padding: 32px clamp(18px, 5vw, 64px);
  background: #10151d;
  color: #d8e2f0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #d8e2f0;
}

.disclaimer {
  margin-top: 18px;
  color: #9fb0c8;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .grid,
  .quick-explainer,
  .pilot-signup-strip,
  .club-inquiry-layout,
  .positioning-list,
  .trust-card-grid,
  .policy-status-grid,
  .partner-evidence-grid,
  .data-evidence-grid,
  .inspectable-proof-list,
  .sample-highlight-grid,
  .sample-athlete-view,
  .approval-gate-grid,
  .coach-email-preview,
  .coach-package-preview {
    grid-template-columns: 1fr;
  }

  .approval-video-row,
  .coach-open-body {
    grid-template-columns: 1fr;
  }

  .pilot-field-grid {
    grid-template-columns: 1fr;
  }

  .club-inquiry-grid {
    grid-template-columns: 1fr;
  }

  .approval-checklist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-completed-showcase {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 6px auto 0;
  }

  .showcase-stage {
    min-height: 270px;
  }

  .showcase-stage.is-showing-portrait {
    min-height: 470px;
  }

  .completed-video-card {
    padding: 8px;
  }

  .completed-video-card.is-portrait {
    justify-content: center;
  }

  .completed-video-card.is-portrait .completed-video-frame {
    width: min(88%, 250px);
  }

  .showcase-header {
    align-items: center;
    flex-direction: row;
    text-align: left;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-logo {
    width: 172px;
    height: auto;
    max-height: 108px;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 8px;
    font-size: 13px;
  }

  .fast-path-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .fast-path-strip a {
    min-height: 64px;
    padding: 10px;
  }

  .fast-path-strip span {
    font-size: 11px;
  }

  .fast-path-strip strong {
    font-size: 14px;
  }

  .quick-explainer {
    gap: 8px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .quick-explainer article {
    min-height: 54px;
    align-items: center;
    padding: 10px 12px;
  }

  .quick-explainer article div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .quick-explainer p {
    display: none;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .trust-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .hero-signup-fields {
    grid-template-columns: 1fr;
  }

  .hero-signup-card .button,
  .portal-swing-link {
    width: 100%;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 76px;
  }

  main,
  section,
  nav,
  header,
  footer,
  .hero,
  .portal-entry-card,
  .fast-path-strip {
    max-width: 100%;
  }

  .status-strip,
  .metric-row,
  .field-grid,
  .hero-signup-fields {
    grid-template-columns: 1fr;
  }

  .hero-signup-card {
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
  }

  .hero-signup-card strong {
    font-size: 18px;
  }

  .hero-signup-card p,
  .hero-consent {
    font-size: 12px;
  }

  .portal-entry-card {
    margin-top: 12px;
    padding: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
  }

  .portal-entry-card h2,
  .portal-entry-card p {
    overflow-wrap: anywhere;
  }

  .portal-swing-link {
    min-height: auto;
    padding: 0;
  }

  .swing-stage {
    width: 62px;
    transform: scale(0.74);
    transform-origin: left center;
  }

  .form-panel {
    padding: 16px;
  }

  .form-intro,
  .optional-details-helper {
    font-size: 14px;
  }

  .optional-details summary {
    width: 100%;
  }

  .inspectable-proof-list {
    align-items: stretch;
    flex-direction: column;
  }

  .inspectable-proof-list strong,
  .inspectable-proof-list a {
    width: 100%;
  }

  .site-header {
    position: static;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand-logo {
    width: 132px;
    max-height: 82px;
  }

  .site-nav {
    width: 100%;
    gap: 6px;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 4px;
    font-size: 12px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 1 auto;
    min-height: 34px;
    padding: 6px 4px;
  }

  .site-nav .button.secondary {
    display: none;
  }

  .hero {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero .eyebrow {
    margin-bottom: 6px;
  }

  h1 {
    max-width: 100%;
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .lead {
    max-width: 100%;
    font-size: 16px;
    margin-top: 10px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-readiness-card {
    max-width: none;
    margin-top: 14px;
    padding: 12px;
  }

  .parent-deadline-note {
    margin-top: 12px;
    font-size: 15px;
  }

  .trust-row {
    margin-top: 12px;
  }

  .fast-path-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow-x: visible;
    padding-top: 10px;
    padding-bottom: 10px;
    scrollbar-width: none;
  }

  .fast-path-strip::-webkit-scrollbar {
    display: none;
  }

  .fast-path-strip a {
    min-height: 56px;
    padding: 10px;
  }

  .pill {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 12px;
  }

  .trust-row {
    display: none;
  }

  .sticky-waitlist-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 50;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #2f6bff, #0b4fb3);
    color: #fff;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(7, 27, 58, 0.28);
  }

  .workflow-step,
  .workflow-card {
    grid-template-columns: 38px 1fr;
  }

  .workflow-step .tag,
  .workflow-card .tag {
    grid-column: 1 / -1;
    width: max-content;
  }

}

.step-icon,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.feature-upgrade-suite {
  display: grid;
  gap: 20px;
}

#editor {
  padding-bottom: clamp(18px, 3vw, 32px);
}

#export-kit {
  padding-top: clamp(18px, 3vw, 32px);
}

#inside-portal {
  padding-bottom: clamp(18px, 3vw, 32px);
}

.audience-proof-section {
  padding-top: clamp(18px, 3vw, 32px);
  padding-bottom: clamp(18px, 3vw, 32px);
}

.trust-section {
  padding-top: clamp(18px, 3vw, 32px);
}

.upgrade-showcase-grid,
.builder-preview-grid,
.playlist-sample-list,
.export-platform-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.builder-preview-grid,
.playlist-sample-list,
.export-platform-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.player-card-sample,
.readiness-preview-card,
.builder-preview-grid article,
.playlist-sample-list article,
.export-platform-grid span {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sample-card-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sample-card-grid span,
.playlist-sample-list span,
.builder-preview-grid span {
  color: var(--muted);
  font-size: 14px;
}

.sample-card-grid strong {
  display: block;
  color: var(--field-dark);
  font-size: 12px;
  text-transform: uppercase;
}

.progress {
  overflow: hidden;
  min-height: 30px;
  border-radius: 8px;
  background: #dfe8f5;
}

.progress-bar {
  display: grid;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  background: linear-gradient(90deg, var(--field), var(--grass));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.export-platform-grid span {
  justify-content: center;
  text-align: center;
  font-weight: 850;
}

.step-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff;
  color: var(--field-dark);
}

.tag {
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(20, 122, 86, 0.16);
  color: #bbf7d0;
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .completed-video-card,
  .portal-entry-card,
  .portal-carousel-slide,
  .portal-entry-card.is-launching::before,
  .portal-entry-card.is-launching::after,
  .baseball-scene,
  .hockey-scene,
  .portal-swing-link.is-launching .swing-bat,
  .portal-swing-link.is-launching .swing-trail,
  .portal-swing-link.is-launching .swing-ball,
  .portal-swing-link.is-launching .swing-burst,
  .portal-entry-card.is-launching .portal-entry-flight-ball,
  .portal-entry-card.is-launching .portal-entry-flight-trail,
  .portal-swing-link.is-launching .hockey-stick,
  .portal-swing-link.is-launching .hockey-puck,
  .portal-swing-link.is-launching .hockey-burst {
    transition: none;
    animation: none;
  }
}

@media (max-width: 760px) {
  .upgrade-showcase-grid,
  .builder-preview-grid,
  .playlist-sample-list,
  .export-platform-grid,
  .sample-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Clip2Commit June 21 visual restore overrides */
.hero h1 {
  font-size: clamp(31px, 4vw, 35px);
  line-height: 1.08;
}
.hero-completed-showcase {
  margin-top: 0;
  transform: translateY(-18px);
}
.hero-actions a[href="#clip-transform-demo"],
.fast-path-strip a[href="#clip-transform-demo"],
.inspectable-proof-list {
  display: none !important;
}
.section {
  padding-top: clamp(28px, 4.4vw, 54px);
  padding-bottom: clamp(28px, 4.4vw, 54px);
}
.feature-upgrade-suite {
  padding-bottom: 28px;
}
#export-kit {
  padding-top: 24px;
}
.audience-proof-section,
.trust-section {
  padding-top: 32px;
  padding-bottom: 36px;
}
.audience-proof-strip {
  margin-bottom: 10px;
}
.site-nav a[href="/support/#support-form"].button.secondary {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
@media (max-width: 780px) {
  .hero-completed-showcase {
    transform: none;
  }
}
