/* Hallmark - pre-emit critique: P5 H4 E5 S5 R4 V5 */
:root {
  --color-ink: #052b31;
  --color-muted: #557176;
  --color-paper: #ffffff;
  --color-fog: #f3f7f7;
  --color-surface: #e8f0f1;
  --color-teal: #00778b;
  --color-teal-dark: #003438;
  --color-green: #6bbd46;
  --color-green-bright: #7bd955;
  --color-red: #a90707;
  --color-charcoal: #101719;
  --color-charcoal-2: #182529;
  --color-court: #162326;
  --color-court-deep: #071315;
  --color-white: #ffffff;
  --color-line: rgba(0, 52, 56, 0.14);
  --color-line-dark: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 24px 64px rgba(0, 52, 56, 0.16), 0 6px 16px rgba(0, 52, 56, 0.08);
  --shadow-hard: 0 18px 44px rgba(0, 52, 56, 0.18);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.32, 0.72, 0, 1);
  --font-display: "Teko", Impact, sans-serif;
  --font-body: "Noto Sans", Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(0, 52, 56, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, var(--color-paper) 0%, var(--color-fog) 54%, var(--color-paper) 100%);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.section-pad {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(calc(100% - 32px), var(--container));
  min-height: 70px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 52, 56, 0.92);
  color: var(--color-white);
  box-shadow: 0 18px 40px rgba(0, 52, 56, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-teal-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 180ms var(--ease-standard), background 180ms var(--ease-standard);
}

.nav-links a:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.lang-toggle span {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: background 180ms var(--ease-standard), color 180ms var(--ease-standard);
}

.lang-toggle span.is-active {
  background: var(--color-green);
  color: var(--color-teal-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard), background 180ms var(--ease-standard), color 180ms var(--ease-standard);
}

.header-cta {
  padding: 0 18px;
  background: var(--color-green);
  color: var(--color-teal-dark);
  font-size: 0.9rem;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn:active,
.header-cta:active,
.chatbot-toggle:active,
.chatbot-form button:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  gap: 8px;
  background: var(--color-green);
  color: var(--color-teal-dark);
  box-shadow: 0 16px 28px rgba(107, 189, 70, 0.26);
}

.btn-primary::after {
  content: "\2192";
  font-weight: 700;
  transition: transform 200ms var(--ease-standard);
}

.btn-primary:hover {
  background: var(--color-green-bright);
}

.btn-primary:hover::after {
  transform: translateX(4px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.hero {
  width: 100%;
  min-height: 220vh;
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(560px, 1.32fr);
  align-items: start;
  gap: clamp(26px, 4vw, 54px);
  padding: 84px max(16px, calc((100% - 1380px) / 2)) 86px;
  color: var(--color-white);
  background:
    linear-gradient(120deg, rgba(0, 52, 56, 0.98) 0%, rgba(0, 52, 56, 0.9) 45%, rgba(16, 23, 25, 0.96) 100%),
    radial-gradient(circle at 82% 22%, rgba(107, 189, 70, 0.3), transparent 28rem);
  border-bottom: 8px solid var(--color-green);
}

.hero-copy {
  position: sticky;
  top: 126px;
}

@keyframes textRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy .eyebrow,
.hero-copy .hero-lede,
.hero-copy .hero-actions,
.hero-copy .hero-facts {
  opacity: 0;
  animation: textRise 620ms var(--ease-out) both;
}

.hero-copy .eyebrow {
  animation-delay: 100ms;
}

.hero-copy .hero-lede {
  animation-delay: 380ms;
}

.hero-copy .hero-actions {
  animation-delay: 520ms;
}

.hero-copy .hero-facts {
  animation-delay: 660ms;
}

.type-caret {
  display: inline-block;
  width: 3px;
  height: 0.82em;
  margin-left: 0.05em;
  vertical-align: -0.06em;
  background: var(--color-green);
  animation: caretBlink 1.05s steps(1, end) infinite;
}

@keyframes caretBlink {
  0%,
  50% {
    opacity: 1;
  }
  50.01%,
  100% {
    opacity: 0;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

h1 {
  max-width: 640px;
  font-size: clamp(3.6rem, 5.6vw, 5.1rem);
  line-height: 0.86;
  overflow-wrap: normal;
}

.hero-title {
  display: grid;
  gap: 0.04em;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

h2 {
  max-width: 760px;
  font-size: clamp(2.75rem, 3.7vw, 4.15rem);
  line-height: 0.9;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
  text-wrap: balance;
}

h3 {
  font-size: 2rem;
  line-height: 0.9;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  font-weight: 600;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 42px 0 0;
}

.hero-facts div {
  padding: 16px 16px 14px;
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--color-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-frame {
  position: relative;
  position: sticky;
  top: 104px;
  min-height: min(72vh, 760px);
  display: grid;
  place-items: center;
  isolation: isolate;
  animation: materialize 860ms var(--ease-out) 170ms both;
}

.frame-inner {
  position: relative;
  width: min(100%, 920px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 100% 54px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 54px 100%,
    radial-gradient(circle at 50% 16%, rgba(107, 189, 70, 0.28), transparent 16rem),
    linear-gradient(160deg, var(--color-court) 0%, var(--color-court-deep) 100%);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.5), 18px 22px 70px rgba(107, 189, 70, 0.18);
}

.hero-sequence-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: saturate(1.05) contrast(1.05);
}

.frame-inner::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.frame-inner::after {
  content: "";
  position: absolute;
  width: 58%;
  height: 34%;
  left: 21%;
  bottom: -15%;
  border: 2px solid rgba(107, 189, 70, 0.5);
  border-radius: 50% 50% 0 0;
  z-index: 2;
}

.frame-label {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-green);
  color: var(--color-teal-dark);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frame-scorecard {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  min-width: 172px;
  padding: 16px;
  border-left: 4px solid var(--color-red);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-teal-dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.frame-scorecard span,
.frame-scorecard strong {
  display: block;
}

.frame-scorecard span {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frame-scorecard strong {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 0.82;
  text-transform: uppercase;
}

.frame-orbit {
  position: absolute;
  border: 1px solid rgba(107, 189, 70, 0.42);
  border-radius: 50%;
  animation: orbit 14s linear infinite;
  will-change: transform;
}

.frame-orbit-one {
  width: 520px;
  height: 520px;
}

.frame-orbit-two {
  width: 360px;
  height: 680px;
  border-color: rgba(255, 255, 255, 0.2);
  animation-duration: 18s;
  animation-direction: reverse;
}

.court-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  pointer-events: none;
}

.court-lines span {
  position: absolute;
  border: 2px solid var(--color-green);
}

.court-lines span:nth-child(1) {
  width: 46%;
  height: 46%;
  left: 27%;
  top: -12%;
  border-radius: 50%;
}

.court-lines span:nth-child(2) {
  width: 74%;
  height: 38%;
  left: 13%;
  bottom: -12%;
  border-radius: 50% 50% 0 0;
}

.court-lines span:nth-child(3) {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
}

@keyframes orbit {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.045);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes materialize {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.can-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
}

.can-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 420ms var(--ease-out),
    transform 420ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.quick-strip {
  width: min(calc(100% - 32px), var(--container));
  margin: -42px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

.quick-strip div,
.quick-strip a {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 20px;
  border-right: 1px solid var(--color-line);
  transition: transform 180ms var(--ease-standard), background 180ms var(--ease-standard);
}

.quick-strip div:hover {
  transform: translateY(-3px);
  background: var(--color-fog);
}

.quick-strip a:hover {
  transform: translateY(-3px);
  background: var(--color-teal-dark);
}

.quick-strip div:first-child {
  border-top: 5px solid var(--color-teal);
}

.quick-strip div:nth-child(2) {
  border-top: 5px solid var(--color-green);
}

.quick-strip div:nth-child(3) {
  border-top: 5px solid var(--color-red);
}

.quick-strip span {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-strip strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.82;
  color: var(--color-teal-dark);
}

.quick-strip a {
  align-items: flex-start;
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 900;
}

.split-section,
.proof-section,
.apply-section,
.about-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 62px);
  align-items: start;
}

.section-kicker,
.proof-copy,
.apply-copy,
.about-band > div {
  max-width: 560px;
}

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

.detail-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard), border-color 180ms var(--ease-standard);
}

.detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 119, 139, 0.28);
  box-shadow: var(--shadow-hard);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 40px;
  border-radius: 50%;
  background: var(--color-teal-dark);
  color: var(--color-green);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.detail-card p,
.proof-copy p,
.about-band p,
.apply-copy p {
  color: var(--color-muted);
}


.program-panel {
  width: min(calc(100% - 32px), 1280px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  padding-left: clamp(20px, 4vw, 54px);
  padding-right: clamp(20px, 4vw, 54px);
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(180deg, var(--color-charcoal-2), var(--color-charcoal));
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.program-panel .eyebrow {
  color: var(--color-green);
}

.program-heading p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

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

.program-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
}

.program-item span {
  color: var(--color-white);
  font-weight: 900;
}

.program-item small {
  max-width: 230px;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}

.experience-panel {
  width: min(calc(100% - 32px), 1280px);
}

.experience-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.experience-head p:last-child {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.experience-head .eyebrow {
  color: var(--color-teal);
}

.cobrand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.cobrand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-teal-dark);
}

.cobrand-x {
  color: var(--color-green);
  font-size: 1.3rem;
  font-weight: 700;
}

.cobrand-logo {
  width: 52px;
  height: auto;
  border-radius: 8px;
}

.footer-cobrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.footer-cobrand img {
  width: 38px;
  height: auto;
  border-radius: 7px;
}

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

.exp-group {
  padding: 30px;
  border: 1px solid var(--color-line);
  border-top: 6px solid var(--color-teal);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.exp-group-alt {
  border-top-color: var(--color-green);
}

.exp-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color-teal-dark);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exp-tag-alt {
  background: var(--color-green);
  color: var(--color-teal-dark);
}

.exp-group h3 {
  font-size: 1.9rem;
  color: var(--color-teal-dark);
}

.exp-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.exp-list li {
  position: relative;
  padding-left: 30px;
  color: var(--color-ink);
  font-weight: 600;
}

.exp-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: inset 0 0 0 2px var(--color-white), 0 0 0 1px rgba(107, 189, 70, 0.5);
}

.exp-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 5px;
  height: 8px;
  border: solid var(--color-teal-dark);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.image-break {
  width: min(calc(100% - 32px), 1280px);
  margin: 10px auto 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-charcoal);
  box-shadow: var(--shadow-soft);
}

.image-break img {
  display: block;
  width: 100%;
  min-height: 170px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.proof-stack {
  display: grid;
  gap: 14px;
}

.coach-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-charcoal);
  box-shadow: var(--shadow-soft);
}

.coach-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.quote-card {
  padding: 28px;
  border-left: 6px solid var(--color-red);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: var(--shadow-hard);
}

.quote-card p {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.quote-card span {
  color: var(--color-muted);
  font-weight: 900;
}

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

.trust-grid div {
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-white);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 8px;
  color: var(--color-teal-dark);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 0.86;
  text-transform: uppercase;
}

.trust-grid span {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.about-band {
  width: min(calc(100% - 32px), 1280px);
  padding-left: clamp(20px, 4vw, 54px);
  padding-right: clamp(20px, 4vw, 54px);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.about-band p {
  margin: 0;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  font-weight: 600;
}

.apply-section {
  align-items: stretch;
}

.apply-reveal {
  position: relative;
}

.apply-track {
  position: relative;
  height: 180vh;
}

.apply-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--color-fog);
}

.apply-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  transition: opacity 380ms var(--ease-out);
}

.apply-media img {
  width: min(calc(100% - 24px), 1440px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.apply-live {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 380ms var(--ease-out), transform 380ms var(--ease-out);
}

.apply-stage.is-live .apply-media {
  opacity: 0;
}

.apply-stage.is-live .apply-live {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.apply-reveal.no-anim .apply-track {
  height: auto;
}

.apply-reveal.no-anim .apply-stage {
  position: static;
  height: auto;
  display: block;
  overflow: visible;
  background: transparent;
}

.apply-reveal.no-anim .apply-media {
  display: none;
}

.apply-reveal.no-anim .apply-live {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.contact-card {
  max-width: 380px;
  margin-top: 30px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--color-teal-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-hard);
}

.contact-card span,
.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card span {
  color: var(--color-green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.84;
  text-transform: uppercase;
}

.contact-card a {
  margin-top: 8px;
  color: var(--color-white);
  font-weight: 900;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--color-line);
  border-top: 6px solid var(--color-green);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--color-teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-form label:has(textarea),
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-fog);
  color: var(--color-ink);
  outline: 0;
}

.lead-form input,
.lead-form select {
  height: 50px;
  padding: 0 14px;
}

.lead-form textarea {
  resize: vertical;
  padding: 14px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(0, 119, 139, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.86rem;
}

.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 34px 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--color-teal-dark);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 0.85;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--color-teal);
  font-weight: 900;
}

.chatbot-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 8px 16px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--color-teal-dark);
  color: var(--color-white);
  box-shadow: 0 20px 50px rgba(0, 52, 56, 0.24);
  cursor: pointer;
  transition: transform 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
}

.chatbot-toggle span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-teal-dark);
  font-weight: 950;
}

.chatbot-toggle strong {
  font-weight: 950;
}

.chatbot-panel {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 31;
  width: min(calc(100vw - 40px), 390px);
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: 0 28px 80px rgba(0, 52, 56, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  filter: blur(4px);
  transition:
    opacity 260ms var(--ease-out),
    transform 260ms var(--ease-out),
    filter 260ms var(--ease-out);
}

.chatbot-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.chatbot-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background: var(--color-teal-dark);
  color: var(--color-white);
}

.chatbot-header strong,
.chatbot-header span {
  display: block;
}

.chatbot-header strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 0.86;
  text-transform: uppercase;
}

.chatbot-header span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.chatbot-close {
  border: 0;
  background: transparent;
  color: var(--color-green);
  cursor: pointer;
  font-weight: 900;
}

.chatbot-messages {
  min-height: 180px;
  max-height: 260px;
  overflow: auto;
  padding: 18px;
  background: var(--color-fog);
}

.bot-message,
.user-message {
  width: fit-content;
  max-width: 88%;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.bot-message {
  background: var(--color-white);
  color: var(--color-ink);
}

.user-message {
  margin-left: auto;
  background: var(--color-teal);
  color: var(--color-white);
}

.chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--color-line);
}

.chatbot-form input {
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  outline: 0;
}

.chatbot-form button {
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--color-green);
  color: var(--color-teal-dark);
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms var(--ease-standard), background 180ms var(--ease-standard);
}

.chatbot-form button:hover {
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .site-header {
    border-radius: var(--radius-md);
  }

  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .proof-section,
  .apply-section,
  .about-band,
  .program-panel,
  .experience-cols {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-copy,
  .hero-frame {
    position: relative;
    top: auto;
  }

  .hero-frame {
    min-height: auto;
  }

  .quick-strip,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .frame-inner {
    width: min(100%, 860px);
  }

  .apply-track {
    height: auto;
  }

  .apply-stage {
    position: static;
    height: auto;
    display: block;
    overflow: visible;
    background: transparent;
  }

  .apply-media {
    position: relative;
    inset: auto;
  }

  .apply-media img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-md);
  }

  .apply-live {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 20px 0 60px;
  }

  .apply-stage.is-live .apply-media {
    opacity: 1;
  }
}

@media (max-width: 620px) {
  .section-pad {
    width: min(calc(100% - 24px), var(--container));
    padding: 68px 0;
  }

  .site-header {
    top: 8px;
    width: min(calc(100% - 20px), var(--container));
    min-height: 62px;
    margin-top: 8px;
    gap: 8px;
    padding: 8px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1.12rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 62px 12px 68px;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .hero-title span {
    white-space: normal;
  }

  h2 {
    font-size: clamp(2.45rem, 10.5vw, 3.35rem);
    line-height: 0.94;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-facts,
  .detail-grid,
  .quick-strip,
  .trust-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    min-height: auto;
  }

  .frame-inner {
    width: min(100%, 520px);
  }

  .frame-orbit-one {
    width: 310px;
    height: 310px;
  }

  .frame-orbit-two {
    width: 240px;
    height: 430px;
  }

  .quick-strip,
  .image-break {
    width: min(calc(100% - 24px), var(--container));
  }

  .program-item {
    display: grid;
  }

  .program-item small {
    max-width: none;
    text-align: left;
  }

  .site-footer {
    width: min(calc(100% - 24px), var(--container));
    display: grid;
  }

  .chatbot-toggle {
    right: 12px;
    bottom: 12px;
  }

  .chatbot-panel {
    right: 12px;
    bottom: 84px;
    width: min(calc(100vw - 24px), 390px);
  }
}

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

  .can-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .chatbot-panel {
    transform: none;
    filter: none;
  }
}

/* ===== Sexify: kinetic, hover, atmosphere ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--color-teal), var(--color-green-bright));
  box-shadow: 0 0 12px rgba(107, 189, 70, 0.55);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 48;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms var(--ease-standard);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px rgba(107, 189, 70, 0.42), 0 0 0 1px rgba(107, 189, 70, 0.28);
}

.header-cta:hover {
  box-shadow: 0 12px 26px rgba(107, 189, 70, 0.4);
}

.detail-grid,
.experience-cols,
.trust-grid {
  perspective: 1000px;
}

.detail-card,
.exp-group {
  transform-style: preserve-3d;
  will-change: transform;
}

.image-break img {
  will-change: transform;
}

.program-panel {
  position: relative;
  overflow: hidden;
}

.program-panel > * {
  position: relative;
  z-index: 1;
}

.program-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(620px circle at 18% 0%, rgba(107, 189, 70, 0.12), transparent 60%),
    radial-gradient(520px circle at 92% 108%, rgba(0, 119, 139, 0.16), transparent 60%);
  animation: atmoDrift 16s ease-in-out infinite alternate;
}

.program-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(107, 189, 70, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
}

.program-panel:hover::after {
  opacity: 1;
}

@keyframes atmoDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -4%, 0);
  }
}

/* ===== Brand preloader ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 34%, rgba(107, 189, 70, 0.18), transparent 58%),
    linear-gradient(160deg, #003438 0%, #06181b 100%);
  transition: opacity 600ms var(--ease-out);
}

.preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 24px;
}

.preloader-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pl-chip {
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  animation: plPop 700ms var(--ease-out) both;
}

.pl-chip:first-child {
  animation-delay: 120ms;
}

.preloader-logos .pl-chip:last-child {
  animation-delay: 300ms;
}

.pl-chip img {
  display: block;
  height: 92px;
  width: auto;
}

.pl-x {
  color: var(--color-green);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  animation: plPop 700ms var(--ease-out) 210ms both;
}

.preloader-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  animation: plFade 700ms var(--ease-out) 440ms both;
}

.preloader-bar {
  width: min(260px, 70vw);
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-teal), var(--color-green-bright));
  animation: plBar 5s var(--ease-standard) forwards;
}

@keyframes plBar {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes plPop {
  from { opacity: 0; transform: translateY(12px) scale(0.92); }
  to { opacity: 1; transform: none; }
}

@keyframes plFade {
  from { opacity: 0; }
  to { opacity: 0.92; }
}

@media (max-width: 620px) {
  .pl-chip img { height: 68px; }
  .pl-x { font-size: 2rem; }
}

.preloader-pct {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--color-green-bright);
  font-variant-numeric: tabular-nums;
}

/* Co-brand in header nav */
.brand-x {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-green);
}

.brand-mvp {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .brand-x,
  .brand-mvp {
    display: none;
  }
}

/* MVP Lane wordmark in header */
.brand-mvp-name strong,
.brand-mvp-name small {
  display: block;
  white-space: nowrap;
}

.brand-mvp-name strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(92deg, var(--color-green-bright) 0%, #d7f3cf 55%, var(--color-white) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-mvp-name small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .brand-mvp-name {
    display: none;
  }
}

/* ===== Mobile video + hamburger menu ===== */
.hero-video,
.apply-video {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform 240ms var(--ease-standard), opacity 200ms var(--ease-standard);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(0, 52, 56, 0.98);
  box-shadow: 0 24px 60px rgba(0, 52, 56, 0.4);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mobile-menu a:active {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 920px) {
  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero-sequence-frame {
    display: none;
  }

  .hero-video {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .apply-sequence-frame {
    display: none;
  }

  .apply-video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-md);
  }
}

/* Center section copy on phones */
@media (max-width: 620px) {
  .section-kicker,
  .program-heading,
  .proof-copy,
  .apply-copy,
  .about-band > div,
  .about-band > p {
    text-align: center;
  }

  .apply-copy .contact-card {
    text-align: left;
  }
}

/* ===== Basketball cursor (mouse/PC only) ===== */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url("assets/cursor-basketball.png") 18 18, auto;
  }

  a,
  button,
  label,
  summary,
  .btn,
  .header-cta,
  .nav-links a,
  .mobile-menu a,
  .lang-toggle,
  .nav-toggle,
  .chatbot-toggle,
  .chatbot-form button,
  [role="button"] {
    cursor: url("assets/cursor-basketball.png") 18 18, pointer !important;
  }

  input,
  textarea,
  select {
    cursor: auto !important;
  }
}

/* ===== Plan reserve buttons + checkout result pages ===== */
.plan-buy {
  margin-top: 12px;
  align-self: flex-start;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--color-green);
  color: var(--color-teal-dark);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms var(--ease-standard), background 180ms var(--ease-standard), box-shadow 180ms var(--ease-standard);
}

.plan-buy:hover {
  transform: translateY(-2px);
  background: var(--color-green-bright);
  box-shadow: 0 12px 24px rgba(107, 189, 70, 0.32);
}

.plan-buy:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
  box-shadow: none;
  background: var(--color-muted);
  color: var(--color-white);
}

.checkout-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.checkout-card {
  width: min(100%, 520px);
  text-align: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--color-line);
  border-top: 6px solid var(--color-green);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.checkout-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-teal-dark);
  font-size: 2rem;
  font-weight: 900;
}

.checkout-icon-muted {
  background: var(--color-fog);
  color: var(--color-muted);
}

.checkout-card h1 {
  margin: 6px 0 14px;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--color-teal-dark);
}

.checkout-card p {
  margin: 0 0 26px;
  color: var(--color-muted);
}

.checkout-card .btn {
  margin: 0 auto;
}

/* ===== Scrolling marquee ticker ===== */
.marquee {
  width: min(calc(100% - 32px), 1280px);
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, var(--color-teal-dark), var(--color-charcoal));
  box-shadow: var(--shadow-soft);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}


.marquee-group {
  display: flex;
  align-items: center;
  padding: 18px 0;
  white-space: nowrap;
}

.marquee-item {
  padding: 0 26px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-white);
}

.marquee-sep {
  color: var(--color-green);
  font-size: 0.95rem;
}

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

@media (max-width: 620px) {
  .marquee-item {
    font-size: 1.2rem;
    padding: 0 18px;
  }
  .marquee-group {
    padding: 14px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

/* ===== Apply-section package chooser (replaces the old lead form) ===== */
.apply-packages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
  align-self: center;
}

.apply-pkg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: var(--color-fog);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-line);
  box-shadow: 0 14px 30px rgba(15, 42, 52, 0.08);
  border-top: 5px solid var(--color-teal);
}

.apply-pkg:nth-child(2) {
  border-top-color: var(--color-green);
}

.apply-pkg span {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.apply-pkg-desc {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  margin: 2px 0 4px;
}

.apply-pkg strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.82;
  color: var(--color-teal-dark);
}

@media (max-width: 620px) {
  .apply-packages {
    grid-template-columns: 1fr;
  }
}
