:root {
  --brand-purple: #4f3ab7;
  --brand-magenta: #e3467d;
  --brand-mid: #a43d9a;
  --gradient: linear-gradient(135deg, #4f3ab7 0%, #e3467d 100%);
  --gradient-h: linear-gradient(90deg, #4f3ab7 0%, #e3467d 100%);
  --bg: #f6f3f8;
  --bg-white: #ffffff;
  --ink: #23252a;
  --ink-soft: rgba(35, 37, 42, 0.62);
  --ink-faint: rgba(35, 37, 42, 0.38);
  --line: rgba(79, 58, 183, 0.14);
  --black: #1f2227;
  --lime: #e3467d;
  --pink: #f6d5e4;
  --pink-deep: #ebb4d0;
  --yellow: #f3dce8;
  --blue: #ebe6f7;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --header-h: 64px;
  --max: 1240px;
  --font: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  --font-ui: var(--font);
  --font-kr: var(--font);
  --font-display: var(--font);
  --shadow-card: 0 18px 50px rgba(79, 58, 183, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  width: calc(100% - 28px);
  max-width: 1180px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  background: #fff;
  border: 1.5px solid rgba(31, 34, 39, 0.92);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20, 16, 32, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 36px rgba(20, 16, 32, 0.14);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  margin-left: 10px;
}

.logo img {
  display: block;
  height: 46px;
  width: auto;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
  padding: 0 12px;
}

.nav-link {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: rgba(35, 37, 42, 0.82);
  padding: 8px 20px;
  border-radius: 999px;
  font-family: inherit;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-link:hover,
.nav-item:hover .nav-link {
  color: var(--brand-purple);
  background: rgba(79, 58, 183, 0.06);
}

.nav-link.is-special {
  background: #fff;
  box-shadow: 0 0 0 1.5px var(--brand-magenta);
  color: var(--brand-purple);
  font-weight: 600;
}

.nav-item {
  position: relative;
}

.mega {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-card);
  z-index: 20;
}

.nav-item:hover .mega,
.nav-item:focus-within .mega,
.mega.is-open {
  display: grid;
}

.mega a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
}

.mega a:hover {
  background: #f6f6f6;
}

.mega strong {
  font-size: 14px;
}

.mega span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1;
  padding: 12px 18px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, letter-spacing 0.25s ease;
  white-space: nowrap;
}

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

.btn-spread:hover span {
  letter-spacing: 0.04em;
}

.btn-ghost {
  background: #fff;
  border-color: rgba(79, 58, 183, 0.22);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--brand-magenta);
  color: var(--brand-purple);
}

.btn-solid {
  background: var(--gradient);
  color: #fff;
  box-shadow: none;
  border: none;
}

.btn-solid:hover {
  filter: brightness(1.05);
}

.btn-white {
  background: #fff;
  color: var(--black);
}

.btn-outline-light {
  position: relative;
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.btn-outline-light::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: -1;
  pointer-events: none;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:focus-visible {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #fff;
  outline: none;
}

.btn-outline-light:hover::after,
.btn-outline-light:focus::after,
.btn-outline-light:focus-visible::after {
  opacity: 1;
}

.btn-lg {
  padding: 15px 22px;
  font-size: 15.5px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

.hero-wrap {
  padding: 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-media img.is-active {
  opacity: 1;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 16, 32, 0.22) 0%, rgba(20, 16, 32, 0.32) 48%, rgba(20, 16, 32, 0.5) 100%);
}

.hero-copy {
  text-align: center;
  max-width: 980px;
  padding: calc(var(--header-h) + 48px) 24px 120px;
}

.hero h1 {
  font-family: var(--font-kr);
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 75px);
  line-height: 1.08;
  letter-spacing: calc(-0.045em + 2px);
  text-wrap: balance;
  opacity: 0;
  animation: hero-enter-left 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.hero-sub {
  margin: 18px auto 0;
  max-width: 720px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  opacity: 0;
  animation: hero-enter-down 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

.br-mobile,
.show-mobile {
  display: none;
}

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-cta .btn {
  opacity: 0;
  transform: scale(0.2);
  animation: hero-bubble 0.75s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.hero-cta .btn:hover,
.hero-cta .btn:focus,
.hero-cta .btn:focus-visible {
  outline: none;
}

.hero-cta .btn-outline-light:not(:hover):not(:focus):not(:focus-visible) {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.hero-cta .btn-outline-light:hover,
.hero-cta .btn-outline-light:focus,
.hero-cta .btn-outline-light:focus-visible {
  box-shadow: none;
}

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

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

.hero-cta .btn:nth-child(3) {
  animation-delay: 1.05s;
}

@keyframes hero-enter-left {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-enter-down {
  from {
    opacity: 0;
    transform: translateY(-28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-bubble {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  55% {
    opacity: 1;
    transform: scale(1.12);
  }
  78% {
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.announce {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  padding: 10px 14px 10px 10px;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.announce img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

.announce small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  font-weight: 700;
}

.announce strong {
  display: block;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 650;
}

.announce .arrow {
  margin-left: auto;
  font-size: 18px;
  opacity: 0.45;
}

.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 22px;
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img {
    transition: none;
  }

  .hero h1,
  .hero-sub,
  .hero-cta .btn {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .reveal,
  .feed-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .spark path {
    stroke-dashoffset: 0;
    transition: none;
  }

  .engine-card:hover,
  .feed-card:hover,
  .apply-card:hover {
    transform: none;
    animation: none;
  }

  .float-droplet i,
  .feed-droplet img,
  .cta-floater {
    animation: none;
  }

  .orb {
    animation: none !important;
  }

  .space-blob {
    animation: none !important;
  }
}

.logo-wall {
  position: relative;
  z-index: 1;
  padding: 42px 20px 28px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.marquee {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: slide 28s linear infinite;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: rgba(79, 58, 183, 0.28);
  text-transform: uppercase;
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 72px 24px;
}

.inner {
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow.light,
.lede.light {
  color: rgba(255, 255, 255, 0.55);
}

.display {
  font-family: var(--font-kr);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  font-size: clamp(42px, 7vw, 104px);
}

.display .mute {
  color: rgba(79, 58, 183, 0.28);
}

.display.invert {
  color: #fff;
  font-size: clamp(32px, 4vw, 56px);
}

.lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
}

.lede.center {
  margin: 0 auto;
}

.problem {
  position: relative;
  z-index: 0;
  padding: 56px 24px 130px;
  background: var(--bg);
  overflow: hidden;
}

.problem-head {
  text-align: center;
  position: relative;
  isolation: isolate;
  padding: 56px 16px 72px;
}

.blob-img {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(280px, 40vw);
  transform: translate(-50%, -58%);
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: hue-rotate(210deg) saturate(1.15);
  animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {
  50% {
    transform: translate(-50%, -52%) rotate(8deg);
  }
}

.problem-head .display {
  font-size: clamp(36px, 6vw, 83px);
  letter-spacing: -0.05em;
}

.problem-head .lede {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 26px 30px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(79, 58, 183, 0.07);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.value-icon-student {
  background: #efe8ff;
}

.value-icon-instructor {
  background: #e7eef8;
}

.value-icon-space {
  background: #e5f5ee;
}

.value-label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  max-width: none;
}

.value-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.value-card p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: none;
}

.value-link {
  margin-top: auto;
  padding-top: 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.value-link:hover {
  color: var(--brand-purple);
}

.engines-band {
  margin: 10px 10px 0;
  background: linear-gradient(180deg, #f4d0e4 0%, #e9c4f0 55%, #d9c8f6 100%);
  border-radius: var(--radius-xl);
  padding: 94px 28px 86px;
}

.engines-head {
  display: grid;
  grid-template-columns: 1.15fr 1.05fr;
  gap: 28px 32px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto 86px;
  min-height: 220px;
}

.engines-head .display {
  font-size: clamp(32px, 4.4vw, 56px);
  position: relative;
  max-width: 11.5em;
  justify-self: start;
  align-self: start;
}

.engines-head .lede {
  justify-self: end;
  align-self: end;
  max-width: none;
  width: max-content;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(35, 37, 42, 0.72);
  padding-top: 68px;
  word-break: keep-all;
}

.engines-head .lede span {
  display: inline-block;
  white-space: nowrap;
}

.float-droplet {
  display: inline-block;
  width: 70px;
  height: 58px;
  margin-left: 12px;
  vertical-align: -10px;
  position: relative;
  background: transparent;
}

.float-droplet i {
  position: absolute;
  display: block;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.15) 28%, transparent 46%),
    linear-gradient(145deg, #8b6cf5 0%, #e3467d 100%);
  box-shadow: 0 8px 16px rgba(227, 70, 125, 0.22);
  pointer-events: none;
}

.float-droplet i:nth-child(1) {
  width: 34px;
  height: 34px;
  left: 16px;
  top: 12px;
  border-radius: 58% 42% 55% 45% / 48% 52% 48% 52%;
  animation: droplet-float 3.6s ease-in-out infinite;
}

.float-droplet i:nth-child(2) {
  width: 18px;
  height: 18px;
  left: 2px;
  top: 4px;
  border-radius: 55% 45% 50% 50% / 45% 55% 45% 55%;
  opacity: 0.9;
  animation: droplet-drift 4.1s ease-in-out infinite;
}

.float-droplet i:nth-child(3) {
  width: 14px;
  height: 14px;
  right: 2px;
  bottom: 2px;
  border-radius: 50% 50% 48% 52% / 52% 48% 52% 48%;
  opacity: 0.85;
  animation: droplet-drift 3.2s ease-in-out infinite reverse;
}

@keyframes droplet-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg) scale(1);
  }
  50% {
    transform: translateY(-12px) rotate(5deg) scale(1.05);
  }
}

@keyframes droplet-drift {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) translateX(5px) scale(1.1);
    opacity: 1;
  }
}

.inline-blob {
  display: inline-block;
  width: 72px;
  height: 72px;
  vertical-align: middle;
  margin-left: 8px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: hue-rotate(20deg) saturate(1.15);
}

.inline-blob.torus {
  width: 56px;
  height: 56px;
}

.engine-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.engine-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  min-height: 320px;
  height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.engine-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(79, 58, 183, 0.16);
}

.engine-card.reveal.is-visible:hover {
  transform: translateY(-10px);
}

.engine-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.mark {
  display: block;
  height: 22px;
  width: auto;
  object-fit: contain;
}

.mark-inline {
  display: inline-block;
  height: 18px;
  vertical-align: -4px;
  margin: 0 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.pill-class {
  background: var(--brand-purple);
}

.pill-instructor {
  background: var(--gradient);
}

.pill-space {
  background: var(--brand-magenta);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}

.stat {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  display: inline-block;
  transform-origin: left bottom;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat.is-counting {
  transform: scale(1.08);
}

.stat.is-complete {
  transform: scale(1);
}

.stat-label {
  color: var(--ink-soft);
  margin: 10px 0 0;
  font-size: 15px;
}

.spark {
  width: 128px;
  height: 58px;
  flex-shrink: 0;
  margin-top: 6px;
}

.spark path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.engine-card.is-visible .spark path {
  stroke-dashoffset: 0;
}

.engine-card .insight {
  margin-top: auto;
  background: #f3f3f3;
  border-radius: 14px;
  padding: 16px 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.insight-class {
  display: grid;
  gap: 10px;
}

.insight-class strong {
  display: block;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.insight-class p {
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid rgba(35, 37, 42, 0.18);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.insight,
.note {
  margin-top: 16px;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.mini-stats b {
  display: block;
  font-size: 13px;
}

.mini-stats span {
  font-size: 12px;
  color: var(--ink-soft);
}

.status {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-magenta);
}

.status.is-green i {
  background: var(--brand-purple);
}

.status.is-gold i {
  background: var(--brand-mid);
}

.never-sleeps {
  margin: 10px;
  background: linear-gradient(180deg, #f6d5e4 0%, #f8eef6 48%, #fff 100%);
  border-radius: var(--radius-xl);
  padding: 94px 24px 86px;
  position: relative;
  overflow: hidden;
  min-height: 780px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.never-sleeps-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 72px;
}

.never-sleeps .display-top,
.never-sleeps .display-bottom {
  position: relative;
  z-index: 2;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.045em;
  max-width: 100%;
}

.never-sleeps .display-top {
  justify-self: start;
  text-align: left;
  margin: 0;
}

.never-sleeps .display-bottom {
  justify-self: end;
  text-align: right;
  margin: 0;
  --reveal-delay: 120ms;
}

.never-sleeps .display-bottom.reveal-from-right {
  transform: translateX(48px);
}

.never-sleeps .display-bottom.reveal-from-right.is-visible {
  transform: translateX(0);
}

.feed-droplet {
  display: inline-block;
  width: 78px;
  height: 52px;
  margin-left: 28px;
  vertical-align: 4px;
  position: relative;
}

.feed-droplet img {
  position: absolute;
  display: block;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(79, 58, 183, 0.12));
}

.feed-droplet img:nth-child(1) {
  width: 28px;
  height: 36px;
  left: 22px;
  top: 6px;
  animation: droplet-float 3.6s ease-in-out infinite;
}

.feed-droplet img:nth-child(2) {
  width: 30px;
  height: 24px;
  left: 0;
  top: 2px;
  opacity: 0.95;
  animation: droplet-drift 4.1s ease-in-out infinite;
}

.feed-droplet img:nth-child(3) {
  width: 24px;
  height: 24px;
  right: 0;
  bottom: 2px;
  opacity: 0.9;
  animation: droplet-drift 3.2s ease-in-out infinite reverse;
}

.feed-orbs {
  display: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 190, 220, 0.85), rgba(227, 70, 125, 0.35) 48%, transparent 72%);
  filter: blur(10px);
  opacity: 0.55;
  will-change: transform;
}

.orb-a {
  width: 220px;
  height: 220px;
  left: 12%;
  top: 18%;
  animation: orb-float-a 9s ease-in-out infinite;
}

.orb-b {
  width: 160px;
  height: 160px;
  right: 14%;
  top: 28%;
  animation: orb-float-b 7.5s ease-in-out infinite;
}

.orb-c {
  width: 280px;
  height: 280px;
  left: 28%;
  bottom: 8%;
  opacity: 0.4;
  animation: orb-float-c 11s ease-in-out infinite;
}

.orb-d {
  width: 120px;
  height: 120px;
  right: 22%;
  bottom: 22%;
  animation: orb-float-d 8.2s ease-in-out infinite;
}

@keyframes orb-float-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(24px, -28px) scale(1.06);
  }
}

@keyframes orb-float-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 22px) scale(1.08);
  }
}

@keyframes orb-float-c {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -18px) scale(1.04);
  }
}

@keyframes orb-float-d {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-16px, -24px);
  }
}

.feed {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  display: grid;
  gap: 30px;
}

.feed-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(79, 58, 183, 0.1);
  opacity: 0;
  transform: translateX(-48px) translateY(24px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
  transition-delay: var(--stack-delay, 0ms);
  color: var(--ink);
}

.feed-card:nth-child(even) {
  transform: translateX(48px) translateY(24px);
}

.never-sleeps.is-stacked .feed-card {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.never-sleeps.is-stacked .feed-card:hover {
  transform: translateY(-6px);
  background: var(--black);
  color: #fff;
  box-shadow: 0 24px 48px rgba(31, 34, 39, 0.28);
}

.feed-card:hover .feed-meta {
  color: rgba(255, 255, 255, 0.55);
}

.feed-card:hover h3 {
  color: #fff;
}

.feed-card:hover p {
  color: rgba(255, 255, 255, 0.78);
  border-left-color: rgba(255, 255, 255, 0.35);
}

.feed-card:hover .tag {
  background: #fff;
  color: var(--brand-purple);
}

.feed-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--ink-faint);
  transition: color 0.3s ease;
}

.tag {
  border-radius: 999px;
  padding: 3px 10px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient);
  transition: background 0.3s ease, color 0.3s ease;
}

.feed-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.feed-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  padding-left: 12px;
  border-left: 3px solid rgba(35, 37, 42, 0.16);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-from-left {
  transform: translateX(-64px);
}

.reveal-from-left.is-visible {
  transform: translateX(0);
}

.reveal-from-right {
  --reveal-delay: 160ms;
  transform: translateX(64px) translateY(20px);
}

.reveal-from-right.is-visible {
  transform: translateX(0) translateY(20px);
}

.playbooks {
  background: linear-gradient(180deg, #ebe6f7 0%, #f3dce8 100%);
  margin: 10px;
  border-radius: var(--radius-xl);
  padding: 64px 24px;
}

.class-intro,
.instructor-intro,
.space-intro {
  margin: 10px;
  border-radius: var(--radius-xl);
  padding: 102px 24px 134px;
  background: linear-gradient(180deg, #ebe6f7 0%, #f3dce8 100%);
}

.class-intro-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.class-intro-head {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 80px;
}

.class-intro-head .display {
  font-size: clamp(34px, 5vw, 60px);
  margin-top: 10px;
}

.class-intro-head .lede {
  margin: 36px auto 0;
  max-width: none;
  width: max-content;
  text-align: center;
  white-space: nowrap;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.class-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(79, 58, 183, 0.16);
}

.class-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.instructor-intro .class-card img {
  height: 300px;
  object-position: center 20%;
}

.class-card .body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.class-card h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.class-card .body > p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.class-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 8px;
  padding: 0;
}

.class-meta li {
  font-size: 12.5px;
  font-weight: 650;
  color: var(--brand-purple);
  background: rgba(79, 58, 183, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
}

.class-link {
  margin-top: auto;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.class-link:hover {
  color: var(--brand-magenta);
}

.class-consult {
  margin-top: 36px;
  padding: 28px 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.class-consult h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.class-consult p {
  color: var(--ink-soft);
  font-size: 15px;
}

.playbooks-head {
  max-width: var(--max);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 20px;
  align-items: end;
}

.playbooks-head .display {
  font-size: clamp(36px, 5vw, 68px);
}

.carousel-wrap {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  top: -56px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--gradient);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn:not(.next) {
  right: 48px;
  background: rgba(79, 58, 183, 0.28);
}

.card-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.card-row::-webkit-scrollbar {
  display: none;
}

.media-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  min-width: min(360px, 82vw);
  flex: 0 0 min(360px, 82vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.media-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.media-card .body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.media-card .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}

.media-card h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
}

.media-card .by {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-faint);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.media-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

.media-card .body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.instructors {
  padding: 110px 24px 100px;
}

.instructors-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto 100px;
}

.instructors-head .display {
  font-size: clamp(34px, 5vw, 60px);
  margin-top: 10px;
}

.instructors-head .float-droplet {
  width: 84px;
  height: 70px;
  margin-left: 14px;
  vertical-align: -14px;
}

.instructors-head .float-droplet i:nth-child(1) {
  width: 40px;
  height: 40px;
  left: 20px;
  top: 14px;
  border-radius: 50%;
}

.instructors-head .float-droplet i:nth-child(2) {
  width: 22px;
  height: 22px;
  left: 4px;
  top: 2px;
  border-radius: 50%;
}

.instructors-head .float-droplet i:nth-child(3) {
  width: 16px;
  height: 16px;
  right: 0;
  bottom: 4px;
  border-radius: 50%;
}

.instructors-head .lede {
  margin: 36px auto 0;
  max-width: 640px;
}

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

.person {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.person:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.person img {
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  border-radius: 14px;
}

.person .body {
  padding: 6px 4px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.person .field {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}

.person h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 0;
}

.person .specialty {
  font-size: 13.5px;
  font-weight: 650;
  color: var(--brand-purple);
  margin: 2px 0 4px;
}

.person .body > p:not(.field):not(.specialty) {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.45;
  margin: 0;
}

.person-link {
  margin-top: auto;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.person-link:hover {
  color: var(--brand-magenta);
}

.instructors-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 52px;
}

.apply-band {
  padding-top: 0;
}

.apply-card {
  background: #6b5a9e;
  background-image: linear-gradient(90deg, #6a5aab 0%, #9b6a9a 48%, #c47a96 100%);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  flex-wrap: wrap;
  transition:
    background 0.4s ease,
    background-image 0.4s ease,
    box-shadow 0.4s ease;
}

.apply-card:hover {
  background: #5a4c8f;
  background-image: linear-gradient(135deg, #56488f 0%, #a36a88 100%);
  box-shadow: 0 28px 56px rgba(31, 34, 39, 0.28);
  animation: apply-card-float 2.6s ease-in-out infinite;
}

@keyframes apply-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.apply-card > div:first-child {
  padding-left: 24px;
}

.apply-card .eyebrow {
  font-size: 9px;
}

.apply-card .display.invert {
  font-size: clamp(19px, calc(2.8vw - 3.5px), 36px);
  margin-top: 7px;
  letter-spacing: calc(-0.045em + 2px);
}

.apply-card .lede {
  margin-top: 13px;
  font-size: 11px;
  line-height: 1.5;
}

.apply-card .btn-lg {
  padding: 14px 20px;
  font-size: 14px;
  margin-left: auto;
  margin-right: 32px;
  flex-shrink: 0;
}

.spaces {
  padding: 100px 24px 80px;
}

.spaces-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1100px;
  min-height: 420px;
  margin: 0 auto 72px;
  padding: 72px 24px;
  overflow: visible;
}

.spaces-head-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.spaces-head .display {
  font-size: clamp(34px, 5vw, 60px);
  margin-top: 10px;
}

.spaces-head .lede {
  margin: 36px auto 0;
  max-width: 640px;
}

.space-blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.space-blob {
  position: absolute;
  object-fit: contain;
  will-change: transform;
  user-select: none;
  filter: drop-shadow(0 12px 24px rgba(79, 58, 183, 0.12));
}

.space-blob-wave {
  width: clamp(63px, 9vw, 105px);
  left: 4%;
  top: 8%;
  animation: space-blob-float-a 7.5s ease-in-out infinite;
}

.space-blob-lime {
  width: clamp(66px, 10vw, 108px);
  right: 2%;
  top: 18%;
  animation: space-blob-float-b 8.8s ease-in-out infinite;
}

.space-blob-drop {
  width: clamp(50px, 7vw, 77px);
  left: 10%;
  bottom: 4%;
  animation: space-blob-float-c 9.6s ease-in-out infinite;
}

.space-blob-cloud {
  width: clamp(62px, 8vw, 98px);
  right: 8%;
  bottom: 8%;
  animation: space-blob-float-d 6.8s ease-in-out infinite;
}

@keyframes space-blob-float-a {
  0%,
  100% {
    transform: translate(0, 0) rotate(-6deg);
  }
  50% {
    transform: translate(18px, -28px) rotate(8deg);
  }
}

@keyframes space-blob-float-b {
  0%,
  100% {
    transform: translate(0, 0) rotate(4deg);
  }
  50% {
    transform: translate(-22px, 20px) rotate(-10deg);
  }
}

@keyframes space-blob-float-c {
  0%,
  100% {
    transform: translate(0, 0) rotate(8deg) scale(1);
  }
  50% {
    transform: translate(24px, -18px) rotate(-6deg) scale(1.06);
  }
}

@keyframes space-blob-float-d {
  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }
  50% {
    transform: translate(-16px, -24px) rotate(12deg);
  }
}

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

.space-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  transition: transform 0.3s ease;
}

.space-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.space-card img {
  width: 100%;
  height: 320px;
  min-height: 0;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.space-card .body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 32px 28px 30px;
  background: #d7e4f8;
  border-radius: 0 0 18px 18px;
  min-height: 280px;
  box-shadow: none;
}

.space-card#gray-hall .body {
  background: #e4e0f0;
}

.space-card .body::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 0, #fff 5px, transparent 5.5px),
    radial-gradient(circle at 100% 0, #fff 5px, transparent 5.5px),
    radial-gradient(circle at 0 100%, #fff 5px, transparent 5.5px),
    radial-gradient(circle at 100% 100%, #fff 5px, transparent 5.5px);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: left top, right top, left bottom, right bottom;
}

.space-body-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-top: 4px;
}

.space-card h3 {
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.space-tagline {
  font-size: 14.5px;
  color: rgba(35, 37, 42, 0.55);
  text-align: right;
  line-height: 1.35;
  max-width: 160px;
  margin: 0;
}

.space-desc {
  display: none;
}

.space-meta {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  flex: 1;
}

.space-meta li {
  position: relative;
  font-size: 15px;
  color: rgba(35, 37, 42, 0.72);
  display: block;
  padding-left: 18px;
  line-height: 1.45;
}

.space-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f2227;
}

.space-meta li span {
  display: none;
}

.space-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  position: relative;
}

.space-btn {
  background: #1f2227;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
}

.space-btn:hover {
  background: #000;
  color: #fff;
}

.space-demo {
  font-size: 14.5px;
  color: rgba(35, 37, 42, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.space-demo:hover {
  color: var(--brand-purple);
}

.space-link {
  display: none;
}

.spaces-more {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 18px;
}

.three {
  padding: 40px 24px 80px;
  text-align: center;
  position: relative;
}

.three-words {
  position: relative;
  min-height: 420px;
  max-width: 980px;
  margin: 0 auto;
}

.three-words .w {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.w1 {
  left: 0;
  top: 40px;
}

.w2 {
  right: 0;
  top: 0;
}

.w3 {
  right: 4%;
  bottom: 20px;
}

.cluster-img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(420px, 64vw);
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: hue-rotate(30deg) saturate(1.15);
}

.engine-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 12px;
}

.engine-bar article {
  padding: 28px 24px;
  text-align: left;
  border-right: 1px solid var(--line);
}

.engine-bar .mark {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 4px;
  vertical-align: middle;
}

.engine-bar .pill {
  vertical-align: middle;
}

.engine-bar article:last-child {
  border-right: 0;
}

.engine-bar h3 {
  margin: 10px 0 8px;
  font-size: 22px;
}

.engine-bar li {
  color: var(--ink-soft);
  font-size: 14.5px;
}

.engine-bar ul {
  margin-top: 12px;
  padding-left: 16px;
}

.stories {
  padding: 120px 24px 40px;
}

.stories-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto 72px;
}

.stories-head .display {
  font-size: clamp(34px, 5vw, 56px);
  margin-top: 10px;
}

.stories-head .lede {
  margin: 48px auto 0;
  max-width: none;
  width: max-content;
  max-width: min(860px, 100%);
  white-space: nowrap;
  text-align: center;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  background: #1f2227;
  border-color: #1f2227;
  color: #fff;
  box-shadow: none;
}

.story-card:hover .field {
  color: rgba(255, 255, 255, 0.45);
}

.story-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.story-card:hover .story-link {
  color: #fff;
}

.story-card:hover .story-link:hover {
  color: #ffd0e2;
}

.story-card .field,
.review-block-head .field {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}

.story-card h3 {
  font-size: 24px;
  letter-spacing: -0.03em;
}

.story-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.story-link,
.review-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

.story-link:hover,
.review-link:hover {
  color: var(--brand-magenta);
}

.review-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
}

.review-block-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.review-block-head h3 {
  font-size: 28px;
  letter-spacing: -0.03em;
  margin-top: 4px;
}

.review-block-head .lede {
  margin-top: 8px;
  max-width: 420px;
  font-size: 15px;
}

.review-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.review-nav .carousel-btn {
  position: static;
  top: auto;
  right: auto;
}

.review-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.review-carousel::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  background: linear-gradient(180deg, #f6f1fb 0%, #f8eef4 100%);
  border-radius: 18px;
  padding: 22px 20px 20px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand-purple);
}

.review-card h4 {
  font-size: 18px;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.review-card > p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.review-author {
  margin-top: auto;
  font-size: 13px;
  font-weight: 650;
  color: var(--ink-faint);
}

.stories-more {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 18px;
}

.audiences {
  padding: 20px 24px 80px;
}

.who-pill {
  display: inline-flex;
  background: var(--gradient);
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.who-title {
  font-size: 32px;
  letter-spacing: -0.03em;
  max-width: 420px;
}

.accordion {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.acc-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid transparent;
}

.acc-card.is-open {
  background: var(--blue);
}

.acc-head {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 24px;
  text-align: left;
}

.acc-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.acc-sub {
  color: var(--ink-soft);
  font-size: 16px;
}

.acc-body {
  display: none;
  padding: 0 24px 24px;
}

.acc-card.is-open .acc-body {
  display: block;
}

.acc-body ul {
  margin: 0 0 18px 18px;
  color: var(--ink-soft);
}

.acc-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.text-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--brand-purple);
}

.final-cta {
  position: relative;
  padding: 240px 24px 140px;
  text-align: center;
}

.cta-floaters {
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  height: 160px;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-floater {
  position: relative;
  display: block;
  object-fit: contain;
  user-select: none;
  will-change: transform;
  filter: none;
}

.cta-floater-purple {
  width: clamp(88px, 11vw, 132px);
  animation: cta-purple-spin-float 7.5s linear infinite;
}

@keyframes cta-purple-spin-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  25% {
    transform: translate3d(0, -22px, 0) rotate(90deg);
  }
  50% {
    transform: translate3d(0, 0, 0) rotate(180deg);
  }
  75% {
    transform: translate3d(0, -22px, 0) rotate(270deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(360deg);
  }
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.35fr);
  gap: 16px 48px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.final-cta-copy {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding-top: 12px;
  grid-row: 1 / span 2;
}

.final-cta-copy .display {
  margin: 0 0 18px;
  max-width: 10.5em;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.25;
}

.final-cta-copy .lede {
  margin: 0;
  max-width: 22em;
  text-align: left;
  font-size: 15px;
  line-height: 1.6;
}

.inquiry-form {
  margin: 0;
  max-width: none;
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  text-align: left;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.inquiry-field {
  display: grid;
  gap: 10px;
  border: 0;
  min-width: 0;
  align-content: start;
}

.inquiry-span {
  grid-column: 1 / -1;
}

.inquiry-field > label,
.inquiry-field > legend {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.inquiry-field > label span,
.inquiry-field > legend span {
  color: var(--brand-magenta);
}

.inquiry-field input[type="text"],
.inquiry-field input[type="tel"],
.inquiry-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #faf9fc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.inquiry-field textarea {
  resize: vertical;
  min-height: 128px;
  line-height: 1.55;
}

.inquiry-field input[type="text"]::placeholder,
.inquiry-field input[type="tel"]::placeholder,
.inquiry-field textarea::placeholder {
  color: var(--ink-faint);
}

.inquiry-field input[type="text"]:focus,
.inquiry-field input[type="tel"]:focus,
.inquiry-field textarea:focus {
  border-color: rgba(79, 58, 183, 0.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79, 58, 183, 0.1);
}

.inquiry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inquiry-chip {
  cursor: pointer;
}

.inquiry-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.inquiry-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-chip input:checked + span {
  border-color: transparent;
  color: #fff;
  background: var(--gradient-h);
  box-shadow: 0 8px 18px rgba(79, 58, 183, 0.22);
}

.inquiry-chip input:focus-visible + span {
  outline: 2px solid var(--brand-purple);
  outline-offset: 2px;
}

.inquiry-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  cursor: pointer;
}

.inquiry-agree input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--brand-purple);
  flex-shrink: 0;
}

.inquiry-submit {
  width: 100%;
  justify-content: center;
}

.fine {
  grid-column: 2;
  margin-top: 0;
  font-size: 13px;
  color: var(--ink-faint);
  text-align: left;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 10px 10px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  padding: 20px 14px 160px;
}

.visit-card,
.consult-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.visit-title {
  font-size: 36px;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 38px;
}

.visit-copy h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.visit-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.visit-meta li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  align-items: start;
}

.visit-meta li span {
  font-weight: 700;
  color: var(--brand-purple);
}

.visit-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

.visit-link:hover {
  color: var(--brand-magenta);
}

.visit-map {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: #ebe6f7;
  min-height: 220px;
  flex: 1;
  border: 1px solid var(--line);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
}

.consult-lead {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.consult-desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.consult-list {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--line);
}

.consult-list > div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.consult-list dt {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.consult-list dd {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.consult-list dd a {
  color: var(--ink);
  font-weight: 650;
}

.consult-price {
  margin: 0;
}

.consult-price + .consult-price {
  margin-top: 6px;
}

.consult-price strong {
  color: var(--ink);
  font-weight: 700;
}

.consult-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.map-panel {
  display: none;
}

.info-panel {
  display: none;
}

.info-actions {
  display: none;
}

.news-band {
  padding: 48px 24px 80px;
}

.news-title {
  font-size: clamp(32px, 4vw, 56px);
  margin: 8px 0 20px;
}

.news-card {
  max-width: 560px;
  min-width: 0;
  flex: none;
}

.site-footer {
  background: var(--black);
  color: #eee;
  margin: 10px;
  border-radius: var(--radius-xl);
  padding: 48px 32px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 36px 0 28px;
}

.footer-grid h3 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  padding: 4px 0;
}

.footer-grid a:hover {
  color: #ffd0e2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom nav {
  display: flex;
  gap: 16px;
}

.mobile-cta,
.drawer {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none !important;
}

.modal-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  max-width: 420px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .nav-main {
    display: none;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .br-mobile,
  .show-mobile {
    display: inline;
  }

  .hide-mobile {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .class-intro-head .lede {
    white-space: normal;
    width: auto;
  }

  .stories-head .lede {
    white-space: normal;
    width: auto;
  }

  .class-grid {
    grid-template-columns: 1fr;
  }

  .instructor-intro .class-card img {
    height: 260px;
  }

  .class-consult {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .engines-head {
    min-height: 0;
    gap: 18px;
  }

  .engine-card {
    height: auto;
    min-height: 280px;
  }

  .engines-head .lede {
    justify-self: start;
    align-self: start;
    max-width: none;
    width: auto;
    padding-top: 0;
  }

  .engines-head .lede.reveal-from-right,
  .engines-head .lede.reveal-from-right.is-visible {
    transform: none;
  }

  .engines-head .lede span {
    white-space: normal;
  }

  .value-grid,
  .engine-cards,
  .instructor-grid,
  .space-grid,
  .stories-grid,
  .engine-bar,
  .contact-split,
  .engines-head,
  .playbooks-head {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 20px 0 24px;
  }

  .site-footer {
    padding: 36px 20px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .person {
    grid-template-columns: 112px 1fr;
  }

  .person img {
    min-height: 128px;
  }

  .space-card {
    grid-template-columns: 1fr;
  }

  .space-card img {
    min-height: 200px;
    height: 220px;
  }

  .space-body-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .space-tagline {
    text-align: left;
    max-width: none;
  }

  .spaces-head {
    min-height: 320px;
    padding: 56px 12px;
    margin-bottom: 48px;
  }

  .review-block-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .space-blob-wave,
  .space-blob-lime,
  .space-blob-drop,
  .space-blob-cloud {
    opacity: 0.9;
  }

  .value-card {
    padding: 24px 22px 26px;
  }

  .value-card h3 {
    font-size: 24px;
  }

  .never-sleeps {
    min-height: 0;
    padding: 48px 18px 40px;
  }

  .never-sleeps .display-top,
  .never-sleeps .display-bottom {
    justify-self: center;
    text-align: center;
  }

  .never-sleeps .display-bottom.reveal-from-right,
  .never-sleeps .display-bottom.reveal-from-right.is-visible {
    transform: none;
  }

  .engine-bar article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .announce {
    max-width: calc(100% - 36px);
  }

  .hero-dots {
    bottom: 92px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
    padding: 26px 18px 22px;
  }

  .final-cta {
    padding-top: 200px;
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .final-cta-copy {
    position: static;
    text-align: center;
    padding-top: 0;
    grid-row: auto;
  }

  .fine {
    grid-column: 1;
    text-align: center;
  }

  .final-cta-copy .display,
  .final-cta-copy .lede {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .three-words {
    min-height: 280px;
  }

  .acc-head {
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 70;
    background: var(--black);
    color: #fff;
    border-radius: 18px;
    overflow: hidden;
  }

  .mobile-cta a {
    text-align: center;
    padding: 14px 6px;
    font-size: 13px;
    font-weight: 650;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-cta a:last-child {
    border-right: 0;
  }

  body {
    padding-bottom: 72px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 8px 8px 16px;
  }

  .drawer.open {
    display: flex;
    position: fixed;
    inset: 84px 12px auto;
    z-index: 90;
    background: #fff;
    border-radius: 20px;
    flex-direction: column;
    padding: 12px;
    box-shadow: var(--shadow-card);
  }

  .drawer a {
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
  }
}
