/* Базовые переменные стиля лендинга */
:root {
  --color-bg: #121212;
  --color-bg-header: #121212;
  --color-text: #ffffff;
  --color-text-muted: #c8c8c8;
  --color-gold: #e5b04e;
  --color-gold-hover: #f0c066;
  --color-border: #3a3a3a;
  --color-card: #1a1a1a;
  --font-main: "Inter", system-ui, -apple-system, sans-serif;
  --header-height: 80px;
  --container-width: 1200px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Общая шапка */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: var(--color-bg-header);
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
}

.header__logo span {
  color: var(--color-gold);
}

.header__nav {
  margin-left: auto;
}

.header__nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__nav a {
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.header__nav a:hover {
  color: var(--color-gold);
}

/* Кнопка в шапке не должна перенимать стиль пунктов меню */
.header__nav .header__cta {
  margin-left: 8px;
  font-weight: 600;
}

.header__nav .header__cta:hover {
  color: var(--color-bg);
}

/* Кнопка «Принять участие» */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background-color: var(--color-gold);
  color: var(--color-bg);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: var(--color-gold-hover);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-shrink: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Первый экран */
.hero {
  padding: 48px 0 72px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.hero__content {
  min-width: 0;
}

.hero__date {
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 500;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold);
  flex-shrink: 0;
}

.hero__title {
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero__title span {
  color: var(--color-gold);
}

.hero__text {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.hero__accent {
  margin: 8px 0 32px;
  color: var(--color-gold);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.btn--hero {
  padding: 16px 28px;
  font-size: 16px;
}

.btn__arrow {
  font-size: 18px;
  line-height: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-outline__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Картинка ноутбука справа */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229, 176, 78, 0.18), transparent 70%);
  pointer-events: none;
}

.hero__visual img {
  position: relative;
  width: 100%;
  max-width: 640px;
  object-fit: contain;
}

/* Второй экран */
.reality {
  padding: 96px 0;
}

.reality__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: 56px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.reality__content .hero__badge {
  margin-bottom: 20px;
}

.reality__title {
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.reality__title span {
  color: var(--color-gold);
}

.reality__text {
  margin-bottom: 20px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.reality__mark {
  color: var(--color-gold);
  font-weight: 600;
}

.reality__quote {
  margin: 8px 0 24px;
  padding-left: 18px;
  border-left: 3px solid var(--color-gold);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.reality__quote span {
  color: var(--color-gold);
}

.reality__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.reality__note-icon,
.reality__barrier-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-bg);
  flex-shrink: 0;
}

.reality__note-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.reality__note-accent {
  color: var(--color-gold);
  font-weight: 600;
}

.reality__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.skills-grid__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding: 32px 24px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.skills-grid__item:nth-child(3n) {
  border-right: none;
}

.skills-grid__item:nth-child(n + 4) {
  border-bottom: none;
}

.skills-grid__icon {
  display: flex;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.skills-grid__title {
  font-size: 17px;
  font-weight: 700;
}

.skills-grid__text {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.reality__barrier {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.reality__barrier-text {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.reality__barrier-text span {
  color: var(--color-gold);
}

/* Третий экран */
.happen {
  padding: 96px 0;
}

.happen__wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.happen__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  align-items: start;
  gap: 40px;
  margin-bottom: 24px;
}

.happen__content .hero__badge {
  margin-bottom: 20px;
}

.happen__title {
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.happen__title span {
  color: var(--color-gold);
}

.happen__text {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.happen__result {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 22px;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.happen__result-icon,
.happen__banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-bg);
  flex-shrink: 0;
}

.happen__result-text {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.6;
}

.happen__result-text span {
  color: var(--color-gold);
  font-weight: 600;
}

.happen__cards-label {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
}

.happen__cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.happen__card {
  grid-column: span 2;
  min-width: 0;
  padding: 24px;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.happen__card:nth-child(4),
.happen__card:nth-child(5) {
  grid-column: span 3;
}

.happen__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.happen__card-icon {
  display: flex;
  color: var(--color-gold);
}

.happen__card-num {
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.happen__card-text {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.5;
}

.happen__banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 28px 32px;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.happen__banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background-image: radial-gradient(circle, rgba(229, 176, 78, 0.28) 1.2px, transparent 1.6px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to left, #000, transparent);
  pointer-events: none;
  z-index: 1;
}

.happen__banner-text {
  position: relative;
  z-index: 1;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.happen__banner-text span {
  color: var(--color-gold);
}

.happen__banner-icon {
  position: relative;
  z-index: 1;
}

/* Четвёртый экран */
.audience {
  padding: 96px 0;
}

.audience__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  align-items: start;
  gap: 48px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.audience__content .hero__badge {
  margin-bottom: 20px;
}

.audience__title {
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.audience__title span {
  color: var(--color-gold);
}

.audience__text {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.audience__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 22px;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.audience__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-bg);
  flex-shrink: 0;
}

.audience__note-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.audience__note-text span {
  color: var(--color-gold);
  font-weight: 600;
}

.audience__cards-label {
  margin-bottom: 16px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
}

.audience__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audience__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 24px;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.audience__card-icon {
  display: flex;
  align-self: center;
  color: var(--color-gold);
}

.audience__card-line {
  align-self: center;
  width: 36px;
  height: 1px;
  margin: 14px 0 16px;
  background-color: var(--color-gold);
}

.audience__card-text {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.5;
}

/* Пятый экран */
.process {
  padding: 96px 0;
}

.process__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: stretch;
  gap: 48px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.process__content .hero__badge {
  margin-bottom: 20px;
}

.process__title {
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.process__title span {
  color: var(--color-gold);
}

.process__text {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.process__steps {
  position: relative;
  margin: 32px 0 28px;
  padding: 0;
  list-style: none;
}

.process__steps::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 28px;
  left: 15px;
  width: 1px;
  background: linear-gradient(to bottom, var(--color-gold), rgba(229, 176, 78, 0.25));
}

.process__steps::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 11px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid var(--color-gold);
}

.process__step {
  display: grid;
  grid-template-columns: 32px 28px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.process__step + .process__step {
  margin-top: 22px;
}

.process__num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  background-color: var(--color-bg);
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
}

.process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  color: var(--color-gold);
}

.process__step-title {
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 700;
}

.process__step-text {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.process__closing {
  padding-left: 18px;
  border-left: 3px solid var(--color-gold);
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.process__closing span {
  color: var(--color-gold);
}

.process__visual {
  position: relative;
  min-height: 0;
}

.process__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229, 176, 78, 0.18), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.process__frame {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 70%;
  transform: translateY(-50%);
}

.process__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Шестой экран */
.approach {
  padding: 96px 0;
}

.approach__wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.approach__top {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 40px;
  margin-bottom: 24px;
}

.approach__content .hero__badge {
  margin-bottom: 20px;
}

.approach__title {
  margin-bottom: 24px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.approach__title span {
  color: var(--color-gold);
}

.approach__text {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.approach__text span {
  color: var(--color-gold);
  font-weight: 600;
}

.approach__visual {
  position: relative;
  min-height: 280px;
}

.approach__visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229, 176, 78, 0.2), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.approach__visual img {
  position: relative;
  width: 100%;
  object-fit: contain;
}

.approach__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
}

.approach__flow,
.approach__note {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.approach__flow {
  padding: 28px 28px 24px;
}

.approach__flow-title {
  margin-bottom: 24px;
  color: var(--color-gold);
  font-size: 18px;
  font-weight: 700;
}

.approach__flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 8px;
}

.approach__flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.approach__flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-gold);
}

.approach__flow-text {
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.45;
}

.approach__flow-arrow {
  display: flex;
  align-items: center;
  height: 56px;
  color: var(--color-gold);
  font-size: 20px;
}

.approach__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px;
}

.approach__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-gold);
  color: var(--color-bg);
  flex-shrink: 0;
}

.approach__note-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

.approach__note-accent {
  color: var(--color-gold);
  font-weight: 600;
}

/* Седьмой экран */
.cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  align-items: center;
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.cta__content .hero__badge {
  margin-bottom: 20px;
}

.cta__title {
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cta__title span {
  color: var(--color-gold);
}

.cta__text {
  margin-bottom: 28px;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.65;
}

.cta__price {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 18px 10px 18px;
  border-left: 3px solid var(--color-gold);
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.35) 70%, transparent);
  border-radius: 0 10px 10px 0;
}

.cta__price-label {
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: 16px;
}

.cta__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
}

.cta__price-old {
  color: #b0b0b0;
  font-size: 22px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-shadow: 0 1px 6px #000;
}

.cta__price-value {
  color: #f3c45a;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-shadow:
    0 1px 0 #000,
    0 0 6px #000,
    0 0 16px rgba(0, 0, 0, 0.95),
    0 4px 18px rgba(0, 0, 0, 0.85);
}

.cta__invite {
  margin-bottom: 28px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.5;
}

.cta__btn {
  gap: 10px;
  margin-bottom: 32px;
  box-shadow: 0 0 32px rgba(229, 176, 78, 0.4);
}

.cta__btn-icon {
  display: flex;
}

.cta__points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  padding: 0;
  list-style: none;
}

.cta__points li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-right: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 13px;
  white-space: nowrap;
}

.cta__points li:first-child {
  padding-left: 0;
}

.cta__points li:last-child {
  padding-right: 0;
  border-right: none;
}

.cta__point-icon {
  display: flex;
  color: var(--color-gold);
}

.cta__visual {
  position: relative;
  min-height: 280px;
}

.cta__visual img {
  width: 100%;
  object-fit: contain;
}

/* Восьмой экран */
.faq {
  padding: 96px 0;
}

.faq__wrap {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.faq__title {
  margin-bottom: 12px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
}

.faq__lead {
  color: var(--color-text-muted);
  font-size: 17px;
  text-align: center;
}

/* Золотая чёрточка под заголовками секций */
.hero__title::after,
.reality__title::after,
.happen__title::after,
.audience__title::after,
.process__title::after,
.approach__title::after,
.cta__title::after,
.finale__title::after,
.faq__line {
  display: block;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.hero__title::after,
.reality__title::after,
.happen__title::after,
.audience__title::after,
.process__title::after,
.approach__title::after,
.cta__title::after,
.finale__title::after {
  content: "";
  margin-top: 20px;
}

.faq__line {
  margin: 24px auto 48px;
}

.finale__title::after {
  margin-left: auto;
  margin-right: auto;
}

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

.faq__card {
  min-width: 0;
  padding: 24px;
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
}

.faq__card:last-child {
  grid-column: 1 / -1;
}

.faq__card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.faq__icon {
  display: flex;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.faq__question {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.faq__answer {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.faq__answer span {
  color: var(--color-gold);
  font-weight: 600;
}

.faq__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.faq__cta .cta__btn {
  margin-bottom: 16px;
}

.faq__cta-note {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* Завершающий экран — отдельная «островная» карточка, чтобы не сливаться с фоном */
.finale {
  position: relative;
  padding: 72px 0 80px;
}

.finale::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(880px, 94%);
  height: 82%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(229, 176, 78, 0.22), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.finale__wrap {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.finale__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 52px 44px 48px;
  /* Теплее и светлее фона страницы #121212, иначе блок «пропадает» */
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(229, 176, 78, 0.16), transparent 58%),
    #1f1a12;
  border: 1px solid rgba(229, 176, 78, 0.55);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(229, 176, 78, 0.35),
    0 0 0 1px rgba(229, 176, 78, 0.12),
    0 22px 56px rgba(0, 0, 0, 0.55),
    0 0 64px rgba(229, 176, 78, 0.22);
  text-align: center;
}

/* Золотая линия сверху карточки */
.finale__panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 18%, var(--color-gold) 82%, transparent);
  pointer-events: none;
  z-index: 3;
}

.finale__date {
  margin: 16px 0 20px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 500;
}

.finale__title {
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.finale__title span {
  color: var(--color-gold);
}

.finale__text {
  max-width: 640px;
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.65;
}

.finale__accent {
  margin-bottom: 32px;
  color: var(--color-gold);
  font-size: 17px;
  font-weight: 600;
}

.finale__note {
  margin-top: 16px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 48px 0 40px;
  border-top: 1px solid var(--color-border);
}

.footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 280px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  transform: translateX(-50%);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: 40px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer__logo {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
}

.footer__logo span {
  color: var(--color-gold);
}

.footer__author {
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.5;
}

.footer__ogrn {
  color: var(--color-text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

.footer__links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  font-size: 13px;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer__links a:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background-color: rgba(229, 176, 78, 0.08);
}

/* Согласие с cookie — левый нижний угол, один раз */
.cookie {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 120;
  width: min(360px, calc(100vw - 48px));
  padding: 20px 20px 18px;
  background:
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(229, 176, 78, 0.1), transparent 55%),
    #1c1812;
  border: 1px solid rgba(229, 176, 78, 0.4);
  border-radius: 16px;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(229, 176, 78, 0.12);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.cookie.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cookie__title {
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: 15px;
  font-weight: 600;
}

.cookie__text {
  margin-bottom: 16px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie__text a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie__text a:hover {
  color: var(--color-gold-hover);
}

.cookie__btn {
  width: 100%;
}

@media (max-width: 480px) {
  .cookie {
    left: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
    padding: 18px 16px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie {
    transform: none;
    transition: opacity 0.2s ease;
  }
}

#cena {
  scroll-margin-top: var(--header-height);
}

/* Планшет */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 44px;
  }

  .hero__text,
  .hero__accent {
    font-size: 16px;
  }

  .header__nav-inner {
    gap: 20px;
  }

  .reality__title {
    font-size: 32px;
  }

  .reality__inner {
    gap: 36px;
  }

  .happen__title {
    font-size: 32px;
  }

  .happen__inner {
    gap: 28px;
  }

  .happen__banner-text {
    font-size: 16px;
  }

  .audience__title {
    font-size: 32px;
  }

  .audience__inner {
    gap: 32px;
  }

  .process__title {
    font-size: 32px;
  }

  .approach__title {
    font-size: 32px;
  }

  .approach__top {
    gap: 28px;
  }

  .cta__title {
    font-size: 44px;
  }

  .cta__price-value {
    font-size: 36px;
  }

  .faq__title {
    font-size: 36px;
  }

  .finale__title {
    font-size: 36px;
  }
}

/* Узкий планшет и телефон: колонки друг под другом */
@media (max-width: 900px) {
  .header {
    height: auto;
    overflow: visible;
  }

  .header__inner {
    flex-wrap: wrap;
    height: auto;
    min-height: var(--header-height);
    gap: 12px;
  }

  .header__logo {
    font-size: 16px;
    gap: 8px;
    min-width: 0;
    order: 1;
    margin-right: auto;
  }

  .header__logo-icon {
    width: 32px;
    height: 32px;
  }

  .header__burger {
    display: flex;
    order: 2;
  }

  /* Меню выезжает вниз, а не появляется сразу */
  .header__nav {
    display: grid;
    grid-template-rows: 0fr;
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    background-color: var(--color-bg-header);
    border-bottom: 1px solid transparent;
    transition:
      grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.3s ease;
  }

  .header__nav.is-open {
    grid-template-rows: 1fr;
    border-bottom-color: var(--color-border);
  }

  .header__nav-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 0;
    overflow: hidden;
  }

  .header__nav a {
    padding: 14px var(--container-padding);
  }

  .header__nav a:first-child {
    padding-top: 16px;
  }

  /* На телефоне кнопка живёт в меню, а не в верхней строке */
  .header__nav .header__cta {
    margin: 8px var(--container-padding) 16px;
    padding: 12px 22px;
    width: auto;
    justify-content: center;
  }

  .hero {
    padding: 32px 0 56px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__visual {
    min-height: 0;
    order: 2;
  }

  .hero__visual img {
    max-width: 520px;
    margin: 0 auto;
  }

  .reality {
    padding: 64px 0;
  }

  .reality__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reality__title {
    font-size: 30px;
  }

  .happen {
    padding: 64px 0;
  }

  .happen__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .happen__title {
    font-size: 30px;
  }

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

  .happen__card,
  .happen__card:nth-child(4),
  .happen__card:nth-child(5) {
    grid-column: auto;
  }

  .happen__card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .audience {
    padding: 64px 0;
  }

  .audience__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .audience__title {
    font-size: 30px;
  }

  .process {
    padding: 64px 0;
  }

  .process__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process__title {
    font-size: 30px;
  }

  .process__visual {
    height: auto;
    order: 2;
  }

  .process__frame {
    position: relative;
    top: auto;
    height: auto;
    transform: none;
  }

  .process__frame img {
    height: auto;
    width: 100%;
  }

  .approach {
    padding: 64px 0;
  }

  .approach__top,
  .approach__bottom {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .approach__title {
    font-size: 30px;
  }

  .approach__visual {
    min-height: 0;
    order: 2;
  }

  .approach__flow-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }

  .approach__flow-arrow {
    display: none;
  }

  .cta {
    padding: 64px 0;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta__title {
    font-size: 40px;
  }

  .cta__visual {
    min-height: 0;
    order: 2;
  }

  .faq {
    padding: 64px 0;
  }

  .faq__title {
    font-size: 32px;
  }

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

  .finale {
    padding: 64px 0 48px;
  }

  .finale__title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 64px;
    --container-padding: 16px;
  }

  .header__logo {
    font-size: 15px;
    gap: 8px;
  }

  .header__logo-icon {
    width: 28px;
    height: 28px;
  }

  .header__cta {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 24px 0 48px;
  }

  .hero__date {
    font-size: 13px;
  }

  .hero__title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero__text,
  .hero__accent {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn--hero,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .reality {
    padding: 48px 0;
  }

  .reality__title {
    font-size: 26px;
  }

  .reality__text,
  .reality__quote,
  .reality__note-text {
    font-size: 16px;
  }

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

  .skills-grid__item {
    padding: 22px 16px;
  }

  .skills-grid__item:nth-child(3n) {
    border-right: 1px solid var(--color-border);
  }

  .skills-grid__item:nth-child(even) {
    border-right: none;
  }

  .skills-grid__item:nth-child(n + 4) {
    border-bottom: 1px solid var(--color-border);
  }

  .skills-grid__item:nth-child(n + 5) {
    border-bottom: none;
  }

  .happen {
    padding: 48px 0;
  }

  .happen__title {
    font-size: 26px;
  }

  .happen__text,
  .happen__result-text,
  .happen__card-text,
  .happen__banner-text {
    font-size: 16px;
  }

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

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

  .happen__banner {
    align-items: flex-start;
    padding: 20px 16px;
  }

  .audience {
    padding: 48px 0;
  }

  .audience__title {
    font-size: 26px;
  }

  .audience__text,
  .audience__note-text,
  .audience__card-text {
    font-size: 16px;
  }

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

  .audience__card {
    padding: 24px 20px;
  }

  .process {
    padding: 48px 0;
  }

  .process__title {
    font-size: 26px;
  }

  .process__text,
  .process__closing,
  .process__step-text {
    font-size: 16px;
  }

  .process__step-title {
    font-size: 16px;
  }

  .approach {
    padding: 48px 0;
  }

  .approach__title {
    font-size: 26px;
  }

  .approach__text,
  .approach__flow-text,
  .approach__note-text {
    font-size: 16px;
  }

  .approach__flow,
  .approach__note {
    padding: 20px 16px;
  }

  .approach__flow-steps {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 48px 0;
  }

  .cta__title {
    font-size: 32px;
  }

  .cta__text,
  .cta__invite {
    font-size: 16px;
  }

  .cta__price-value {
    font-size: 32px;
  }

  .cta__btn {
    width: 100%;
  }

  .cta__points {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cta__points li {
    padding: 0;
    border-right: none;
    white-space: normal;
  }

  .faq {
    padding: 48px 0;
  }

  .faq__title {
    font-size: 26px;
  }

  .faq__lead,
  .faq__answer {
    font-size: 16px;
  }

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

  .faq__card:last-child {
    grid-column: auto;
  }

  .faq__cta .cta__btn {
    width: 100%;
  }

  .finale {
    padding: 48px 0 32px;
  }

  .finale__title {
    font-size: 26px;
  }

  .finale__text,
  .finale__accent {
    font-size: 16px;
  }

  .finale .cta__btn {
    width: 100%;
  }

  .finale__panel {
    padding: 32px 20px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Оживление карточек при наведении */
.skills-grid__item,
.reality__barrier,
.reality__note,
.happen__card,
.happen__result,
.happen__banner,
.audience__card,
.audience__note,
.approach__flow,
.approach__note,
.faq__card,
.finale__panel {
  --mx: 50%;
  --my: 50%;
  position: relative;
}

.skills-grid__item::before,
.reality__barrier::before,
.reality__note::before,
.happen__card::before,
.happen__result::before,
.happen__banner::before,
.audience__card::before,
.audience__note::before,
.approach__flow::before,
.approach__note::before,
.faq__card::before,
.finale__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(229, 176, 78, 0.16),
    transparent 45%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.skills-grid__item > *:not(.card-trace),
.reality__barrier > *:not(.card-trace),
.reality__note > *:not(.card-trace),
.happen__card > *:not(.card-trace),
.happen__result > *:not(.card-trace),
.happen__banner > *:not(.card-trace),
.audience__card > *:not(.card-trace),
.audience__note > *:not(.card-trace),
.approach__flow > *:not(.card-trace),
.approach__note > *:not(.card-trace),
.faq__card > *:not(.card-trace),
.finale__panel > *:not(.card-trace) {
  position: relative;
  z-index: 2;
}

.card-trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-trace__layer {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-trace__layer--tail {
  stroke-width: 1;
  opacity: 0.75;
}

.card-trace__layer--thin {
  stroke-width: 1.6;
  opacity: 0.9;
}

.card-trace__layer--mid {
  stroke-width: 2.5;
}

.card-trace__layer--belly {
  stroke-width: 3.6;
  filter: drop-shadow(0 0 4px rgba(229, 176, 78, 0.7));
}

.card-trace__layer--glow {
  stroke-width: 5;
  opacity: 0.35;
  filter: blur(1.2px);
}

.js-card.is-traced .card-trace {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .skills-grid__item,
  .reality__barrier,
  .reality__note,
  .happen__card,
  .happen__result,
  .happen__banner,
  .audience__card,
  .audience__note,
  .approach__flow,
  .approach__note,
  .faq__card,
  .finale__panel {
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease,
      background-color 0.35s ease;
  }

  .skills-grid__item:hover,
  .reality__barrier:hover,
  .reality__note:hover,
  .happen__card:hover,
  .happen__result:hover,
  .happen__banner:hover,
  .audience__card:hover,
  .audience__note:hover,
  .approach__flow:hover,
  .approach__note:hover,
  .faq__card:hover,
  .finale__panel:hover {
    z-index: 3;
    background-color: #201c14;
    border-color: rgba(229, 176, 78, 0.55);
    box-shadow:
      0 14px 36px rgba(0, 0, 0, 0.38),
      0 0 28px rgba(229, 176, 78, 0.22);
    transform: translateY(-4px);
  }

  .skills-grid__item:hover {
    background-color: #241f16;
  }

  /* Завершающий блок: при наведении не теряем золотое свечение */
  .finale__panel:hover {
    background-color: #241f16;
    border-color: rgba(229, 176, 78, 0.7);
    box-shadow:
      inset 0 1px 0 rgba(229, 176, 78, 0.4),
      0 0 0 1px rgba(229, 176, 78, 0.16),
      0 22px 52px rgba(0, 0, 0, 0.5),
      0 0 72px rgba(229, 176, 78, 0.28);
  }

  .skills-grid__item:hover::before,
  .reality__barrier:hover::before,
  .reality__note:hover::before,
  .happen__card:hover::before,
  .happen__result:hover::before,
  .happen__banner:hover::before,
  .audience__card:hover::before,
  .audience__note:hover::before,
  .approach__flow:hover::before,
  .approach__note:hover::before,
  .faq__card:hover::before,
  .finale__panel:hover::before {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-card.is-traced .card-trace {
    opacity: 1;
  }

  .skills-grid__item,
  .reality__barrier,
  .reality__note,
  .happen__card,
  .happen__result,
  .happen__banner,
  .audience__card,
  .audience__note,
  .approach__flow,
  .approach__note,
  .faq__card,
  .finale__panel {
    transition: none;
  }
}
