@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-soft: #eef2f6;
  --surface-dark: #121a24;
  --surface-dark-2: #182332;
  --text: #101721;
  --text-muted: #4a5564;
  --text-on-dark: #edf2f9;
  --line: #dbe3ec;
  --gold: #a7885b;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 16px 34px rgba(16, 23, 33, 0.08);
  --shadow-card: 0 20px 36px rgba(16, 23, 33, 0.12);
  --container: 1160px;
  --nav-h: 68px;
  --nav-h-scrolled: 48px;
  --ease: 260ms cubic-bezier(0.22, 1, 0.36, 1);
  --bar-white: #ffffff;
  --logo-size-desktop: 228px;
  --logo-size-mobile: 186px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  line-height: 1.55;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

#intro-3d {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#intro-3d.out {
  animation: introOut 220ms ease-out forwards;
}

#intro-logo {
  width: min(520px, 92vw);
  max-width: 560px;
  height: auto;
  opacity: 0;
  transform: translateY(16px) scale(0.82);
  filter: blur(8px);
}

#intro-logo.is-enter {
  animation: introLogoGrow 1050ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards;
}

#intro-3d .intro-fallback-wordmark {
  color: #000;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1;
}

@keyframes introLogoGrow {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.35);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1.5);
    filter: blur(0);
  }
}

@keyframes introOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

#site-shell {
  opacity: 0;
  transition: opacity 800ms ease;
}

body.intro-playing {
  overflow: hidden;
}

body.intro-playing #site-shell {
  opacity: 0;
}

body.intro-done #site-shell {
  opacity: 1;
}

body.intro-done #intro-3d {
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

main {
  overflow: clip;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6.8rem 0;
}

.section[id] {
  scroll-margin-top: calc(var(--nav-h) + 14px);
}

.section-light {
  background: var(--bg);
}

.section-dark {
  color: var(--text-on-dark);
  background:
    radial-gradient(900px 320px at 5% 0%, rgba(167, 136, 91, 0.18), transparent 70%),
    radial-gradient(900px 320px at 100% 100%, rgba(167, 136, 91, 0.1), transparent 70%),
    linear-gradient(180deg, var(--surface-dark) 0%, var(--surface-dark-2) 100%);
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}

.section-head {
  display: grid;
  gap: 0.65rem;
  max-width: 760px;
}

.section-head h2,
.section-head h1,
.hero-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-head h2,
.section-head h1 {
  font-size: clamp(1.9rem, 4.1vw, 3.2rem);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.7;
}

.section-dark .section-head p {
  color: #b8c6d8;
}

.section-dark .page-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-on-dark);
  box-shadow: none;
}

.section-dark .page-card p,
.section-dark .page-card li,
.section-dark .page-card span,
.section-dark .page-card label {
  color: rgba(237, 242, 249, 0.78);
}

.section-dark .page-card h3,
.section-dark .page-card strong {
  color: var(--text-on-dark);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--bar-white);
  border-bottom: 1px solid transparent;
  transition: background-color var(--ease), backdrop-filter var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.site-nav.scrolled {
  background: var(--bar-white);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 26px rgba(16, 23, 33, 0.08);
}

.nav-inner {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  transition: min-height var(--ease);
}

.site-nav.scrolled .nav-inner {
  min-height: var(--nav-h-scrolled);
}

.brand-home img {
  width: var(--logo-size-desktop);
  height: auto;
  filter: grayscale(1) contrast(1.06);
  transition: opacity var(--ease);
}

.brand-wordmark {
  display: inline-block;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.96rem;
  color: #101821;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.audience-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  margin-left: 0.45rem;
  margin-right: auto;
  border: 1px solid #d7e0ea;
  border-radius: var(--radius-pill);
  background: var(--bar-white);
  padding: 0.14rem;
  box-shadow: 0 8px 20px rgba(16, 23, 33, 0.06);
}

.audience-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.62rem;
  border-radius: var(--radius-pill);
  border: 1px solid #ffffff;
  background: var(--bar-white);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #101821;
  transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.audience-link:hover,
.audience-link:focus-visible {
  background: #101821;
  color: #f5f8fc;
  border-color: #101821;
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 6px 14px rgba(16, 23, 33, 0.2);
}

.audience-link.is-active {
  background: #101821;
  color: #f5f8fc;
  border-color: #101821;
  box-shadow: 0 6px 14px rgba(16, 23, 33, 0.2);
}

.site-nav.scrolled .audience-switch {
  transform: scale(0.94);
}

.site-nav.scrolled .audience-link {
  min-height: 26px;
  font-size: 0.62rem;
  padding: 0 0.56rem;
}

.lang-switch {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.22rem;
}

.lang-btn {
  border: 0;
  background: transparent;
  border-radius: var(--radius-pill);
  min-width: 40px;
  min-height: 32px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  color: #3d4654;
  transition: background-color var(--ease), color var(--ease);
}

.lang-btn.is-active {
  background: #101721;
  color: #fff;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 0.78rem 1.18rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: #111a24;
  color: #fff;
  border-color: #111a24;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 10px 22px rgba(16, 23, 33, 0.2);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #f2f6fc;
  background: rgba(255, 255, 255, 0.06);
}

.section-light .btn-ghost {
  color: #111a24;
  border-color: #cad5e1;
  background: transparent;
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #17212f;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-lines::before {
  transform: translateY(-5px);
}

.menu-lines::after {
  transform: translateY(3px);
}

.menu-btn.is-open .menu-lines {
  transform: rotate(45deg);
}

.menu-btn.is-open .menu-lines::before {
  transform: rotate(-90deg);
}

.menu-btn.is-open .menu-lines::after {
  opacity: 0;
}

.mobile-menu {
  position: fixed;
  right: 1rem;
  top: calc(var(--nav-h) + 0.6rem);
  width: min(280px, calc(100% - 2rem));
  background: var(--bar-white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.8rem;
  box-shadow: var(--shadow-soft);
  display: none;
  z-index: 55;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.64rem 0.66rem;
  border-radius: 10px;
  font-size: 0.93rem;
  color: #2f3947;
}

.menu-app-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.menu-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 20px;
  border-radius: 999px;
  background: #7c3aed;
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0.45rem;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: #f1f5f9;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92vh, 940px);
  margin-top: 0;
  padding-top: calc(var(--nav-h) + 6.35rem);
  padding-bottom: 7rem;
  display: flex;
  align-items: center;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  z-index: -3;
  background: url("assets/college 1.jpeg") center 30% / cover no-repeat;
  transform: translate3d(var(--hero-x, 0px), var(--hero-y, 0px), 0) scale(1.03);
  animation: heroBgDrift 11s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64) 0%, rgba(245, 247, 250, 0.9) 58%, rgba(245, 247, 250, 1) 100%),
    radial-gradient(900px 280px at 50% 0, rgba(16, 23, 33, 0.08), transparent 70%);
}

.hero-content {
  max-width: 860px;
  text-align: center;
  animation: heroEnter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title {
  margin-top: 0.8rem;
  font-size: clamp(2.35rem, 7vw, 5.4rem);
  text-wrap: balance;
}

.hero-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: titleIn 640ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  margin: 1.3rem auto 0;
  max-width: 50ch;
  font-size: clamp(1.04rem, 1.9vw, 1.28rem);
  line-height: 1.7;
  color: #293341;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero-actions .btn {
  animation: heroCtaIn 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions .btn:nth-child(1) {
  animation-delay: 0.16s;
}

.hero-actions .btn:nth-child(2) {
  animation-delay: 0.24s;
}

.hero-app-preview-link {
  display: block;
  margin: 1.35rem auto 0;
  width: min(560px, 100%);
}

.hero-app-preview {
  position: relative;
  margin: 0 auto;
  width: min(560px, 100%);
  border: 1px solid #d7e1eb;
  border-radius: 22px;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 44px rgba(16, 23, 33, 0.16);
  overflow: hidden;
  transform: translate3d(var(--app-x, 0px), var(--app-y, 0px), 0);
  animation: heroCardIn 980ms cubic-bezier(0.22, 1, 0.36, 1) 0.18s both, heroCardFloat 5.2s ease-in-out 1.2s infinite;
}

.hero-app-preview-link:hover .hero-app-preview,
.hero-app-preview-link:focus-visible .hero-app-preview {
  transform: translate3d(var(--app-x, 0px), var(--app-y, 0px), 0) translateY(-3px) scale(1.01);
  box-shadow: 0 28px 52px rgba(16, 23, 33, 0.24);
}

.hero-app-preview::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -96px;
  top: -96px;
  border-radius: 50%;
  background: rgba(167, 136, 91, 0.14);
  pointer-events: none;
}

.hero-app-badge {
  position: absolute;
  top: 0.64rem;
  left: 0.72rem;
  z-index: 2;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(167, 136, 91, 0.5);
  background: rgba(255, 255, 255, 0.92);
  color: #6f5734;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.24rem 0.58rem;
  overflow: hidden;
}

.hero-app-badge::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
  animation: badgeSweep 2.8s ease-in-out 1.4s infinite;
}

.hero-app-media-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d4dde7;
  background: #fff;
}

.hero-app-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.hero-app-copy {
  margin: 0.65rem 0 0.05rem;
  text-align: center;
  color: #465569;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-marquee {
  margin: 1.2rem auto 0;
  max-width: 740px;
  border-top: 1px solid rgba(17, 26, 36, 0.14);
  border-bottom: 1px solid rgba(17, 26, 36, 0.14);
  padding: 0.45rem 0;
  overflow: hidden;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  gap: 1.2rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f5c6e;
  animation: heroTickerMove 22s linear infinite;
}

.hero-marquee-track span::after {
  content: "•";
  margin-left: 1.2rem;
  color: rgba(167, 136, 91, 0.68);
}

@keyframes heroTickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes heroEnter {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroCtaIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroCardFloat {
  0%,
  100% {
    box-shadow: 0 22px 44px rgba(16, 23, 33, 0.16);
  }
  50% {
    box-shadow: 0 28px 54px rgba(16, 23, 33, 0.2);
  }
}

@keyframes badgeSweep {
  0%,
  25% {
    left: -42%;
  }
  55%,
  100% {
    left: 115%;
  }
}

@keyframes heroBgDrift {
  0% {
    transform: translate3d(var(--hero-x, 0px), calc(var(--hero-y, 0px) - 3px), 0) scale(1.03);
  }
  100% {
    transform: translate3d(var(--hero-x, 0px), calc(var(--hero-y, 0px) + 3px), 0) scale(1.05);
  }
}

.scroll-down {
  display: block;
  line-height: 0;
  font-size: 0;
  position: absolute;
  left: 50%;
  bottom: 1.55rem;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  text-decoration: none !important;
  border: 0;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  animation: scrollDownPulse 2.1s ease-in-out infinite;
}

.scroll-down::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-right: 2px solid rgba(17, 26, 36, 0.52);
  border-bottom: 2px solid rgba(17, 26, 36, 0.52);
  transform: rotate(45deg);
}

@keyframes scrollDownPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.65;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

.about-text-block {
  margin: 1.2rem 0 0;
  max-width: 72ch;
  color: #495869;
  font-size: 1.04rem;
  line-height: 1.75;
}

.about-row {
  margin-top: 0.95rem;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.about-row .about-text-block {
  margin: 0;
}

.about-logo-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  margin: 0;
}

.about-logo {
  width: min(280px, 100%);
  margin: 0 auto;
  filter: grayscale(1) contrast(1.05);
}

.about-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.about-card:hover,
.about-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(167, 136, 91, 0.45);
  box-shadow: var(--shadow-card);
}

.about-card strong,
.value-card span,
.process-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #87683d;
  border: 1.5px solid rgba(167, 136, 91, 0.56);
  background: rgba(167, 136, 91, 0.12);
}

.about-card h3 {
  margin: 0.74rem 0 0;
  font-size: 1.08rem;
}

.about-card p {
  margin: 0.44rem 0 0;
  color: #4d5a6a;
}

.value-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}

.value-card {
  border: 1px solid rgba(231, 241, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 28px rgba(8, 14, 22, 0.24);
  padding: 1.2rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.value-card:hover,
.value-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(212, 188, 149, 0.45);
  box-shadow: 0 18px 34px rgba(8, 14, 22, 0.3);
}

.value-card p {
  margin: 0.75rem 0 0;
  color: #d8e1ed;
  line-height: 1.62;
}

.process-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.process-step {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.86rem;
  align-items: start;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.process-step:hover,
.process-step:focus-within {
  transform: translateY(-2px);
  border-color: rgba(167, 136, 91, 0.44);
  box-shadow: var(--shadow-card);
}

.process-step h3 {
  margin: 0.16rem 0 0;
  font-size: 1.06rem;
}

.process-step p {
  margin: 0.34rem 0 0;
  color: #4d5a6a;
}

.section-sport {
  position: relative;
  isolation: isolate;
  color: #f2f7ff;
  background: #111a26;
}

.sport-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/sport1.jpeg") center 46% / cover no-repeat;
  filter: saturate(1.02) contrast(1.08);
}

.section-sport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13, 20, 31, 0.74) 0%, rgba(13, 20, 31, 0.9) 100%),
    radial-gradient(700px 260px at 50% 0, rgba(167, 136, 91, 0.22), transparent 70%);
}

.section-sport .section-head p {
  color: #d2deed;
}

.sports-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.sport-card {
  border: 1px solid rgba(220, 232, 248, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  padding: 1.18rem 0.95rem;
  text-align: center;
  transition: transform var(--ease), border-color var(--ease), background-color var(--ease);
}

.sport-card:hover,
.sport-card:focus-within {
  transform: scale(1.02);
  border-color: rgba(212, 188, 149, 0.54);
  background: rgba(255, 255, 255, 0.1);
}

.sport-card span {
  display: block;
  font-size: 1.58rem;
  margin-bottom: 0.45rem;
}

.sport-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
}

.accordion {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 1.02rem 0.2rem;
  text-align: left;
  font: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-weight: 600;
}

.accordion-btn span:last-child {
  color: #687486;
}

.accordion-panel {
  padding: 0 0.2rem 1rem;
}

.accordion-panel p {
  margin: 0;
  color: #536173;
}

.faq-list-title {
  margin: 0 0 0.5rem;
}

.faq-steps {
  margin: 0.2rem 0 0.9rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.25rem;
}

.faq-cta {
  margin-top: 1.4rem;
}

.faq-ghost {
  color: #111a24;
  border-color: #cad5e1;
  background: transparent;
}

.section-cta .section-head p {
  color: #c0cede;
}

.contact-form {
  margin-top: 2rem;
  border: 1px solid rgba(228, 239, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 1rem;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.88rem;
  color: #d4dfed;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  border: 1px solid rgba(217, 229, 245, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f1824;
  padding: 0.72rem 0.78rem;
}

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

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(167, 136, 91, 0.8);
  outline-offset: 2px;
}

.form-confirm {
  margin-top: 0.9rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(217, 229, 245, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
  color: #deebfb;
  display: none;
}

.form-confirm.show {
  display: block;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--bar-white);
  padding: 2.2rem 0 1.2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

.footer-brand-wrap {
  display: grid;
  gap: 0.65rem;
  max-width: 640px;
}

.footer-brand-wrap img {
  width: var(--logo-size-desktop);
  filter: grayscale(1) contrast(1.06);
}

.footer-brand-wrap p {
  margin: 0;
  color: #495768;
  line-height: 1.65;
}

.footer-wordmark {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1rem;
  color: #101821;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: #3b4757;
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #111a24;
}

.footer-bottom {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  text-align: center;
  font-size: 0.8rem;
  color: #677487;
}

.page-main {
  padding-top: calc(var(--nav-h) + 2.9rem);
}

.coach-page.page-main {
  padding-top: calc(var(--nav-h) + 2.6rem);
}

.page-back-wrap {
  position: fixed;
  top: calc(var(--nav-h) + 1.1rem);
  left: 1rem;
  z-index: 56;
  margin: 0;
  text-align: left;
  pointer-events: none;
}

.page-back-home {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #101821;
  border-radius: 999px;
  background: #101821;
  color: #f5f8fc;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(16, 23, 33, 0.18);
  transition: transform var(--ease), background-color var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 31;
}

.page-back-home:hover,
.page-back-home:focus-visible {
  background: #0b111a;
  border-color: #0b111a;
  color: #ffffff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 12px 22px rgba(16, 23, 33, 0.24), 0 0 0 3px rgba(16, 24, 33, 0.12);
}

.page-hero {
  padding-top: calc(var(--nav-h) + 3rem);
}

.page-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.page-grid {
  display: grid;
  gap: 0.9rem;
}

.page-grid-three {
  display: grid;
  gap: 0.9rem;
}

.coach-page .section {
  padding-top: 5.4rem;
  padding-bottom: 5.4rem;
}

.coach-page .section-head {
  margin-inline: auto;
  text-align: center;
}

.coach-page .section-head h1,
.coach-page .section-head h2,
.coach-page .section-head p,
.coach-page .section-head .eyebrow {
  text-align: center;
}

.coach-hero {
  padding-top: 2.7rem;
  padding-bottom: 6.2rem;
  min-height: 84vh;
  position: relative;
  overflow: hidden;
  background-image: url("assets/coach-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 100%;
}

.coach-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.58) 0%, rgba(8, 12, 18, 0.46) 52%, rgba(8, 12, 18, 0.62) 100%);
  pointer-events: none;
}

.coach-hero .container {
  position: relative;
  z-index: 1;
}

.coach-hero .section-head h1,
.coach-hero .section-head p,
.coach-hero .section-head .eyebrow,
.coach-hero .coach-note {
  color: #f3f7fc;
}

.coach-hero .coach-summary-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  max-width: 760px;
  width: 100%;
  margin-inline: auto;
  padding: 0.5rem 0;
  border-radius: 0;
}

.coach-hero-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
}

.coach-summary-lead {
  margin: 0.1rem auto 0.95rem;
  max-width: 610px;
  font-size: 0.94rem;
  color: rgba(243, 247, 252, 0.86);
  line-height: 1.5;
  text-align: center;
}

.coach-summary-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  text-align: center;
  font-size: clamp(1.16rem, 2.2vw, 1.38rem);
  letter-spacing: -0.02em;
  color: #f3f7fc;
}

.coach-summary-list {
  display: grid;
  gap: 0.34rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.coach-summary-row {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  color: rgba(243, 247, 252, 0.94);
  font-size: 0.92rem;
  line-height: 1.4;
}

.coach-summary-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c6a15b;
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.18);
}

.coach-note {
  margin-top: 0.18rem;
  color: rgba(243, 247, 252, 0.92);
}

.coach-hero-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.68rem;
  flex-wrap: wrap;
  margin: 0.42rem auto 0;
  color: rgba(243, 247, 252, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coach-hero-meta span + span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  margin-right: 0.68rem;
  background: rgba(198, 161, 91, 0.88);
}

.coach-section-tight {
  padding-top: 3.6rem;
}

.coach-adv-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
  grid-template-columns: 1fr;
}

#founder-advantage .coach-adv-grid .page-card {
  position: relative;
  overflow: hidden;
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background-color var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}

.reveal.visible #founder-advantage .coach-adv-grid .page-card,
#founder-advantage .reveal.visible .coach-adv-grid .page-card {
  animation: founderCardIn 620ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#founder-advantage .coach-adv-grid .page-card:nth-child(2) {
  animation-delay: 70ms;
}

#founder-advantage .coach-adv-grid .page-card:nth-child(3) {
  animation-delay: 140ms;
}

#founder-advantage .coach-adv-grid .page-card:nth-child(4) {
  animation-delay: 210ms;
}

#founder-advantage .coach-adv-grid .page-card::after {
  content: "";
  position: absolute;
  inset: -120% -40%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(198, 161, 91, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-60%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

#founder-advantage .coach-adv-grid .page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      180px circle at var(--mx) var(--my),
      rgba(198, 161, 91, 0.24),
      rgba(198, 161, 91, 0.08) 34%,
      transparent 72%
    );
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease-out;
}

#founder-advantage .coach-adv-grid .page-card:hover,
#founder-advantage .coach-adv-grid .page-card:focus-within {
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-4px);
  border-color: rgba(198, 161, 91, 0.42);
  box-shadow: 0 16px 30px rgba(9, 12, 18, 0.18), 0 0 0 1px rgba(198, 161, 91, 0.22);
}

#founder-advantage .coach-adv-grid .page-card:hover::after,
#founder-advantage .coach-adv-grid .page-card:focus-within::after {
  opacity: 1;
  transform: translateX(36%) rotate(8deg);
}

#founder-advantage .coach-adv-grid .page-card:hover::before,
#founder-advantage .coach-adv-grid .page-card:focus-within::before {
  opacity: 1;
}

.coach-counter-card {
  margin-top: 1rem;
}

#founder-advantage .coach-counter-card {
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

#founder-advantage .coach-counter-card:hover,
#founder-advantage .coach-counter-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(198, 161, 91, 0.42);
  box-shadow: 0 16px 30px rgba(9, 12, 18, 0.18), 0 0 0 1px rgba(198, 161, 91, 0.22);
}

.coach-counter-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  text-align: center;
}

.coach-counter-row {
  margin-bottom: 0.72rem;
}

.coach-counter-row > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.coach-counter-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  margin-top: 0.34rem;
  overflow: hidden;
}

.coach-counter-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #a7885b;
  transition: width 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coach-counter-card .btn {
  margin-top: 0.6rem;
  display: inline-flex;
  margin-inline: auto;
}

.coach-demand-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
  grid-template-columns: 1fr;
}

.coach-demand-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0.7rem;
  text-align: center;
}

.coach-demand-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  margin: 0.1rem 0 0.65rem;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #c6a15b 0%,
    #c6a15b var(--range-progress, 0%),
    rgba(255, 255, 255, 0.24) var(--range-progress, 0%),
    rgba(255, 255, 255, 0.24) 100%
  );
  outline: none;
  transition: background 90ms linear;
}

.coach-demand-range::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: transparent;
}

.coach-demand-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -4px;
  border-radius: 50%;
  border: 2px solid rgba(11, 11, 12, 0.24);
  background: #fff;
  box-shadow: 0 3px 10px rgba(5, 10, 16, 0.28);
  transition: transform 160ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 160ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coach-demand-range::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.coach-demand-range::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: #c6a15b;
}

.coach-demand-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(11, 11, 12, 0.24);
  background: #fff;
  box-shadow: 0 3px 10px rgba(5, 10, 16, 0.28);
}

.coach-demand-range:hover::-webkit-slider-thumb,
.coach-demand-range:focus-visible::-webkit-slider-thumb,
.coach-demand-range:active::-webkit-slider-thumb {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(5, 10, 16, 0.34);
}

.coach-demand-number {
  margin: 0;
  font-size: 1.35rem;
  color: var(--text-on-dark);
  text-align: center;
}

.coach-demand-copy {
  margin: 0.4rem 0 0;
  color: rgba(237, 242, 249, 0.72);
  text-align: center;
}

.coach-globe-card {
  display: grid;
  place-items: center;
  min-height: 240px;
}

.coach-page .hero-actions {
  justify-content: center;
}

.coach-page .page-card h3,
.coach-page .page-card p {
  text-align: center;
}

.coach-globe {
  position: relative;
  width: min(286px, 76vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(179, 220, 255, 0.25), transparent 34%),
    radial-gradient(circle at 72% 76%, rgba(9, 25, 40, 0.58), transparent 46%),
    radial-gradient(circle at 50% 50%, #17324a 0%, #102438 54%, #0a1928 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset -28px -22px 52px rgba(2, 9, 16, 0.6),
    inset 16px 12px 32px rgba(170, 214, 255, 0.16),
    0 18px 36px rgba(6, 13, 21, 0.4);
  overflow: hidden;
}

.coach-globe::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(60px 38px at 36% 34%, rgba(124, 181, 110, 0.85), transparent 72%),
    radial-gradient(86px 52px at 52% 57%, rgba(98, 161, 96, 0.8), transparent 74%),
    radial-gradient(54px 30px at 66% 31%, rgba(121, 178, 106, 0.76), transparent 76%),
    radial-gradient(42px 28px at 72% 64%, rgba(95, 154, 86, 0.74), transparent 76%);
  opacity: 0.64;
  filter: saturate(0.92) blur(0.25px);
  animation: globeDrift 22s linear infinite;
}

.coach-globe::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 48%, transparent 100%);
  pointer-events: none;
}

.coach-globe-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(209, 229, 246, 0.28);
  animation: globeSpin 22s linear infinite;
}

.coach-globe-ring--2 {
  inset: 23%;
  animation-duration: 18s;
  animation-direction: reverse;
}

.coach-globe-ring--3 {
  inset: 37%;
  animation-duration: 14s;
}

.coach-globe-points {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.coach-globe-dot-dyn {
  position: absolute;
  border-radius: 50%;
  background: #c6a15b;
  opacity: 0;
  transform: scale(0.4);
  box-shadow: 0 0 8px rgba(198, 161, 91, 0.32);
  transition: opacity 220ms ease-out, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.coach-globe-dot-dyn.is-active {
  opacity: 0.96;
  transform: scale(1);
}

@keyframes globeSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes globeDrift {
  from {
    transform: translateX(0) scale(1);
  }
  to {
    transform: translateX(8%) scale(1.04);
  }
}

@keyframes founderCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(167, 136, 91, 0.54);
  color: #7c633e;
  background: rgba(167, 136, 91, 0.12);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.26rem 0.58rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 760px) {
  .section {
    padding: 7.4rem 0;
  }

  .about-row {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.2rem;
  }

  .about-logo-card {
    padding: 1.15rem;
  }

  .about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sports-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form-grid,
  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .coach-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .coach-adv-grid {
    grid-template-columns: 1fr;
  }

  .coach-demand-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: row;
    align-items: flex-end;
  }

  .hero-app-preview-link {
    width: min(620px, 100%);
  }
}

@media (max-width: 760px) {
  .brand-home img {
    width: var(--logo-size-mobile);
  }

  .nav-cta {
    display: none;
  }

  .audience-switch {
    display: none;
  }

  .hero {
    min-height: 0;
    margin-top: 0;
    padding-top: calc(var(--nav-h) + 5.35rem);
    padding-bottom: 5rem;
  }

  .hero-bg {
    background-position: center 34%;
  }

  .hero-bg,
  .hero-overlay {
    inset: 0;
  }

  .hero-marquee {
    margin-top: 0.95rem;
  }

  .hero-app-preview {
    margin-top: 1.05rem;
    padding: 0.62rem;
    border-radius: 16px;
  }

  .hero-app-preview-link {
    margin-top: 1.05rem;
  }

  .hero-app-badge {
    top: 0.45rem;
    left: 0.45rem;
    font-size: 0.62rem;
  }

  .scroll-down {
    bottom: 1.05rem;
  }

  .section {
    padding: 4.6rem 0;
  }

  .page-back-wrap {
    top: calc(var(--nav-h) + 0.9rem);
    left: 0.72rem;
  }

  .page-back-home {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  .audience-switch {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-title-word {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-content,
  .hero-actions .btn,
  .hero-app-preview,
  .hero-app-badge::after,
  .hero-bg {
    animation: none !important;
    transform: none !important;
  }

  .hero-marquee-track,
  .scroll-down {
    animation: none;
  }

  #founder-advantage .coach-adv-grid .page-card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  #founder-advantage .coach-adv-grid .page-card:hover,
  #founder-advantage .coach-adv-grid .page-card:focus-within,
  #founder-advantage .coach-counter-card:hover,
  #founder-advantage .coach-counter-card:focus-within {
    transform: none;
  }

  #founder-advantage .coach-adv-grid .page-card::before,
  #founder-advantage .coach-adv-grid .page-card::after {
    display: none;
  }
}

#hero .hero-actions .btn {
  background: rgba(255, 255, 255, 0.92);
  color: #101821;
  border-color: rgba(255, 255, 255, 0.92);
}

#hero .hero-actions .btn:hover,
#hero .hero-actions .btn:focus-visible {
  background: #101821;
  color: #f3f7fc;
  border-color: #101821;
}
