/* =========================================================
   ATMAN — Landing styles
   Brand: premium luxury wellness with tech precision
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Colors */
  --navy-deep: #0A1628;
  --navy-midnight: #050E1C;
  --navy-twilight: #1A2C46;
  --navy-card: #0F1B2F;

  --gold-lighthouse: #E8B968;
  --gold-amber: #F4D29A;
  --gold-dawn: #FFE5B7;

  --cyan-compass: #5DD3DC;
  --cyan-mist: #8EA9C0;

  --text-white: #FFFFFF;
  --text-mist: #B8C5D6;
  --text-stone: #6B7C92;
  --text-whisper: #3F4F65;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-emphasis: rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 720px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--navy-deep);
  color: var(--text-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-lighthouse); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

/* ---------- Responsive line breaks ---------- */
/* <br class="br-mobile"> — visible only on mobile */
/* <br class="br-desktop"> — visible only on tablet+desktop */
.br-mobile { display: none; }
.br-desktop { display: inline; }
@media (max-width: 768px) {
  .br-mobile { display: inline; }
  .br-desktop { display: none; }
}

/* ---------- Accessibility ---------- */
/* Visible keyboard focus — WCAG 2.4.7. Mouse clicks don't trigger this. */
:focus-visible {
  outline: 2px solid var(--gold-lighthouse);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
button:focus-visible {
  outline-offset: 4px;
}

/* Respect reduced-motion preference (vestibular safety) */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
.h2, .h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 24px;
}
/* H2 уменьшен на 15-20% — иерархия H1 vs H2 */
.h2 { font-size: clamp(30px, 4vw, 44px); }
.h3 { font-size: clamp(24px, 3vw, 30px); }

/* Тонкий акцент для ключевых слов — наследует цвет родителя, чуть жирнее */
.gold-italic {
  font-weight: 600;
  color: inherit;
}
.h2.white, .h3.white { color: var(--text-white); }
.h2.center, .h3.center { text-align: center; }

.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.gold { color: var(--gold-lighthouse); }

.body-large { font-size: 18px; line-height: 1.7; color: var(--text-mist); margin: 0 0 20px; }
.body-large.emphasis { color: var(--text-white); font-weight: 500; }
.emphasis { font-weight: 500; }

.block-sub { font-size: 18px; color: var(--text-mist); margin: 0 0 32px; line-height: 1.6; }
.block-sub.light { color: var(--text-mist); }
.block-sub.center { text-align: center; }
.block-sub-italic { font-style: italic; color: var(--text-mist); margin-top: 32px; text-align: center; }

.block-tag {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--gold-lighthouse);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.brand-signature {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-white);
  font-size: 18px;
  margin-top: 32px;
  line-height: 1.5;
  opacity: 0.95;
}
.brand-signature.centered { text-align: center; }
.brand-signature.light { color: var(--text-white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold-lighthouse);
  color: var(--navy-midnight);
}
.btn-primary:hover {
  background: var(--gold-amber);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 185, 104, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-emphasis);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.05); opacity: 1; }
.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-hero { padding: 20px 40px; font-size: 18px; margin-top: 8px; }
.btn-icon { transition: transform 0.25s var(--ease); }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ---------- TOPNAV ---------- */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 22, 40, 0);
  backdrop-filter: blur(0);
  transition: all 0.3s var(--ease);
}
.topnav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
/* Sticky CTA — становится primary при scroll, чтобы было видно */
.topnav.scrolled .nav-cta {
  background: var(--gold-lighthouse);
  color: var(--navy-midnight);
  border-color: var(--gold-lighthouse);
  font-weight: 600;
}
.topnav.scrolled .nav-cta:hover {
  background: var(--gold-amber);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: block; color: var(--text-white); }
.logo { height: 110px; width: auto; transition: height 0.3s var(--ease); }
.topnav.scrolled .logo { height: 72px; }
.footer-logo { height: 72px; }
.nav-inner { padding: 8px 0; }
.topnav { padding: 16px 0; }
.topnav.scrolled { padding: 8px 0; }
@media (max-width: 768px) {
  .logo { height: 100px; }
  .topnav.scrolled .logo { height: 68px; }
}
.nav-right { display: flex; align-items: center; gap: 24px; }
.lang-switch { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.lang-switch a { color: var(--text-mist); font-weight: 500; }
.lang-switch a.lang-active { color: var(--text-white); }
.lang-sep { color: var(--text-whisper); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(232, 185, 104, 0.08) 0%, transparent 50%),
    linear-gradient(90deg,
      rgba(5, 14, 28, 0.88) 0%,
      rgba(5, 14, 28, 0.65) 40%,
      rgba(5, 14, 28, 0.25) 70%,
      rgba(5, 14, 28, 0.4) 100%);
}
.hero-content { max-width: 760px; }
.hero-h1 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--text-white);
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-white);
  margin: 0 0 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.95;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mist);
  margin: 0 0 16px;
  max-width: 580px;
}
.hero-micro {
  font-size: 14px;
  color: var(--text-white);
  margin: 12px 0 0;
  opacity: 0.95;
}

.hero-micro-list, .form-trust {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: flex-start;
}
.form-trust { justify-content: center; }
.hero-micro-list li, .form-trust li {
  font-size: 14px;
  color: var(--text-white);
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.95;
}
.hero-micro-list li::before {
  content: '✓ ';
  color: var(--gold-lighthouse);
  font-weight: 700;
  margin-right: 4px;
}
.form-trust li::before {
  content: '';
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  color: var(--text-mist);
  font-size: 17px;
  line-height: 1.55;
}
.hero-list li {
  position: relative;
  padding: 7px 0 7px 32px;
}
/* "Done" items — hand-drawn gold check via CSS borders (no unicode tofu) */
.hero-list li.done::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 13px;
  width: 15px;
  height: 8px;
  border-left: 2px solid var(--gold-lighthouse);
  border-bottom: 2px solid var(--gold-lighthouse);
  transform: rotate(-45deg);
  opacity: 1;
}
/* Punchline — last line, set apart as a verdict, not a checked task */
.hero-list li.punchline {
  margin-top: 14px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(232, 185, 104, 0.18);
  color: var(--text-white);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
.hero-list li.punchline::before { content: none; }

.hero-recognition {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  font-style: italic;
  color: var(--text-white);
  margin: 28px 0 32px;
  line-height: 1.4;
}
.hero-recognition .gold { color: var(--gold-lighthouse); font-style: normal; font-weight: 600; }

/* CEO заголовок — точный контроль расстояний между 3 элементами */
.ceo-title {
  line-height: 1.2;
  margin-bottom: 28px;
}
.ceo-name {
  display: block;
  margin-bottom: 10px;
}
.role-line {
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  color: var(--gold-lighthouse);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin: 0;
  line-height: 1.4;
}
.role-brand {
  font-family: var(--font-sans);
  font-size: 14px;
  font-style: normal;
  color: var(--gold-lighthouse);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin: 0;
  line-height: 1.4;
}

.flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  vertical-align: -3px;
  border-radius: 2px;
  margin-right: 6px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.bonus-grid-6 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Aphorism block — sharp formula между Problem и Personal */
.block-aphorism {
  background: var(--navy-midnight);
  padding: 100px 0;
  text-align: center;
}
.aphorism-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-white);
  margin: 0;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.aphorism-text .gold {
  color: var(--gold-lighthouse);
  font-style: italic;
  font-weight: 600;
}
.aphorism-text .line-2 {
  display: block;
  margin-top: 8px;
}
.aphorism-attribution {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-stone);
  margin: 36px 0 0;
}
@media (max-width: 768px) {
  .block-aphorism { padding: 64px 0; }
}

/* Social proof: счётчик вайтлиста */
.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 18px;
  background: rgba(232, 185, 104, 0.08);
  border: 1px solid rgba(232, 185, 104, 0.25);
  border-radius: 100px;
  font-size: 14px;
  color: var(--text-mist);
  letter-spacing: 0.01em;
}
.social-proof.social-proof-center {
  display: flex;
  margin: 28px auto 32px;
  width: fit-content;
}
.social-proof strong {
  color: var(--gold-lighthouse);
  font-weight: 600;
}
.proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #58D68D;
  box-shadow: 0 0 0 0 rgba(88, 214, 141, 0.6);
  animation: proof-pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes proof-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(88, 214, 141, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(88, 214, 141, 0); }
}

/* Pipeline: CSS grid с фиксированными равными колонками = идеальное выравнивание независимо от длины слов */
.hero-pipeline {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 48px;
  padding: 0;
  width: 100%;
  max-width: 720px;
  column-gap: 8px;
}
.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: var(--text-mist);
  min-width: 0;
}
.pipeline-icon { color: var(--gold-lighthouse); width: 32px; height: 32px; flex-shrink: 0; }
.pipeline-step span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.pipeline-arrow {
  color: var(--text-whisper);
  width: 24px;
  height: 24px;
  justify-self: center;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .hero-pipeline {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    margin-top: 32px;
  }
  .hero-pipeline .pipeline-arrow { display: none; }
  .pipeline-step span { font-size: 10px; }
}

/* ---------- STRIP — приглушённый янтарь, не кричит ---------- */
.strip {
  background: linear-gradient(180deg, rgba(232, 185, 104, 0.12), rgba(232, 185, 104, 0.08));
  border-top: 1px solid rgba(232, 185, 104, 0.3);
  border-bottom: 1px solid rgba(232, 185, 104, 0.3);
  color: var(--text-white);
  padding: 22px 0;
  text-align: center;
  font-weight: 500;
}
.strip p { margin: 0; font-size: 16px; letter-spacing: 0.01em; }
.strip strong { color: var(--gold-lighthouse); font-weight: 600; }

/* ---------- BLOCKS — единый вертикальный ритм 120/80 ---------- */
.block {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.block-narrow { padding: 120px 0; }
@media (max-width: 768px) {
  .block, .block-narrow { padding: 80px 0; }
}
.block-bg { position: absolute; inset: 0; z-index: 0; }
.block-bg img { width: 100%; height: 100%; object-fit: cover; }
.block-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 14, 28, 0.7), rgba(5, 14, 28, 0.85));
}

/* ---------- BLOCK 3: Problem agitation ---------- */
#problem { background: var(--navy-card); }
#problem .h2 { text-align: left; }

/* ---------- BLOCK 3.5: Personal note ---------- */
.block-personal { padding: 80px 0; background: var(--navy-deep); }
.personal-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
  padding: 56px;
  background: var(--navy-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}
.personal-photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--gold-lighthouse);
  filter: brightness(0.95) contrast(1.05) saturate(0.9) sepia(0.05);
  box-shadow: 0 8px 32px rgba(232, 185, 104, 0.15);
}
.personal-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-mist);
  margin: 0 0 20px;
}
.personal-text p.emphasis { color: var(--text-white); font-weight: 500; font-size: 18px; }
.personal-text .h3 { color: var(--text-white); margin-bottom: 28px; }
.personal-sign {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white) !important;
  font-weight: 500;
}
.linkedin-link {
  color: var(--cyan-compass);
  display: inline-flex;
  align-items: center;
}
.linkedin-link:hover { color: var(--gold-lighthouse); opacity: 1; }

/* ---------- BLOCK 4: Journey ---------- */
.block-journey { background: var(--navy-midnight); }
.block-journey .h2.white, .block-journey .block-sub { text-align: center; }
.block-journey .block-sub { color: var(--text-mist); }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 48px 0 32px;
}
.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.journey-step:hover {
  transform: translateY(-4px);
  border-color: var(--gold-lighthouse);
}
.journey-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: var(--gold-lighthouse);
}
.journey-step .label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lighthouse);
  margin: 0 0 6px;
  font-weight: 600;
}
.journey-step .desc {
  font-size: 16px;
  color: var(--text-white);
  margin: 0;
  line-height: 1.4;
}

/* ---------- BLOCK 4.5: Spheres ---------- */
.block-spheres { background: var(--navy-deep); }
.spheres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.sphere-card {
  padding: 28px;
  background: var(--navy-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease);
}
.sphere-card:hover {
  border-color: var(--gold-lighthouse);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(232, 185, 104, 0.08);
}
.sphere-icon {
  width: 28px;
  height: 28px;
  color: var(--gold-lighthouse);
  margin-bottom: 18px;
  stroke-width: 1.2;
  opacity: 0.9;
}
.sphere-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text-white);
}
.sphere-card p {
  color: var(--text-mist);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* ---------- BLOCK 5: Comparison ---------- */
.block-comparison { background: var(--navy-card); }
.compare-table {
  margin: 32px 0;
  background: var(--navy-deep);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 0;
  border-bottom: 1px solid var(--border-subtle);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > div {
  padding: 20px;
  font-size: 14px;
  color: var(--text-mist);
  border-right: 1px solid var(--border-subtle);
}
.compare-row > div:last-child { border-right: none; }
.compare-header > div {
  font-weight: 600;
  color: var(--text-white);
  background: var(--navy-twilight);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.row-label {
  font-weight: 600;
  color: var(--text-white) !important;
  background: rgba(255, 255, 255, 0.02);
}
.highlight-col {
  background: rgba(232, 185, 104, 0.10) !important;
  color: var(--text-white) !important;
  border-left: 2px solid var(--gold-lighthouse) !important;
  border-right: 2px solid var(--gold-lighthouse) !important;
  position: relative;
}
.highlight-col small { color: var(--text-mist); font-size: 12px; }
.highlight-col .serif-italic { font-size: 22px; letter-spacing: 0.02em; }
.price-now {
  display: block;
  color: var(--gold-lighthouse);
}
.price-now strong { font-size: 22px; letter-spacing: 0.02em; }
.price-future {
  display: block;
  margin-top: 14px;
  color: var(--text-white);
  font-size: 13px;
  opacity: 0.9;
}
.deadline-note {
  display: block;
  margin-top: 6px;
  font-style: italic;
  color: var(--gold-amber);
  line-height: 1.4;
  font-size: 12px;
}
/* Top/bottom golden borders для ATMAN-колонки */
.compare-row:first-child .highlight-col { border-top: 2px solid var(--gold-lighthouse) !important; }
.compare-row:last-child .highlight-col { border-bottom: 2px solid var(--gold-lighthouse) !important; }

/* ---------- BLOCK 6: Foundation ---------- */
.block-foundation { background: var(--navy-midnight); padding: 120px 0; }
.block-foundation .h2.white { text-align: center; }
.block-foundation .block-sub { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 56px 0 80px;
}
.foundation-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(15, 27, 47, 0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}
.foundation-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-lighthouse);
  margin: 0 auto 16px;
  display: block;
}
.foundation-item .label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-lighthouse);
  margin: 0 0 8px;
  font-weight: 600;
}
.foundation-item .desc {
  font-size: 15px;
  color: var(--text-white);
  margin: 0;
}

.methodology-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.method-card {
  padding: 40px 32px;
  background: rgba(15, 27, 47, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  position: relative;
}
.method-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--gold-lighthouse);
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.method-card h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-white);
}
.method-card p {
  color: var(--text-mist);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- BLOCK 7: Team ---------- */
.block-team {
  background: var(--navy-deep) url('/img/hero/team-bg.png') no-repeat center top;
  background-size: cover;
  position: relative;
}
.block-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.7) 0%, rgba(10,22,40,0.95) 60%, var(--navy-deep) 100%);
  pointer-events: none;
  z-index: 0;
}
.block-team > .container { position: relative; z-index: 1; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin: 48px 0 32px;
}
.team-card {
  padding: 24px;
  background: var(--navy-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease);
}
.team-card:hover {
  border-color: var(--gold-lighthouse);
  transform: translateY(-4px);
}
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  /* Единый brand-фильтр для разнородных фото */
  filter: brightness(0.95) contrast(1.05) saturate(0.85) sepia(0.08);
  transition: filter 0.4s var(--ease);
}
.team-card:hover img {
  filter: brightness(1) contrast(1.05) saturate(0.95) sepia(0.05);
}
.team-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text-white);
  line-height: 1.2;
}
.team-card .role-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-lighthouse);
  margin: 0 0 12px;
  font-weight: 600;
}
.team-card .role {
  font-size: 13px;
  color: var(--text-mist);
  margin: 0;
  line-height: 1.55;
}
.team-card .spheres {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lighthouse);
  margin: 0;
  font-weight: 500;
}
/* Unified team grid — auto-fit на mobile/tablet, фиксированные 4 колонки на desktop */
.team-grid-unified {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
@media (min-width: 1024px) {
  .team-grid-unified {
    grid-template-columns: repeat(4, 1fr);
  }
  /* Последние 2 карточки выравниваются по центру в 3-м ряду — под колонками 2 и 3 */
  .team-grid-unified .team-card:nth-last-child(2) {
    grid-column: 2;
  }
  .team-grid-unified .team-card:nth-last-child(1) {
    grid-column: 3;
  }
}

/* Mobile: team grid → horizontal swipe carousel (no endless scroll through 10 cards) */
@media (max-width: 900px) {
  .team-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 24px;
    padding: 4px 24px 20px;
    margin: 36px -24px 16px;
    scrollbar-width: none;
  }
  .team-grid::-webkit-scrollbar { display: none; }
  .team-card {
    flex: 0 0 78%;
    min-width: 78%;
    scroll-snap-align: start;
    padding: 18px;
  }
  .team-card img {
    margin-bottom: 14px;
  }
  /* Reset desktop positioning rules for last 2 cards on mobile */
  .team-grid-unified .team-card:nth-last-child(1),
  .team-grid-unified .team-card:nth-last-child(2) {
    grid-column: auto;
  }

  /* Mobile-only expert order — different from desktop HTML sequence.
     HTML order vs mobile visual order:
       1. Konstantin       → 1
       2. V.Krupska        → 2
       3. A.Tokranovs      → 6
       4. A.Shakhoval      → 4
       5. Marina           → 8
       6. Artem            → 3
       7. Vitalii          → 5
       8. Oksana           → 7
       9. V.Velichko       → 9
       10. Anastasia       → 10
  */
  .team-grid-unified .team-card:nth-child(1)  { order: 1; }
  .team-grid-unified .team-card:nth-child(2)  { order: 2; }
  .team-grid-unified .team-card:nth-child(3)  { order: 6; }
  .team-grid-unified .team-card:nth-child(4)  { order: 4; }
  .team-grid-unified .team-card:nth-child(5)  { order: 8; }
  .team-grid-unified .team-card:nth-child(6)  { order: 3; }
  .team-grid-unified .team-card:nth-child(7)  { order: 5; }
  .team-grid-unified .team-card:nth-child(8)  { order: 7; }
  .team-grid-unified .team-card:nth-child(9)  { order: 9; }
  .team-grid-unified .team-card:nth-child(10) { order: 10; }
}

/* ---------- BLOCK 8: Bonuses ---------- */
.block-bonuses { background: var(--navy-card); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.bonus-card {
  padding: 36px;
  background: linear-gradient(180deg, var(--navy-twilight), var(--navy-deep));
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  position: relative;
}
.bonus-num {
  font-family: var(--font-serif);
  font-size: 40px;
  color: var(--gold-lighthouse);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.bonus-card h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--text-white);
  line-height: 1.2;
}
.bonus-card p {
  color: var(--text-mist);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.bonus-card .bonus-value {
  font-style: italic;
  color: var(--gold-amber);
  font-size: 14px;
  margin-top: 8px;
}

/* ---------- BLOCK 9: Anti-promise ---------- */
.block-anti-promise { background: var(--navy-deep); }
.anti-list { margin-top: 32px; }
.anti-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mist);
}
.anti-item .dash {
  color: var(--gold-lighthouse);
  font-weight: 700;
  flex-shrink: 0;
}
.anti-item p { margin: 0; }

/* ---------- BLOCK 10: FAQ ---------- */
.block-faq { background: var(--navy-card); }
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
  list-style: none;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-lighthouse); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-mist);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--gold-lighthouse); }
.faq-item p {
  padding: 0 0 16px;
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mist);
}
.faq-item p strong { color: var(--text-white); }
.faq-answer { padding-bottom: 24px; }
.faq-list-inline {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
}
.faq-list-inline li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 15px;
  color: var(--text-mist);
  line-height: 1.5;
}
.faq-list-inline li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-lighthouse);
  font-weight: 600;
}

/* ---------- BLOCK 11: Final CTA ---------- */
.block-final-cta {
  background: var(--navy-midnight);
  padding: 120px 0;
}
.block-final-cta .h2.white { font-size: clamp(40px, 5.5vw, 64px); }

.waitlist-form {
  max-width: 560px;
  margin: 40px auto 0;
}
/* Honeypot — visible to bots that fill all inputs, invisible to humans */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tab-index: -1;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  padding: 0;
}
.form-inputs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(15, 27, 47, 0.6);
  backdrop-filter: blur(8px);
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border-emphasis);
  transition: border-color 0.2s var(--ease);
}
.form-inputs:focus-within {
  border-color: var(--gold-lighthouse);
}
.form-inputs input {
  flex: 1;
  min-width: 140px;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 16px;
  color: var(--text-white);
  font-family: var(--font-sans);
}
.form-inputs input::placeholder { color: var(--text-stone); }
.form-inputs input[name="first_name"] {
  flex: 0.7;
  border-right: 1px solid var(--border-subtle);
}
/* Submit button — full width под полями */
.form-submit-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 18px 32px;
  font-size: 17px;
}
/* Consent — 2 строки, центрировано */
.form-consent {
  text-align: center;
  font-size: 12px;
  color: var(--text-stone);
  margin: 4px 0 0;
  line-height: 1.6;
}
.form-consent .line {
  display: block;
}
.form-consent a {
  color: var(--text-mist);
  text-decoration: underline;
  text-decoration-color: rgba(184, 197, 214, 0.3);
  text-underline-offset: 2px;
}
.form-consent a:hover { color: var(--gold-lighthouse); }
@media (max-width: 600px) {
  .form-inputs { padding: 8px; }
  .form-inputs input[name="first_name"] {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
}
.form-micro {
  text-align: center;
  font-size: 14px;
  color: var(--text-stone);
  margin: 16px 0 0;
}
.form-error {
  background: rgba(232, 80, 80, 0.1);
  color: #FFB4B4;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 80, 80, 0.3);
  margin-top: 16px;
  font-size: 14px;
}
.form-success {
  background: rgba(93, 211, 220, 0.1);
  color: var(--cyan-compass);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(93, 211, 220, 0.3);
  margin-top: 16px;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-midnight);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-subtle);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-col h5 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-white);
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; font-size: 14px; color: var(--text-mist); }
.footer-col a { color: var(--text-mist); font-weight: 500; }
.footer-col a:hover { color: var(--gold-lighthouse); }

/* Social icons row in footer */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-mist);
  transition: all 0.25s var(--ease);
}
.footer-social a:hover {
  color: var(--gold-lighthouse);
  border-color: rgba(232, 185, 104, 0.4);
  background: rgba(232, 185, 104, 0.08);
  transform: translateY(-2px);
  opacity: 1;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-brand p {
  color: var(--text-mist);
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 0;
}
.footer-logo { height: 32px; }
.hotlines li { display: flex; align-items: center; gap: 8px; }
.footer-bottom, .footer-legal {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}
.footer-bottom p, .footer-disclaimer {
  color: var(--text-stone);
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 8px;
  text-align: center;
}
.footer-links {
  color: var(--text-stone);
  font-size: 12px;
  text-align: center;
  margin: 0;
}
.footer-links a {
  color: var(--text-mist);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold-lighthouse);
}

/* Cookie / privacy notice — минимальный для Meta Ads compliance */
.cookie-notice {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(15, 27, 47, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--gold-lighthouse);
  border-radius: var(--radius);
  padding: 16px 20px;
  z-index: 200;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  animation: cookie-slide-in 0.5s var(--ease);
}
@keyframes cookie-slide-in {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-inner p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-mist);
  flex: 1 1 280px;
}
.cookie-inner a {
  color: var(--gold-lighthouse);
  text-decoration: underline;
  text-decoration-color: rgba(232, 185, 104, 0.4);
}
.cookie-inner button {
  flex-shrink: 0;
}

/* ---------- Compare cards (mobile swipe carousel) ---------- */
/* Hidden on desktop — table mode is used instead. Activated below 900px. */
.compare-cards { display: none; }

@media (max-width: 900px) {
  /* Hide the desktop table entirely — swap to swipe carousel */
  .compare-table { display: none; }

  .compare-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 24px;
    padding: 4px 24px 20px;
    margin: 28px -24px 0;
    scrollbar-width: none;
  }
  .compare-cards::-webkit-scrollbar { display: none; }

  .compare-card {
    flex: 0 0 82%;
    min-width: 82%;
    scroll-snap-align: start;
    background: var(--navy-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  }
  .compare-card-atman {
    border: 2px solid var(--gold-lighthouse);
    background: linear-gradient(180deg, rgba(232, 185, 104, 0.08) 0%, var(--navy-card) 55%);
    box-shadow: 0 8px 28px rgba(232, 185, 104, 0.18);
  }
  .compare-card-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 18px;
    color: var(--text-white);
    line-height: 1.2;
  }
  .compare-card-atman .compare-card-title { font-size: 26px; }
  .compare-pair {
    padding: 12px 0;
    border-top: 1px solid var(--border-subtle);
  }
  .compare-pair:first-of-type {
    border-top: none;
    padding-top: 0;
  }
  .compare-key {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-stone);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .compare-val {
    display: block;
    font-size: 15px;
    color: var(--text-mist);
    line-height: 1.5;
  }
  .compare-card-atman .compare-val { color: var(--text-white); }
  .compare-card-atman .compare-val strong { color: var(--gold-lighthouse); }
  .compare-card .compare-price-small {
    font-size: 12px;
    color: var(--text-stone);
    margin-top: 4px;
  }

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

@media (max-width: 768px) {
  .personal-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .personal-photo img { margin: 0 auto; }
  .personal-text { text-align: left; }
  .personal-sign { justify-content: flex-start; }

  .hero-pipeline { gap: 12px; padding: 32px 16px 0; }
  .pipeline-arrow { display: none; }
  .pipeline-step span { font-size: 10px; }
  .pipeline-icon { width: 28px; height: 28px; }

  .block { padding: 72px 0; }
  .block-personal { padding: 56px 0; }

  .form-row { flex-direction: column; }
  .form-row input { width: 100%; }
  .form-row button { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .container-narrow { padding: 0 16px; }
  .topnav { padding: 12px 0; }
  .nav-right { gap: 12px; }
  .lang-switch { font-size: 13px; }
  .btn-small { padding: 8px 14px; font-size: 13px; }
  .logo { height: 28px; }

  .hero { padding: 100px 0 60px; }
  .hero-h1 { font-size: clamp(40px, 9vw, 56px); }
  .hero-tagline { font-size: 20px; }
  .hero-sub { font-size: 16px; }

  .h2 { font-size: 32px; }
  .body-large { font-size: 16px; }

  .block-personal .personal-card { padding: 24px 18px; }

  .strip p { font-size: 13px; }

  .method-card, .bonus-card { padding: 28px 20px; }
  .foundation-grid { gap: 16px; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) forwards;
}
.fade-in.delay-1 { animation-delay: 0.15s; }
.fade-in.delay-2 { animation-delay: 0.3s; }
.fade-in.delay-3 { animation-delay: 0.45s; }

/* Reveal on scroll (handled by JS adding .visible) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
