/* ============================================================
   Dream Keeper — promo redesign
   "Шесть оптик" — nocturnal, grounded, premium. Mobile-first.
   ============================================================ */

:root {
  /* Ink / surfaces — deep nocturnal, faint blue undertone */
  --ink-900: #07080d;
  --ink-850: #0a0c12;
  --ink-800: #0f1119;
  --ink-750: #141823;
  --ink-700: #1b2030;

  --line:        rgba(255,255,255,0.07);
  --line-strong: rgba(255,255,255,0.14);

  --text:   #edeef3;
  --dim:    #969cab;
  --faint:  #646a79;

  /* The single warm light */
  --amber:        #ff8f00;
  --amber-bright: #ffab40;
  --amber-deep:   #e87e00;

  /* The triad — symbol / emotion / body (mirrors the app) */
  --symbol:  #ffb866;
  --emotion: #ff7aa2;
  --body:    #6fd1c4;

  --ok:     #58d38a;
  --danger: #ff6b6b;

  --radius:   18px;
  --radius-sm:12px;
  --radius-lg:26px;

  --maxw: 600px;

  --ff-serif: "Spectral", Georgia, "Times New Roman", serif;
  --ff-sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 0.68, 0.18, 1);
}

/* ---- Light theme (день) — резолвится head-скриптом promo.html (data-theme на <html>).
   Тёплая дневная гамма «Шести оптик» (ночь → день), янтарь и триада сохранены. ---- */
:root[data-theme="light"] {
  --ink-900: #F4F1EA;
  --ink-850: #EFEBE2;
  --ink-800: #FCFAF4;
  --ink-750: #F6F2E9;
  --ink-700: #EBE5DA;
  --line:        rgba(20,15,5,0.10);
  --line-strong: rgba(20,15,5,0.20);
  --text:   #211C16;
  --dim:    #5F584E;
  --faint:  #8B8377;
  --amber-bright: #e07d00;
}
:root[data-theme="light"] .brandbar { background: linear-gradient(180deg, rgba(244,241,234,0.92), rgba(244,241,234,0.5)); }
:root[data-theme="light"] .sticky-cta { background: linear-gradient(180deg, rgba(244,241,234,0), rgba(244,241,234,0.95) 38%); }

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

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

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Atmospheric backdrop — warm light bleeding into night, no stars/magic */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 70% at 50% -8%, rgba(255,143,0,0.12), transparent 55%),
    radial-gradient(90% 50% at 12% 18%, rgba(255,122,162,0.05), transparent 60%),
    radial-gradient(90% 60% at 92% 36%, rgba(111,209,196,0.05), transparent 60%),
    linear-gradient(180deg, var(--ink-850) 0%, var(--ink-900) 38%, var(--ink-900) 100%);
}
.atmosphere::after {
  /* faint film grain */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---- layout ------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}
section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 18px;
}
.eyebrow .triad { display: inline-flex; gap: 4px; }
.eyebrow .triad i {
  width: 6px; height: 6px; border-radius: 50%; display: block;
}
.triad i:nth-child(1){ background: var(--symbol); }
.triad i:nth-child(2){ background: var(--emotion); }
.triad i:nth-child(3){ background: var(--body); }

h2.title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(28px, 8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.lead {
  font-size: 16px;
  line-height: 1.62;
  color: var(--dim);
  margin: 0 0 26px;
  max-width: 46ch;
}
.lead strong { color: var(--text); font-weight: 600; }

/* reveal on scroll — only hidden when JS is active (progressive enhancement) */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---- brand / wordmark -------------------------------------- */
.brandbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,8,13,0.86), rgba(7,8,13,0.4));
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.brandbar.scrolled { border-bottom-color: var(--line); }
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px; letter-spacing: -0.01em;
}
.wordmark .mark {
  position: relative; width: 22px; height: 22px; flex: none;
}
.wordmark .mark i {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  filter: drop-shadow(0 0 5px currentColor);
}
.wordmark .mark i:nth-child(1){ top: 0; left: 7px; color: var(--symbol); background: currentColor; }
.wordmark .mark i:nth-child(2){ bottom: 0; left: 0; color: var(--emotion); background: currentColor; }
.wordmark .mark i:nth-child(3){ bottom: 0; right: 0; color: var(--body); background: currentColor; }
.brandbar .mini-cta {
  font-size: 13px; font-weight: 600; color: #2a1800;
  background: var(--amber); padding: 8px 15px; border-radius: 999px;
  white-space: nowrap;
}
/* v1.1 (theme): тоггл темы в шапке промо */
.brandbar-actions { display: inline-flex; align-items: center; gap: 10px; }
.promo-theme-toggle { width: 34px; height: 34px; flex: none; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent; color: var(--text); font-size: 15px; line-height: 1; display: grid; place-items: center; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.promo-theme-toggle:hover { border-color: var(--amber); }

/* ---- buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-sans); font-weight: 700; font-size: 15.5px;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer;
  text-align: center; line-height: 1;
  transition: transform 0.18s var(--ease), box-shadow 0.3s, background 0.2s;
}
.btn-primary {
  color: #2a1800;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  box-shadow: 0 8px 30px -8px rgba(255,143,0,0.6), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -10px rgba(255,143,0,0.7); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--amber); color: var(--amber-bright); }
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 46px 0 30px; text-align: center; }
.hero .wrap { display: flex; flex-direction: column; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--dim);
  padding: 7px 14px 7px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.03);
  margin-bottom: 30px;
}
.hero-tag b { color: var(--amber-bright); font-weight: 700; }

/* prism visual */
.prism { width: 100%; max-width: 360px; margin: 4px auto 30px; display: block; }

/* --- prism draw-on animation (plays once when hero reveals) --- */
.prism .p-beam,
.prism .p-ray {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.prism .p-ray { opacity: 0.9; }
.prism .p-ring { opacity: 0; transform: scale(0.3); transform-box: fill-box; transform-origin: center; }
.prism .p-core { opacity: 0; transform: scale(0); transform-box: fill-box; transform-origin: center; }
.prism .p-dot  { opacity: 0; transform: scale(0); transform-box: fill-box; transform-origin: center; }

html.js .prism.in .p-beam {
  animation: pDraw 0.55s var(--ease) 0.1s forwards;
}
html.js .prism.in .p-core {
  animation: pPop 0.5s var(--ease) 0.5s forwards;
}
html.js .prism.in .p-ring {
  animation: pRing 0.7s var(--ease) 0.55s forwards;
}
html.js .prism.in .p-ray {
  /* each ray fans out after the node lights up, staggered */
  animation: pDraw 0.55s var(--ease) forwards;
  animation-delay: calc(0.78s + var(--i) * 0.11s);
}
html.js .prism.in .p-dot {
  animation: pPop 0.45s var(--ease) forwards;
  /* dot appears just as its ray finishes drawing */
  animation-delay: calc(1.18s + var(--i) * 0.11s);
}

@keyframes pDraw { to { stroke-dashoffset: 0; } }
@keyframes pPop  { 0% { opacity: 0; transform: scale(0); } 70% { transform: scale(1.4); } 100% { opacity: 1; transform: scale(1); } }
@keyframes pRing { 0% { opacity: 0; transform: scale(0.3); } 60% { opacity: 1; } 100% { opacity: 1; transform: scale(1); } }

/* gentle perpetual shimmer on the core once it has appeared */
html.js .prism.in .p-core { animation: pPop 0.5s var(--ease) 0.5s forwards, pGlow 3.2s ease-in-out 1.6s infinite; }
@keyframes pGlow { 0%, 100% { filter: none; } 50% { filter: drop-shadow(0 0 6px #ffab40); } }

.hero h1 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(34px, 11vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber-bright);
}
.hero-sub {
  font-size: 16.5px; line-height: 1.62; color: var(--dim);
  max-width: 42ch; margin: 0 0 32px;
}
.hero-sub .hl { color: var(--text); font-weight: 600; }
.hero-actions {
  display: flex; flex-direction: column; gap: 12px; width: 100%; max-width: 340px;
}
.hero-note {
  margin: 18px 0 0; font-size: 12.5px; color: var(--faint);
  display: inline-flex; align-items: center; gap: 7px;
}

/* wordmark in hero (display) */
.hero-word {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-sans); font-weight: 800;
  font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 26px;
}

/* ============================================================
   SECTION SHELLS
   ============================================================ */
.band { padding: 64px 0; }
.band.center { text-align: center; }
.band.center .lead { margin-left: auto; margin-right: auto; }
.band.center .eyebrow { justify-content: center; }

/* statement — "не сонник, не оракул" */
.statement .title { font-size: clamp(30px, 9vw, 44px); }
.statement .title .x { color: var(--faint); }
.statement .title .y { color: var(--amber-bright); font-style: italic; }

/* ---- cards generic ----------------------------------------- */
.card {
  background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

/* ---- steps -------------------------------------------------- */
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-family: var(--ff-serif); font-size: 19px; font-weight: 600;
  color: var(--amber-bright);
  background: rgba(255,143,0,0.10);
  border: 1px solid rgba(255,143,0,0.22);
}
.step h3 { margin: 6px 0 6px; font-size: 17px; font-weight: 700; }
.step p { margin: 0; font-size: 14.5px; color: var(--dim); line-height: 1.55; }
.step-line { width: 1px; flex: none; }

/* ============================================================
   SIX OPTICS — interactive lens switcher
   ============================================================ */
.optics-dream {
  margin: 0 0 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  font-family: var(--ff-serif);
  font-size: 16.5px; line-height: 1.6; color: #dcdee6;
  font-style: italic;
}
.optics-dream .label {
  display: block; font-family: var(--ff-sans); font-style: normal;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 8px; font-weight: 600;
}

.lens-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 16px;
}
.lens-tab {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 13px 6px 11px; border-radius: 14px; cursor: pointer;
  background: var(--ink-800); border: 1px solid var(--line);
  color: var(--text); font-family: var(--ff-sans);
  transition: border-color 0.2s, background 0.2s, transform 0.12s;
  text-align: center;
}
.lens-tab:active { transform: scale(0.97); }
.lens-tab .ic {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  font-size: 20px; background: rgba(255,255,255,0.04);
  transition: background 0.2s, box-shadow 0.2s;
}
.lens-tab .nm { font-size: 11.5px; font-weight: 600; color: var(--dim); line-height: 1.2; }
.lens-tab.active { background: var(--ink-750); border-color: var(--lens, var(--amber)); }
.lens-tab.active .ic { background: color-mix(in srgb, var(--lens) 22%, transparent); box-shadow: 0 0 0 1px color-mix(in srgb, var(--lens) 40%, transparent); }
.lens-tab.active .nm { color: var(--text); }

.lens-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
  padding: 22px;
  border-top: 3px solid var(--lens, var(--amber));
  min-height: 200px;
}
.lens-panel .pname {
  font-family: var(--ff-serif); font-size: 22px; font-weight: 600;
  margin: 0 0 4px; color: var(--text);
}
.lens-panel .prole {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--lens, var(--amber)); margin: 0 0 16px;
}
.lens-row { margin-top: 14px; }
.lens-row .k {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint); font-weight: 700; margin: 0 0 5px;
}
.lens-row .v { font-size: 14.5px; line-height: 1.55; color: var(--dim); margin: 0; }
.lens-row .v b { color: var(--text); font-weight: 600; }
.lens-fade { animation: lensIn 0.4s var(--ease); }
@keyframes lensIn { from { transform: translateY(8px); } to { transform: none; } }

/* ============================================================
   TRIAD — three colours, three levels (interactive highlighter)
   ============================================================ */
.triad-dream {
  font-family: var(--ff-serif); font-size: 18px; line-height: 1.75;
  margin: 0 0 22px; color: #d4d6df;
  padding: 22px; border-radius: var(--radius);
  background: rgba(255,255,255,0.025); border: 1px solid var(--line);
}
mark.hl {
  background: transparent; color: inherit; padding: 1px 4px; border-radius: 5px;
  font-weight: 600; transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
mark.s.on { color: var(--symbol);  background: color-mix(in srgb, var(--symbol) 16%, transparent); }
mark.e.on { color: var(--emotion); background: color-mix(in srgb, var(--emotion) 16%, transparent); }
mark.b.on { color: var(--body);    background: color-mix(in srgb, var(--body) 16%, transparent); }

.triad-toggles { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.tg {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 13px 14px; border-radius: 14px;
  background: var(--ink-800); border: 1px solid var(--line);
  color: var(--text); font-family: var(--ff-sans);
  transition: border-color 0.2s, background 0.2s;
}
.tg .dot { width: 12px; height: 12px; border-radius: 50%; flex: none; transition: box-shadow 0.2s; }
.tg .tx { display: flex; flex-direction: column; line-height: 1.15; }
.tg .tx b { font-size: 13.5px; font-weight: 700; }
.tg .tx span { font-size: 11px; color: var(--faint); }
.tg.s .dot { background: var(--symbol); }
.tg.e .dot { background: var(--emotion); }
.tg.b .dot { background: var(--body); }
.tg.on.s { border-color: color-mix(in srgb, var(--symbol) 50%, transparent); }
.tg.on.e { border-color: color-mix(in srgb, var(--emotion) 50%, transparent); }
.tg.on.b { border-color: color-mix(in srgb, var(--body) 50%, transparent); }
.tg.on .dot { box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 12%, transparent); }
.tg.on.s .dot { box-shadow: 0 0 12px var(--symbol); }
.tg.on.e .dot { box-shadow: 0 0 12px var(--emotion); }
.tg.on.b .dot { box-shadow: 0 0 12px var(--body); }

/* ============================================================
   VOICE
   ============================================================ */
.voice { text-align: center; }
.voice .lead { margin-left: auto; margin-right: auto; }
.wave {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  height: 56px; margin: 4px auto 26px;
}
.wave i {
  width: 4px; border-radius: 999px; background: linear-gradient(180deg, var(--amber-bright), var(--amber-deep));
  animation: wv 1.3s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes wv { 0%,100%{ height: 8px; } 50%{ height: 44px; } }
.voice-lock {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--body);
  padding: 9px 16px; border-radius: 999px;
  background: color-mix(in srgb, var(--body) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--body) 26%, transparent);
}

/* ============================================================
   TIMELINE (streaming)
   ============================================================ */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.tl-track {
  position: absolute; left: 31px; top: 18px; bottom: 18px; width: 2px;
  background: var(--line);
}
.tl-fill {
  position: absolute; left: 31px; top: 18px; width: 2px; height: 0;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  box-shadow: 0 0 10px rgba(255,143,0,0.5);
  transition: height 0.6s linear;
}
.tl-step {
  display: flex; gap: 16px; align-items: flex-start; padding: 12px 0;
  position: relative; z-index: 1;
  opacity: 0.4; transition: opacity 0.4s;
}
.tl-step.on { opacity: 1; }
.tl-dot {
  flex: none; width: 14px; height: 14px; border-radius: 50%; margin: 4px 0 0 25px;
  background: var(--ink-700); border: 2px solid var(--line-strong);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.tl-step.on .tl-dot {
  background: var(--amber); border-color: var(--amber-bright);
  box-shadow: 0 0 0 5px rgba(255,143,0,0.14);
}
.tl-time {
  font-variant-numeric: tabular-nums; font-weight: 700; font-size: 13px;
  color: var(--amber-bright); min-width: 44px; padding-top: 2px;
}
.tl-body { font-size: 14.5px; color: var(--text); padding-top: 1px; }

/* ============================================================
   FEATURE BLOCKS (memory, more)
   ============================================================ */
.blocks { display: flex; flex-direction: column; gap: 14px; }
.fblock .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  font-size: 23px; margin-bottom: 14px;
  background: rgba(255,143,0,0.08); border: 1px solid rgba(255,143,0,0.18);
}
.fblock h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.fblock p { margin: 0; font-size: 14.5px; color: var(--dim); line-height: 1.55; }

/* ============================================================
   CHAT DEMO
   ============================================================ */
.chat { display: flex; flex-direction: column; gap: 10px; }
.bubble {
  max-width: 84%; padding: 12px 16px; border-radius: 18px;
  font-size: 14.5px; line-height: 1.5;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.bubble.show { opacity: 1; transform: none; }
.bubble.you {
  align-self: flex-end; color: #2a1800;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  border-bottom-right-radius: 5px;
}
.bubble.bot {
  align-self: flex-start; color: var(--text);
  background: var(--ink-750); border: 1px solid var(--line);
  border-bottom-left-radius: 5px;
}
.bubble .typing { display: inline-flex; gap: 4px; }
.bubble .typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); animation: dot 1.2s infinite; }
.bubble .typing i:nth-child(2){ animation-delay: 0.2s; }
.bubble .typing i:nth-child(3){ animation-delay: 0.4s; }
@keyframes dot { 0%,60%,100%{ opacity: 0.25; transform: translateY(0); } 30%{ opacity: 1; transform: translateY(-3px); } }

/* ============================================================
   PRIVACY LIST
   ============================================================ */
.plist { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.plist li {
  display: flex; gap: 13px; align-items: flex-start;
  font-size: 14.5px; color: var(--dim); line-height: 1.55;
}
.plist li .chk {
  flex: none; width: 22px; height: 22px; border-radius: 7px; margin-top: 1px;
  display: grid; place-items: center; font-size: 12px; color: var(--body);
  background: color-mix(in srgb, var(--body) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--body) 28%, transparent);
}
.plist li b { color: var(--text); font-weight: 600; }
code.kbd {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12.5px;
  padding: 1px 7px; border-radius: 6px; color: var(--amber-bright);
  background: rgba(255,143,0,0.08); border: 1px solid rgba(255,143,0,0.2);
}

/* ============================================================
   CRISIS / CARE
   ============================================================ */
.care {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,143,0,0.06), transparent 60%),
    var(--ink-850);
  padding: 34px 24px;
  text-align: center;
}
.care-icon {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 26px;
  background: rgba(255,143,0,0.1); border: 1px solid rgba(255,143,0,0.22);
}
.crisis-levels { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 18px; text-align: left; }
.cl {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border-radius: 14px;
  background: var(--ink-800); border: 1px solid var(--line);
}
.cl .tag {
  flex: none; font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
  padding: 4px 11px; border-radius: 999px; margin-top: 1px; white-space: nowrap;
}
.cl.none .tag   { background: color-mix(in srgb, var(--body) 20%, transparent); color: var(--body); }
.cl.mild .tag   { background: color-mix(in srgb, var(--symbol) 22%, transparent); color: var(--symbol); }
.cl.severe .tag { background: color-mix(in srgb, var(--danger) 22%, transparent); color: var(--danger); }
.cl p { margin: 0; font-size: 13.5px; color: var(--dim); line-height: 1.45; }
.hotlines { font-size: 12.5px; color: var(--faint); line-height: 1.9; margin: 6px 0 0; }
.hotlines a { color: var(--amber-bright); }

/* ============================================================
   PRICING
   ============================================================ */
.free-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,143,0,0.22);
  background:
    radial-gradient(130% 90% at 50% 0%, rgba(255,143,0,0.08), transparent 55%),
    var(--ink-850);
  padding: 28px 24px;
}
.free-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber-bright);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,143,0,0.1); border: 1px solid rgba(255,143,0,0.25);
  margin-bottom: 18px;
}
.bonus {
  display: flex; gap: 12px; align-items: center;
  margin: 0 0 20px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,143,0,0.08); border: 1px dashed rgba(255,143,0,0.4);
  font-size: 14px; line-height: 1.45;
}
.bonus b { color: var(--amber-bright); }
.bonus .gift { font-size: 22px; flex: none; }
.flist { display: flex; flex-direction: column; gap: 11px; margin: 0; padding: 0; list-style: none; }
.flist li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--dim); line-height: 1.5; }
.flist li .d { flex: none; width: 7px; height: 7px; border-radius: 50%; margin-top: 8px; background: var(--amber); }
.flist li b { color: var(--text); font-weight: 600; }

.price-grid { display: flex; flex-direction: column; gap: 12px; }
.price {
  padding: 20px; border-radius: var(--radius);
  background: var(--ink-800); border: 1px solid var(--line);
}
.price .pt {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--text); margin-bottom: 12px;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
}
.price p { margin: 0; font-size: 14px; color: var(--dim); line-height: 1.6; }
.price p .star { color: var(--amber-bright); font-weight: 700; white-space: nowrap; }
.price.sub {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,143,0,0.07), transparent 60%),
    var(--ink-800);
  border-color: rgba(255,143,0,0.25);
}
.price.sub .pt { background: var(--amber); color: #2a1800; border-color: transparent; }
.save { color: var(--ok); font-weight: 700; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details {
  border-radius: 14px; background: var(--ink-800); border: 1px solid var(--line);
  overflow: hidden; transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: 17px 20px;
  font-size: 15px; font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm {
  flex: none; width: 22px; height: 22px; position: relative; opacity: 0.6;
}
.faq summary .pm::before, .faq summary .pm::after {
  content: ""; position: absolute; background: var(--amber-bright); border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.faq summary .pm::before { top: 10px; left: 4px; width: 14px; height: 2px; }
.faq summary .pm::after  { top: 4px; left: 10px; width: 2px; height: 14px; }
.faq details[open] summary .pm::after { transform: rotate(90deg); }
.faq details p { margin: 0; padding: 0 20px 19px; font-size: 14px; color: var(--dim); line-height: 1.6; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  text-align: center; padding: 70px 0 50px;
  position: relative;
}
.final h2 {
  font-family: var(--ff-serif); font-weight: 500;
  font-size: clamp(30px, 9vw, 42px); line-height: 1.12;
  margin: 0 0 28px; letter-spacing: -0.01em;
}
.final .hero-actions { margin: 0 auto; }

/* footer */
.footer {
  text-align: center; padding: 28px 22px calc(env(safe-area-inset-bottom,0) + 110px);
  font-size: 12.5px; color: var(--faint);
}
.footer .fmark {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px;
  font-weight: 700; color: var(--dim); letter-spacing: 0.02em;
}
.footer .links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.footer .links a { color: var(--faint); }
.footer .links a:hover { color: var(--amber-bright); }

/* ---- sticky mobile CTA ------------------------------------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  padding: 12px 16px calc(env(safe-area-inset-bottom,0) + 12px);
  background: linear-gradient(180deg, rgba(7,8,13,0), rgba(7,8,13,0.92) 38%);
  transform: translateY(120%); transition: transform 0.4s var(--ease);
  pointer-events: none;
}
.sticky-cta.show { transform: none; pointer-events: auto; }
.sticky-cta .inner { max-width: var(--maxw); margin: 0 auto; }

/* ---- divider rule (triad dots) ----------------------------- */
.rule {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 8px 0;
}
.rule i { width: 5px; height: 5px; border-radius: 50%; }
.rule i:nth-child(1){ background: var(--symbol); }
.rule i:nth-child(2){ background: var(--emotion); }
.rule i:nth-child(3){ background: var(--body); }

/* ============================================================
   TESTIMONIALS — social proof (only real, owner-approved; server-fed)
   Rendered by the {% if testimonials %} block in promo.html.
   ============================================================ */
.quotes { display: flex; flex-direction: column; gap: 14px; }
.quote {
  margin: 0; padding: 20px 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line); border-left: 3px solid var(--amber);
}
.quote blockquote {
  margin: 0 0 12px; padding: 0; border: 0;
  font-family: var(--ff-serif); font-style: italic;
  font-size: 16.5px; line-height: 1.62; color: #d4d6df;
}
.quote figcaption {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--faint);
}
.quote figcaption::before {
  content: ""; width: 16px; height: 1px; background: var(--amber); flex: none;
}

/* ============================================================
   RESPONSIVE — tablet / desktop comfort (still single column-ish)
   ============================================================ */
@media (min-width: 620px) {
  :root { --maxw: 660px; }
  .hero-actions { flex-direction: row; justify-content: center; }
  .hero-actions .btn { flex: 1; }
  .blocks { flex-direction: row; }
  .blocks .fblock { flex: 1; }
  .price-grid.two { flex-direction: row; }
  .price-grid.two .price { flex: 1; }
  .quotes { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .wave i { animation: none; height: 22px; }
  .prism .p-beam, .prism .p-ray { stroke-dashoffset: 0 !important; }
  .prism .p-ring, .prism .p-core, .prism .p-dot { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after { animation-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
}
