:root {
  color-scheme: dark;
  --bg: #07080c;
  --bg-soft: #0d1017;
  --surface: rgba(16, 18, 27, 0.72);
  --surface-strong: rgba(14, 17, 24, 0.92);
  --surface-card: rgba(21, 25, 35, 0.86);
  --text: #f4eee4;
  --text-soft: rgba(244, 238, 228, 0.78);
  --text-dim: rgba(244, 238, 228, 0.56);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --gold: #f3cc77;
  --rose: #ee7ca6;
  --peach: #f4a56a;
  --teal: #82d5ce;
  --cyan: #7ec3ff;
  --violet: #988fff;
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --shadow-deep: 0 40px 120px rgba(0, 0, 0, 0.44);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 42px;
  --content-width: min(1240px, calc(100vw - 40px));
  --section-space: clamp(88px, 12vw, 148px);
  --header-height: 128px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--font-ui);
  background:
    radial-gradient(circle at top left, rgba(102, 214, 219, 0.1), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(239, 124, 166, 0.11), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(243, 204, 119, 0.08), transparent 30%),
    linear-gradient(180deg, #0a0c10 0%, #06070b 100%);
  overflow-x: hidden;
}

body.drawer-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.shell {
  width: var(--content-width);
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-noise,
.page-aurora {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
}

.page-noise {
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.5) 0.65px, transparent 0.75px),
    radial-gradient(rgba(255, 255, 255, 0.25) 0.45px, transparent 0.55px);
  background-position: 0 0, 8px 6px;
  background-size: 12px 12px, 14px 14px;
  mix-blend-mode: soft-light;
}

.page-aurora {
  filter: blur(72px);
  opacity: 0.32;
}

.page-aurora--one {
  background:
    radial-gradient(circle at 18% 12%, rgba(111, 219, 212, 0.42), transparent 20%),
    radial-gradient(circle at 78% 38%, rgba(253, 172, 118, 0.18), transparent 18%);
}

.page-aurora--two {
  background:
    radial-gradient(circle at 86% 0%, rgba(239, 124, 166, 0.26), transparent 22%),
    radial-gradient(circle at 54% 62%, rgba(152, 143, 255, 0.18), transparent 18%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button.is-loading {
  pointer-events: none;
  opacity: 0.68;
}

.button--light {
  color: #090b0f;
  background: linear-gradient(180deg, #fff6e8 0%, #f1d9a0 100%);
  box-shadow: 0 18px 32px rgba(243, 204, 119, 0.18);
}

.button--ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.button--gold {
  color: #111318;
  background: linear-gradient(180deg, #ffe39e 0%, #f2be5b 100%);
  box-shadow: 0 22px 40px rgba(242, 190, 91, 0.22);
}

.button--block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: 18px;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease,
    box-shadow 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 11, 16, 0.82) 0%, rgba(9, 11, 16, 0.3) 68%, transparent 100%);
  pointer-events: none;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::before {
  background: rgba(7, 8, 12, 0.8);
}

.site-header__inner,
.site-nav {
  position: relative;
  z-index: 1;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 14px;
}

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

.brand__symbol {
  position: relative;
  width: 42px;
  height: 60px;
  flex: none;
}

.brand__symbol span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(243, 204, 119, 0.8);
}

.brand__symbol span:nth-child(1) {
  transform: translateY(8px);
}

.brand__symbol span:nth-child(2) {
  transform: translateY(-8px);
  border-color: rgba(126, 195, 255, 0.82);
}

.brand__symbol span:nth-child(3) {
  inset: 16px 10px;
  border-color: rgba(130, 213, 206, 0.8);
  background: linear-gradient(180deg, rgba(255, 227, 158, 0.55), rgba(255, 179, 82, 0.05));
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__tag {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-header__utilities {
  display: flex;
  align-items: center;
  gap: 16px;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.locale-switcher__button {
  min-width: 56px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.locale-switcher__button.is-active {
  color: #090b0f;
  background: linear-gradient(180deg, #fff6e8 0%, #f1d9a0 100%);
  box-shadow: 0 10px 22px rgba(243, 204, 119, 0.16);
}

.site-header__phone {
  color: var(--text);
  font-size: 1.15rem;
  white-space: nowrap;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.nav-toggle span:not(.visually-hidden) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 4px;
  background: var(--text);
  border-radius: 999px;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(9, 10, 15, 0.5);
}

.site-nav__link {
  position: relative;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.72);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-drawer__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(420px, 100%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: rgba(9, 11, 16, 0.96);
  border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform 260ms ease;
}

.mobile-drawer.is-open .mobile-drawer__backdrop {
  opacity: 1;
}

.mobile-drawer.is-open .mobile-drawer__panel {
  transform: translateX(0);
}

.mobile-drawer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.mobile-drawer__label {
  margin: 0 0 8px;
  color: var(--text-dim);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-drawer__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-drawer__close {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
}

.mobile-drawer__nav {
  display: grid;
  gap: 10px;
}

.mobile-drawer__link {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 1rem;
}

.mobile-drawer__link.is-active {
  color: var(--text);
  border-color: rgba(243, 204, 119, 0.38);
  background: rgba(243, 204, 119, 0.09);
}

.mobile-drawer__actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.site-main {
  padding-bottom: 84px;
}

.section {
  position: relative;
  padding: var(--section-space) 0 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading__eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.28rem, 4.25vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-heading__subtitle {
  max-width: 48rem;
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.section-lead {
  max-width: 54rem;
  margin: -8px 0 42px;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}

.hero {
  padding-top: clamp(28px, 8vw, 56px);
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: min(94vh, 1040px);
  border-radius: clamp(24px, 5vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(4, 8, 15, 0.4), rgba(6, 8, 12, 0.8));
  box-shadow: var(--shadow-deep);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 16, 0.22) 0%, rgba(4, 8, 14, 0.06) 36%, rgba(5, 8, 12, 0.82) 100%),
    radial-gradient(circle at 50% 38%, rgba(255, 205, 249, 0.24), transparent 22%);
  z-index: 1;
}

.hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__art--mobile {
  display: none;
}

.hero__veil,
.hero__mist {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero__veil {
  inset: auto 0 0;
  height: 27%;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 12, 0) 0%,
    rgba(5, 8, 12, 0.12) 20%,
    rgba(5, 8, 12, 0.62) 72%,
    rgba(5, 8, 12, 0.84) 100%
  );
}

.hero__mist {
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.3;
}

.hero__mist--one {
  left: 10%;
  bottom: 18%;
  width: 260px;
  height: 120px;
  background: rgba(132, 221, 212, 0.36);
}

.hero__mist--two {
  right: 9%;
  top: 14%;
  width: 220px;
  height: 120px;
  background: rgba(228, 127, 173, 0.28);
}

.hero__orb {
  position: absolute;
  top: 37.8%;
  left: 50%;
  z-index: 3;
  width: clamp(86px, 8.2vw, 146px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, calc(-50% + var(--parallax-shift, 0px)));
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 220, 248, 0.94) 14%, rgba(255, 139, 218, 0.92) 28%, rgba(255, 82, 163, 0.88) 44%, rgba(255, 188, 93, 0.82) 58%, rgba(255, 214, 129, 0.26) 74%, transparent 100%);
  box-shadow:
    0 0 0 24px rgba(255, 122, 205, 0.07),
    0 0 90px rgba(255, 98, 194, 0.55),
    0 0 180px rgba(255, 188, 93, 0.34),
    inset 0 0 30px rgba(255, 255, 255, 0.54);
  filter: saturate(1.18);
  animation: orbPulse 5.4s ease-in-out infinite;
}

.hero__orb::before,
.hero__orb::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero__orb::before {
  inset: -26%;
  border: 2px solid rgba(255, 228, 199, 0.24);
  filter: blur(4px);
  animation: orbHaloPulse 5.4s ease-in-out infinite;
}

.hero__orb::after {
  inset: -52%;
  border: 1px solid rgba(255, 218, 145, 0.2);
  box-shadow:
    0 0 24px rgba(255, 171, 70, 0.2),
    0 0 42px rgba(255, 130, 215, 0.14);
  animation: orbHaloPulse 5.4s ease-in-out infinite -1.4s;
}

.hero__intro,
.hero__branding {
  position: absolute;
  z-index: 4;
}

.hero__intro {
  top: clamp(28px, 4vw, 56px);
  left: clamp(24px, 4vw, 56px);
  max-width: min(35rem, 48%);
}

.hero__eyebrow {
  margin: 0 0 22px;
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: clamp(1.1rem, 1.6vw, 1.42rem);
  line-height: 1.35;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__branding {
  left: 50%;
  bottom: clamp(14px, 4vw, 34px);
  transform: translateX(-50%);
  width: min(880px, calc(100% - 40px));
  text-align: center;
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.8vw, 5.5rem);
  line-height: 0.84;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__subtitle {
  margin: 14px 0 0;
  color: rgba(255, 247, 232, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.prologue {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.prologue__copy {
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.86;
}

.prologue__text + .prologue__text {
  margin-top: 18px;
}

.prologue__metric {
  position: relative;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 204, 119, 0.2);
  background:
    radial-gradient(circle at top right, rgba(243, 204, 119, 0.18), transparent 30%),
    rgba(19, 21, 31, 0.85);
  box-shadow: var(--shadow-soft);
}

.metric-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.metric-card__value {
  font-family: var(--font-display);
  font-size: clamp(5rem, 8vw, 7.2rem);
  line-height: 0.78;
  color: #fff4d7;
}

.metric-card__text {
  margin: 0;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.46;
  text-transform: uppercase;
}

.prologue__closing {
  margin: 26px 0 0;
  color: #fff6df;
  font-size: 1.2rem;
  line-height: 1.45;
}

.teachers-stack {
  display: grid;
  gap: 34px;
}

.teacher-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: rgba(12, 14, 22, 0.92);
  box-shadow: var(--shadow-deep);
}

.teacher-card__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 640px;
}

.teacher-card--reverse .teacher-card__layout {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.teacher-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.05), transparent 34%),
    rgba(7, 9, 14, 0.95);
}

.teacher-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.teacher-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 10, 0.04) 0%, rgba(5, 7, 11, 0.22) 100%),
    linear-gradient(90deg, rgba(7, 9, 14, 0.14) 0%, rgba(7, 9, 14, 0) 38%, rgba(7, 9, 14, 0.28) 100%);
}

.teacher-card--reverse .teacher-card__media {
  order: 2;
}

.teacher-card__content {
  position: relative;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: clamp(32px, 5vw, 48px);
  background:
    radial-gradient(circle at top right, rgba(243, 204, 119, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(18, 21, 30, 0.96) 0%, rgba(11, 14, 21, 0.96) 100%);
}

.teacher-card--reverse .teacher-card__content {
  order: 1;
}

.teacher-card__identity {
  align-self: start;
  max-width: 34rem;
}

.teacher-card__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 244, 223, 0.78);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.teacher-card__identity h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.25vw, 4.45rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.teacher-card__lead {
  margin: 14px 0 0;
  color: var(--text);
  font-size: clamp(1.1rem, 1.8vw, 1.65rem);
  line-height: 1.34;
}

.teacher-card__quote {
  margin: 0;
  padding: 20px 22px;
  max-width: 38rem;
  color: rgba(255, 244, 228, 0.92);
  font-size: 1.08rem;
  line-height: 1.76;
  font-style: italic;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(14, 16, 24, 0.72);
}

.teacher-card__body {
  display: grid;
  gap: 14px;
  max-width: 38rem;
}

.teacher-card__body-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.journey-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 4px 0 0;
}

.journey-flow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background:
    linear-gradient(
      180deg,
      rgba(243, 204, 119, 0.25) 0%,
      rgba(243, 204, 119, 0.7) 12%,
      rgba(130, 213, 206, 0.48) 42%,
      rgba(152, 143, 255, 0.55) 72%,
      rgba(243, 204, 119, 0.3) 100%
    );
  box-shadow: 0 0 24px rgba(243, 204, 119, 0.15);
}

.journey-stop {
  position: relative;
  width: min(540px, calc(50% - 58px));
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34%),
    rgba(17, 19, 29, 0.88);
  box-shadow: var(--shadow-soft);
}

.journey-stop--right {
  margin-left: auto;
}

.journey-stop + .journey-stop {
  margin-top: -200px;
}

.journey-stop::before {
  content: "";
  position: absolute;
  top: 44px;
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), var(--accent));
}

.journey-stop::after {
  content: "";
  position: absolute;
  top: 35px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 75%, transparent);
}

.journey-stop--left::before {
  right: -58px;
}

.journey-stop--left::after {
  right: -67px;
}

.journey-stop--right::before {
  left: -58px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.08));
}

.journey-stop--right::after {
  left: -67px;
}

.journey-stop__media {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 70%),
    rgba(5, 7, 12, 0.84);
}

.journey-stop__image,
.journey-stop__video {
  min-width: 0;
  width: 100%;
  height: 100%;
}

.journey-stop__body {
  min-width: 0;
}

.journey-stop__image {
  object-fit: contain;
}

.journey-stop__media--interactive {
  cursor: pointer;
  aspect-ratio: 16 / 7.4;
}

.journey-stop__media--interactive .journey-stop__image--poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: opacity 220ms ease;
}

.journey-stop__media--interactive .journey-stop__video {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #06090f;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.journey-stop__media--interactive.is-playing .journey-stop__video {
  opacity: 1;
}

.journey-stop__media--interactive.is-playing .journey-stop__image--poster {
  animation: none;
  opacity: 0;
}

.journey-stop__media--cover-bottom .journey-stop__image {
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.05);
  filter: saturate(1.05);
}

.journey-stop__media--cover-bottom .journey-stop__video {
  object-position: center bottom;
  filter: saturate(1.05);
}

.journey-stop__media--cover-bottom::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(9, 11, 16, 0.16) 0%, rgba(9, 11, 16, 0.04) 42%, rgba(9, 11, 16, 0.28) 100%),
    linear-gradient(180deg, rgba(16, 19, 28, 0.16), rgba(16, 19, 28, 0));
  pointer-events: none;
}

.journey-stop__number {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-stop__body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.journey-stop__body p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.66;
}

.purpose__intro {
  max-width: 56rem;
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.purpose__intro-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.purpose__orbit {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 460px) minmax(0, 0.9fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.purpose__column {
  display: grid;
  gap: 18px;
}

.purpose-note-shell {
  position: relative;
}

.purpose-note-shadow {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-md);
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 16px 30px rgba(0, 0, 0, 0.14);
}

.purpose-note {
  position: relative;
  z-index: 3;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.004)),
    rgba(8, 11, 16, 0.14);
  backdrop-filter: blur(12px) saturate(1.04) brightness(1.02);
  -webkit-backdrop-filter: blur(12px) saturate(1.04) brightness(1.02);
}

.purpose-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.74;
}

.purpose__center {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.purpose__center img {
  position: relative;
  z-index: 3;
  width: min(100%, 420px);
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.28));
}

.purpose__ring {
  position: absolute;
  inset: 50%;
  z-index: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: slowSpin 24s linear infinite;
}

.purpose__ring--one {
  width: 88%;
  height: 88%;
}

.purpose__ring--two {
  width: 68%;
  height: 68%;
  animation-direction: reverse;
}

.purpose__ring--three {
  width: 108%;
  height: 108%;
  border-color: rgba(243, 204, 119, 0.18);
}

.purpose__satellite {
  position: absolute;
  inset: 50%;
  z-index: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: satelliteOrbit var(--orbit-duration, 18s) linear infinite;
  animation-delay: var(--orbit-delay, 0s);
}

.purpose__satellite::before {
  content: "";
  position: absolute;
  top: calc(var(--planet-size, 12px) * -0.4);
  left: 50%;
  width: var(--planet-size, 12px);
  height: var(--planet-size, 12px);
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.94), var(--planet-core, #f3cc77) 42%, color-mix(in srgb, var(--planet-core, #f3cc77) 56%, #111 44%) 100%);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--planet-glow, rgba(243, 204, 119, 0.6)) 18%, transparent),
    0 0 22px var(--planet-glow, rgba(243, 204, 119, 0.6)),
    0 0 44px color-mix(in srgb, var(--planet-glow, rgba(243, 204, 119, 0.6)) 42%, transparent);
}

.purpose__satellite--one {
  width: 88%;
  height: 88%;
  --planet-size: 15px;
  --planet-core: #f3cc77;
  --planet-glow: rgba(243, 204, 119, 0.72);
  --orbit-duration: 18s;
  --orbit-delay: -3s;
}

.purpose__satellite--two {
  width: 88%;
  height: 88%;
  --planet-size: 10px;
  --planet-core: #82d5ce;
  --planet-glow: rgba(130, 213, 206, 0.7);
  --orbit-duration: 28s;
  --orbit-delay: -16s;
  animation-direction: reverse;
}

.purpose__satellite--three {
  width: 68%;
  height: 68%;
  --planet-size: 12px;
  --planet-core: #f29fc7;
  --planet-glow: rgba(242, 159, 199, 0.72);
  --orbit-duration: 12s;
  --orbit-delay: -4s;
}

.purpose__satellite--four {
  width: 68%;
  height: 68%;
  --planet-size: 8px;
  --planet-core: #7ec3ff;
  --planet-glow: rgba(126, 195, 255, 0.72);
  --orbit-duration: 16s;
  --orbit-delay: -11s;
  animation-direction: reverse;
}

.purpose__satellite--five {
  width: 108%;
  height: 108%;
  --planet-size: 11px;
  --planet-core: #988fff;
  --planet-glow: rgba(152, 143, 255, 0.74);
  --orbit-duration: 34s;
  --orbit-delay: -19s;
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: clamp(22px, 4vw, 36px);
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 17, 24, 0.86);
  box-shadow: var(--shadow-soft);
}

.video-card__poster {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-card__poster img {
  width: 100%;
  height: auto;
  transition: transform 240ms ease;
}

.video-card__poster:hover img {
  transform: scale(1.01);
}

.video-card--passive .video-card__poster {
  cursor: default;
}

.video-card__copy {
  display: grid;
  gap: 18px;
}

.video-card__copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

.benefits {
  position: relative;
}

.benefits__deco {
  position: absolute;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.25));
}

.benefits__deco--one {
  right: -3%;
  top: 28%;
  width: min(32vw, 420px);
  transform: rotate(-8deg) translateY(var(--parallax-shift, 0px));
}

.benefits__deco--two {
  left: -2%;
  bottom: 7%;
  width: min(29vw, 360px);
  transform: rotate(6deg) translateY(var(--parallax-shift, 0px));
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card {
  position: relative;
  min-height: 520px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(255, 255, 255, 0.18), transparent 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.benefit-card.is-tilting {
  box-shadow: 0 32px 68px rgba(0, 0, 0, 0.28);
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-10px);
}

.benefit-card.is-tilting::before {
  opacity: 1;
}

.benefit-card__header {
  display: grid;
  gap: 10px;
  transform: translateZ(26px);
}

.benefit-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.85;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.36;
}

.benefit-card__visual {
  display: grid;
  place-items: center;
  min-height: 180px;
  overflow: hidden;
  border-radius: 24px;
  transform: translateZ(34px);
}

.benefit-card__visual img {
  max-height: 220px;
  width: 100%;
  object-fit: contain;
}

.benefit-card__visual--cover-bottom img {
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.06);
}

.benefit-card__text {
  margin: 0;
  align-self: end;
  line-height: 1.72;
  transform: translateZ(20px);
}

.benefit-card--sand {
  color: #141517;
  background: linear-gradient(180deg, #efe4ce 0%, #dbcbaa 100%);
}

.benefit-card--ember {
  background:
    linear-gradient(180deg, rgba(63, 45, 31, 0.88), rgba(27, 20, 15, 0.94)),
    #241a15;
}

.benefit-card--mist {
  color: #101419;
  background: linear-gradient(180deg, #dff0e9 0%, #d5d7f8 100%);
}

.benefit-card--claret {
  background: linear-gradient(180deg, #3b1d1e 0%, #231417 100%);
}

.benefit-card--lilac {
  color: #10131b;
  background: linear-gradient(180deg, #d7daf8 0%, #d0c8ee 100%);
}

.benefit-card--indigo {
  background: linear-gradient(180deg, #182034 0%, #0e1323 100%);
}

.reviews {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.reviews__viewport {
  overflow: hidden;
}

.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 12px);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  min-width: 0;
  padding: 26px;
  display: grid;
  gap: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 18, 27, 0.86);
  box-shadow: var(--shadow-soft);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.review-card__avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-card__meta h3 {
  margin: 0;
  font-size: 1.44rem;
}

.review-card__meta p {
  margin: 6px 0 0;
  color: var(--text-dim);
}

.review-card__text {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.82;
}

.reviews__arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.reviews__arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.reviews__arrow svg {
  width: 24px;
  height: 24px;
}

.reviews__dots {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.reviews__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.reviews__dot.is-active {
  transform: scale(1.08);
  background: var(--gold);
}

.schedule__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.schedule-chip {
  min-width: 0;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(16, 19, 28, 0.86);
}

.schedule-chip img {
  width: 36px;
  height: 36px;
}

.schedule-chip span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.schedule__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(0, 1fr) 260px;
  gap: 26px;
  align-items: center;
}

.schedule__copy {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(15, 18, 27, 0.7);
}

.schedule__copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.schedule__figure img {
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
  transform: translateY(var(--parallax-shift, 0px));
}

.announcement-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: clamp(24px, 4vw, 42px);
  align-items: stretch;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 204, 119, 0.16);
  background:
    radial-gradient(circle at 12% 12%, rgba(243, 204, 119, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(130, 213, 206, 0.13), transparent 30%),
    rgba(16, 19, 28, 0.82);
  box-shadow: var(--shadow-soft);
}

.announcement-card__copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.announcement-card__date {
  width: fit-content;
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(243, 204, 119, 0.28);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(243, 204, 119, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-card h3 {
  margin: 0;
  max-width: 48rem;
  font-size: clamp(1.68rem, 3vw, 2.9rem);
  line-height: 1.05;
}

.announcement-card__lead {
  max-width: 54rem;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.7;
}

.announcement-card__more {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-card__more::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.announcement-card__more:hover::after {
  transform: translateX(4px);
}

.announcement-card__group {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-card__group h4 {
  margin: 0;
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-card__list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  list-style: none;
}

.announcement-card__list li {
  position: relative;
  padding-left: 18px;
}

.announcement-card__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(243, 204, 119, 0.32);
}

.announcement-card__list--compact {
  gap: 7px;
  font-size: 0.94rem;
}

.announcement-card__aside {
  display: grid;
  align-content: start;
  gap: 22px;
  min-width: 0;
  padding-left: clamp(20px, 3vw, 32px);
  border-left: 1px solid rgba(243, 204, 119, 0.16);
}

.announcement-card__gift {
  display: grid;
  gap: 8px;
}

.announcement-card__gift p {
  margin: 0;
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announcement-card__gift span {
  color: rgba(255, 247, 232, 0.9);
  font-size: 1rem;
  line-height: 1.55;
}

.announcement-card__form {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.announcement-card__form label {
  display: grid;
  gap: 8px;
}

.announcement-card__form span {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.announcement-card__form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 10, 16, 0.72);
  color: var(--text);
  outline: none;
}

.announcement-card__form input:focus {
  border-color: rgba(243, 204, 119, 0.7);
  box-shadow: 0 0 0 3px rgba(243, 204, 119, 0.12);
}

.announcement-card__status {
  min-height: 1.35em;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1.35;
}

.announcement-card__status[data-kind="ok"] {
  color: #b7f2d2;
}

.announcement-card__status[data-kind="error"] {
  color: #ffb4b4;
}

.webinar-page {
  background:
    radial-gradient(circle at 76% 8%, rgba(127, 219, 210, 0.16), transparent 30%),
    radial-gradient(circle at 18% 24%, rgba(243, 204, 119, 0.11), transparent 24%),
    var(--bg);
}

.webinar-header {
  background: transparent;
}

.webinar-header::before {
  background:
    linear-gradient(180deg, rgba(9, 11, 16, 0.38) 0%, rgba(9, 11, 16, 0.1) 72%, transparent 100%);
}

.webinar-header.is-scrolled::before {
  background: rgba(7, 8, 12, 0.58);
}

.webinar-main {
  overflow: hidden;
}

.webinar-hero {
  position: relative;
  min-height: min(860px, calc(100vh - 84px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.webinar-hero__image,
.webinar-hero__shade {
  position: absolute;
  inset: 0;
}

.webinar-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.12) saturate(1.04);
}

.webinar-hero__shade {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.84) 0%, rgba(5, 8, 12, 0.55) 43%, rgba(5, 8, 12, 0.02) 100%),
    linear-gradient(180deg, rgba(5, 8, 12, 0.04) 0%, rgba(5, 8, 12, 0.68) 100%);
}

.webinar-hero__inner {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  padding-top: clamp(90px, 14vw, 170px);
  padding-bottom: clamp(64px, 10vw, 118px);
}

.webinar-hero__copy {
  max-width: min(740px, 100%);
  display: grid;
  gap: 22px;
}

.webinar-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.webinar-hero__title,
.webinar-section h2,
.webinar-register h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

.webinar-hero__title {
  max-width: min(820px, 100%);
  color: var(--text);
  font-size: clamp(2.75rem, 4.85vw, 5.05rem);
  line-height: 0.92;
  text-wrap: balance;
  text-transform: uppercase;
}

.webinar-hero__lead {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 247, 232, 0.88);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  line-height: 1.6;
}

.webinar-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.webinar-hero__meta {
  min-width: 0;
  padding: 22px;
  display: grid;
  gap: 8px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 204, 119, 0.24);
  background: rgba(8, 10, 16, 0.54);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.webinar-hero__meta p,
.webinar-hero__meta strong,
.webinar-hero__meta span {
  margin: 0;
}

.webinar-hero__meta p {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.webinar-hero__meta strong {
  color: var(--text);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1;
}

.webinar-hero__meta span {
  color: rgba(255, 247, 232, 0.72);
  line-height: 1.5;
}

.webinar-gift {
  border-block: 1px solid rgba(255, 236, 178, 0.38);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #f7cf73 0%, #e7a942 52%, #b87922 100%);
}

.webinar-gift__inner {
  min-height: 124px;
  padding-block: 26px;
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.webinar-gift p,
.webinar-gift__copy strong,
.webinar-gift__copy span {
  margin: 0;
}

.webinar-gift p {
  color: rgba(20, 16, 10, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.webinar-gift__copy {
  display: grid;
  gap: 8px;
}

.webinar-gift__copy strong {
  max-width: 760px;
  color: #16130d;
  font-size: clamp(1.28rem, 2.3vw, 2.18rem);
  line-height: 1.14;
}

.webinar-gift__copy span {
  max-width: 620px;
  color: rgba(22, 19, 13, 0.68);
  line-height: 1.55;
}

.webinar-section,
.webinar-register {
  padding: clamp(72px, 10vw, 126px) 0;
}

.webinar-section--dynamic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.webinar-section--dynamic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(243, 204, 119, 0.05), transparent 32%),
    radial-gradient(ellipse at 78% 36%, rgba(130, 213, 206, 0.08), transparent 40%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 105, 190, 0.055), transparent 38%);
}

.webinar-section--dynamic > .shell {
  position: relative;
  z-index: 1;
}

.webinar-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: screen;
}

.webinar-register .webinar-waves {
  opacity: 0.42;
}

@media (prefers-reduced-motion: reduce) {
  .webinar-waves {
    display: none;
  }
}

@media (max-width: 760px) {
  .webinar-waves {
    opacity: 0.44;
  }

  .webinar-register .webinar-waves {
    opacity: 0.32;
  }
}

.webinar-section__grid,
.webinar-register__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.webinar-section__copy,
.webinar-register__copy,
.webinar-section__head {
  display: grid;
  gap: 18px;
}

.webinar-section h2,
.webinar-register h2 {
  max-width: 16ch;
  color: var(--text);
  font-size: clamp(1.68rem, 2.65vw, 2.75rem);
  line-height: 1.05;
  text-wrap: balance;
  text-transform: uppercase;
}

.webinar-section__copy p,
.webinar-register__copy p {
  max-width: 44rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.webinar-list {
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.webinar-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.webinar-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(243, 204, 119, 0.28);
}

.webinar-video-teaser {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.webinar-video-teaser video {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at center, rgba(243, 204, 119, 0.1), transparent 64%),
    rgba(17, 20, 29, 0.82);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.webinar-video-teaser__caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.webinar-video-teaser__caption span {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.webinar-video-teaser__caption p {
  margin: 0;
}

.webinar-section--soft {
  background:
    radial-gradient(circle at 18% 24%, rgba(243, 204, 119, 0.12), transparent 24%),
    radial-gradient(circle at 86% 64%, rgba(130, 213, 206, 0.1), transparent 26%),
    rgba(12, 15, 22, 0.76);
}

.webinar-section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.webinar-chakra-strip {
  width: fit-content;
  margin: -8px 0 28px;
  padding: 10px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid rgba(243, 204, 119, 0.16);
  background: rgba(8, 10, 16, 0.54);
}

.webinar-chakra-strip img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.22));
}

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

.webinar-audience-card {
  min-height: 260px;
  padding: 12px;
  display: grid;
  grid-template-rows: minmax(120px, 0.78fr) auto;
  gap: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(17, 20, 29, 0.82);
  box-shadow: var(--shadow-soft);
}

.webinar-audience-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(8, 10, 16, 0.4);
}

.webinar-audience-card p {
  min-height: 84px;
  margin: 0;
  padding: 0 10px 8px;
  display: flex;
  align-items: flex-end;
  color: var(--text-soft);
  line-height: 1.55;
}

.webinar-why {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.webinar-why h2 {
  max-width: 18ch;
  font-size: clamp(1.6rem, 2.3vw, 2.35rem);
  line-height: 1.08;
}

.webinar-list--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-top: 0;
}

.webinar-why__panel {
  min-width: 0;
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  gap: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 204, 119, 0.16);
  background:
    radial-gradient(circle at top right, rgba(130, 213, 206, 0.12), transparent 30%),
    rgba(17, 20, 29, 0.82);
  box-shadow: var(--shadow-soft);
}

.webinar-why__icons {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.webinar-why__icons img {
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.24);
}

.webinar-register {
  border-top: 1px solid rgba(243, 204, 119, 0.14);
  background:
    radial-gradient(circle at 18% 16%, rgba(243, 204, 119, 0.1), transparent 24%),
    radial-gradient(circle at 92% 54%, rgba(130, 213, 206, 0.1), transparent 28%),
    rgba(10, 13, 20, 0.96);
}

.webinar-form {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 204, 119, 0.18);
  background:
    radial-gradient(circle at top right, rgba(130, 213, 206, 0.12), transparent 34%),
    rgba(9, 11, 18, 0.86);
  box-shadow: var(--shadow-soft);
}

.webinar-form label {
  display: grid;
  gap: 8px;
}

.webinar-form span {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.webinar-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 10, 16, 0.72);
  color: var(--text);
  outline: none;
}

.webinar-form input:focus {
  border-color: rgba(243, 204, 119, 0.7);
  box-shadow: 0 0 0 3px rgba(243, 204, 119, 0.12);
}

.webinar-form__status {
  min-height: 1.35em;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.35;
}

.webinar-form__status[data-kind="ok"] {
  color: #b7f2d2;
}

.webinar-form__status[data-kind="error"] {
  color: #ffb4b4;
}

.webinar-backlink {
  width: fit-content;
  color: var(--gold);
  font-size: 0.92rem;
}

.webinar-footer {
  width: var(--content-width);
  margin: 42px auto 0;
  padding: 34px 0 46px;
}

.participate-flow {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr) minmax(240px, 0.52fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 28px;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 204, 119, 0.16);
  background:
    radial-gradient(circle at top right, rgba(243, 204, 119, 0.12), transparent 34%),
    rgba(16, 19, 28, 0.82);
}

.participate-flow__copy h3,
.participate-panel__block h3 {
  margin: 0 0 14px;
  font-size: 1.32rem;
}

.participate-flow__copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.76;
}

.participate-flow__list,
.participate-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.participate-flow__list li,
.participate-panel__list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.7;
}

.participate-flow__list li::before,
.participate-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.participate-flow__actions {
  display: grid;
  gap: 12px;
}

.participate-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 17, 24, 0.88);
  box-shadow: var(--shadow-deep);
}

.participate-panel__lists {
  order: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.participate-panel__aside {
  order: 1;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(243, 204, 119, 0.14);
  background:
    radial-gradient(circle at top right, rgba(243, 204, 119, 0.16), transparent 26%),
    rgba(22, 25, 34, 0.88);
}

.participate-panel__label {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.checkout-box {
  display: grid;
  gap: 9px;
  border-radius: 14px;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.checkout-box.is-attention {
  background: rgba(243, 204, 119, 0.08);
  box-shadow: 0 0 0 8px rgba(243, 204, 119, 0.08);
}

.checkout-box__label {
  color: var(--text-dim);
  font-size: 0.86rem;
}

.checkout-box__input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(8, 10, 16, 0.72);
  color: var(--text);
  font: inherit;
  outline: none;
}

.checkout-box__input:focus {
  border-color: rgba(243, 204, 119, 0.7);
  box-shadow: 0 0 0 3px rgba(243, 204, 119, 0.12);
}

.checkout-box__status {
  min-height: 1.35em;
  margin: 0;
  color: var(--text-dim);
  font-size: 0.86rem;
  line-height: 1.35;
}

.checkout-box__status[data-kind="error"] {
  color: #ffb4b4;
}

.checkout-box__status[data-kind="ok"] {
  color: #b7f2d2;
}

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

.plan-card {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(15, 18, 27, 0.76);
}

.plan-card--featured {
  border-color: rgba(243, 204, 119, 0.24);
  background:
    radial-gradient(circle at top right, rgba(243, 204, 119, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(15, 18, 27, 0.84);
}

.plan-card--premium {
  border-color: rgba(238, 124, 166, 0.18);
  background:
    radial-gradient(circle at top right, rgba(238, 124, 166, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(15, 18, 27, 0.84);
}

.plan-card__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.plan-card__name {
  margin: 0;
  max-width: 14rem;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-card__price {
  margin: 0;
  flex: none;
  color: #ffe6a8;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.plan-card__note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

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

.plan-card__features li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.6;
}

.plan-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.participate-panel__note,
.participate-panel__access {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.participate-discount {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.participate-discount p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.participate-discount__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(244, 201, 112, 0.48);
  border-radius: 8px;
  color: #110f0c;
  background: var(--gold);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(244, 201, 112, 0.16);
}

.participate-discount__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(244, 201, 112, 0.22);
}

.share-box {
  display: grid;
  gap: 12px;
}

.share-box p {
  margin: 0;
  color: var(--text-dim);
}

.share-box__actions {
  display: flex;
  gap: 10px;
}

.share-box__button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.share-box__button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
}

.share-box__button svg {
  width: 20px;
  height: 20px;
}

.participate-art {
  margin-top: 28px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 18, 0.86);
}

.participate-art img {
  width: 100%;
  height: auto;
  transform: translateY(var(--parallax-shift, 0px));
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
}

.site-footer__legal {
  display: grid;
  gap: 7px;
  max-width: 760px;
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.site-footer__company {
  color: var(--text-soft);
  font-weight: 500;
}

.site-footer__design {
  color: rgba(222, 220, 206, 0.62);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px 18px;
  max-width: 420px;
  text-align: right;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
  overflow-wrap: anywhere;
}

.site-footer a {
  color: var(--text-dim);
}

.site-footer a:hover {
  color: var(--text);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.reveal-pending {
  opacity: 0.42;
  transform: translateY(26px);
}

@keyframes orbPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: translate(-50%, calc(-50% + var(--parallax-shift, 0px))) scale(0.84);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, calc(-50% + var(--parallax-shift, 0px))) scale(1.16);
  }
}

@keyframes orbHaloPulse {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.84);
  }
  50% {
    opacity: 0.62;
    transform: scale(1.26);
  }
}

@keyframes slowSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes satelliteOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .site-header__phone {
    display: none;
  }

  .schedule__layout {
    grid-template-columns: 180px minmax(0, 1fr) minmax(0, 1fr) 210px;
  }

  .participate-flow {
    grid-template-columns: 1fr 1fr;
  }

  .participate-flow__actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .site-header__actions,
  .site-nav,
  .brand__copy {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .hero__visual {
    min-height: 860px;
  }

  .hero__intro {
    max-width: min(38rem, 62%);
  }

  .prologue,
  .video-card,
  .announcement-card,
  .participate-panel {
    grid-template-columns: 1fr;
  }

  .announcement-card__aside {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(243, 204, 119, 0.16);
    border-left: 0;
  }

  .participate-panel__lists,
  .participate-plans {
    grid-template-columns: 1fr;
  }

  .teacher-card__layout,
  .teacher-card--reverse .teacher-card__layout {
    grid-template-columns: 1fr;
  }

  .teacher-card,
  .teacher-card__layout {
    min-height: 0;
  }

  .teacher-card--reverse .teacher-card__media,
  .teacher-card--reverse .teacher-card__content {
    order: initial;
  }

  .teacher-card__media {
    min-height: 420px;
  }

  .journey-stop {
    width: min(620px, calc(100% - 64px));
  }

  .journey-stop + .journey-stop {
    margin-top: 0;
  }

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

  .purpose__center {
    order: -1;
    min-height: 460px;
  }

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

  .reviews__track {
    grid-auto-columns: calc(100% - 8px);
  }

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

  .schedule__figure {
    display: none;
  }

  .participate-flow {
    grid-template-columns: 1fr;
  }

  .participate-flow__actions {
    grid-template-columns: 1fr;
  }

  .webinar-section__grid,
  .webinar-register__grid,
  .webinar-why {
    grid-template-columns: 1fr;
  }

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

  .webinar-gift__inner {
    grid-template-columns: 1fr;
    padding-block: 28px;
  }

  .webinar-gift p,
  .webinar-gift__copy {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 24px, 100vw - 24px);
    --header-height: 88px;
  }

  .site-header {
    padding-top: 12px;
  }

  .brand__symbol {
    width: 36px;
    height: 52px;
  }

  .hero__visual {
    min-height: min(880px, calc(100vh - 104px));
    min-height: min(880px, calc(100svh - 104px));
    aspect-ratio: 825 / 1111;
  }

  .hero__art--desktop {
    display: none;
  }

  .hero__art--mobile {
    display: block;
    object-fit: cover;
    object-position: center top;
  }

  .hero__visual::before {
    background:
      linear-gradient(180deg, rgba(6, 9, 15, 0.08) 0%, rgba(5, 8, 12, 0.08) 22%, rgba(5, 8, 12, 0.9) 100%),
      radial-gradient(circle at 50% 35%, rgba(255, 205, 249, 0.2), transparent 22%);
  }

  .hero__intro {
    top: 74px;
    left: 14px;
    right: 14px;
    max-width: min(19rem, calc(100% - 28px));
    padding: 0;
  }

  .hero__eyebrow {
    font-size: 0.96rem;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.24);
  }

  .hero__actions {
    max-width: 210px;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 44px;
  }

  .hero__branding {
    left: 10px;
    right: 10px;
    bottom: 20px;
    transform: none;
    width: auto;
    max-width: none;
    margin: 0 auto;
    padding: 0;
  }

  .hero__title {
    font-size: clamp(1.82rem, 9.4vw, 2.72rem);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .hero__subtitle {
    margin-top: 10px;
    font-size: 0.92rem;
    letter-spacing: 0.18em;
  }

  .hero__orb {
    top: 43%;
    width: 76px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 10.8vw, 3.05rem);
  }

  .prologue__metric {
    padding: 22px;
  }

  .metric-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .teacher-card__media {
    min-height: 340px;
  }

  .teacher-card__media img {
    object-position: center 12%;
  }

  .journey-flow::before {
    left: 14px;
  }

  .journey-stop,
  .journey-stop--right {
    width: calc(100% - 34px);
    margin-left: 34px;
    padding: 16px;
    gap: 14px;
  }

  .journey-stop::before {
    left: -34px;
    width: 34px;
    background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.08));
  }

  .journey-stop::after {
    left: -43px;
  }

  .journey-stop__body h3 {
    font-size: clamp(1.32rem, 6.4vw, 1.72rem);
    line-height: 0.98;
  }

  .purpose__center {
    min-height: 360px;
  }

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

  .benefit-card {
    min-height: 0;
  }

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

  .reviews__arrow {
    display: none;
  }

  .schedule__icons {
    gap: 10px;
  }

  .schedule-chip {
    padding: 10px 12px;
  }

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

  .announcement-card,
  .participate-panel,
  .participate-flow {
    padding: 22px;
  }

  .announcement-card h3 {
    font-size: clamp(1.5rem, 7.8vw, 2.2rem);
  }

  .webinar-hero {
    min-height: min(760px, calc(100vh - 88px));
    min-height: min(760px, calc(100svh - 88px));
  }

  .webinar-hero__image {
    object-position: 62% center;
  }

  .webinar-hero__shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 12, 0.08) 0%, rgba(5, 8, 12, 0.78) 64%, rgba(5, 8, 12, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 8, 12, 0.72) 0%, rgba(5, 8, 12, 0.22) 100%);
  }

  .webinar-hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 92px;
    padding-bottom: 42px;
  }

  .webinar-hero__copy {
    gap: 16px;
  }

  .webinar-hero__title {
    max-width: 100%;
    font-size: clamp(1.84rem, 8.6vw, 2.28rem);
    line-height: 0.94;
  }

  .webinar-hero__lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .webinar-hero__actions .button {
    width: 100%;
    min-height: 46px;
  }

  .webinar-hero__meta {
    padding: 18px;
  }

  .webinar-hero__meta strong {
    font-size: 1.55rem;
  }

  .webinar-gift__inner {
    gap: 10px;
    padding-block: 24px;
  }

  .webinar-section,
  .webinar-register {
    padding: 64px 0;
  }

  .webinar-section h2,
  .webinar-register h2 {
    max-width: 100%;
    font-size: clamp(1.38rem, 5.8vw, 1.65rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .webinar-chakra-strip {
    width: 100%;
    margin-top: -2px;
    border-radius: 16px;
  }

  .webinar-chakra-strip img {
    width: 34px;
    height: 34px;
  }

  .webinar-why__panel {
    padding: 20px;
  }

  .webinar-video-teaser__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .webinar-why__icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .webinar-why__icons img {
    width: 100%;
    height: auto;
  }

  .webinar-footer {
    margin-top: 28px;
    padding: 26px 0 36px;
  }

  .webinar-section__copy p,
  .webinar-register__copy p {
    font-size: 0.98rem;
  }

  .webinar-audience,
  .webinar-list--columns {
    grid-template-columns: 1fr;
  }

  .webinar-audience-card {
    min-height: 0;
    grid-template-rows: 150px auto;
    padding: 10px;
  }

  .webinar-audience-card p {
    min-height: 0;
    padding: 0 8px 8px;
  }

  .plan-card__head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .locale-switcher {
    padding: 3px;
  }

  .locale-switcher__button {
    min-width: 48px;
    min-height: 34px;
    padding: 0 10px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__links {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .hero__orb,
  .hero__orb::before,
  .hero__orb::after,
  .purpose__ring,
  .purpose__satellite,
  .button,
  .benefit-card,
  .reviews__arrow,
  .video-card__poster img,
  .share-box__button {
    transition: none !important;
    animation: none !important;
  }
}
