* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  cursor: none;
}

a, button {
  cursor: none;
}

::selection {
  background: #F45B19;
  color: #F6F0E6;
}

#cursor-dot,
#cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: #151515;
}

#cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(21,21,21,.45);
  transition: width .25s ease, height .25s ease, background .25s ease;
}

#cursor-ring.active {
  width: 62px;
  height: 62px;
  background: rgba(244,91,25,.12);
  border-color: rgba(244,91,25,.65);
}

.nav-shell {
  background: rgba(246,240,230,.78);
  border: 1px solid rgba(21,21,21,.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 35px rgba(21,21,21,.06);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: #F45B19;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}



.hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(244,91,25,.06), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
    #F6F0E6;
}

#webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-grid {
  opacity: .16;
  background-image:
    linear-gradient(rgba(21,21,21,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,21,21,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.82), transparent 92%);
}

.hero-title {
  font-size: clamp(5.6rem, 13vw, 11rem);
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 34rem;
}

.hero-main-cta {
  box-shadow: 0 14px 30px rgba(21,21,21,.14);
}

.hero-link {
  color: #151515;
}

.hero-link span {
  display: inline-flex;
  transform: translateY(-1px);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(21,21,21,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  padding: 12px 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-pill span {
  color: #F45B19;
}

.hero-visual-panel {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(21,21,21,.08);
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 32%, rgba(244,91,25,.10), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(231,216,196,.45));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 30px 70px rgba(21,21,21,.08);
}

.hero-visual-panel::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(21,21,21,.05);
  pointer-events: none;
}

.hero-visual-glow {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  right: 17%;
  top: 18%;
  background: radial-gradient(circle, rgba(244,91,25,.24), rgba(244,91,25,.04) 58%, transparent 72%);
  filter: blur(18px);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(21,21,21,.08);
  right: 9%;
  top: 14%;
  transform: rotate(-14deg);
}

.hero-orbit-1 { width: 56%; height: 36%; }
.hero-orbit-2 { width: 68%; height: 46%; right: 5%; top: 10%; border-color: rgba(244,91,25,.10); }
.hero-orbit-3 { width: 79%; height: 56%; right: 0; top: 6%; border-color: rgba(21,21,21,.07); }

.hero-ball-shadow {
  position: absolute;
  width: 168px;
  height: 28px;
  left: 57%;
  bottom: 96px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,21,21,.22), rgba(21,21,21,.06) 52%, transparent 74%);
  filter: blur(12px);
}

.hero-mini-badge {
  position: absolute;
  left: 28px;
  top: 28px;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(21,21,21,.08);
  background: rgba(246,240,230,.85);
  padding: 12px 14px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(21,21,21,.6);
  backdrop-filter: blur(10px);
}

.hero-stat-card {
  width: min(100%, 330px);
  padding: 28px;
  border: 1px solid rgba(21,21,21,.1);
  border-radius: 26px;
  background: rgba(246,240,230,.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(21,21,21,.09);
}

.hero-stat-card--floating {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}


.hero-mobile-ball-wrap {
  display: none;
}

.hero-mobile-ball {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,208,146,.75), rgba(255,208,146,0) 18%),
    radial-gradient(circle at 60% 72%, rgba(185,64,9,.18), rgba(185,64,9,0) 35%),
    linear-gradient(145deg, #ff9349 0%, #f66a1d 42%, #ef5a16 70%, #cf4610 100%);
  box-shadow:
    inset -24px -22px 28px rgba(0,0,0,.14),
    inset 18px 18px 24px rgba(255,255,255,.08),
    0 18px 40px rgba(21,21,21,.18);
  animation: mobileBallFloat 4s ease-in-out infinite;
}

.hero-mobile-ball .seam {
  position: absolute;
  display: block;
  background: #111;
  border-radius: 999px;
}

.hero-mobile-ball .seam-h {
  width: 118%;
  height: 8px;
  left: -9%;
  top: 49%;
  transform: translateY(-50%);
}

.hero-mobile-ball .seam-v {
  width: 8px;
  height: 118%;
  top: -9%;
  left: 49%;
  transform: translateX(-50%);
}

.hero-mobile-ball .seam-c {
  width: 70%;
  height: 70%;
  border: 8px solid #111;
  background: transparent;
  border-radius: 50%;
}

.hero-mobile-ball .seam-c1 {
  left: -27%;
  top: 15%;
  clip-path: inset(0 38% 0 0);
  transform: rotate(-6deg);
}

.hero-mobile-ball .seam-c2 {
  right: -27%;
  top: 15%;
  clip-path: inset(0 0 0 38%);
  transform: rotate(6deg);
}

@keyframes mobileBallFloat {
  0%, 100% { transform: translateY(0px) rotate(-6deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}




.scroll-indicator {
  width: 52px;
  height: 2px;
  background: rgba(21,21,21,.15);
  overflow: hidden;
}

.scroll-indicator span {
  display: block;
  width: 18px;
  height: 100%;
  background: #151515;
  animation: scrollDot 1.7s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateX(-18px); }
  100% { transform: translateX(52px); }
}

.loader-ball,
.contact-ball {
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 28%, rgba(255,255,255,.35), transparent 16%),
    #F45B19;
  position: relative;
  overflow: hidden;
}

.loader-ball {
  width: 70px;
  height: 70px;
  box-shadow: inset -12px -14px 20px rgba(0,0,0,.2);
  animation: loaderBounce 1s infinite alternate cubic-bezier(.2,.7,.3,1);
}

.loader-ball::before,
.contact-ball::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 38%;
  left: -5%;
  top: 31%;
  border: 4px solid #151515;
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.loader-ball::after,
.contact-ball::after {
  content: '';
  position: absolute;
  height: 110%;
  width: 38%;
  left: 31%;
  top: -5%;
  border: 4px solid #151515;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

@keyframes loaderBounce {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-22px) rotate(25deg); }
}

.section-heading {
  font-size: clamp(4rem, 8.3vw, 9rem);
  line-height: .9;
  letter-spacing: -.02em;
}

.story-section {
  background: #F6F0E6;
}

.feature-card {
  min-height: 360px;
  border: 1px solid rgba(21,21,21,.12);
  border-radius: 28px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.24);
  transition: transform .35s ease, background .35s ease;
}

.feature-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  background: #fff;
}

.feature-card h3 {
  font-family: Anton, sans-serif;
  text-transform: uppercase;
  font-size: 42px;
  margin-top: auto;
  line-height: 1;
}

.feature-card p {
  color: rgba(21,21,21,.58);
  margin-top: 14px;
  line-height: 1.6;
  max-width: 28rem;
}

.feature-index {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.feature-icon {
  font-size: 68px;
  color: #F45B19;
  margin-top: 46px;
}

.oversize-word {
  font-family: Anton, sans-serif;
  position: absolute;
  left: -2vw;
  bottom: -9vw;
  font-size: 25vw;
  line-height: 1;
  color: rgba(21,21,21,.025);
  pointer-events: none;
  white-space: nowrap;
}


.programs-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 14% 12%, rgba(244,91,25,.12), transparent 28%),
    #151515;
}

.programs-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image:
    radial-gradient(rgba(255,255,255,.65) .55px, transparent .55px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.program-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(246,240,230,.14);
  border-bottom: 1px solid rgba(246,240,230,.14);
}

.program-stat {
  min-height: 150px;
  padding: 26px 24px;
  border-right: 1px solid rgba(246,240,230,.14);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-stat:last-child {
  border-right: 0;
}

.program-stat-number {
  font-family: Anton, sans-serif;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: .9;
  letter-spacing: -.02em;
  color: #F6F0E6;
}

.program-stat-label {
  max-width: 170px;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: rgba(246,240,230,.44);
}

.programs-scroll-shell {
  height: 360vh;
  position: relative;
  margin-top: 36px;
}

.programs-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.programs-viewport {
  width: 100%;
  overflow: visible;
  padding-left: max(20px, calc((100vw - 1280px) / 2 + 40px));
  padding-right: 5vw;
}

.programs-track {
  display: flex;
  width: max-content;
  gap: 22px;
  will-change: transform;
  padding: 42px 0 56px;
}

.program-panel,
.program-cta-card {
  flex: 0 0 min(72vw, 720px);
  height: min(62vh, 600px);
  min-height: 500px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
}

.program-panel {
  padding: clamp(28px, 4vw, 52px);
  color: #151515;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255,255,255,.18), transparent 38%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.28), transparent 22%);
  pointer-events: none;
}

.program-panel::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 310px;
  height: 310px;
  border: 34px solid rgba(21,21,21,.08);
  border-radius: 50%;
}

.panel-orange { background: #F45B19; color: #F6F0E6; }
.panel-cream { background: #E7D8C4; }
.panel-lime { background: #D8FF3E; }
.panel-white { background: #F8F7F3; }

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.panel-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 800;
}

.panel-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
  opacity: .65;
}

.panel-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: 10px !important;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 800;
  opacity: .55 !important;
}

.program-panel h3 {
  position: relative;
  z-index: 1;
  font-family: Anton, sans-serif;
  font-size: clamp(5rem, 8vw, 8.8rem);
  line-height: .78;
  text-transform: uppercase;
  letter-spacing: -.025em;
}

.program-panel > div:last-child {
  position: relative;
  z-index: 1;
}

.program-panel p {
  max-width: 31rem;
  line-height: 1.62;
  font-size: 15px;
  opacity: .68;
}

.panel-meta {
  margin-top: 22px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
  font-weight: 800;
}

.program-cta-card {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(246,240,230,.18);
  background:
    radial-gradient(circle at 76% 16%, rgba(244,91,25,.16), transparent 32%),
    rgba(246,240,230,.035);
  color: #F6F0E6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-cta-card h3 {
  font-family: Anton, sans-serif;
  text-transform: uppercase;
  font-size: clamp(4.5rem, 7vw, 7.8rem);
  line-height: .82;
  letter-spacing: -.02em;
}

.program-cta-card h3 span {
  color: #F45B19;
}

.program-cta-card > p:not(.eyebrow) {
  max-width: 30rem;
  color: rgba(246,240,230,.56);
  line-height: 1.65;
}

.program-cta-link {
  width: fit-content;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(246,240,230,.45);
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 800;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(21,21,21,.14);
  border-bottom: 1px solid rgba(21,21,21,.14);
}

.stat-box {
  padding: 42px 24px;
  border-right: 1px solid rgba(21,21,21,.14);
}

.stat-box:last-child {
  border-right: 0;
}

.counter,
.stat-symbol {
  font-family: Anton, sans-serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 1;
}

.stat-symbol {
  color: #F45B19;
}

.stat-box p {
  margin-top: 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  color: rgba(21,21,21,.45);
}

.testimonial {
  max-width: 990px;
}

.quote-mark {
  font-family: Anton, sans-serif;
  color: #F45B19;
  font-size: 110px;
  line-height: .5;
}

.testimonial blockquote {
  font-family: Anton, sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  line-height: .98;
}

.avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #151515;
  color: #F6F0E6;
  display: grid;
  place-items: center;
  font-family: Anton, sans-serif;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(21,21,21,.22);
}

.process-fill {
  position: absolute;
  left: 0;
  top: -1px;
  height: 3px;
  width: 0;
  background: #F45B19;
}

.process-step {
  padding: 34px 30px 0 0;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(21,21,21,.25);
  font-size: 10px;
  font-weight: 800;
}

.process-step h3 {
  font-family: Anton, sans-serif;
  text-transform: uppercase;
  font-size: 34px;
  margin-top: 36px;
}

.process-step p {
  margin-top: 8px;
  color: rgba(21,21,21,.55);
  font-size: 14px;
}

.contact-ball {
  position: absolute;
  width: 48vw;
  height: 48vw;
  right: -13vw;
  top: -8vw;
  background: #F6F0E6;
  opacity: .15;
  transform: rotate(15deg);
}

.contact-cta {
  width: min(100%, 460px);
  border-bottom: 1px solid rgba(246,240,230,.6);
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 700;
}


@media (max-width: 1200px) {
  .hero-visual-panel {
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .program-stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .program-stat:nth-child(2) {
    border-right: 0;
  }

  .program-stat:nth-child(-n+2) {
    border-bottom: 1px solid rgba(246,240,230,.14);
  }

  .programs-scroll-shell {
    height: auto;
    margin-top: 22px;
  }

  .programs-sticky {
    position: relative;
    height: auto;
    overflow: visible;
    display: block;
  }

  .programs-viewport {
    padding: 0 20px 80px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .programs-viewport::-webkit-scrollbar {
    display: none;
  }

  .programs-track {
    padding: 28px 0 0;
    transform: none !important;
  }

  .program-panel,
  .program-cta-card {
    flex-basis: min(84vw, 620px);
    height: 520px;
    min-height: 0;
  }
}

@media (max-width: 900px) {
  body, a, button {
    cursor: auto;
  }
  #cursor-dot, #cursor-ring {
    display: none;
  }
  .hero-layout {
    gap: 2rem;
  }
  .hero-visual-panel {
    min-height: 400px;
    margin-top: .25rem;
  }
  .hero-stat-card--floating {
    right: 18px;
    bottom: 18px;
    max-width: 230px;
    padding: 20px;
  }
  .hero-ball-shadow {
    width: 128px;
    height: 24px;
    left: 55%;
    bottom: 74px;
  }
  .hero-orbit-3 {
    display: none;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-box:nth-child(2) {
    border-right: 0;
  }
  .stat-box:nth-child(-n+2) {
    border-bottom: 1px solid rgba(21,21,21,.14);
  }
  .process-line {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid rgba(21,21,21,.22);
    padding-left: 24px;
  }
  .process-fill {
    left: -1px;
    top: 0;
    width: 3px;
    height: 0;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 27vw;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-pill-row {
    gap: 10px;
  }
  .hero-pill {
    width: 100%;
    justify-content: flex-start;
  }
  .hero-visual-panel {
    min-height: 300px;
    border-radius: 24px;
    margin-top: .25rem;
    overflow: hidden;
  }
  .hero-mini-badge {
    left: 14px;
    top: 14px;
    padding: 9px 11px;
    font-size: 8px;
  }
  #webgl {
    display: none !important;
  }
  .hero-mobile-ball-wrap {
    display: grid;
    place-items: center;
    position: absolute;
    inset: 0;
    padding-top: 26px;
  }
  .hero-stat-card--floating {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 24px);
    max-width: none;
    margin: 188px 12px 12px;
    padding: 16px 18px;
    border-radius: 20px;
  }
  .hero-ball-shadow {
    width: 96px;
    height: 18px;
    left: 50%;
    bottom: 122px;
  }
  .hero-orbit-2,
  .hero-orbit-3 {
    display: none;
  }
  .hero-orbit-1 {
    width: 70%;
    height: 44%;
    right: 15%;
    top: 24%;
    opacity: .55;
  }
  .circle-cta {
    width: 112px;
    height: 112px;
  }
  .program-panel {
    width: 86vw;
    height: 60vh;
  }
}
