:root {
  --paper: #fac07a;
  --ink: #fff;
  --ink-soft: rgba(255, 255, 255, 0.88);
  --panel-border: rgba(255, 255, 255, 0.14);
  --blue: #20b6e7;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.landing {
  position: relative;
  z-index: 1;
  padding-bottom: 8rem;
}

.section {
  width: min(1150px, calc(100% - 5rem));
  margin: 0 auto 4.2rem;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.95rem;
  padding: 3rem 1rem 2.3rem;
  margin-bottom: 1.1rem;
}

.hero-title-row {
  width: max-content;
  max-width: min(96vw, 980px);
  margin: 0 auto 0.55rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "prefix word"
    "suffix title";
  column-gap: 0.58rem;
  row-gap: 0.02rem;
  align-items: center;
  justify-items: start;
  position: relative;
  z-index: 12;
  transform: translateX(clamp(-26px, -1.6vw, -14px));
}

#functional-title {
  grid-area: title;
  margin: 0;
  font-size: clamp(4.2rem, 8.5vw, 6.7rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: left;
  position: relative;
  z-index: 12;
}

.hero-sub {
  margin: 0 auto;
  max-width: 840px;
  font-size: clamp(1rem, 2.1vw, 2rem);
  font-weight: 600;
  position: relative;
  z-index: 12;
}

.blue-dot { color: var(--blue); }

 .rotator-prefix,
.rotator-suffix,
.rotator-word {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-style: normal;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96);
  display: inline-flex;
  align-items: center;
  text-align: left;
  white-space: nowrap;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.rotator-prefix {
  grid-area: prefix;
  justify-self: end;
  transform: translateY(0);
}

.rotator-word {
  grid-area: word;
  justify-self: start;
  width: 20ch;
  line-height: 0.96;
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rotator-word.is-out {
  opacity: 0;
  transform: translateY(10px) scale(0.986);
}

.rotator-suffix {
  grid-area: suffix;
  justify-self: end;
  transform: translate(0.02em, 0.24em);
}

.hero-ball {
  position: absolute;
  width: clamp(56px, 6vw, 96px);
  aspect-ratio: 1;
  border-radius: 999px;
  left: 0;
  top: 0;
  z-index: 6;
  pointer-events: none;
  transform: translate(0, 0);
  background: radial-gradient(circle at 30% 30%, #e7f9ff 0, #84d8ee 30%, #26aed4 65%, #15729f 100%);
  box-shadow: 0 10px 18px rgba(0,0,0,0.18), inset -10px -12px 14px rgba(0,0,0,0.18), inset 7px 9px 10px rgba(255,255,255,0.35);
}

.midpoint-space { min-height: clamp(5vh, 7vh, 9vh); }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 620ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  margin: 0 0 1.3rem;
  text-align: center;
  font-size: clamp(1.65rem, 3.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.benefits,
.process,
.week-line,
.faq,
.waitlist {
  text-align: center;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

.program-combined {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0.2rem;
}

.program-left,
.program-right {
  border: 0;
  background: transparent;
  padding: 0.2rem;
}

.program-right {
  min-height: 430px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.program-title {
  display: grid;
  gap: 0.18em;
  margin-bottom: 1.15rem;
}

.program-title-top,
.program-title-bottom {
  display: block;
  width: 100%;
}

.program-title-top { text-align: left; }

.program-title-bottom {
  text-align: right;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 500;
  margin-top: 0.12rem;
  padding-right: 0;
}

.support-interactive { display: grid; gap: 0.9rem; }

.support-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.support-btn {
  position: relative;
  min-height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: linear-gradient(145deg, #030303 0%, #121212 55%, #080808 100%);
  color: #fff;
  font: 600 1.06rem/1.25 Inter, system-ui, sans-serif;
  padding: 0.8rem 0.9rem;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.support-btn:hover,
.support-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.support-btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -50%;
  width: 60%;
  height: 340%;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(166,231,255,0) 38%, rgba(150,231,255,0.22) 50%, rgba(255,216,160,0.2) 60%, rgba(255,255,255,0) 78%);
  transform: rotate(14deg) translateX(-220%);
  opacity: 0;
  pointer-events: none;
}

.support-btn:hover::before,
.support-btn:focus-visible::before {
  opacity: 1;
  animation: shimmerSweep 2400ms cubic-bezier(0.2, 0.7, 0.2, 1) infinite;
}

.support-main,
.support-sub {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0.75rem;
  transition: opacity 280ms cubic-bezier(0.22, 0.7, 0.2, 1), transform 360ms cubic-bezier(0.22, 0.7, 0.2, 1), filter 300ms ease;
}

.support-main {
  font-weight: 680;
  font-size: clamp(1.08rem, 1.35vw, 1.26rem);
  line-height: 1.25;
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.support-sub {
  font-weight: 520;
  font-size: clamp(0.94rem, 1.1vw, 1.02rem);
  color: rgba(255,255,255,0.95);
  opacity: 0;
  transform: translateY(18px) scale(0.97);
  filter: blur(3px);
}

.support-btn:hover .support-main,
.support-btn:focus-visible .support-main {
  opacity: 0;
  transform: translateY(-18px) scale(0.96);
  filter: blur(3px);
}

.support-btn:hover .support-sub,
.support-btn:focus-visible .support-sub {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.program-subtitle {
  margin: 0.42rem 0 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.22rem;
  font-weight: 700;
}

.audience-rotator-wrap {
  position: relative;
  margin: 0.55rem 0 0;
  min-height: calc(232px + 0.65rem);
  height: calc(232px + 0.65rem);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.audience-rotator {
  display: inline-block;
  text-align: center;
  color: var(--ink-soft);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 560;
  font-size: clamp(1.65rem, 2.55vw, 2.32rem);
  line-height: 1.1;
  transition: opacity 260ms ease, transform 260ms ease;
}

.audience-rotator.is-out {
  opacity: 0;
  transform: translateY(8px);
}

 .partners {
  text-align: left;
  padding: 1.35rem;
  border-radius: 18px;
  border: 1px solid var(--panel-border);
  background: linear-gradient(145deg, rgba(0,0,0,0.46), rgba(0,0,0,0.22));
}

.partners .section-title { text-align: center; margin: 0 auto 1rem; max-width: 950px; }
.partners > p { text-align: center; margin: 0 auto 1rem; max-width: 950px; font-weight: 400; }

.partners .btn {
  margin: 0;
  display: inline-flex;
}

.partner-columns h3,
.partner-columns ul {
  text-align: left;
}

.partner-columns ul {
  list-style-position: outside;
}

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

.partner-columns div {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1rem;
}

.partner-columns h3 { margin: 0 0 0.6rem; }
.partner-columns ul { margin: 0; padding-left: 1.1rem; display: grid; gap: 0.35rem; font-weight: 400; }

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

.benefit-wrap { perspective: 1000px; }

.benefit-card {
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 28px rgba(0,0,0,0.22);
  transition: transform 300ms ease, box-shadow 300ms ease;
  transform-style: preserve-3d;
  --mx: 50%;
  --my: 50%;
  position: relative;
  padding-bottom: 96px;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: -24% -24%;
  background:
    radial-gradient(260% 180% at var(--mx) var(--my), rgba(123,235,255,0.34) 0%, rgba(120,170,255,0.26) 28%, rgba(255,156,210,0.22) 48%, rgba(255,232,160,0.18) 62%, rgba(255,255,255,0) 82%),
    radial-gradient(210% 150% at calc(100% - var(--mx)) calc(100% - var(--my)), rgba(120,225,255,0.2) 0%, rgba(173,146,255,0.17) 34%, rgba(255,194,133,0.14) 60%, rgba(255,255,255,0) 82%),
    conic-gradient(from 30deg at var(--mx) var(--my), rgba(106,228,255,0.2), rgba(153,157,255,0.15), rgba(255,163,214,0.16), rgba(255,225,143,0.14), rgba(106,228,255,0.2));
  transform: scale(1.06);
  opacity: 0;
  z-index: 4;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.benefit-card:hover::before { opacity: 0.98; }

.benefit-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(100% - 96px);
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.benefit-label {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.6rem 0.75rem;
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1;
  color: #fff;
  background: #000;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 500;
  white-space: nowrap;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 180px);
  justify-content: center;
  gap: 0.8rem;
}

.process-tile {
  width: 180px;
  height: 180px;
  padding: 0.62rem;
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.13);
  transition: transform 260ms ease, box-shadow 260ms ease;
  transform-style: preserve-3d;
  --mx: 50%;
  --my: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.process-tile:hover { box-shadow: 0 16px 24px rgba(0,0,0,0.18); }

.process-tile span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  font-weight: 800;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.process-tile:hover span {
  background: #050505;
  color: #fff;
  border-color: #050505;
}

.process-tile p {
  margin: 0.5rem 0 0;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 100%;
  font-size: 0.73rem;
  line-height: 1.18;
  text-align: center;
}

.process-tile.process-highlight p {
  font-weight: 520;
}

.closing-line { display: none; }

.week-static {
  margin: 0 0 0.6rem;
  font-size: clamp(1.42rem, 2.8vw, 2.08rem);
  color: var(--ink-soft);
}

.week-static em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 500;
}

.typed-line {
  margin: 0;
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  font-weight: 640;
  min-height: 1.5em;
  font-family: Inter, system-ui, sans-serif;
  font-style: normal;
}

.caret {
  display: inline-block;
  width: 0.08em;
  height: 1em;
  margin-left: 0.12em;
  background: rgba(255,255,255,0.9);
  vertical-align: -0.1em;
  animation: blink 900ms steps(1) infinite;
}

@keyframes blink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

.faq-shell {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1rem;
}

.faq-contact {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  min-height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
}

.faq-contact-inner { max-width: 220px; }
.faq-contact h3 { margin: 0 0 0.5rem; }
.faq-contact p { margin: 0 0 0.6rem; color: var(--ink-soft); }
.faq-contact a { color: #8ee3f8; font-weight: 700; }

.faq-list {
  display: grid;
  gap: 0.7rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: rgba(0,0,0,0.82);
  padding: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(0,0,0,0.74);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: #fff;
  font: 700 1rem/1.4 Inter, system-ui, sans-serif;
  padding: 0.9rem 1rem;
  cursor: pointer;
  position: relative;
  padding-right: 2.2rem;
}

.faq-q::after {
  content: "v";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 220ms ease;
  opacity: 0.9;
}

.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(180deg); }

.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 280ms ease;
}

.faq-a-inner {
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
  line-height: 1.45;
  font-weight: 330;
  text-align: left;
}

.waitlist p { margin: 0 0 1rem; font-weight: 400; }

.waitlist-form {
  width: min(580px, 100%);
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 0.75rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  padding: 0.58rem 0.62rem 0.66rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.5);
}

.waitlist-form input,
.waitlist-form select {
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.28);
  color: #fff;
  padding: 0 0.8rem;
  font: inherit;
}

.waitlist-form select {
  background: rgba(0,0,0,0.32);
  color: #fff;
}

.waitlist-form select option {
  background: #131313;
  color: #fff;
}

.waitlist-btn {
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #101010;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.form-status { min-height: 1.2rem; font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0.58rem 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 980px) {
  .section { width: calc(100% - 1.6rem); margin-bottom: 2.3rem; }
  .card-grid { grid-template-columns: 1fr; }
  .program-combined { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(3, 150px); justify-content: center; }
  .process-tile { width: 150px; height: 150px; }
  .process-tile p { font-size: 0.7rem; }
  .partner-columns { grid-template-columns: 1fr; }
  .faq-shell { grid-template-columns: 1fr; }
  .program-right { min-height: 330px; }
}

@media (max-width: 700px) {
  .process-grid { grid-template-columns: repeat(2, 140px); justify-content: center; }
  .process-tile { width: 140px; height: 140px; }
  .process-tile p { font-size: 0.66rem; }

  .hero {
    min-height: 100svh;
    padding-top: 2.3rem;
  }

  .hero-title-row {
    width: min(96vw, 430px);
    transform: none;
    column-gap: 0.46rem;
  }

  #functional-title {
    font-size: clamp(3.3rem, 15vw, 4.5rem);
  }

    .rotator-prefix,
  .rotator-suffix,
  .rotator-word {
    font-size: clamp(1rem, 3.8vw, 1.25rem);
  }

  .rotator-suffix {
    transform: translate(0, 0.16em);
  }
}

@keyframes shimmerSweep {
  from { transform: rotate(14deg) translateX(-220%); }
  to { transform: rotate(14deg) translateX(320%); }
}




















