﻿@import url("https://fonts.googleapis.com/css2?family=Forum&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600&display=swap");

:root {
  --deep: #0a0a1c;
  --ink: #0a0a1c;
  --night: #05080d;
  --gold: #f8ecb3;
  --gold-soft: #fff7d2;
  --text: #ffffff;
  --muted: rgba(255,255,255,.72);
  --paper: #fffffd;
  --paper-line: #dad2c7;
  --stroke: rgba(255,255,255,.14);
  --content: 1100px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

.page-shell {
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 32px), var(--content));
  transform: translateX(-50%);
  padding: 16px 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}

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

.brand-mark {
  width: 21px;
  height: 20px;
  border-radius: 5px;
  background:
    center / cover no-repeat url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/CuR-igL7ckC70tht05EKyA.png"),
    linear-gradient(318deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
}

.brand-text {
  font-family: "Forum", Georgia, serif;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: .5px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1;
}

.site-nav a {
  color: #e5e7eb;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(248,236,179,.7);
  background: rgba(255,255,255,.06);
}

.social-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.nav-toggle {
  display: none;
}

.section-inner {
  width: min(calc(100% - 100px), var(--content));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-dark {
  position: relative;
  color: #fff;
  background: var(--deep);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 4%, rgba(15,240,252,.26), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(106,13,173,.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent);
}

.white-section {
  position: relative;
  background: var(--paper);
  color: var(--ink);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Forum", Georgia, serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  color: var(--gold);
  font-size: 48px;
  line-height: 1.1;
}

h2 {
  font-size: 40px;
  line-height: 1.1;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

p {
  margin: 0;
  font-size: 18px;
  line-height: 1.22;
}

strong {
  font-weight: 600;
}

.gold-button {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 4px 18px 4px 16px;
  color: #040404;
  border-radius: 10px;
  background: linear-gradient(318deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  font-family: "Forum", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gold-button span:first-child {
  width: 49px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(270deg, #ffed97 0%, #fff5c7 50%, #ffed97 100%);
}

.gold-button img {
  width: 28px;
  height: 16px;
}

.gold-button:hover,
.gold-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(248,236,179,.22);
}

.media-placeholder {
  min-height: 260px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(10,10,28,0) 40%, rgba(10,10,28,.75) 100%),
    radial-gradient(circle at 72% 20%, rgba(248,236,179,.32), transparent 30%),
    linear-gradient(135deg, #263650, #11152b 45%, #6a0dad);
}

.white-section .media-placeholder {
  border-color: rgba(10,10,28,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(10,10,28,.34) 100%),
    radial-gradient(circle at 70% 20%, rgba(248,236,179,.45), transparent 30%),
    linear-gradient(135deg, #dde4ec, #b6bfd0 45%, #7d89a5);
}

.hero {
  width: min(100%, 1200px);
  min-height: 750px;
  margin: 0 auto;
  padding: 126px 0 70px;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  box-shadow: 0 0 0 100vmax var(--deep);
  clip-path: inset(0 -100vmax);
  background: var(--deep);
}

.hero__glow {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 1057px;
  max-width: 88%;
  background:
    linear-gradient(90deg, var(--deep) 0%, rgba(10,10,28,.78) 18%, rgba(10,10,28,.08) 42%, rgba(10,10,28,0) 100%),
    url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/ynO7bn7-sUixS4WtFgOBLA.png") right top / auto 750px no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  align-items: center;
}

.hero__copy {
  display: grid;
  gap: 28px;
  max-width: 680px;
}

.hero h1 {
  max-width: 680px;
}

.hero__lead {
  max-width: 554px;
  color: #fff;
}

.hero-points {
  display: grid;
  gap: 15px;
  max-width: 470px;
}

.hero-points p {
  display: grid;
  grid-template-columns: 41px 1fr;
  gap: 8px;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.hero-point-icon {
  width: 41px;
  height: 32px;
  object-fit: contain;
}

.hero-point-icon--tall {
  height: 42px;
}

.principle-cards span {
  width: 41px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(318deg, var(--gold), var(--gold-soft));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.play-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(2px);
  position: relative;
  isolation: isolate;
  box-shadow: 0 0 0 0 rgba(248,236,179,.2), inset 0 0 0 1px rgba(255,255,255,.02);
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
  animation: playButtonBreath 3.2s ease-in-out infinite;
}

.play-button::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 19px;
  top: 15px;
  border-left: 14px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  filter: drop-shadow(0 0 9px rgba(248,236,179,.48));
  transition: transform var(--transition), filter var(--transition);
}

.play-button::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background:
    conic-gradient(from 120deg, transparent 0deg, rgba(248,236,179,.06) 74deg, rgba(248,236,179,.72) 104deg, rgba(15,240,252,.2) 132deg, transparent 176deg, transparent 360deg);
  opacity: .72;
  filter: blur(.2px);
  animation: playButtonRing 5.8s linear infinite;
  mask: radial-gradient(circle, transparent 0 62%, #000 64%);
  -webkit-mask: radial-gradient(circle, transparent 0 62%, #000 64%);
}

.play-button:hover,
.play-button:focus-visible {
  transform: translateY(-2px) scale(1.06);
  border-color: rgba(248,236,179,.58);
  background: rgba(255,255,255,.16);
  box-shadow: 0 0 34px rgba(248,236,179,.26), 0 14px 34px rgba(0,0,0,.24);
}

.play-button:hover::before,
.play-button:focus-visible::before {
  transform: translateX(1px) scale(1.06);
  filter: drop-shadow(0 0 14px rgba(248,236,179,.7));
}

@keyframes playButtonBreath {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(248,236,179,.2), inset 0 0 0 1px rgba(255,255,255,.02);
  }

  52% {
    box-shadow: 0 0 0 12px rgba(248,236,179,0), 0 0 26px rgba(248,236,179,.18), inset 0 0 0 1px rgba(255,255,255,.08);
  }
}

@keyframes playButtonRing {
  to {
    transform: rotate(360deg);
  }
}

.video-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.video-popup.is-open {
  opacity: 1;
  visibility: visible;
}

.video-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 14, .78);
  backdrop-filter: blur(10px);
}

.video-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  overflow: hidden;
  background: #05080d;
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
}

.video-popup__dialog iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(5,8,13,.64);
  color: #fff;
  cursor: pointer;
}

.video-popup__close::before,
.video-popup__close::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  width: 16px;
  height: 1.5px;
  border-radius: 99px;
  background: currentColor;
}

.video-popup__close::before {
  transform: rotate(45deg);
}

.video-popup__close::after {
  transform: rotate(-45deg);
}

body.popup-open {
  overflow: hidden;
}

.media-placeholder--cosmos {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 455px) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.split__copy {
  display: grid;
  gap: 28px;
}

.split__copy h2,
.section-dark h2 {
  color: var(--gold);
}

.pain,
.pause,
.symptoms,
.school,
.principles {
  padding: 72px 0;
}

.pain {
  width: min(100%, 1200px);
  margin: 0 auto;
  overflow: visible;
  background: #1a191b;
  box-shadow: 0 0 0 100vmax #1a191b;
  clip-path: inset(0 -100vmax);
}

.pain .section-inner {
  z-index: 2;
}

.pain::before,
.pain::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.pain::before {
  left: 0;
  right: auto;
  width: 456px;
  background: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/FcpYnMwSNE-XCOU79jLMyw.png") left center / auto 100% no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 52%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 52%, transparent 100%);
}

.pain::after {
  right: 0;
  left: auto;
  width: 620px;
  background: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/osYkccD3PkaEC6PQiIOu3Q.png") right center / auto 100% no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 46%, #000 84%, transparent 100%);
}

.pain .split__copy,
.pain-card {
  position: relative;
  z-index: 2;
}

.pain-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pain-glow::before,
.pain-glow::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  width: 520px;
  pointer-events: none;
  filter: blur(18px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.pain-glow::before {
  left: -300px;
  background:
    radial-gradient(ellipse at 58% 30%, rgba(118, 42, 255, .54) 0%, rgba(118, 42, 255, .28) 22%, transparent 58%),
    radial-gradient(ellipse at 48% 72%, rgba(72, 35, 168, .36) 0%, transparent 52%);
}

.pain-glow::after {
  right: -320px;
  background:
    radial-gradient(ellipse at 42% 50%, rgba(118, 42, 255, .58) 0%, rgba(118, 42, 255, .32) 25%, transparent 60%),
    radial-gradient(ellipse at 50% 86%, rgba(72, 35, 168, .38) 0%, transparent 48%);
}

.pain-card {
  min-height: 518px;
  border-radius: 20px;
}

.media-placeholder--person {
  min-height: 518px;
  width: 100%;
  height: 518px;
  object-fit: cover;
  border-radius: 20px;
  transition: opacity 760ms ease, transform 900ms ease;
}

.media-placeholder--person.is-switching {
  opacity: .22;
  transform: translateY(-18px) scale(1.024);
}

.pain-card__glass {
  position: absolute;
  left: 84px;
  top: 108px;
  width: 318px;
  transform: none;
  padding: 16px;
  border-radius: 0;
  color: #fff;
  background: rgba(33, 14, 12, .82);
  backdrop-filter: blur(10px);
}

.pain-card__glass strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.1;
}

.pain-card__glass span {
  color: rgba(255,255,255,.5);
}

.pain-card__glass p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.pause {
  min-height: 826px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #0c0a1b;
}

.pause::before {
  inset: 0;
  opacity: .96;
  background: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/WevyPZfmKEykuSsXnafy2A.png") center top / 1200px 826px no-repeat;
}

.pause::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 43%, rgba(255,255,255,.06), transparent 23%),
    linear-gradient(180deg, rgba(5,8,13,.2) 0%, rgba(5,8,13,.06) 34%, rgba(5,8,13,.48) 100%),
    linear-gradient(90deg, rgba(5,8,13,.9) 0%, rgba(5,8,13,.18) 16%, transparent 35%, transparent 65%, rgba(5,8,13,.18) 84%, rgba(5,8,13,.9) 100%);
  z-index: 1;
}

.pause .section-inner {
  min-height: 682px;
  align-content: start;
  z-index: 3;
}

.pause h2 {
  max-width: 420px;
}

.pause > .section-inner > p:first-of-type {
  max-width: 360px;
  margin: -8px 0 0;
}

.section-center {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 28px;
}

.pause-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 0;
  text-align: left;
}

.word-cloud {
  min-height: 240px;
  position: relative;
}

.word-cloud span {
  position: absolute;
  color: rgba(248,236,179,.55);
  font-family: "Forum", Georgia, serif;
  text-transform: uppercase;
}

.word-cloud span:nth-child(1) { left: 20%; top: 10%; font-size: 32px; }
.word-cloud span:nth-child(2) { left: 8%; top: 38%; font-size: 40px; }
.word-cloud span:nth-child(3) { left: 44%; top: 62%; font-size: 24px; opacity: .78; }
.word-cloud span:nth-child(4) { left: 28%; top: 82%; font-size: 24px; opacity: .7; }
.word-cloud span:nth-child(5) { left: 12%; top: 66%; font-size: 40px; opacity: .5; }

.pause-copy {
  display: grid;
  gap: 28px;
  max-width: 345px;
  justify-self: end;
}

.pause-result {
  max-width: 520px;
  margin: 20px 0 -4px;
}

.cards-section,
.path-section,
.founder,
.product,
.results {
  padding: 72px 0;
}

.cards-section {
  position: relative;
  min-height: 970px;
  overflow: hidden;
  background: #fffffd;
}

.cards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/aaZIy1pxuEGwCaP-atdFpA.png") center top / 1308px 970px no-repeat;
}

.cards-section .section-inner {
  z-index: 1;
}

.white-section h2,
.white-section h3 {
  color: var(--ink);
}

.truth-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.truth-cards article {
  position: relative;
  min-height: 526px;
  aspect-ratio: 354 / 526;
  overflow: hidden;
  border-radius: 20px;
}

.truth-cards .media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 526px;
  object-fit: cover;
  border-radius: 20px;
}

.truth-cards article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 56%, rgba(0,0,0,.5) 77%, rgba(0,0,0,.92) 100%);
}

.truth-cards p {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 224px;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  z-index: 1;
}

.dark-note {
  max-width: 380px;
  color: var(--ink);
  font-weight: 500;
}

.symptoms {
  min-height: 930px;
  overflow: hidden;
  background:
    url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/wMOhpX37R0Oe_-Up1mBHaQ.png") center top / 1200px 930px no-repeat,
    #09080e;
}

.symptoms::before {
  background: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/ggg-l2AXaUGetdJqCpHf4Q.png") center / 100% 100% no-repeat;
  opacity: 1;
}

.symptoms::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,10,28,.2) 0%, transparent 34%, rgba(10,10,28,.5) 100%),
    linear-gradient(90deg, rgba(10,10,28,.68) 0%, transparent 20%, transparent 80%, rgba(10,10,28,.68) 100%);
  z-index: 1;
}

.symptoms .section-inner {
  z-index: 2;
}

.symptom-orbit {
  width: min(760px, 100%);
  min-height: 480px;
  display: grid;
  place-items: center;
  position: relative;
  margin: 20px auto 0;
}

.symptom-orbit span {
  width: 136px;
  position: absolute;
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.16;
  transform: translate(-50%, -118%);
}

.symptom-orbit span:nth-child(1) { left: 23%; top: 20%; }
.symptom-orbit span:nth-child(2) { left: 43%; top: 17%; }
.symptom-orbit span:nth-child(3) { left: 72%; top: 29%; }
.symptom-orbit span:nth-child(4) { left: 88%; top: 13%; }
.symptom-orbit span:nth-child(5) { left: 89%; top: 43%; }
.symptom-orbit span:nth-child(6) { left: 89%; top: 67%; }
.symptom-orbit span:nth-child(7) { left: 81%; top: 92%; }
.symptom-orbit span:nth-child(8) { left: 30%; top: 100%; }
.symptom-orbit span:nth-child(9) { left: 14%; top: 82%; }
.symptom-orbit span:nth-child(10) { left: 11%; top: 53%; }

.symptoms .section-inner > p {
  margin: 62px 0 0;
  color: rgba(255,255,255,.9);
  font-size: 18px;
}

.path-section .section-inner,
.results .section-inner {
  display: grid;
  justify-items: center;
  gap: 36px;
  text-align: center;
}

.path-section {
  background: #fffffd;
}

.path-section h2,
.results h2 {
  max-width: 840px;
}

.path-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 18px;
}

.path-steps p,
.responsibility p {
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
}

.path-steps p {
  min-height: 118px;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  align-items: center;
  margin: 0;
}

.path-steps p::before,
.responsibility::before {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.path-steps p::before {
  width: 118px;
  height: 118px;
}

.path-steps p:nth-child(1)::before {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/ZUVWudSxL0eTCZyjLkSDZA.png");
}

.path-steps p:nth-child(2)::before {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/KEhHmpJh1kG0-c94SeSgZQ.png");
}

.path-steps p:nth-child(3)::before {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/N-mENs1URk-P4_IpkFiqVA.png");
}

.path-section h3 {
  font-size: 32px;
  margin-top: 28px;
}

.responsibility {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 150px 1fr;
  gap: 42px;
  align-items: center;
  padding: 30px 36px;
  border: 1px solid rgba(218,210,199,.9);
  border-radius: 14px;
  background:
    radial-gradient(ellipse 240px 130px at 108px 50%, rgba(241,232,202,.82), transparent 74%),
    radial-gradient(ellipse 250px 130px at 50% 50%, rgba(247,238,202,.88), transparent 74%),
    linear-gradient(90deg, #fffefa 0%, #f7f1dc 24%, #fbf7e9 42%, #f7f0d7 56%, #fffefa 100%);
  position: relative;
  overflow: hidden;
}

.responsibility::before {
  position: absolute;
  left: 30px;
  top: 50%;
  width: 148px;
  height: 118px;
  transform: translateY(-50%);
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/Hqq9Uhu8dkyVu8t19QGm3w.png");
  filter: saturate(.92);
  mix-blend-mode: multiply;
  mask-image: radial-gradient(ellipse at center, #000 0 54%, rgba(0,0,0,.7) 66%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 54%, rgba(0,0,0,.7) 66%, transparent 82%);
}

.responsibility::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 118px;
  transform: translate(-50%, -50%);
  background: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/GGIOQM-adEiyikH6JpN40w.png") center / contain no-repeat;
  pointer-events: none;
  filter: saturate(.94);
  mix-blend-mode: multiply;
  mask-image: radial-gradient(ellipse at center, #000 0 55%, rgba(0,0,0,.68) 67%, transparent 84%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 55%, rgba(0,0,0,.68) 67%, transparent 84%);
}

.responsibility p {
  margin: 0;
}

.responsibility p:first-child {
  grid-column: 1;
  padding-left: 170px;
}

.responsibility p:last-child {
  grid-column: 3;
}

.school-grid {
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(260px, 1fr);
  gap: 72px;
  align-items: center;
  text-align: left;
}

.school {
  min-height: 891px;
  overflow: hidden;
  background: #0a0a1c;
}

.school::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/S8oYxFMu60qBkpiKd43REg.png") center top / 1200px 891px no-repeat;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
  z-index: 0;
}

.school::before {
  background:
    linear-gradient(180deg, rgba(10,10,28,.26) 0%, rgba(10,10,28,.12) 44%, rgba(10,10,28,.48) 100%),
    linear-gradient(90deg, rgba(10,10,28,.58), transparent 24%, transparent 76%, rgba(10,10,28,.58));
  z-index: 1;
}

.school .section-inner {
  z-index: 2;
}

.school-visual {
  width: 100%;
  max-width: 420px;
  min-height: 330px;
  object-fit: contain;
  display: block;
}

.truth-list {
  display: grid;
  gap: 14px;
}

.truth-list p {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 24px;
  gap: 4px;
  align-items: center;
  margin: 0;
}

.truth-list p::before {
  content: "";
  width: 52px;
  height: 52px;
  grid-row: 1 / span 2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 0 10px rgba(248,236,179,.2));
}

.truth-list p:nth-child(1)::before {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/uO4ZB3FzuEaBe3nzsL9UTQ.png");
}

.truth-list p:nth-child(2)::before {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/oqo0bqdSsU6Lhehnnl__zw.png");
}

.truth-list p:nth-child(3)::before {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/kSAMTp0SBU-g1r08cmxeYQ.png");
}

.truth-list p:nth-child(4)::before {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/kHNDeHGdFUaGu2vfqSYmlw.png");
}

.truth-list p:nth-child(5)::before {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/GoTiCFt9JUifExs-OvQtNg.png");
}

.truth-list strong {
  color: var(--gold);
  font-family: "Forum", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  grid-column: 2;
}

.truth-list span {
  font-size: 14px;
  grid-column: 2;
}

.glass-note {
  width: min(896px, 100%);
  padding: 28px 32px 40px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 5px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(5px);
  font-size: 16px;
  line-height: 1.2;
}

.glass-note + .gold-button {
  position: relative;
  z-index: 2;
  margin-top: -52px;
}

.founder {
  overflow: hidden;
}

.founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,253,.14), rgba(255,255,253,.06)),
    url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/dPeCXgaeyUOfF6uGDbNZ_w.png") center top / 1308px 777px no-repeat;
  pointer-events: none;
  z-index: 0;
}

.founder .section-inner {
  position: relative;
  z-index: 1;
}

.founder h2 {
  text-align: center;
  margin-bottom: 42px;
}

.founder-card {
  width: min(896px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 388px;
  gap: 40px;
  align-items: center;
  padding: 32px 48px;
  border: 1px solid var(--paper-line);
  border-radius: 20px;
  background: #fff;
}

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

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

.founder-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(229,223,35,.2);
  font-size: 16px;
  line-height: 1.2;
}

.founder-portrait {
  width: 100%;
  min-height: 477px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.mission {
  padding: 72px 0;
  overflow: hidden;
  background: #0c0a1b;
}

.mission::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.14)),
    url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/pDOKD5GHhkig0VsPvofFmQ.png") center center / 1200px 362px no-repeat;
}

.mission .section-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.product {
  padding: 72px 0;
  overflow: hidden;
  background: #fffffd;
}

.product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,253,.88) 0%, rgba(255,255,253,.38) 48%, rgba(255,255,253,.08) 100%),
    url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/HF3eo4G1pkGmnVdLrCzcZA.png") center center / 1308px 662px no-repeat;
  pointer-events: none;
  z-index: 0;
}

.product .section-inner {
  position: relative;
  z-index: 1;
}

.program-visual {
  width: 100%;
  min-height: 518px;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.principles {
  background: var(--night);
  overflow: hidden;
  min-height: 781px;
}

.principles::before {
  background:
    linear-gradient(180deg, rgba(5,8,13,.04), rgba(5,8,13,.16)),
    url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/FcjR6VQXlkq5Bb1rGUSa7A.png") center top / auto no-repeat;
}

.principles .section-inner {
  position: relative;
  z-index: 1;
}

.principles-pyramid {
  width: 294px;
  height: 299px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.principle-cards {
  width: min(896px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 45px;
}

.principle-cards article {
  position: relative;
  min-height: 154px;
  padding: 50px 26px 24px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 5px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(5px);
}

.principle-cards span {
  position: absolute;
  left: 50%;
  top: -40px;
  width: 82px;
  height: 74px;
  transform: translateX(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 0;
  box-shadow: none;
}

.principle-cards article:nth-child(1) span {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/OGlTLXitlECV6Isx5PvXjg.png");
}

.principle-cards article:nth-child(2) span {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/iXwwgGp9RUG2-nuBM7WcXA.png");
}

.principle-cards article:nth-child(3) span {
  background-image: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/cswCArVvHkykPWaokiuDIQ.png");
}

.principle-cards h3 {
  margin-bottom: 8px;
  color: var(--gold);
}

.principle-cards p {
  font-size: 16px;
}

.results-grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 392px)) minmax(240px, 1fr);
  gap: 16px;
  text-align: left;
}

.results-grid article {
  min-height: 188px;
  padding: 28px;
  border: 1px solid var(--paper-line);
  border-radius: 20px;
  background: #fff;
}

.results-grid article:nth-child(5) {
  grid-column: 1 / span 2;
  min-height: 144px;
}

.results-grid::after {
  content: "";
  grid-column: 3;
  grid-row: 1 / span 3;
  min-height: 587px;
  margin-left: -123px;
  margin-top: -28px;
  background: url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/9_jNu-MR9EyO-OxABizgaA.png") center bottom / contain no-repeat;
  pointer-events: none;
  z-index: 3;
}

.results-grid h3 {
  margin-bottom: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.results-grid p {
  font-size: 16px;
  line-height: 1.4;
}

.freedom {
  justify-self: start;
  font-family: "Forum", Georgia, serif;
  font-size: 20px;
  line-height: 1.1;
  text-transform: uppercase;
}

.freedom strong {
  color: #d9bd68;
  font-weight: 400;
}

.final-cta {
  padding: 72px 0;
  overflow: hidden;
  background: #0c0a1b;
}

.final-cta::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.14)),
    url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/QL4Dnm1tZEiavZBpt-sfEA.png") center center / 1200px 312px no-repeat;
}

.final-cta .section-inner {
  position: relative;
  z-index: 1;
}

.site-footer {
  width: 100%;
  padding: 40px max(24px, calc((100vw - 1200px) / 2 + 89px)) 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: #fff;
  background: #000204;
}

.site-footer__brand {
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,.9);
}

.brand--footer {
  margin-bottom: 28px;
}

.site-footer__brand p,
.site-footer__links a {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

.site-footer__links {
  display: grid;
  gap: 2px;
  max-width: 525px;
}

.site-footer__links a {
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--gold);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(248,236,179,.85);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .site-header {
    width: min(calc(100% - 20px), var(--content));
    padding-inline: 20px;
  }

  .site-nav {
    gap: 18px;
  }

  .section-inner {
    width: min(calc(100% - 40px), var(--content));
  }

  .hero__inner,
  .split,
  .school-grid,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .school {
    min-height: auto;
  }

  .school::after {
    background-position: center top;
    background-size: auto 100%;
  }

  .hero__visual {
    min-height: 420px;
  }

  .founder-card {
    padding: 28px;
  }

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

  .results-grid::after {
    display: none;
  }
}

@media (max-width: 780px) {
  .site-header {
    top: 8px;
    width: min(calc(100% - 28px), var(--content));
    padding: 16px 19px;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 28px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-left: auto;
    padding: 0;
    color: inherit;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(255,255,255,.02);
  }

  .nav-toggle span {
    width: 18px;
    height: 1.5px;
    border-radius: 99px;
    background: currentColor;
  }

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

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

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

  .site-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }
  .social-links {
    display: none;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    padding-top: 4px;
  }

  .site-nav.is-open + .social-links,
  .site-header:has(.site-nav.is-open) .social-links {
    display: flex;
  }
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 34px;
  }

  p {
    font-size: 16px;
    line-height: 1.35;
  }

  .hero {
    padding-top: 116px;
  }

  .hero::before {
    width: 100%;
    max-width: none;
    opacity: .72;
    background:
      linear-gradient(90deg, rgba(10,10,28,.84) 0%, rgba(10,10,28,.6) 62%, rgba(10,10,28,.2) 100%),
      url("https://con.xl.ru/jLdvFS9X2UqmCxo_fOj78Q/images/ynO7bn7-sUixS4WtFgOBLA.png") 68% top / auto 100% no-repeat;
  }

  .hero__inner {
    gap: 34px;
  }

  .hero-points p {
    grid-template-columns: 36px 1fr;
  }

  .pause-grid,
  .truth-cards,
  .path-steps,
  .responsibility,
  .principle-cards,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .pause {
    min-height: auto;
    padding: 78px 0 64px;
  }

  .pause .section-inner {
    min-height: auto;
    gap: 18px;
  }

  .pause::before {
    opacity: .76;
    background-position: center top;
    background-size: auto 100%;
  }

  .pause::after {
    background:
      linear-gradient(180deg, rgba(5,8,13,.74) 0%, rgba(5,8,13,.38) 42%, rgba(5,8,13,.86) 100%),
      linear-gradient(90deg, rgba(5,8,13,.7), transparent 34%, transparent 66%, rgba(5,8,13,.7));
  }

  .pause h2 {
    max-width: 340px;
  }

  .pause > .section-inner > p:first-of-type,
  .pause-copy p,
  .pause-result {
    width: min(100%, 390px);
    padding: 15px 16px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(5,8,13,.54);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    backdrop-filter: blur(8px);
    font-size: 15px;
    line-height: 1.36;
  }

  .pause > .section-inner > p:first-of-type {
    margin: 0;
  }

  .pause-grid {
    gap: 18px;
  }

  .word-cloud {
    width: min(100%, 390px);
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 4px 0;
  }

  .word-cloud span,
  .word-cloud span:nth-child(n) {
    position: static;
    padding: 7px 11px;
    border: 1px solid rgba(248,236,179,.22);
    border-radius: 999px;
    background: rgba(248,236,179,.08);
    color: rgba(248,236,179,.86);
    font-size: 14px;
    line-height: 1;
    opacity: 1;
  }

  .pause-copy {
    justify-self: center;
    text-align: center;
    gap: 10px;
  }

  .pause-result {
    margin: 0;
  }

  .pause-result br {
    display: none;
  }

  .cards-section {
    min-height: auto;
  }

  .cards-section::before {
    opacity: .7;
    background-position: center top;
    background-size: auto 100%;
  }

  .path-steps p {
    min-height: auto;
    grid-template-columns: 88px 1fr;
  }

  .path-steps p::before {
    width: 88px;
    height: 88px;
  }

  .responsibility {
    gap: 18px;
  }

  .responsibility::before {
    width: 130px;
    height: 96px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .16;
  }

  .responsibility::after {
    width: 130px;
    height: 96px;
    opacity: .28;
  }

  .responsibility p:first-child,
  .responsibility p:last-child {
    grid-column: 1;
    padding-left: 0;
    position: relative;
    z-index: 1;
  }

  .responsibility p:first-child {
    grid-row: 1;
  }

  .responsibility p:last-child {
    grid-row: 3;
  }

  .truth-cards article,
  .truth-cards .media-placeholder {
    min-height: 380px;
  }

  .symptom-orbit {
    min-height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    background: none;
  }

  .symptoms {
    min-height: auto;
    background-position: center top;
    background-size: auto 100%;
  }

  .symptoms::before {
    opacity: .5;
    background-position: center;
    background-size: 100% 100%;
  }

  .symptom-orbit span {
    position: static;
    width: auto;
    transform: none;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
  }

  .principle-cards {
    margin-top: 60px;
    gap: 54px;
  }

  .results-grid article:nth-child(5) {
    grid-column: auto;
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 20px;
  }

  .site-footer__links {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 30px;
  }

  .gold-button {
    width: max-content;
    justify-content: flex-start;
    font-size: 22px;
    white-space: normal;
  }

  .glass-note + .gold-button {
    margin-top: 0;
  }

  .media-placeholder--cosmos,
  .media-placeholder--person,
  .media-placeholder--program,
  .media-placeholder--portrait {
    min-height: 320px;
  }

  .path-steps,
  .glass-note,
  .founder-card,
  .results-grid article {
    padding: 22px;
  }

  .founder-card,
  .founder-card__copy,
  .founder-card li,
  .founder-card .gold-button {
    min-width: 0;
  }

  .founder-card li {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .founder-card .gold-button {
    width: 100%;
    gap: 12px;
    padding-right: 12px;
    font-size: 20px;
  }

  .founder-card .gold-button span:first-child {
    width: 44px;
  }

  .pause {
    padding: 70px 0 56px;
  }

  .pause > .section-inner > p:first-of-type,
  .pause-copy p,
  .pause-result {
    padding: 14px;
    font-size: 14px;
  }

  .word-cloud span:nth-child(n) {
    position: static;
    display: inline-block;
    margin: 0;
    font-size: 13px;
  }
}



