/* ============================================
   IKIGAI Intensive — Preparation Checklist
   Design System adapted from intensive lending
   ============================================ */

:root {
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #F8F7FF;
  --bg-dark: #0F0D1A;
  --bg-dark-card: #1A1730;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-on-dark: #E5E7EB;
  --accent: #7C3AED;
  --accent-hover: #6D28D9;
  --accent-light: #EDE9FE;
  --accent-glow: rgba(124, 58, 237, 0.15);
  --lime: #84CC16;
  --lime-light: #ECFCCB;
  --lime-dark: #4D7C0F;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --amber-dark: #92400E;
  --border: #E5E7EB;
  --border-light: #F3F4F6;

  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, Consolas, monospace;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-accent: 0 4px 24px rgba(124, 58, 237, 0.2);

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

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

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

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 80px;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
a:hover { color: var(--accent-hover); }

.container { max-width: 780px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER (sticky) --- */
.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0 12px;
}
.header .container { display: flex; flex-direction: column; gap: 12px; }
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.header__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.header__logo { height: 28px; width: auto; flex-shrink: 0; }
.header__title { font-size: 14px; font-weight: 800; letter-spacing: -0.01em; color: var(--text); line-height: 1.2; }
.header__title span { color: var(--accent); }
.header__meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.header__meta b { color: var(--text); font-weight: 600; }

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 7px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all var(--duration) var(--ease);
}
.btn-wa:hover { background: #1fb455; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }

.btn-tg {
  background: #229ED9;
  color: #fff;
  padding: 7px 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all var(--duration) var(--ease);
}
.btn-tg:hover { background: #1b87b9; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(34,158,217,0.3); }

/* Progress */
.progress { display: flex; flex-direction: column; gap: 4px; }
.progress__bar { height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--lime));
  border-radius: 3px;
  width: 0%;
  transition: width 0.5s var(--ease);
}
.progress__text { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-light); }
.progress__text .done { color: var(--accent); font-weight: 600; }

/* --- HERO --- */
.hero {
  padding: 36px 0 24px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}
.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 18px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.countdown__box {
  min-width: 64px;
  flex: 1;
  max-width: 80px;
  background: var(--bg-dark-card);
  color: #fff;
  padding: 10px 8px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-accent);
}
.countdown__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.countdown__unit {
  display: block;
  font-size: 10px;
  color: #C4B5FD;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- MODULE (accordion block) --- */
.module {
  margin: 14px 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--duration) var(--ease);
}
.module__header {
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background var(--duration) var(--ease);
}
.module__header:hover { background: var(--bg-alt); }
.module__num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.module__info { flex: 1; min-width: 0; }
.module__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.module__desc { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.module__badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-light);
  background: var(--bg-alt);
  white-space: nowrap;
}
.module__badge.complete {
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--accent);
  background: var(--accent-light);
}
.module__arrow {
  font-size: 14px;
  color: var(--text-light);
  transition: transform 0.25s var(--ease);
}
.module.open .module__arrow { transform: rotate(180deg); }
.module__body { display: none; padding: 0 18px 16px; }
.module.open .module__body { display: block; }

/* Color variants */
.module--amber .module__header { border-left: 4px solid var(--amber); }
.module--amber .module__num { background: var(--amber-light); color: var(--amber-dark); }
.module--lime .module__header { border-left: 4px solid var(--lime); }
.module--lime .module__num { background: var(--lime-light); color: var(--lime-dark); }
.module--accent .module__header { border-left: 4px solid var(--accent); }
.module--accent .module__num { background: var(--accent-light); color: var(--accent); }
.module--gradient .module__header {
  border-left: 4px solid;
  border-image: linear-gradient(180deg, var(--accent), var(--lime)) 1;
}
.module--gradient .module__num {
  background: linear-gradient(135deg, var(--accent-light), var(--lime-light));
  color: #5B21B6;
}

/* --- STEP --- */
.step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.step:last-child { border-bottom: none; }
.step__check {
  width: 22px;
  height: 22px;
  border: 2px solid #D1D5DB;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  margin-top: 2px;
  background: var(--white);
}
.step__check:hover { border-color: var(--accent); background: var(--accent-light); }
.step__check.done {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(124,58,237,0.3);
}
.step__check.done::after { content: '\2713'; color: #fff; font-weight: 700; font-size: 13px; }

.step__content { flex: 1; min-width: 0; }
.step__text { font-size: 15px; line-height: 1.5; }
.step__text b { color: var(--text); font-weight: 700; }
.step.completed .step__text { color: var(--text-light); text-decoration: line-through; }
.step.completed .step__text b { color: var(--text-light); }

.step__note { font-size: 13px; color: var(--text-muted); margin-top: 6px; line-height: 1.5; }
.step__note a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(124,58,237,0.3);
  text-underline-offset: 2px;
}
.step__note a:hover { text-decoration-color: var(--accent); }
.step__note code {
  background: var(--bg-alt);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #5B21B6;
}

/* Tips / warnings / info */
.tip, .warning, .info {
  padding: 10px 14px;
  border-radius: 0 12px 12px 0;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
}
.tip {
  background: var(--lime-light);
  border-left: 3px solid var(--lime);
  color: var(--lime-dark);
}
.tip::before { content: '\1F4A1  '; }
.warning {
  background: #FEF2F2;
  border-left: 3px solid #EF4444;
  color: #991B1B;
}
.warning::before { content: 'Важно: '; font-weight: 700; }
.info {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  color: #5B21B6;
}
.info::before { content: '\2139  '; font-weight: 700; }

/* --- CMD BLOCK --- */
.cmd {
  margin-top: 10px;
  background: var(--bg-dark-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.15);
}
.cmd__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 12px;
  background: var(--bg-dark);
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  gap: 8px;
}
.cmd__platform {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.cmd__copy {
  background: transparent;
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--text-light);
  padding: 3px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 11px;
  font-family: inherit;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.cmd__copy:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(124, 58, 237, 0.1);
}
.cmd__copy.copied { border-color: var(--lime); color: var(--lime); }
.cmd__code {
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #E8E8E8;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.5;
}

/* --- FAQ --- */
.faq-section { margin-top: 32px; }
.faq-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.faq-q {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

/* --- CTA FINAL --- */
.cta-final {
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #2D1B69 100%);
  border-radius: var(--radius);
  text-align: center;
  color: #fff;
}
.cta-final h3 { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cta-final p { font-size: 14px; color: #C4B5FD; margin-bottom: 14px; }
.cta-final__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.cta-final .btn-wa,
.cta-final .btn-tg { font-size: 14px; padding: 10px 20px; }

/* --- FOOTER --- */
.footer-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  font-size: 12px;
  gap: 12px;
}
.footer-fixed .stats { color: var(--text-light); }
.footer-fixed .stats b { color: var(--accent); font-weight: 700; }
.footer-fixed .reset {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 5px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 12px;
  font-family: inherit;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.footer-fixed .reset:hover { border-color: #EF4444; color: #EF4444; }

/* --- INITIATION (WOW-секция: мир до и после) --- */
.initiation {
  position: relative;
  background: #0A0816;
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 80px 0;
  isolation: isolate;
}
.initiation__bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.initiation__orb {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: initOrb 14s ease-in-out infinite alternate;
}
.initiation__orb--left {
  top: 8%; left: -140px;
  background: radial-gradient(circle, #7C3AED 0%, transparent 70%);
}
.initiation__orb--right {
  bottom: 8%; right: -140px;
  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.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
@keyframes initOrb {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, -30px) scale(1.08); }
}
.initiation__container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}
.initiation__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.initiation__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #C4B5FD;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 20px;
}
.initiation__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}
.initiation__word {
  background: linear-gradient(135deg, #7C3AED 0%, #C084FC 35%, #84CC16 70%, #7C3AED 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: initShimmer 4s ease-in-out infinite;
  text-shadow: 0 0 60px rgba(124, 58, 237, 0.6);
}
@keyframes initShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.initiation__lead {
  font-size: clamp(15px, 1.7vw, 18px);
  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: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}
.initiation__side {
  padding: 26px 22px;
  border-radius: 18px;
  background: rgba(15, 13, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.initiation__side--before { opacity: 0.72; filter: grayscale(0.5); }
.initiation__side--before:hover { opacity: 0.95; filter: grayscale(0); }
.initiation__side--after {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.12) 0%, rgba(132, 204, 22, 0.08) 100%);
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 20px 80px -20px rgba(124, 58, 237, 0.4);
}
.initiation__side--after:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 204, 22, 0.5);
}
.initiation__side h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.initiation__mark {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #9CA3AF;
  margin-bottom: 12px;
}
.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; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 11px;
}
.initiation__list li {
  display: flex; justify-content: space-between;
  align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}
.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: 12px;
  color: #9CA3AF; text-align: right;
  max-width: 60%;
}
.initiation__list--glow em { color: #C4B5FD; font-weight: 500; }

.initiation__portal {
  position: relative;
  width: 100px; height: 100px;
  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: initRing 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.initiation__ring--1 { width: 48px; height: 48px; }
.initiation__ring--2 {
  width: 72px; height: 72px;
  animation-delay: 0.6s;
  border-color: rgba(132, 204, 22, 0.45);
}
.initiation__ring--3 {
  width: 100px; height: 100px;
  animation-delay: 1.2s;
  border-color: rgba(124, 58, 237, 0.25);
}
@keyframes initRing {
  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: 42px; height: 42px;
  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 36px rgba(124, 58, 237, 0.8),
    0 0 70px rgba(132, 204, 22, 0.4),
    inset 0 0 18px rgba(255, 255, 255, 0.2);
  animation: initCore 3s ease-in-out infinite alternate;
}
@keyframes initCore {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.initiation__manifest {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.45;
  font-weight: 500;
  color: #E5E7EB;
  letter-spacing: -0.01em;
}
.initiation__manifest b { color: #fff; font-weight: 800; }

.initiation__cta { text-align: center; }
.initiation__btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px;
  background: #fff;
  color: #0A0816;
  font-weight: 700; font-size: 15px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s var(--ease);
  box-shadow:
    0 0 0 4px rgba(124, 58, 237, 0.25),
    0 20px 60px -15px rgba(124, 58, 237, 0.6);
}
.initiation__btn:hover {
  transform: translateY(-3px) scale(1.02);
  color: #0A0816;
  box-shadow:
    0 0 0 6px rgba(132, 204, 22, 0.25),
    0 30px 80px -15px rgba(124, 58, 237, 0.8);
}
.initiation__btn svg { transition: transform 0.3s var(--ease); }
.initiation__btn:hover svg { transform: translateY(3px); }
.initiation__hint {
  margin-top: 14px;
  font-size: 12px;
  color: #9CA3AF;
  letter-spacing: 0.03em;
}

@media (max-width: 760px) {
  .initiation { padding: 56px 0; }
  .initiation__split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .initiation__portal {
    width: 72px; height: 72px;
    transform: rotate(90deg);
  }
  .initiation__ring--1 { width: 34px; height: 34px; }
  .initiation__ring--2 { width: 50px; height: 50px; }
  .initiation__ring--3 { width: 72px; height: 72px; }
  .initiation__core { width: 32px; height: 32px; }
  .initiation__side { padding: 20px 18px; }
  .initiation__side h3 { font-size: 16px; }
  .initiation__head { margin-bottom: 32px; }
  .initiation__orb { width: 280px; height: 280px; filter: blur(70px); }
  .initiation__list li { font-size: 13px; }
  .initiation__list em { font-size: 11px; max-width: 55%; }
  .initiation__btn { padding: 13px 26px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .initiation__orb,
  .initiation__ring,
  .initiation__core,
  .initiation__word { animation: none; }
}

/* --- Next wave (воронка на следующие потоки) --- */
.next-wave {
  margin-top: 28px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--lime-light) 100%);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.next-wave::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.next-wave__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
}
.next-wave h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  position: relative;
}
.next-wave p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 18px;
  position: relative;
}
.next-wave p a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.3);
}
.next-wave p b { color: var(--text); }
.next-wave__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.next-wave__btns .btn-wa,
.next-wave__btns .btn-tg {
  font-size: 13px;
  padding: 9px 18px;
}

@media (max-width: 600px) {
  .next-wave { padding: 22px 18px; }
  .next-wave h3 { font-size: 18px; }
  .next-wave p { font-size: 13px; }
}

/* --- Achievement banner --- */
.achievement {
  display: none;
  margin-top: 20px;
  padding: 24px 20px;
  background: linear-gradient(135deg, var(--bg-dark), #2D1B69);
  border: 1px solid rgba(132, 204, 22, 0.3);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.2);
}
.achievement.visible { display: block; animation: fadeUp 0.6s var(--ease); }
.achievement__icon { font-size: 44px; }
.achievement__title { font-size: 20px; font-weight: 800; color: #fff; margin-top: 8px; }
.achievement__sub { font-size: 13px; color: #C4B5FD; margin-top: 4px; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 640px) {
  .hero h1 { font-size: 24px; }
  .hero__sub { font-size: 14px; }
  .header__title { font-size: 13px; }
  .header__meta { font-size: 11px; }
  .countdown__box { min-width: 54px; padding: 8px 6px; }
  .countdown__num { font-size: 18px; }
  .module__title { font-size: 14px; }
  .module__header { padding: 14px 14px; gap: 10px; }
  .module__num { width: 32px; height: 32px; font-size: 14px; }
  .module__body { padding: 0 14px 12px; }
  .step__text { font-size: 14px; }
  .cmd__code { font-size: 12px; }
  .btn-wa span.hide-mobile { display: none; }
}
