/* ============================================================
   IKIGAI · «Полное погружение в AI» (23 дня)
   Premium dark-luxury · графит + фиолет + lime · Manrope
   ============================================================ */

:root {
  /* Палитра — dark luxury */
  --bg: #0A0816;
  --bg-alt: #0F0D1F;
  --bg-dark: #07050F;
  --bg-card: #15122A;
  --bg-card-2: #1A1733;

  --text: #F5F4FA;
  --text-muted: #A6A3BC;
  --text-light: #74708C;
  --text-on-dark: #E5E7EB;

  --accent: #8B5CF6;
  --accent-2: #7C3AED;
  --accent-hover: #A78BFA;
  --accent-soft: rgba(139, 92, 246, 0.14);
  --accent-glow: rgba(139, 92, 246, 0.30);
  --lime: #A3E635;
  --lime-2: #84CC16;

  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-regular: 400; --fw-medium: 500; --fw-semibold: 600; --fw-bold: 700; --fw-extrabold: 800;

  --section-py: 104px;
  --section-py-mobile: 60px;
  --container: 1200px;
  --gap: 24px;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-xl: 28px;

  --shadow-md: 0 10px 40px rgba(0,0,0,0.45);
  --shadow-lg: 0 24px 80px -16px rgba(0,0,0,0.6);
  --shadow-accent: 0 10px 40px rgba(124, 58, 237, 0.35);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.3s;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-hover); text-decoration: none; transition: color var(--duration) var(--ease); }

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

.section { padding: var(--section-py) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); }

/* --- Typography --- */
.section-tag {
  display: inline-block;
  font-size: 13px; font-weight: var(--fw-bold);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}

h1 { font-size: 56px; font-weight: var(--fw-extrabold); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: 42px; font-weight: var(--fw-extrabold); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 18px; }
h3 { font-size: 22px; font-weight: var(--fw-bold); line-height: 1.3; margin-bottom: 8px; }

.section-subtitle { font-size: 19px; color: var(--text-muted); line-height: 1.55; max-width: 700px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 0 auto; }

.highlight {
  background: linear-gradient(120deg, var(--accent-hover) 0%, var(--lime) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 17px; font-weight: var(--fw-bold);
  padding: 16px 34px; border-radius: 12px; border: none; cursor: pointer;
  transition: all var(--duration) var(--ease); gap: 8px; white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff; box-shadow: var(--shadow-accent);
}
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 50px rgba(124,58,237,0.5); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn--outline:hover { color: #fff; border-color: var(--accent-hover); background: var(--accent-soft); }
.btn--white { background: #fff; color: #1A1730; }
.btn--white:hover { color: #1A1730; transform: translateY(-2px); box-shadow: 0 14px 50px rgba(255,255,255,0.18); }
.btn--lg { font-size: 19px; padding: 19px 44px; border-radius: 14px; }
.btn--block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all var(--duration) var(--ease);
}
.header--scrolled {
  background: rgba(10, 8, 22, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); padding: 12px 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo { height: 38px; width: auto; }
.header__nav { display: flex; gap: 30px; }
.header__nav-link { font-size: 15px; font-weight: var(--fw-semibold); color: var(--text-muted); transition: color 0.2s; }
.header__nav-link:hover { color: var(--text); }
.header__cta { font-size: 15px; padding: 11px 24px; border-radius: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 150px 0 var(--section-py); position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(620px circle at 78% 12%, rgba(139,92,246,0.28), transparent 60%),
    radial-gradient(540px circle at 12% 80%, rgba(132,204,22,0.12), transparent 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(139,92,246,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero__badge {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 3px;
  font-size: 14px; font-weight: var(--fw-semibold); color: var(--text-muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 12px 22px; border-radius: 16px; margin-bottom: 26px; line-height: 1.3;
}
.hero__badge-price { font-size: 17px; font-weight: var(--fw-extrabold); color: var(--lime); }

.hero__headline { max-width: 620px; margin-bottom: 22px; }
.hero__line { display: block; }

.hero__sub { font-size: 21px; color: var(--text-muted); max-width: 560px; line-height: 1.5; margin-bottom: 36px; }
.hero__sub strong { color: var(--text); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 44px; }

/* Countdown */
.countdown { margin-bottom: 36px; }
.countdown__label { font-size: 13px; font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-light); margin-bottom: 12px; }
.countdown__boxes { display: flex; gap: 12px; }
.countdown__box {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px; min-width: 74px;
}
.countdown__num { font-size: 30px; font-weight: var(--fw-extrabold); color: var(--text); line-height: 1; font-variant-numeric: tabular-nums; }
.countdown__unit { font-size: 11px; font-weight: var(--fw-medium); color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 6px; }

.hero__meta { display: flex; flex-wrap: wrap; gap: 28px; }
.hero__meta-item { display: flex; flex-direction: column; gap: 3px; }
.hero__meta-label { font-size: 12px; font-weight: var(--fw-medium); color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.hero__meta-value { font-size: 16px; font-weight: var(--fw-bold); color: var(--text); }
.hero__meta-item--accent .hero__meta-value { color: var(--lime); }

.hero__visual { display: flex; align-items: center; justify-content: center; }
.neural-net { width: 100%; aspect-ratio: 1; max-width: 520px; position: relative; }
.neural-net::before {
  content: ''; position: absolute; inset: -10%; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.18), transparent 65%);
  filter: blur(20px);
}
.neural-net canvas { width: 100%; height: 100%; position: relative; }

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials { padding: 30px 0; background: var(--bg-dark); border-block: 1px solid var(--border); }
.credentials__inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.credentials__item { display: flex; align-items: center; gap: 14px; }
.credentials__icon { width: 58px; height: 64px; flex-shrink: 0; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 12px; padding: 6px; }
.credentials__icon img { width: 100%; height: 100%; object-fit: contain; }
.credentials__text { display: flex; flex-direction: column; }
.credentials__text strong { font-size: 14px; font-weight: var(--fw-bold); color: var(--text); }
.credentials__text span { font-size: 12px; color: var(--text-muted); }
.credentials__divider { width: 1px; height: 40px; background: var(--border); }
.credentials__badge-ah {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.3);
  border-radius: 100px; font-size: 14px; font-weight: var(--fw-bold); color: var(--lime);
}

/* ============================================================
   MANIFESTO / PROBLEM
   ============================================================ */
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.problem__card { padding: 40px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border); }
.problem__card--positive { border-left: 4px solid var(--lime); }
.problem__card--negative { border-left: 4px solid #EF4444; }
.problem__card-icon { margin-bottom: 16px; }
.problem__card h3 { font-size: 20px; margin-bottom: 16px; }
.problem__card ul { list-style: none; }
.problem__card li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 16px; color: var(--text-muted); line-height: 1.5; }
.problem__card--positive li::before { content: '\2713'; position: absolute; left: 0; color: var(--lime); font-weight: var(--fw-bold); }
.problem__card--negative li::before { content: '\00D7'; position: absolute; left: 0; color: #EF4444; font-weight: var(--fw-bold); font-size: 18px; }
.problem__bottom { text-align: center; margin-top: 40px; font-size: 22px; font-weight: var(--fw-semibold); color: var(--text); }

/* ============================================================
   INITIATION (WOW)
   ============================================================ */
.initiation { position: relative; background: #07050F; overflow: hidden; padding: 120px 0; isolation: isolate; }
.initiation__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.initiation__orb { position: absolute; width: 560px; height: 560px; border-radius: 50%; filter: blur(120px); opacity: 0.5; animation: orbFloat 14s ease-in-out infinite alternate; }
.initiation__orb--left { top: 6%; left: -200px; background: radial-gradient(circle, #7C3AED 0%, transparent 70%); }
.initiation__orb--right { bottom: 6%; right: -200px; background: radial-gradient(circle, #84CC16 0%, transparent 70%); animation-delay: -5s; }
.initiation__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(124,58,237,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(124,58,237,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
@keyframes orbFloat { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,-40px) scale(1.08); } }

.initiation__head { text-align: center; max-width: 840px; margin: 0 auto 60px; }
.initiation__badge { display: inline-block; padding: 8px 20px; border-radius: 100px; background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.4); color: #C4B5FD; font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 22px; }
.initiation__title { font-size: clamp(34px, 5vw, 60px); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: #fff; margin-bottom: 20px; }
.initiation__word { background: linear-gradient(135deg, #A78BFA 0%, #C084FC 35%, #A3E635 70%, #A78BFA 100%); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: shimmer 4s ease-in-out infinite; }
@keyframes shimmer { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.initiation__lead { font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: #E5E7EB; opacity: 0.9; }
.initiation__lead b { color: #fff; font-weight: 700; }

.initiation__split { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: stretch; max-width: 1080px; margin: 0 auto 56px; }
.initiation__side { padding: 32px 28px; border-radius: 20px; background: rgba(21,18,42,0.6); border: 1px solid rgba(255,255,255,0.07); backdrop-filter: blur(10px); transition: transform 0.4s var(--ease), border-color 0.4s var(--ease); }
.initiation__side--before { opacity: 0.75; filter: grayscale(0.4); }
.initiation__side--before:hover { opacity: 0.95; filter: grayscale(0); }
.initiation__side--after { background: linear-gradient(160deg, rgba(124,58,237,0.14) 0%, rgba(132,204,22,0.08) 100%); border: 1px solid rgba(124,58,237,0.4); box-shadow: 0 20px 80px -20px rgba(124,58,237,0.45); }
.initiation__side--after:hover { transform: translateY(-4px); border-color: rgba(132,204,22,0.5); }
.initiation__side h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 22px; }
.initiation__mark { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; background: rgba(255,255,255,0.08); color: #9CA3AF; margin-bottom: 14px; }
.initiation__mark--glow { background: linear-gradient(90deg, #7C3AED, #84CC16); color: #fff; box-shadow: 0 4px 20px rgba(124,58,237,0.5); }
.initiation__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.initiation__list li { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 15px; }
.initiation__list li:last-child { border-bottom: none; padding-bottom: 0; }
.initiation__list span { font-weight: 600; color: #E5E7EB; }
.initiation__list em { font-style: normal; font-size: 13px; color: #9CA3AF; text-align: right; max-width: 50%; }
.initiation__list--glow em { color: #C4B5FD; font-weight: 500; }

.initiation__portal { position: relative; width: 120px; height: 120px; align-self: center; justify-self: center; display: flex; align-items: center; justify-content: center; }
.initiation__ring { position: absolute; border-radius: 50%; border: 1px solid rgba(124,58,237,0.5); animation: ringPulse 2.4s var(--ease) infinite; }
.initiation__ring--1 { width: 60px; height: 60px; }
.initiation__ring--2 { width: 88px; height: 88px; animation-delay: 0.6s; border-color: rgba(132,204,22,0.45); }
.initiation__ring--3 { width: 120px; height: 120px; animation-delay: 1.2s; border-color: rgba(124,58,237,0.25); }
@keyframes ringPulse { 0% { transform: scale(0.6); opacity: 0; } 40% { opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.initiation__core { position: relative; z-index: 2; width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #7C3AED 0%, #84CC16 100%); display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 0 40px rgba(124,58,237,0.8), 0 0 80px rgba(132,204,22,0.4), inset 0 0 20px rgba(255,255,255,0.2); animation: coreFloat 3s ease-in-out infinite alternate; }
@keyframes coreFloat { from { transform: scale(1); } to { transform: scale(1.08); } }

.initiation__manifest { text-align: center; max-width: 780px; margin: 0 auto 40px; font-size: clamp(20px, 2.5vw, 26px); line-height: 1.45; font-weight: 500; color: #E5E7EB; }
.initiation__manifest b { color: #fff; font-weight: 800; }
.initiation__cta { text-align: center; }
.initiation__cta .btn--white { box-shadow: 0 0 0 4px rgba(124,58,237,0.25), 0 20px 60px -15px rgba(124,58,237,0.6); }
.initiation__cta .btn--white:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 0 6px rgba(132,204,22,0.25), 0 30px 80px -15px rgba(124,58,237,0.8); }
.initiation__hint { margin-top: 16px; font-size: 13px; color: #9CA3AF; }

/* ============================================================
   PROGRAM TIMELINE
   ============================================================ */
.program__timeline { display: flex; flex-direction: column; gap: 18px; max-width: 920px; margin: 0 auto; }
.program__item {
  position: relative; display: grid; grid-template-columns: 180px 1fr; gap: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 34px; transition: all var(--duration) var(--ease);
}
.program__item:hover { border-color: var(--border-strong); transform: translateX(4px); }
.program__item--highlight {
  background: linear-gradient(150deg, rgba(124,58,237,0.16) 0%, rgba(132,204,22,0.07) 100%);
  border: 1px solid rgba(124,58,237,0.4); box-shadow: 0 16px 60px -24px rgba(124,58,237,0.5);
}
.program__item--intro { border-left: 3px solid var(--accent); }
.program__item--bonus { border-left: 3px solid var(--lime); }
.program__item--demo { border-left: 3px solid var(--accent); background: var(--bg-card-2); }
.program__aside { display: flex; flex-direction: column; gap: 6px; }
.program__label { font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
.program__word { font-size: 26px; font-weight: var(--fw-extrabold); letter-spacing: -0.01em; line-height: 1.05; background: linear-gradient(120deg, var(--accent-hover), var(--lime)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.program__chip { align-self: flex-start; margin-top: 4px; font-size: 11px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.06em; color: #07050F; background: var(--lime); padding: 3px 10px; border-radius: 6px; }
.program__title { font-size: 19px; font-weight: var(--fw-bold); color: var(--text); margin-bottom: 6px; }
.program__goal { font-size: 14px; color: var(--accent-hover); font-weight: var(--fw-semibold); margin-bottom: 16px; }
.program__bullets { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.program__bullets li { position: relative; padding-left: 22px; font-size: 15px; color: var(--text-muted); line-height: 1.45; }
.program__bullets li::before { content: '\2192'; position: absolute; left: 0; color: var(--accent-hover); }

/* ============================================================
   FORMAT
   ============================================================ */
.format__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); margin-bottom: 32px; }
.format__cell { text-align: center; padding: 36px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.format__num { display: block; font-size: 52px; font-weight: var(--fw-extrabold); line-height: 1; background: linear-gradient(120deg, var(--accent-hover), var(--lime)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.format__label { display: block; margin-top: 12px; font-size: 14px; color: var(--text-muted); }
.format__caption { text-align: center; max-width: 720px; margin: 0 auto; font-size: 18px; color: var(--text-muted); line-height: 1.55; }
.format__caption strong { color: var(--text); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar { text-align: center; }
.trust-bar__lead { font-size: 14px; font-weight: var(--fw-semibold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 28px; }
.trust-bar__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 40px; margin-bottom: 28px; }
.trust-bar__logo { font-size: 20px; font-weight: var(--fw-bold); color: var(--text-muted); opacity: 0.7; transition: opacity 0.3s; }
.trust-bar__logo:hover { opacity: 1; color: var(--text); }
.trust-bar__milestone { font-size: 17px; color: var(--text-muted); max-width: 720px; margin: 0 auto; line-height: 1.5; }
.trust-bar__milestone strong { color: var(--lime); }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience__split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.audience__col { padding: 40px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border); }
.audience__col--yes { border-top: 3px solid var(--lime); }
.audience__col--no { border-top: 3px solid #EF4444; }
.audience__col h3 { font-size: 24px; margin-bottom: 22px; }
.audience__no-mark { color: #EF4444; }
.audience__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.audience__col li { position: relative; padding-left: 28px; font-size: 16px; color: var(--text-muted); line-height: 1.5; }
.audience__col--yes li::before { content: '\2713'; position: absolute; left: 0; color: var(--lime); font-weight: var(--fw-bold); }
.audience__col--no li::before { content: '\00D7'; position: absolute; left: 0; color: #EF4444; font-weight: var(--fw-bold); font-size: 18px; }
.audience__warning { text-align: center; margin-top: 36px; font-size: 17px; color: var(--text-muted); }
.audience__warning strong { color: var(--text); }

/* ============================================================
   RESULT
   ============================================================ */
.result__list { list-style: none; counter-reset: r; max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.result__list li {
  counter-increment: r; position: relative; padding: 24px 28px 24px 78px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 19px; font-weight: var(--fw-semibold); color: var(--text);
}
.result__list li::before {
  content: counter(r); position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--accent-soft); color: var(--accent-hover);
  font-size: 16px; font-weight: var(--fw-extrabold);
}
.result__manifest { text-align: center; margin-top: 36px; font-size: 24px; font-weight: var(--fw-semibold); color: var(--text-muted); }
.result__manifest strong { color: var(--lime); }

/* ============================================================
   POWER
   ============================================================ */
.power__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.power__card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: all var(--duration) var(--ease); }
.power__card:hover { border-color: rgba(132,204,22,0.4); box-shadow: 0 0 28px rgba(132,204,22,0.12); transform: translateY(-4px); }
.power__card-icon { margin-bottom: 20px; }
.power__card h3 { font-size: 20px; margin-bottom: 10px; }
.power__card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.power__link { font-size: 14px; font-weight: var(--fw-bold); color: var(--lime); }
.power__link:hover { color: var(--lime); opacity: 0.8; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__nav { display: flex; justify-content: flex-end; gap: 12px; margin: 0 auto 16px; }
.testimonials__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border-strong); background: rgba(255,255,255,0.04); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--duration) var(--ease); }
.testimonials__arrow:hover { background: var(--accent); border-color: var(--accent); }
.testimonials__track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0 max(24px, calc((100vw - var(--container)) / 2 + 24px)) 20px; cursor: grab; scrollbar-width: none; }
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonials__track:active { cursor: grabbing; }
.testimonials__card { flex: 0 0 270px; scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; background: var(--bg-card); border: 1.5px solid rgba(132,204,22,0.4); box-shadow: 0 0 20px rgba(132,204,22,0.1); transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease); }
.testimonials__card:hover { transform: translateY(-4px); box-shadow: 0 0 32px rgba(132,204,22,0.25); }
.testimonials__video { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #000; cursor: pointer; }
.testimonials__video img { width: 100%; height: 100%; object-fit: cover; }
.testimonials__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 60px; height: 60px; background: rgba(0,0,0,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--duration) var(--ease); pointer-events: none; }
.testimonials__card:hover .testimonials__play { background: rgba(124,58,237,0.85); transform: translate(-50%,-50%) scale(1.1); }
.testimonials__play svg { width: 26px; height: 26px; fill: #fff; margin-left: 3px; }
.testimonials__video iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   SPEAKER
   ============================================================ */
.speaker__layout { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.speaker__photo { border-radius: var(--radius-xl); overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); }
.speaker__photo img { width: 100%; height: auto; object-fit: cover; }
.speaker__info h2 { margin-bottom: 6px; }
.speaker__title { font-size: 19px; color: var(--accent-hover); font-weight: var(--fw-bold); margin-bottom: 22px; }
.speaker__bio { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.speaker__bio p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.speaker__credo { font-size: 18px !important; color: var(--text) !important; }
.speaker__credo strong { color: var(--lime); }
.speaker__awards { display: flex; gap: 16px; }
.speaker__awards img { width: 96px; height: 96px; object-fit: contain; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 16px; padding: 10px; }

/* ============================================================
   TOOLSTACK (стек инструментов)
   ============================================================ */
.toolstack__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.toolstack__card {
  position: relative; padding: 24px 22px; border-radius: var(--radius);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all var(--duration) var(--ease); overflow: hidden;
}
.toolstack__card:hover { border-color: rgba(139,92,246,0.45); transform: translateY(-4px); box-shadow: 0 14px 44px -18px rgba(124,58,237,0.5); }
.toolstack__tag { display: inline-block; font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-hover); margin-bottom: 12px; }
.toolstack__card { min-width: 0; }
.toolstack__name { display: block; font-size: 21px; font-weight: var(--fw-extrabold); color: var(--text); letter-spacing: -0.01em; margin-bottom: 6px; overflow-wrap: anywhere; }
.toolstack__role { display: block; font-size: 14px; color: var(--text-muted); line-height: 1.45; }
.toolstack__note { text-align: center; margin-top: 28px; font-size: 15px; color: var(--text-light); }

/* ============================================================
   COMMUNITY / SOCIAL
   ============================================================ */
.community__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); max-width: 900px; margin: 0 auto 28px; }
.community__card {
  display: flex; flex-direction: column; gap: 14px; padding: 32px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; color: inherit; transition: all var(--duration) var(--ease);
}
.community__card--wa:hover { border-color: #25D366; box-shadow: 0 4px 28px rgba(37,211,102,0.18); transform: translateY(-4px); }
.community__card--tg:hover { border-color: #2AABEE; box-shadow: 0 4px 28px rgba(42,171,238,0.18); transform: translateY(-4px); }
.community__info h3 { font-size: 20px; margin-bottom: 4px; color: var(--text); }
.community__meta-line { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.community__meta-line strong { color: var(--text); }
.community__info p { font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.community__join { display: inline-flex; align-items: center; font-size: 15px; font-weight: var(--fw-bold); color: var(--accent-hover); margin-top: auto; }
.community__card--wa .community__join { color: #25D366; }
.community__card--tg .community__join { color: #2AABEE; }
.social__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 900px; margin: 0 auto; }
.social__link {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px;
  font-size: 14px; font-weight: var(--fw-semibold); color: var(--text-muted); transition: all var(--duration) var(--ease);
}
.social__link:hover { color: var(--text); border-color: var(--accent-hover); background: var(--accent-soft); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); max-width: 880px; margin: 0 auto; }
.pricing__card {
  position: relative; display: flex; flex-direction: column; padding: 44px 40px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  transition: all var(--duration) var(--ease); overflow: hidden;
}
.pricing__card--feature {
  background: linear-gradient(160deg, rgba(124,58,237,0.16) 0%, rgba(132,204,22,0.06) 100%);
  border: 1px solid rgba(124,58,237,0.45); box-shadow: var(--shadow-lg);
}
.pricing__card--feature::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--accent), var(--lime)); }
.pricing__label { font-size: 14px; font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 14px; }
.pricing__price { font-size: 44px; font-weight: var(--fw-extrabold); color: var(--text); letter-spacing: -0.02em; line-height: 1.05; }
.pricing__duration { font-size: 15px; color: var(--text-muted); margin: 8px 0 24px; }
.pricing__notes { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.pricing__notes li { position: relative; padding-left: 26px; font-size: 15px; color: var(--text-muted); line-height: 1.5; }
.pricing__notes li::before { content: '\2713'; position: absolute; left: 0; color: var(--lime); font-weight: var(--fw-bold); }
.pricing__cta { width: 100%; }
.pricing__note { text-align: center; margin-top: 28px; font-size: 15px; color: var(--text-light); }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--duration) var(--ease); }
.faq__item--open { border-color: rgba(139,92,246,0.5); }
.faq__question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 17px; font-weight: var(--fw-semibold); color: var(--text); text-align: left; gap: 16px; transition: color var(--duration) var(--ease); }
.faq__question:hover { color: var(--accent-hover); }
.faq__icon { flex-shrink: 0; color: var(--text-muted); transition: transform var(--duration) var(--ease); }
.faq__item--open .faq__icon { transform: rotate(45deg); color: var(--accent-hover); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__item--open .faq__answer { max-height: 460px; }
.faq__answer-inner { padding: 0 26px 22px; }
.faq__answer p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   APPLY FORM
   ============================================================ */
.apply__container { max-width: 760px; }
.apply__form { display: flex; flex-direction: column; gap: 18px; }
.apply__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field__label { font-size: 14px; font-weight: var(--fw-semibold); color: var(--text-muted); }
.field input, .field textarea {
  font-family: var(--font); font-size: 16px; color: var(--text);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px; transition: border-color 0.2s, background 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-light); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.06); }
.field textarea { resize: vertical; min-height: 84px; }
.segment { border: none; display: flex; flex-wrap: wrap; gap: 12px; }
.segment legend { margin-bottom: 10px; }
.segment__opt { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; font-size: 15px; color: var(--text-muted); transition: all 0.2s; }
.segment__opt:has(input:checked) { border-color: var(--accent); color: var(--text); background: var(--accent-soft); }
.segment__opt input { accent-color: var(--accent); }
.apply__legal { font-size: 13px; color: var(--text-light); text-align: center; line-height: 1.5; }
.apply__success { margin-top: 8px; padding: 28px; background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.35); border-radius: var(--radius); text-align: center; }
.apply__success h3 { color: var(--lime); margin-bottom: 8px; }
.apply__success p { font-size: 15px; color: var(--text-muted); }
.apply__success a { color: var(--lime); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 48px 0; background: var(--bg-dark); border-top: 1px solid var(--border); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer__brand { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer__logo { height: 40px; width: auto; }
.footer__text { font-size: 13px; color: var(--text-light); max-width: 480px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 14px; color: var(--text-muted); }
.footer__links a:hover { color: var(--text); }

/* ============================================================
   GLOW CARD (cursor-following)
   ============================================================ */
.glow-card { --mouse-x: 50%; --mouse-y: 50%; position: relative; overflow: hidden; }
.glow-card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; opacity: 0; transition: opacity 0.4s var(--ease); background: radial-gradient(300px circle at var(--mouse-x) var(--mouse-y), rgba(139,92,246,0.14), transparent 60%); pointer-events: none; z-index: 1; }
.glow-card:hover::after { opacity: 1; }

/* ============================================================
   REVEAL ANIMATIONS (app.js adds [data-reveal] / .is-revealed)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo); }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  h1 { font-size: 42px; } h2 { font-size: 34px; }
  .hero { padding: 124px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .section { padding: 76px 0; }
  .power__grid { grid-template-columns: 1fr; }
  .speaker__layout { grid-template-columns: 1fr; gap: 32px; }
  .speaker__photo { max-width: 360px; }
  .format__grid { grid-template-columns: repeat(2, 1fr); }
  .toolstack__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  h1 { font-size: 34px; line-height: 1.12; } h2 { font-size: 27px; } h3 { font-size: 20px; }
  .container { padding: 0 20px; }
  .section { padding: var(--section-py-mobile) 0; }
  .section-header { margin-bottom: 40px; }
  .hero { padding: 104px 0 var(--section-py-mobile); }
  .hero__sub { font-size: 18px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__meta { gap: 18px; }
  .countdown__boxes { gap: 8px; }
  .countdown__box { min-width: 62px; padding: 11px 12px; }
  .countdown__num { font-size: 24px; }
  .credentials__inner { flex-direction: column; gap: 18px; }
  .credentials__divider { width: 60%; height: 1px; }
  .problem__grid, .audience__split, .pricing__grid, .power__grid, .apply__row, .community__grid { grid-template-columns: 1fr; }
  .toolstack__grid { grid-template-columns: 1fr 1fr; }
  .problem__card, .audience__col { padding: 28px; }
  .program__item { grid-template-columns: 1fr; gap: 16px; padding: 26px; }
  .program__aside { flex-direction: row; align-items: center; gap: 14px; flex-wrap: wrap; }
  .format__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .format__num { font-size: 40px; }
  .initiation { padding: 76px 0; }
  .initiation__split { grid-template-columns: 1fr; gap: 18px; }
  .initiation__portal { width: 80px; height: 80px; transform: rotate(90deg); }
  .initiation__ring--1 { width: 40px; height: 40px; } .initiation__ring--2 { width: 58px; height: 58px; } .initiation__ring--3 { width: 80px; height: 80px; }
  .initiation__core { width: 36px; height: 36px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .testimonials__card { flex: 0 0 230px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .header__nav { display: none; }
  .header__cta span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .initiation__orb, .initiation__ring, .initiation__core, .initiation__word { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
