/* ══════════════════════════════════════════════════════════════════
   ЛЕНДИНГ «ВЕДИЧЕСКИЙ АСТРОЛОГ» — /ведический-астролог/

   Отдельный файл: страница живёт по своим правилам оформления
   (макет из landing_astrologer), общий css/style.css сюда НЕ подключается,
   чтобы ничего не наследовать и ничего не сломать на живых страницах.

   Токены и значения — из README.md макета, раздел «Design Tokens».
   ══════════════════════════════════════════════════════════════════ */

.al {
  /* ── фон и «небо» ── */
  --bg-page:     #07060C;
  --bg-section:  #09080F;
  --violet-900:  #120E22;
  --violet-800:  #171128;
  --violet-700:  #26174E;
  --violet-600:  #2E1B57;
  --violet-500:  #38206E;
  --violet-400:  #6B3CC4;
  --violet-300:  #7B4FD4;

  /* ── золото ── */
  --gold-100: #F9F2E2;
  --gold-200: #F6DFAA;
  --gold-300: #F3D79A;
  --gold-400: #F0D290;
  --gold-500: #E8C270;
  --gold-700: #D9AE5F;
  --gold-ink: #2A1F0E;   /* единственный допустимый цвет текста на золоте */
  --gold-muted: #C4B392;

  /* ── текст ── */
  --text-hi:      #FAF7FD;
  --text-title:   #F5F1FA;
  --text-primary: #EDE8F5;
  --text-onGold:  #F7F0E0;
  --text-body:    #E6E0EE;
  --text-soft:    #D3CBDE;
  --text-muted:   #C0B7CE;
  --text-dim:     #A79CBA;
  --text-dimmer:  #8E8499;
  --text-faint:   #6E657F;
  --divider-dot:  #4B4459;

  --line: rgba(255,255,255,.07);

  background: var(--bg-page);
  color: var(--text-primary);
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.al *, .al *::before, .al *::after { box-sizing: border-box; }
.al p, .al h1, .al h2, .al h3 { margin: 0; text-wrap: pretty; }
/* Цвет ссылкам НЕ задаём глобально: правило `.al a{color}` (0,1,1) перебивало бы
   классы кнопок (0,1,0) — кнопка-ссылка становилась золотой на золотом.
   Это ровно та ловушка, что описана в js-rules §9. Цвет — у каждого компонента свой. */
.al a { text-decoration: none; transition: color .16s ease-out; }
.al button { font-family: inherit; }
.al :focus-visible { outline: 2px solid rgba(232,194,112,.6); outline-offset: 2px; }

.al-serif { font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; }
.al-em    { font-style: italic; color: var(--gold-300); }

/* ── декоративные слои ── */
.al-stars {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1.6px 1.6px at  9% 14%, rgba(255,255,255,.60), transparent),
    radial-gradient(1.3px 1.3px at 22%  7%, rgba(232,194,112,.75), transparent),
    radial-gradient(1.8px 1.8px at 34% 21%, rgba(255,255,255,.40), transparent),
    radial-gradient(1.3px 1.3px at 47%  9%, rgba(255,255,255,.50), transparent),
    radial-gradient(1.6px 1.6px at 61% 17%, rgba(232,194,112,.60), transparent),
    radial-gradient(1.3px 1.3px at 73%  5%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.7px 1.7px at 86% 19%, rgba(255,255,255,.55), transparent),
    radial-gradient(1.4px 1.4px at 95% 33%, rgba(232,194,112,.55), transparent),
    radial-gradient(1.3px 1.3px at  5% 46%, rgba(255,255,255,.32), transparent),
    radial-gradient(1.6px 1.6px at 16% 62%, rgba(232,194,112,.45), transparent),
    radial-gradient(1.3px 1.3px at 29% 78%, rgba(255,255,255,.34), transparent),
    radial-gradient(1.5px 1.5px at 42% 90%, rgba(255,255,255,.40), transparent);
  animation: al-twinkle 6s ease-in-out infinite;
}
.al-moonglow {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(243,215,154,.28) 0%, rgba(123,79,212,.18) 38%, rgba(7,6,12,0) 70%);
  animation: al-glow 8s ease-in-out infinite;
}
@keyframes al-twinkle { 0%,100% { opacity:.4 } 50% { opacity:1 } }
@keyframes al-glow    { 0%,100% { opacity:.5; transform:scale(1) } 50% { opacity:1; transform:scale(1.06) } }
@keyframes al-dots    { 0%,80%,100% { opacity:.25; transform:translateY(0) } 40% { opacity:1; transform:translateY(-3px) } }
@keyframes al-caret   { 0%,49% { opacity:1 } 50%,100% { opacity:0 } }

/* ── аватар-луна ── */
.al-moon {
  flex: none; border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, var(--violet-300), var(--violet-600));
  border: 1px solid rgba(232,194,112,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); line-height: 1;
}
.al-moon--lg { width: 34px; height: 34px; font-size: 15px; color: var(--gold-500);
  background: linear-gradient(180deg, var(--violet-400), var(--violet-600));
  border-color: rgba(232,194,112,.45); }
.al-moon--md { width: 30px; height: 30px; font-size: 13px; }
.al-moon--sm { width: 28px; height: 28px; font-size: 13px; color: var(--gold-500);
  background: linear-gradient(180deg, var(--violet-400), var(--violet-600));
  border-color: rgba(232,194,112,.35); }
.al-moon--xs { width: 22px; height: 22px; font-size: 10px; color: var(--gold-500);
  border-color: rgba(232,194,112,.4); }

/* ── кнопки ── */
.al-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border-radius: 99px; border: none; cursor: pointer; white-space: nowrap;
  transition: background .16s ease-out, box-shadow .16s ease-out, border-color .16s ease-out, color .16s ease-out;
}
.al-btn:active { transform: scale(.985); transition-duration: .09s; }

/* Золотая кнопка — текст ВСЕГДА тёмный (js-rules §9) */
.al-btn--gold {
  background: linear-gradient(180deg, var(--gold-200), var(--gold-700));
  color: var(--gold-ink) !important; -webkit-text-fill-color: var(--gold-ink);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 16px 38px rgba(217,174,95,.32);
}
.al-btn--gold:hover {
  background: linear-gradient(180deg, #FCE9BC, #E5BC6E);
  color: var(--gold-ink) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 20px 46px rgba(217,174,95,.34);
}
.al-btn--ghost {
  border: 1px solid rgba(255,255,255,.2); background: transparent;
  color: var(--text-title); -webkit-text-fill-color: var(--text-title); font-weight: 700;
}
.al-btn--ghost:hover { border-color: rgba(232,194,112,.55); color: var(--gold-100); -webkit-text-fill-color: var(--gold-100); }
.al-btn--outline {
  border: 1px solid rgba(232,194,112,.6); background: rgba(232,194,112,.1);
  color: var(--gold-300); font-weight: 700;
}
.al-btn--outline:hover { background: rgba(232,194,112,.2); color: var(--gold-100); }
.al-btn__arrow {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(42,31,14,.14);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}

/* ══════════════════════════ 0. Липкая шапка ══════════════════════════ */
.al-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(9,8,15,.78);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.al-header__in {
  max-width: 1240px; margin: 0 auto; padding: 12px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.al-logo { display: flex; align-items: center; gap: 11px; color: var(--text-title); }
.al-logo, .al-logo:hover { color: var(--text-title); }
.al-logo__t { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 18px; letter-spacing: .4px; }
.al-header__right { display: flex; align-items: center; gap: 18px; }
.al-header__link { font-size: 14px; font-weight: 600; color: var(--text-dimmer); }
.al-header__link:hover { color: var(--text-title); }
.al-header__cta { height: 44px; padding: 0 22px; font-size: 14.5px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55); }

/* ══════════════════════════ 1. Герой ══════════════════════════ */
.al-hero {
  position: relative; overflow: hidden; padding: 88px 28px 76px;
  background: radial-gradient(110% 80% at 74% -10%, #4A2686 0%, #26174E 32%, #120E22 66%, #07060C 100%);
}
.al-hero__row {
  position: relative; max-width: 1240px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 40px 72px;
}
.al-hero__copy { order: 1; flex: 1 1 380px; min-width: 290px; display: flex; flex-direction: column; gap: 24px; }
.al-hero__demo { order: 2; flex: 1 1 380px; min-width: 290px; display: flex; flex-direction: column; gap: 16px; }

.al-badge {
  align-self: flex-start; display: flex; align-items: center; gap: 10px;
  padding: 8px 15px; border-radius: 99px;
  border: 1px solid rgba(232,194,112,.4); background: rgba(232,194,112,.09);
}
.al-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500);
  box-shadow: 0 0 10px rgba(232,194,112,.9); }
.al-badge__t { font-size: 12px; font-weight: 800; letter-spacing: 1.6px; color: #F0D08E; }

.al-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.2vw, 56px); font-weight: 300;
  letter-spacing: -1.3px; line-height: 1.04; color: var(--text-hi);
}
.al-lede { max-width: 470px; font-size: clamp(16px, 1.4vw, 17.5px); line-height: 1.55; color: var(--text-muted); }

.al-facts { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14.5px; color: var(--text-soft); }
.al-facts > div { display: flex; align-items: center; gap: 8px; }
.al-tick { color: var(--gold-300); font-weight: 800; }

.al-cta-block { display: flex; flex-direction: column; gap: 12px; }
.al-cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.al-cta-row .al-btn { height: 58px; }
.al-cta-row .al-btn--gold { padding: 0 12px 0 24px; font-size: 16.5px; }
.al-cta-row .al-btn--ghost { padding: 0 22px; font-size: 15.5px; }
.al-micro { font-size: 13.5px; color: var(--text-dimmer); }

/* ── окно чата ── */
.al-chat {
  position: relative; border-radius: 28px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(160deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.04) 52%, rgba(232,194,112,.07) 100%);
  backdrop-filter: blur(30px) saturate(155%);
  -webkit-backdrop-filter: blur(30px) saturate(155%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 40px 90px rgba(0,0,0,.6);
}
.al-chat__head {
  display: flex; align-items: center; gap: 11px;
  padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.09);
}
.al-chat__who { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.al-chat__name { font-size: 15.5px; font-weight: 700; color: var(--text-title); }
.al-chat__sub  { font-size: 12.5px; color: var(--text-dim); }
.al-chat__on   { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--text-dim); }
.al-chat__on i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500);
  box-shadow: 0 0 10px rgba(232,194,112,.9); font-style: normal; }

.al-feed { padding: 18px; display: flex; flex-direction: column; gap: 11px; min-height: 252px; }
.al-msg-q {
  align-self: flex-end; max-width: 88%; padding: 13px 17px;
  border-radius: 18px 18px 5px 18px; border: 1px solid rgba(232,194,112,.3);
  background: linear-gradient(180deg, rgba(232,194,112,.2), rgba(232,194,112,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22);
  font-size: 15.5px; line-height: 1.46; color: var(--text-onGold);
}
.al-msg-a { display: flex; align-items: flex-start; gap: 9px; max-width: 95%; }
.al-msg-a__bubble {
  display: flex; flex-direction: column; gap: 11px; padding: 15px 18px;
  border-radius: 18px 18px 18px 5px; border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.065); box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.al-msg-a__bubble p { font-size: 15.5px; line-height: 1.56; color: var(--text-primary); }
.al-typing {
  align-self: flex-start; margin-left: 37px; display: flex; align-items: center; gap: 6px;
  padding: 13px 16px; border-radius: 18px 18px 18px 5px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05);
}
.al-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-500); animation: al-dots 1.2s infinite; }
.al-typing i:nth-child(2) { animation-delay: .18s; }
.al-typing i:nth-child(3) { animation-delay: .36s; }

/* смена примера */
.al-swap { transition: opacity .26s ease-out, transform .26s ease-out; }
.al-swap.is-out { opacity: 0; transform: translateY(6px); }

.al-composer {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-top: 1px solid rgba(255,255,255,.09); background: rgba(10,8,18,.35);
}
.al-fakeinput {
  flex: 1; min-width: 0; height: 48px; display: flex; align-items: center; gap: 2px;
  padding: 0 16px; border-radius: 99px; border: 1px solid rgba(255,255,255,.13);
  background: rgba(10,8,18,.45); font-size: 15.5px; color: var(--text-dimmer);
  overflow: hidden; white-space: nowrap;
}
.al-fakeinput i { flex: none; width: 1.5px; height: 19px; background: var(--gold-500); animation: al-caret 1.1s step-end infinite; }
.al-send {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-700));
  color: var(--gold-ink) !important; -webkit-text-fill-color: var(--gold-ink);
  font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.al-send:hover { background: linear-gradient(180deg,#FCE9BC,#E5BC6E); color: var(--gold-ink) !important; }

.al-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding-top: 2px; }
.al-chips__lbl { font-size: 13px; color: var(--text-dimmer); padding-right: 2px; }
.al-chip {
  padding: 10px 16px; border-radius: 99px; cursor: pointer; font-size: 13.5px; font-weight: 600;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.035); color: #BDB4CC;
  transition: border-color .16s ease-out, background .16s ease-out, color .16s ease-out;
}
.al-chip:hover { border-color: rgba(232,194,112,.5); color: var(--text-title); }
.al-chip[aria-pressed="true"] {
  border-color: rgba(232,194,112,.75); color: var(--gold-100); font-weight: 700;
  background: linear-gradient(180deg, rgba(232,194,112,.24), rgba(232,194,112,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3);
}

/* ══════════════════════════ 2. Полоса фактов ══════════════════════════ */
.al-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-section); }
.al-strip__in {
  max-width: 1240px; margin: 0 auto; padding: 18px 28px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 28px; font-size: 14px; color: var(--text-dimmer);
}

/* ══════════════════════════ 3. Два продукта ══════════════════════════ */
.al-how { position: relative; padding: 76px 28px; overflow: hidden; background: var(--bg-section); }
.al-how__row { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 48px; }

.al-deck { flex: 1 1 400px; min-width: 290px; position: relative; height: 430px;
  display: flex; align-items: center; justify-content: center; }
.al-deck__glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(123,79,212,.26), rgba(7,6,12,0) 68%);
  animation: al-glow 8s ease-in-out infinite;
}
.al-card {
  position: absolute; left: 50%; top: 50%;
  width: 272px; height: 204px; margin: -102px 0 0 -136px;
  border-radius: 18px; padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 12px; line-height: 1;
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.al-card__n { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 23px; color: var(--text-faint); }
.al-card__t { font-size: 15.5px; font-weight: 600; color: var(--text-dimmer); }
.al-card--1 { transform: translate(-16px,-104px) rotate(-3deg); z-index: 1; }
.al-card--2 { transform: translate(-8px,-52px) rotate(-1.5deg); z-index: 2;
  border-color: rgba(255,255,255,.11); background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.022)); }
.al-card--2 .al-card__n { color: var(--text-faint); } .al-card--2 .al-card__t { color: #AEA5BE; }
.al-card--3 { z-index: 3; border-color: rgba(255,255,255,.12);
  background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); box-shadow: 0 18px 44px rgba(0,0,0,.44); }
.al-card--3 .al-card__n { color: var(--text-dimmer); } .al-card--3 .al-card__t { color: #C4BBD2; }
.al-card--4 { transform: translate(8px,52px) rotate(1.5deg); z-index: 4; border-color: rgba(255,255,255,.13);
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03)); box-shadow: 0 20px 48px rgba(0,0,0,.46); }
.al-card--4 .al-card__n { color: var(--text-dim); } .al-card--4 .al-card__t { color: var(--text-soft); }
.al-card--front {
  width: 284px; height: 212px; margin: -106px 0 0 -142px; border-radius: 20px;
  padding: 18px 20px; flex-direction: column; gap: 13px; align-items: stretch;
  border: 1px solid rgba(232,194,112,.55);
  background: linear-gradient(160deg, rgba(232,194,112,.2) 0%, rgba(255,255,255,.05) 52%, rgba(232,194,112,.1) 100%);
  backdrop-filter: blur(28px) saturate(155%); -webkit-backdrop-filter: blur(28px) saturate(155%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 26px 62px rgba(0,0,0,.55);
  transform: translate(18px,108px) rotate(3deg); z-index: 5;
}
.al-card--front .al-card__head { display: flex; align-items: center; gap: 12px; }
.al-card--front .al-card__n { color: var(--gold-muted); }
.al-card--front .al-card__t { font-weight: 700; color: var(--gold-100); }
.al-card__list { display: flex; flex-direction: column; gap: 9px; }
.al-card__li { display: flex; gap: 9px; font-size: 14px; line-height: 1.4; color: #F0E6D2; }
.al-card__li b { flex: none; color: var(--gold-300); font-weight: 400; }

.al-how__copy { flex: 1 1 380px; min-width: 290px; display: flex; flex-direction: column; gap: 26px; }
.al-block { display: flex; flex-direction: column; gap: 10px; }
.al-kicker { font-size: 11.5px; font-weight: 800; letter-spacing: 2.2px; color: var(--text-dimmer); }
.al-kicker--gold { color: var(--gold-muted); }
.al-h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.4vw, 42px); font-weight: 300;
  letter-spacing: -.9px; line-height: 1.08; color: #F7F3FB;
}
.al-p { font-size: 16.5px; line-height: 1.58; color: var(--text-dim); max-width: 440px; }
.al-arrow-sep { display: flex; align-items: center; gap: 12px; }
.al-arrow-sep__line { width: 44px; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.1), rgba(243,215,154,.85)); }
.al-arrow-sep__a { font-size: 20px; color: var(--gold-300); }
.al-how__btn { align-self: flex-start; height: 56px; padding: 0 26px; font-size: 16px; gap: 10px; }

/* ══════════════════════════ 4. Стена вопросов ══════════════════════════ */
.al-wall {
  position: relative; padding: 76px 28px; overflow: hidden;
  background: radial-gradient(80% 70% at 50% 0%, #2A1A52 0%, #171128 40%, #07060C 100%);
}
.al-wall__in { position: relative; max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.al-wall__kicker { align-self: center; padding-bottom: 14px; }
.al-wall__row { display: flex; flex-wrap: wrap; gap: 12px; }
.al-wall__row--r { justify-content: flex-end; }
.al-q {
  flex: 0 1 auto; padding: 15px 20px;
  font-size: clamp(15.5px, 1.6vw, 18px); line-height: 1.48;
}
.al-q--l {
  border-radius: 20px 20px 20px 6px; border: 1px solid rgba(232,194,112,.28);
  background: linear-gradient(180deg, rgba(232,194,112,.16), rgba(232,194,112,.06));
  color: var(--text-onGold);
}
.al-q--r {
  border-radius: 20px 20px 6px 20px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); color: #DCD5E6;
}

/* ══════════════════════════ 5. Отзыв ══════════════════════════ */
.al-quote { position: relative; padding: 70px 28px; background: var(--bg-section); }
.al-quote__in { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.al-quote__mark { flex: none; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 96px; line-height: .62; color: rgba(232,194,112,.3); }
.al-quote__body { flex: 1 1 420px; min-width: 270px; display: flex; flex-direction: column; gap: 16px; }
.al-quote__t {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic;
  font-size: clamp(20px, 2.4vw, 29px); font-weight: 300; line-height: 1.34; color: var(--text-title);
}
.al-quote__by { font-size: 14px; color: var(--text-dimmer); }

/* ══════════════════════════ 6. Развилка и цена ══════════════════════════ */
.al-choose {
  position: relative; padding: 76px 28px 88px; overflow: hidden;
  background: radial-gradient(120% 90% at 50% 116%, #6B3CC4 0%, #38206E 18%, #1A1333 48%, #07060C 100%);
}
.al-choose__glow { left: 50%; bottom: -320px; width: 700px; height: 700px; margin-left: -350px; }
.al-choose__in { position: relative; max-width: 1060px; margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.al-choose__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.al-h2--big {
  font-size: clamp(30px, 4vw, 50px); letter-spacing: -1.1px; line-height: 1.06; color: var(--text-hi);
}
.al-choose__sub { font-size: 16px; color: #BDB4CC; }

.al-paths { display: flex; flex-wrap: wrap; gap: 14px; }
.al-path {
  flex: 1 1 300px; min-width: 250px; text-align: left; padding: 22px 24px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.04);
  cursor: pointer; display: flex; align-items: center; gap: 14px;
  transition: border-color .16s ease-out, background .16s ease-out, box-shadow .16s ease-out;
}
.al-path:hover { border-color: rgba(232,194,112,.5); background: rgba(255,255,255,.07); }
.al-path__radio { flex: none; width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255,255,255,.28); }
.al-path__txt { display: flex; flex-direction: column; gap: 5px; }
.al-path__k { font-size: 11.5px; font-weight: 800; letter-spacing: 1.6px; color: var(--text-dimmer); }
.al-path__t { font-size: clamp(18px, 2vw, 22px); font-weight: 700; letter-spacing: -.3px; color: #E8E1F1; }
.al-path[aria-checked="true"] {
  border-color: rgba(232,194,112,.75);
  background: linear-gradient(160deg, rgba(232,194,112,.2), rgba(255,255,255,.04));
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 18px 44px rgba(217,174,95,.16);
}
.al-path[aria-checked="true"] .al-path__radio {
  border-color: rgba(232,194,112,.9);
  background: radial-gradient(circle, var(--gold-300) 0 44%, rgba(0,0,0,0) 46%);
}
.al-path[aria-checked="true"] .al-path__k { color: var(--gold-muted); }
.al-path[aria-checked="true"] .al-path__t { color: var(--gold-100); }

.al-offer {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px 36px;
  padding: 30px 32px; border-radius: 24px; border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(160deg, rgba(255,255,255,.13) 0%, rgba(255,255,255,.045) 48%, rgba(232,194,112,.08) 100%);
  backdrop-filter: blur(34px) saturate(160%); -webkit-backdrop-filter: blur(34px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.36), inset 0 -1px 0 rgba(0,0,0,.3), 0 30px 74px rgba(0,0,0,.5);
}
.al-offer__l { flex: 1 1 320px; min-width: 270px; display: flex; flex-direction: column; gap: 12px; }
.al-offer__title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(24px, 2.8vw, 33px);
  font-weight: 300; letter-spacing: -.6px; line-height: 1.1; color: var(--text-hi);
}
.al-offer__bullets { display: flex; flex-direction: column; gap: 8px; }
.al-offer__b { display: flex; gap: 10px; font-size: 15.5px; line-height: 1.45; color: var(--text-body); }
.al-offer__r { flex: 1 1 250px; min-width: 230px; display: flex; flex-direction: column; gap: 12px; }
.al-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.al-price { font-size: clamp(34px, 4.2vw, 46px); font-weight: 800; letter-spacing: -1.3px; line-height: 1; color: var(--gold-100); }
.al-price__note { font-size: 15px; color: var(--gold-muted); }
.al-offer__cta { width: 100%; height: 62px; font-size: 17.5px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 16px 40px rgba(217,174,95,.34); }
.al-offer__micro { align-self: center; text-align: center; font-size: 13px; color: var(--text-dim); }

.al-terms {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 20px; font-size: 14.5px; color: var(--text-dimmer);
}
.al-terms__dot { color: var(--divider-dot); }

/* ══════════════════════════ 7. Футер ══════════════════════════ */
/* Свой футер лендинга заменён на общий футер сайта (.site-footer).
   Правила ниже оставлены только для совместимости, если блок вернут. */
.al-footer { padding: 28px 28px 40px; background: var(--bg-page); border-top: 1px solid var(--line); }
.al-footer__in {
  max-width: 1060px; margin: 0 auto; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 16px; font-size: 13.5px; color: var(--text-faint);
}
.al-footer__brand { display: flex; align-items: center; gap: 10px; }
.al-footer__links { display: flex; flex-wrap: wrap; gap: 20px; }
.al-footer__links a { color: var(--text-dimmer); }
.al-footer__links a:hover { color: var(--gold-300); }

/* ══════════════════════════ появление по скроллу ══════════════════════════ */
.al-reveal { opacity: 0; transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.al-reveal.is-in { opacity: 1; transform: none; }

/* ══════════════════════════ мобильные ══════════════════════════ */
@media (max-width: 1023px) {
  .al-hero { padding: 92px 20px 60px; }
  .al-how, .al-wall { padding: 60px 20px; }
  .al-choose { padding: 60px 20px 72px; }
  .al-quote { padding: 56px 20px; }
}

@media (max-width: 767px) {
  .al-header__in { padding: 10px 16px; }
  .al-header__link { display: none; }           /* по спеке: оставляем лого + кнопку */
  .al-header__cta { height: 42px; padding: 0 18px; font-size: 14px; }

  .al-hero { padding: 84px 16px 52px; }
  .al-hero__row { gap: 32px; }
  .al-hero__copy { gap: 18px; }
  .al-chat { backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%); }
  .al-feed { min-height: 0; padding: 15px; }
  /* На узком экране подпись «джйотиш · читает вашу карту…» переносилась
     на две строки и наезжала на статус. Оставляем только золотую точку. */
  .al-chat__head { padding: 14px 16px; }
  .al-chat__sub { font-size: 11.5px; }
  .al-chat__on span { display: none; }
  .al-fakeinput { font-size: 16px; }            /* меньше 16px — iOS зумит страницу */
  .al-cta-row .al-btn { flex: 1 1 100%; height: 56px; }
  .al-cta-row .al-btn--gold { justify-content: space-between; }

  /* звёзд меньше — иначе на слабом телефоне заметно проседает прокрутка */
  .al-stars { background-image:
    radial-gradient(1.6px 1.6px at  9% 14%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.3px 1.3px at 30%  7%, rgba(232,194,112,.75), transparent),
    radial-gradient(1.5px 1.5px at 55% 18%, rgba(255,255,255,.45), transparent),
    radial-gradient(1.4px 1.4px at 78%  9%, rgba(232,194,112,.6), transparent),
    radial-gradient(1.3px 1.3px at 12% 62%, rgba(255,255,255,.35), transparent),
    radial-gradient(1.5px 1.5px at 88% 44%, rgba(255,255,255,.4), transparent); }

  .al-strip__in { padding: 16px; gap: 10px 20px; justify-content: flex-start; }

  .al-how__row { gap: 28px; }
  /* Видно только верхнюю полосу каждой карточки (~46px). Значит подпись
     обязана помещаться в ОДНУ строку — иначе вторая уходит под соседнюю
     карточку и читается обрубком. Поэтому карточки шире, шрифт мельче. */
  .al-deck { height: 390px; order: -1; }
  .al-card { width: min(300px, 86vw); height: 180px; margin: -90px 0 0 0;
    left: 50%; transform-origin: center; padding: 12px 15px; }
  .al-card--1 { transform: translate(calc(-50% - 12px), -92px) rotate(-3deg); }
  .al-card--2 { transform: translate(calc(-50% - 6px), -46px) rotate(-1.5deg); }
  .al-card--3 { transform: translate(-50%, 0) rotate(0deg); }
  .al-card--4 { transform: translate(calc(-50% + 6px), 46px) rotate(1.5deg); }
  .al-card--front { width: min(312px, 90vw); height: 196px; margin: -98px 0 0 0;
    transform: translate(calc(-50% + 12px), 96px) rotate(3deg); padding: 14px 16px; gap: 9px; }
  .al-card__n { font-size: 20px; }
  .al-card__t { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .al-card--front .al-card__t { white-space: normal; }
  .al-card__li { font-size: 13px; }
  .al-how__btn { width: 100%; justify-content: center; }

  .al-q { max-width: 100% !important; }

  .al-quote__in { gap: 12px; }
  .al-quote__mark { font-size: 64px; }

  .al-offer { padding: 22px 20px; gap: 20px; }
  .al-offer__l, .al-offer__r { flex: 1 1 100%; min-width: 0; }
  .al-offer__cta { height: 58px; font-size: 16.5px; }
  .al-path { padding: 18px 18px; }

  .al-footer { padding: 22px 16px calc(22px + env(safe-area-inset-bottom, 0px)); }
  .al-footer__in { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .al-stars, .al-moonglow, .al-typing i, .al-fakeinput i { animation: none; }
  .al-reveal { transform: none; transition: opacity .3s linear; }
  .al-swap { transition: opacity .2s linear; }
  .al-swap.is-out { transform: none; }
}

/* Если стекло не поддерживается — те же градиенты на плотном фоне */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .al-header { background: rgba(9,8,15,.96); }
  .al-chat, .al-offer, .al-card--front, .al-path[aria-checked="true"] { background-color: rgba(28,22,42,.92); }
}

/* ══════════════════════════════════════════════════════════════════
   ТЕКСТОВЫЙ БЛОК + FAQ (05.08.2026)
   Лендинг был на 380 слов — для коммерческого запроса «ведический
   астролог» (917/мес) этого мало: поиск не понимал, о чём страница.
   Блок отвечает на реальные вопросы из Вордстата и держит те же
   токены, что и остальной лендинг — отдельной палитры не заводим.
   ══════════════════════════════════════════════════════════════════ */
.al-seo { padding: 4.5rem 1.25rem 5.5rem; background: var(--bg-section); position: relative; }
.al-seo__in { max-width: 780px; margin: 0 auto; }
.al-seo h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  line-height: 1.25; color: var(--text-hi); margin: 0 0 1.1rem;
}
.al-seo h2 + p { margin-top: 0; }
.al-seo p {
  font-size: 1.02rem; line-height: 1.75; color: var(--text-soft);
  margin: 0 0 1.05rem;
}
.al-seo p b, .al-seo p strong { color: var(--text-primary); font-weight: 600; }
/* Ссылка в ТЕКСТЕ: золото, подчёркивание проявляется на наведении.
   Обязательно «p a», а не просто «a»: иначе правило цепляет и кнопку-ссылку
   внизу блока — она получала лишнее подчёркивание (поймано 07.08.2026,
   ровно ловушка из js-rules §9 про специфичность). */
.al-seo p a {
  color: var(--gold-300); text-decoration: none;
  border-bottom: 1px solid rgba(243, 215, 154, .35);
  transition: border-color .2s ease, color .2s ease;
}
.al-seo p a:hover { color: var(--gold-200); border-bottom-color: var(--gold-300); }

.al-faq { margin-top: 3rem; }
.al-faq__h {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  color: var(--text-hi); margin: 0 0 1.4rem;
}
.al-faq__item {
  border-top: 1px solid rgba(123, 79, 212, .22);
  padding: 1.35rem 0;
}
.al-faq__item:last-child { border-bottom: 1px solid rgba(123, 79, 212, .22); }
.al-seo .al-faq__q {
  font-size: 1.08rem; font-weight: 600; line-height: 1.45;
  color: var(--text-title); margin: 0 0 .6rem;
}
.al-seo .al-faq__a { font-size: .99rem; line-height: 1.72; color: var(--text-muted); margin: 0; }
.al-seo .al-faq__a + .al-faq__a { margin-top: .7rem; }

@media (max-width: 640px) {
  .al-seo { padding: 3.2rem 1.1rem 4rem; }
  .al-seo p, .al-seo .al-faq__a { font-size: .97rem; }
  .al-seo .al-faq__q { font-size: 1.02rem; }
}
/* Кнопка внизу блока — по размерам ровно как в блоке цены выше,
   чтобы человек видел один и тот же элемент, а не уменьшенную копию. */
.al-seo__cta { margin-top: 2.6rem; display: flex; justify-content: center; }
.al-seo__cta .al-btn {
  width: 100%; max-width: 420px; height: 62px; font-size: 17.5px;
  padding: 0 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 16px 40px rgba(217,174,95,.34);
}
@media (max-width: 640px) {
  .al-seo__cta .al-btn { height: 58px; font-size: 16.5px; }
}
