/* ── TruTalk · page.css — shared layouts for subpages (rituals, audiences, science, about, faq, blog).
   Loads after base.css; near-static: no backdrop-filter, no infinite animation. ── */

/* ═══ HERO ═══════════════════════════════════════════════ */
.pg-hero { padding: 152px 0 clamp(52px, 7vw, 84px); position: relative; }
@media (max-width: 900px) { .pg-hero { padding-top: 122px; } }
.crumbs { display: flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--faint); margin: 0 0 28px; }
.crumbs a { color: var(--softer); transition: color 160ms; }
.crumbs a:hover { color: var(--amber); }
.crumbs .sep { color: var(--faint); opacity: 0.7; }
.pg-eb { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px; font-weight: 500; color: var(--softer); margin: 0; }
.pg-eb::before { content: ""; width: 5px; height: 5px; background: var(--amber); transform: rotate(45deg); flex-shrink: 0; }
.pg-eb.purple::before { background: var(--purple-glow); }
.pg-h { font-weight: 600; font-size: clamp(38px, 5.8vw, 80px); line-height: 0.99; letter-spacing: -0.042em; margin: 24px 0 0; text-wrap: balance; max-width: 1000px; }
.pg-hero .lede { margin-top: 26px; max-width: 640px; }
.pg-hero .hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.updated { font-size: 12px; color: var(--softer); letter-spacing: 0.02em; margin: 26px 0 0; }

/* ═══ HERO PLAYFUL PROMPT CARDS (audience heroes) ════════ */
.pg-hero .shell { position: relative; }
/* right offset centers the card cluster over the feat-grid right column (the phone mockup below):
   64px shell pad + half the right column ((padding-box − 128px pads − grid gap)/2.15/2) − half the ~346px cluster */
.hero-play { position: absolute; right: calc((100% - 128px - clamp(48px, 6vw, 96px)) / 4.3 + 64px - 173px); top: 150px; width: 344px; height: 392px; z-index: 1; pointer-events: none; }
@media (min-width: 1181px) {
  .pg-hero:has(.hero-play) .pg-h { max-width: 600px; }
  .pg-hero:has(.hero-play) .lede { max-width: 540px; }
}
.hp-card { position: absolute; width: 252px; padding: 18px 20px 16px; border-radius: 18px; rotate: var(--r, 0deg);
  background: linear-gradient(168deg, #241D14 0%, #17120C 100%); border: 1px solid rgba(252,166,49,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 62px -24px rgba(0,0,0,0.72), 0 0 44px -14px rgba(252,166,49,0.18); }
.hp-card.pp { background: linear-gradient(168deg, #221C2C 0%, #141018 100%); border-color: rgba(157,122,255,0.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 62px -24px rgba(0,0,0,0.72), 0 0 44px -14px rgba(123,72,255,0.28); }
.hp-card::before { content: ""; position: absolute; top: -1px; left: 16px; right: 16px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, transparent, var(--amber) 30% 70%, transparent); opacity: 0.85; }
.hp-card.pp::before { background: linear-gradient(90deg, transparent, var(--purple-glow) 30% 70%, transparent); }
.hp-mode { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--amber); display: flex; align-items: center; gap: 8px; }
.hp-card.pp .hp-mode { color: var(--purple-glow); }
.hp-mode::before { content: ""; width: 4px; height: 4px; background: currentColor; transform: rotate(45deg); box-shadow: 0 0 8px currentColor; flex-shrink: 0; }
.hp-card p { margin: 10px 0 0; font-size: 14.5px; font-weight: 500; font-style: italic; line-height: 1.4; letter-spacing: -0.015em; color: var(--ivory); text-wrap: pretty; }
@media (prefers-reduced-motion: no-preference) { .hp-card { animation: hpFloat 7s ease-in-out infinite; animation-delay: var(--d, 0ms); } }
@keyframes hpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@media (max-width: 1180px) { .hero-play { display: none; } }

/* ═══ SECTIONS ═══════════════════════════════════════════ */
.pg-section { padding: clamp(64px, 8vw, 116px) 0; position: relative; }
.pg-section .section-head { margin-bottom: clamp(36px, 4.5vw, 60px); }
.pg-h2 { font-weight: 600; font-size: clamp(28px, 4vw, 52px); line-height: 1.02; letter-spacing: -0.036em; margin: 18px 0 0; text-wrap: balance; }
.pg-h2 .dim { color: var(--softer); }
.pg-section .section-head .lede { margin-top: 20px; }
.cv { content-visibility: auto; contain-intrinsic-size: auto 700px; }

/* ═══ TWO-COL FEATURE (copy + phone shot) ════════════════ */
.feat-grid { display: grid; grid-template-columns: 1fr; gap: 52px; align-items: center; }
@media (min-width: 980px) { .feat-grid { grid-template-columns: 1.15fr 1fr; gap: clamp(48px, 6vw, 96px); } }
.feat-copy .lede { margin-top: 22px; }
.feat-points { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 14px; }
.feat-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: var(--soft); }
.feat-points li .diamond { margin-top: 8px; }
.feat-points li b { color: var(--ivory); font-weight: 600; }
.feat-media { position: relative; display: flex; justify-content: center; padding: 24px 0 32px; }
.pg-glow { position: absolute; left: 50%; bottom: -2%; top: auto; transform: translateX(-50%); width: min(430px, 84vw); height: min(460px, 60vh); border-radius: 50%; z-index: 0; filter: blur(6px); pointer-events: none;
  background: radial-gradient(ellipse 58% 56% at 50% 62%, rgba(123,72,255,0.22), rgba(123,72,255,0.06) 46%, transparent 72%); }

/* ═══ PHONE SHOTS (static row) ═══════════════════════════ */
.shots-row { display: flex; gap: clamp(20px, 3vw, 34px); justify-content: center; flex-wrap: wrap; }
.shot-card { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.feat-media .shot-card { position: relative; z-index: 1; }
.shot-frame2 { width: min(300px, 80vw); aspect-ratio: 375 / 740; background: #0C0B0A; border-radius: 40px; border: 1px solid var(--line-2); padding: 8px; overflow: hidden; rotate: -3deg;
  box-shadow: 0 42px 92px -30px rgba(0,0,0,0.92), 0 0 64px -20px rgba(123,72,255,0.22);
  transition: rotate 520ms var(--ease), scale 520ms var(--ease), box-shadow 520ms var(--ease); }
@media (prefers-reduced-motion: no-preference) { .shot-frame2 { animation: featFloat 7s ease-in-out infinite; } }
@keyframes featFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.shot-card:hover .shot-frame2 { rotate: 0deg; scale: 1.04; box-shadow: 0 52px 112px -30px rgba(0,0,0,0.94), 0 0 84px -18px rgba(123,72,255,0.32); }
.shot-card.premium .shot-frame2 { border-color: rgba(157,122,255,0.3); }
.shot-frame2 img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; background: #0C0B0A; }
.shot-cap { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: -0.01em; }

/* ═══ DECK CARDS ═════════════════════════════════════════ */
.deck-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .deck-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1080px) { .deck-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.deck-card {
  border-radius: 22px; padding: 26px 26px 22px;
  background: linear-gradient(165deg, rgba(250,246,241,0.06), rgba(250,246,241,0.015));
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 13px;
  position: relative; transition: border-color 250ms;
}
.deck-card:hover { border-color: rgba(252,166,49,0.4); }
.deck-card.premium { border-color: rgba(123,72,255,0.28); }
.deck-card.premium:hover { border-color: rgba(157,122,255,0.5); }
.dk-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dk-title { display: flex; align-items: center; gap: 12px; min-width: 0; }
.dk-icon { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--amber); flex-shrink: 0; }
.deck-card.premium .dk-icon { color: var(--purple-glow); }
.dk-name { font-size: 20px; font-weight: 600; letter-spacing: -0.024em; margin: 0; line-height: 1.1; }
.dk-one { font-size: 13.5px; line-height: 1.55; color: var(--soft); margin: 0; }
.dk-sample { margin: 4px 0 0; padding: 15px 17px; border-radius: 14px; background: rgba(5,4,4,0.5); border: 1px solid var(--line); }
.dk-sample p { margin: 0; font-size: 15px; font-style: italic; font-weight: 500; line-height: 1.42; letter-spacing: -0.015em; color: var(--ivory); }
.dk-sample .dks-label { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 8px; }
.deck-card.premium .dk-sample .dks-label { color: var(--purple-glow); }
.dk-ctx { margin-top: auto; padding-top: 13px; border-top: 1px dashed rgba(250,246,241,0.14); font-size: 11.5px; color: var(--softer); display: flex; align-items: center; gap: 8px; }
.dk-ctx .diamond { width: 4px; height: 4px; }

/* ═══ QUESTION LIST (extractable) ════════════════════════ */
.q-list { list-style: none; margin: 0; padding: 0; max-width: 880px; counter-reset: ql; }
.q-list li { display: grid; grid-template-columns: clamp(44px, 5vw, 64px) 1fr; gap: clamp(16px, 2.4vw, 28px); align-items: baseline; padding: clamp(20px, 2.6vw, 28px) 0; border-top: 1px solid var(--line); }
.q-list li:last-child { border-bottom: 1px solid var(--line); }
.q-num { font-weight: 600; font-size: clamp(22px, 2.4vw, 32px); line-height: 1; letter-spacing: -0.03em; color: transparent; -webkit-text-stroke: 1px rgba(252,166,49,0.5); font-variant-numeric: tabular-nums; }
.q-text { font-size: clamp(18px, 2vw, 24px); font-weight: 500; letter-spacing: -0.022em; line-height: 1.35; color: var(--ivory); margin: 0; text-wrap: pretty; }
.q-mode { display: block; margin-top: 8px; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--softer); }
.q-mode.amber { color: var(--amber); }
.q-mode.purple { color: var(--purple-glow); }

/* ═══ PRINCIPLES (science) ═══════════════════════════════ */
.principles-col { display: flex; flex-direction: column; gap: 20px; max-width: 880px; }
.principle { border-radius: 22px; padding: clamp(26px, 3.4vw, 40px); background: linear-gradient(165deg, rgba(250,246,241,0.055), rgba(250,246,241,0.015)); border: 1px solid var(--line-2); position: relative; }
.principle::before { content: ""; position: absolute; top: -1px; left: 32px; width: 42px; height: 2px; background: var(--amber); border-radius: 0 0 2px 2px; }
.prn { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--amber); font-variant-numeric: tabular-nums; margin: 0 0 12px; text-transform: uppercase; }
.principle h2, .principle h3 { margin: 0 0 14px; font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; letter-spacing: -0.026em; line-height: 1.12; color: var(--ivory); }
.pr-body { margin: 0; font-size: 15.5px; line-height: 1.68; color: var(--soft); letter-spacing: -0.005em; max-width: 720px; }
.pr-def { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: var(--ivory); letter-spacing: -0.008em; max-width: 720px; }
.pr-def b { font-weight: 600; }
.pr-cites { margin-top: 20px; display: flex; gap: 6px; flex-wrap: wrap; padding-top: 18px; border-top: 1px dashed rgba(250,246,241,0.14); }
.pr-cites a { font-size: 11px; padding: 5px 11px; border-radius: 999px; background: rgba(250,246,241,0.04); border: 1px solid var(--line); color: var(--soft); text-decoration: none; transition: color 160ms, border-color 160ms, background 160ms; }
.pr-cites a:hover { color: var(--amber); border-color: rgba(252,166,49,0.4); background: rgba(252,166,49,0.06); }
.credit-band { margin-top: 26px; max-width: 880px; padding: 18px 22px; background: rgba(123,72,255,0.07); border: 1px solid rgba(123,72,255,0.24); border-radius: 14px; color: var(--ivory); font-size: 14px; line-height: 1.55; }
.credit-band b { color: var(--purple-glow); font-weight: 600; }
.stat-chip { display: inline-flex; align-items: center; gap: 14px; margin-top: 34px; padding: 14px 22px; background: rgba(252,166,49,0.08); border: 1px solid rgba(252,166,49,0.28); border-radius: 14px; }
.stat-chip .n { font-size: 32px; font-weight: 600; letter-spacing: -0.03em; line-height: 1; background: linear-gradient(180deg, var(--amber-warm), var(--amber)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-chip .l { font-size: 13px; color: var(--soft); line-height: 1.4; text-align: left; }

/* ═══ FAQ ════════════════════════════════════════════════ */
.faq-list { border-top: 1px solid var(--line-2); max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q { list-style: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 19px; font-weight: 500; letter-spacing: -0.018em; color: var(--ivory); line-height: 1.3; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--amber-warm); }
.faq-toggle { font-size: 26px; color: var(--amber); width: 30px; text-align: center; font-weight: 300; flex-shrink: 0; transition: transform 240ms var(--ease); }
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
.faq-a { padding: 0 0 24px; margin: 0; max-width: 680px; font-size: 15.5px; color: var(--soft); line-height: 1.65; }
@media (max-width: 600px) { .faq-q { font-size: 17px; padding: 20px 0; } .faq-a { font-size: 15px; } }
.more-help { margin-top: 52px; padding: 24px 28px; background: linear-gradient(165deg, rgba(250,246,241,0.05), rgba(250,246,241,0.015)); border: 1px solid var(--line-2); border-radius: 18px; max-width: 820px; }
.more-help h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; letter-spacing: -0.015em; }
.more-help p { margin: 0; font-size: 14.5px; color: var(--soft); line-height: 1.6; }

/* ═══ GLOSSARY (faq) ═════════════════════════════════════ */
.gloss-block { margin-top: clamp(40px, 5vw, 64px); }
.gloss-block:first-of-type { margin-top: 0; }
.gloss-cat { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--softer); margin: 0 0 8px; padding-bottom: 16px; border-bottom: 1px solid var(--line-2); }
.gloss-grid { display: grid; grid-template-columns: 1fr; margin: 0; column-gap: clamp(32px, 4vw, 56px); }
@media (min-width: 780px) { .gloss-grid { grid-template-columns: 1fr 1fr; } }
.gloss-term { padding: 18px 0; border-bottom: 1px solid var(--line); }
.gloss-term dt { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; color: var(--ivory); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.gloss-term dd { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--soft); max-width: 48ch; text-wrap: pretty; }

/* ═══ TEAM (about) ═══════════════════════════════════════ */
.manifesto-grid { display: grid; grid-template-columns: 1fr; gap: 48px; max-width: 1060px; }
@media (min-width: 900px) { .manifesto-grid { grid-template-columns: 0.75fr 1fr; gap: clamp(48px, 6vw, 84px); align-items: start; } }
.manifesto-pull { font-size: clamp(25px, 3.2vw, 38px); font-weight: 500; line-height: 1.2; letter-spacing: -0.026em; font-style: italic; color: var(--ivory); margin: 22px 0 0; text-wrap: balance; }
.manifesto-pull .hi { font-style: italic; }
.manifesto-body p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.68; color: var(--soft); }
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-body p b { color: var(--ivory); font-weight: 600; }
.team-grid { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 920px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
.team-card { border-radius: 26px; border: 1px solid var(--line-2); background: linear-gradient(165deg, rgba(250,246,241,0.05), rgba(250,246,241,0.01)); padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; gap: 20px; position: relative; overflow: hidden; }
.team-card::before { content: ""; position: absolute; top: -1px; left: 32px; width: 42px; height: 2px; background: var(--amber); border-radius: 0 0 2px 2px; }
.team-card.purple::before { background: var(--purple-glow); }
.team-portrait { width: 100%; aspect-ratio: 4 / 4.4; background: #141210; border-radius: 18px; overflow: hidden; }
.team-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-role { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber); font-weight: 600; }
.team-card.purple .team-role { color: var(--purple-glow); }
.team-name { font-size: 27px; font-weight: 600; letter-spacing: -0.028em; line-height: 1.1; margin: -12px 0 0; }
.team-quote { margin: 0; padding: 16px 20px; background: rgba(5,4,4,0.45); border-left: 2px solid var(--amber); border-radius: 0 12px 12px 0; font-size: 15px; line-height: 1.55; font-style: italic; color: var(--ivory); letter-spacing: -0.012em; }
.team-card.purple .team-quote { border-left-color: var(--purple-glow); }
.team-bio p { margin: 0 0 13px; font-size: 15px; line-height: 1.62; color: var(--soft); }
.team-bio p:last-child { margin-bottom: 0; }
.team-bio p b { color: var(--ivory); font-weight: 600; }
.team-socials { display: flex; gap: 10px; margin-top: auto; padding-top: 4px; }

/* ═══ ABOUT HERO — copy-led, editorial ══════════════════ */
.about-hero .pg-h { font-size: clamp(38px, 5.2vw, 72px); max-width: 18ch; }
.about-hero .lede { max-width: 620px; font-size: clamp(17px, 1.7vw, 20px); }
.ah-marks { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 620px; }
.ah-mark { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; letter-spacing: 0.04em; color: var(--softer); white-space: nowrap; }
.ah-mark .diamond { width: 4px; height: 4px; }


/* ═══ BLOG ═══════════════════════════════════════════════ */
.post-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .post-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.post-card { border-radius: 20px; border: 1px dashed rgba(250,246,241,0.22); background: rgba(250,246,241,0.02); padding: 26px 26px 22px; display: flex; flex-direction: column; gap: 12px; min-height: 190px; }
.post-kicker { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--amber); }
.post-kicker.purple { color: var(--purple-glow); }
.post-card h2 { font-size: clamp(19px, 2vw, 23px); font-weight: 600; letter-spacing: -0.024em; line-height: 1.2; margin: 0; }
.post-card p { font-size: 14px; color: var(--softer); line-height: 1.58; margin: 0; }
.post-soon { margin-top: auto; padding-top: 14px; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--softer); display: inline-flex; align-items: center; gap: 8px; }
.post-soon .diamond { width: 4px; height: 4px; background: var(--faint); }
/* published post cards behave as links */
a.post-card { text-decoration: none; border-style: solid; border-color: var(--line-2); transition: border-color 250ms, background 250ms, transform 250ms; }
a.post-card:hover { border-color: rgba(252,166,49,0.45); background: rgba(250,246,241,0.04); transform: translateY(-3px); }
a.post-card:hover h2 { color: var(--amber-warm); }
.post-read { margin-top: auto; padding-top: 14px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.01em; color: var(--amber); display: inline-flex; align-items: center; gap: 8px; transition: gap 250ms var(--ease); }
a.post-card:hover .post-read { gap: 13px; }

/* ═══ ARTICLE (blog post) ════════════════════════════════ */
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 15px; margin-top: 22px; font-size: 13px; color: var(--softer); }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--faint); }
.article-lede { max-width: 700px; margin: 24px 0 0; font-size: clamp(18px, 2vw, 22px); line-height: 1.5; letter-spacing: -0.014em; color: var(--ivory); text-wrap: pretty; }
.prose { max-width: 680px; }
.prose > * + * { margin-top: 22px; }
.prose h2 { font-size: clamp(23px, 2.6vw, 32px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-top: 56px; text-wrap: balance; }
.prose h2 + * { margin-top: 16px; }
.prose h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.018em; color: var(--ivory); margin-top: 34px; }
.prose h3 + * { margin-top: 12px; }
.prose p { font-size: 16.5px; line-height: 1.72; color: var(--soft); text-wrap: pretty; }
.prose p.lead { font-size: 18px; color: var(--ivory); line-height: 1.6; }
.prose strong { color: var(--ivory); font-weight: 600; }
.prose blockquote { margin: 36px 0; padding: 6px 0 6px 24px; border-left: 2px solid var(--amber); font-size: clamp(19px, 2.2vw, 25px); line-height: 1.38; letter-spacing: -0.02em; color: var(--ivory); font-weight: 500; }
.prose ul:not(.q-list) { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.prose ul:not(.q-list) li { position: relative; padding-left: 22px; font-size: 16.5px; line-height: 1.6; color: var(--soft); }
.prose ul:not(.q-list) li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 5px; height: 5px; background: var(--amber); transform: rotate(45deg); }
.prose ul:not(.q-list) li b { color: var(--ivory); font-weight: 600; }
/* themed question groups */
.q-group { margin-top: 42px; }
.q-group-head { display: flex; align-items: baseline; gap: 13px; padding-bottom: 13px; border-bottom: 1px solid var(--line-2); }
.q-group-head .q-n { font-size: 13px; font-weight: 600; color: var(--amber); font-variant-numeric: tabular-nums; }
.q-group-head h3 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.012em; color: var(--ivory); }
.q-group .q-list { list-style: none; padding: 0; margin: 10px 0 0; counter-reset: q; max-width: none; }
.q-group .q-list li { display: grid; grid-template-columns: 32px 1fr; gap: 15px; align-items: baseline; counter-increment: q; position: static; padding: 15px 2px; border-bottom: 1px solid var(--line); font-size: 16.5px; line-height: 1.55; color: var(--soft); text-wrap: pretty; }
.q-group .q-list li::before { content: counter(q, decimal-leading-zero); position: static; font-size: 12.5px; font-weight: 600; color: var(--amber); font-variant-numeric: tabular-nums; }
.article-cta { margin-top: 46px; padding: 24px 26px; border-radius: 18px; background: linear-gradient(165deg, rgba(250,246,241,0.05), rgba(250,246,241,0.015)); border: 1px solid var(--line-2); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.article-cta p { margin: 0; font-size: 15px; color: var(--soft); max-width: 44ch; line-height: 1.55; }
.article-cta p b { color: var(--ivory); font-weight: 600; }

/* ═══ CTA BAND + RELATED ═════════════════════════════════ */
.cta-band { padding: clamp(40px, 5.5vw, 68px) clamp(26px, 4vw, 56px); text-align: center; position: relative; overflow: clip; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 75% 100% at 50% 100%, rgba(252,166,49,0.10), rgba(123,72,255,0.05) 55%, transparent 75%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { font-weight: 600; font-size: clamp(30px, 4.6vw, 60px); line-height: 1.0; letter-spacing: -0.04em; margin: 0; text-wrap: balance; }
.cta-band .lede { margin: 20px auto 0; }
.cta-band .btn-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }
.cta-band .tiny { margin-top: 22px; display: block; }
.rel-wrap { margin-top: clamp(48px, 6vw, 72px); display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.rel-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--softer); }
.rel-row { display: flex; flex-wrap: wrap; gap: 10px; }
.rel-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--line-2); background: rgba(250,246,241,0.04); font-size: 13.5px; font-weight: 500; color: var(--soft); transition: color 180ms, border-color 180ms, background 180ms; }
.rel-link:hover { color: var(--ivory); border-color: rgba(252,166,49,0.45); background: rgba(252,166,49,0.06); }
.rel-link .arr { color: var(--amber); }

/* mini room cards (audience pages) */
.room-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 760px) { .room-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
.room-card { border-radius: 20px; border: 1px solid var(--line-2); background: linear-gradient(165deg, rgba(250,246,241,0.05), rgba(250,246,241,0.012)); padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.room-kicker { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--amber); }
.room-card h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.1; margin: 0; }
.room-card p { font-size: 14px; color: var(--soft); line-height: 1.6; margin: 0; }
.room-card .dk-ctx { margin-top: 6px; }

/* ═══ generated extras ═══════════════════════════════════ */
.cta-band { background: linear-gradient(160deg, rgba(250,246,241,0.055), rgba(250,246,241,0.015)); border: 1px solid var(--line-2); border-radius: 26px; }
a.room-card { transition: border-color 250ms; }
a.room-card:hover { border-color: rgba(252,166,49,0.45); }
a.room-card .rc-arr { margin-top: auto; padding-top: 12px; color: var(--amber); font-size: 13px; font-weight: 600; }
@media (min-width: 1080px) { .room-grid.rooms-3 { grid-template-columns: repeat(3, 1fr); } }

/* ═══ IMMERSIVE ROOM CARDS (rituals · By room) ═══════════ */
.room-card.rc-immersive { position: relative; overflow: hidden; padding: 0; min-height: 440px; justify-content: flex-end; }
@media (min-width: 760px) { .room-card.rc-immersive { min-height: 524px; } }
.rc-media { position: absolute; inset: 0; z-index: 0; }
.rc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.room-card.rc-immersive::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(5,4,4,0.96) 3%, rgba(5,4,4,0.84) 32%, rgba(5,4,4,0.30) 64%, rgba(5,4,4,0.34) 100%);
}
.room-card.rc-immersive:hover .rc-media img { transform: scale(1.06); }
.rc-body { position: relative; z-index: 2; padding: 28px; display: flex; flex-direction: column; gap: 9px; }
.rc-body h3 { font-size: clamp(21px, 2.3vw, 27px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.08; margin: 0; }
.room-card.rc-immersive .rc-arr { margin-top: 6px; }

/* ═══ FLIP DECK CARDS (rituals · touch to reveal) ════════ */
.deck-card.flip { display: grid; padding: 0; background: none; border: 0; box-shadow: none; cursor: pointer; perspective: 1500px; -webkit-tap-highlight-color: transparent; }
.deck-card.flip:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 22px; }
.dk-inner { display: grid; height: 100%; min-height: 296px; transition: transform 660ms var(--ease-out); transform-style: preserve-3d; }
.deck-card.flip.flipped .dk-inner { transform: rotateY(180deg); }
.dk-face {
  grid-area: 1 / 1; -webkit-backface-visibility: hidden; backface-visibility: hidden;
  border-radius: 22px; border: 1px solid var(--line-2);
  display: flex; flex-direction: column; overflow: hidden;
}
.dk-front {
  position: relative; align-items: center; justify-content: center; text-align: center; gap: 18px;
  padding: 42px 26px;
  background: linear-gradient(158deg, rgba(250,246,241,0.09), rgba(250,246,241,0.02));
  box-shadow: var(--glass-hi), 0 24px 60px -34px rgba(0,0,0,0.7);
  backdrop-filter: blur(12px) saturate(140%); -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: border-color 250ms;
}
.deck-card.flip:hover .dk-front { border-color: rgba(252,166,49,0.45); }
.deck-card.flip.premium .dk-front, .deck-card.flip.premium .dk-back { border-color: rgba(123,72,255,0.3); }
.deck-card.flip.premium:hover .dk-front { border-color: rgba(157,122,255,0.55); }
.dk-front .pill { position: absolute; top: 16px; right: 16px; }
.dk-ficon { width: 66px; height: 66px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--amber); }
.deck-card.flip.premium .dk-ficon { color: var(--purple-glow); }
.dk-front .dk-name { font-size: clamp(23px, 2.5vw, 30px); letter-spacing: -0.028em; line-height: 1.08; }
.dk-flip-hint { position: absolute; left: 0; right: 0; bottom: 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--softer); }
.dk-flip-hint .diamond { width: 4px; height: 4px; }
.dk-back {
  transform: rotateY(180deg); padding: 24px 24px 20px; gap: 12px;
  background: linear-gradient(165deg, rgba(250,246,241,0.06), rgba(250,246,241,0.015));
}
.dk-back .dk-one { margin: 0; }
.dk-back .dk-ctx { margin-top: auto; }
@media (prefers-reduced-motion: reduce) { .dk-inner { transition: none; } }

/* ═══ LIVE APP MARQUEE (rituals · matches home) ══════════ */
.live-shot { flex: 0 0 auto; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.live-shot:nth-child(odd) .shot-frame { rotate: 1.6deg; }
.live-shot:nth-child(even) .shot-frame { rotate: -1.6deg; }
.shot-frame {
  width: 230px; aspect-ratio: 375 / 740;
  background: #0C0B0A; border-radius: 34px;
  border: 1px solid var(--line-2); padding: 7px;
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.8);
  overflow: hidden;
  transition: transform 450ms var(--ease), rotate 450ms var(--ease);
}
.live-shot:hover .shot-frame { transform: translateY(-10px) scale(1.045); rotate: 0deg; will-change: transform; }
.live-shot.splash .shot-frame { border-color: rgba(123,72,255,0.35); }
.live-shot.premium .shot-frame { border-color: rgba(157,122,255,0.28); }
.shot-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 27px; background: #0C0B0A; }
.shot-label { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: -0.01em; }

/* ═══ MOBILE OPTIMISATION (subpages) — tighter rhythm ════ */
@media (max-width: 768px) {
  .pg-section { padding: clamp(52px, 11vw, 84px) 0; }
  .pg-section .section-head { margin-bottom: clamp(28px, 7vw, 48px); }
  .feat-grid { gap: 40px; }
}
@media (max-width: 640px) {
  .pg-hero { padding: 104px 0 clamp(40px, 8vw, 56px); }
  .cta-band { padding: 44px 24px; }
  .live-shot { gap: 12px; }
  .shot-frame { width: 210px; }
}

/* ═══ SCIENCE — the deck, on the table (wide spread hand) ═══ */
.sci-h { font-weight: 600; font-size: clamp(30px, 4vw, 52px); line-height: 1.06; letter-spacing: -0.035em; margin: 14px 0 0; }
.sci-lede { max-width: 620px; margin-top: 18px; }
.sci-fan { position: relative; height: clamp(300px, 34vw, 400px); margin-top: clamp(44px, 6vw, 76px); --gap: clamp(92px, 13.5vw, 200px); }
.sci-card { position: absolute; left: 50%; bottom: 4%; width: min(330px, 80vw); z-index: var(--z, 1);
  transform: translate(calc(-50% + var(--fx, 0) * var(--gap)), var(--ty, 0px)) rotate(var(--r, 0deg));
  transform-origin: 50% 120%;
  border-radius: 20px; padding: 22px 26px 18px; display: flex; flex-direction: column; min-height: clamp(212px, 24vw, 250px); --cc: var(--amber);
  background: linear-gradient(168deg, #272119 0%, #1A1613 55%, #131110 100%);
  border: 1px solid rgba(250,246,241,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 34px 70px -24px rgba(0,0,0,0.75), 0 0 46px -12px rgba(252,166,49,0.14); }
.sci-card::before { content: ""; position: absolute; top: -1px; left: 16px; right: 16px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--cc) 30% 70%, transparent); opacity: 0.9; }
.sci-card.purple { --cc: var(--purple-glow);
  background: linear-gradient(168deg, #221C2C 0%, #171420 55%, #121016 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 34px 70px -24px rgba(0,0,0,0.75), 0 0 46px -12px rgba(123,72,255,0.2); }
.sci-card.ivory { --cc: #A06B24;
  background: linear-gradient(168deg, #FBF7F0 0%, #F0E9DE 100%);
  border-color: rgba(20,17,14,0.14);
  box-shadow: 0 34px 70px -22px rgba(0,0,0,0.7), 0 0 56px -10px rgba(252,166,49,0.22); }
.sci-card.gold { --cc: var(--amber);
  background: linear-gradient(168deg, #17120A 0%, #0F0C08 55%, #0A0807 100%);
  border-color: rgba(252,166,49,0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 34px 70px -24px rgba(0,0,0,0.78), 0 0 52px -10px rgba(252,166,49,0.26); }
.sci-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sci-no { font-size: 10px; letter-spacing: 0.14em; color: rgba(250,246,241,0.42); font-variant-numeric: tabular-nums; }
.sci-card.ivory .sci-no { color: rgba(20,17,14,0.45); }
.sci-card.gold .sci-no { color: rgba(252,166,49,0.48); }
.sci-mode { font-size: 10px; letter-spacing: 0.18em; font-weight: 600; color: var(--cc); text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.sci-mode::before { content: ""; width: 4px; height: 4px; background: currentColor; transform: rotate(45deg); box-shadow: 0 0 8px currentColor; flex-shrink: 0; }
.sci-card p { flex: 1; display: flex; align-items: center; margin: 10px 0; font-size: clamp(16.5px, 1.4vw, 18.5px); font-weight: 500; font-style: italic; line-height: 1.4; letter-spacing: -0.018em; color: var(--ivory); text-wrap: pretty; }
.sci-card.ivory p { color: #191512; }
.sci-card.gold p { color: var(--amber-warm); }
.sci-foot { display: flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px dashed rgba(250,246,241,0.14); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,246,241,0.5); font-weight: 600; }
.sci-card.ivory .sci-foot { border-top-color: rgba(20,17,14,0.16); color: rgba(20,17,14,0.55); }
.sci-card.gold .sci-foot { border-top-color: rgba(252,166,49,0.2); color: rgba(252,166,49,0.6); }
.sci-d { width: 4px; height: 4px; background: var(--cc); transform: rotate(45deg); }
/* flourish: the hand fans open as the section reveals — transform-only, once */
@media (prefers-reduced-motion: no-preference) {
  .sci-card { transition: transform 950ms var(--ease-out); transition-delay: var(--fd, 0ms); }
  .sci-fan:not(.in) .sci-card { transform: translate(-50%, 34px) rotate(0deg); }
  .sci-card:hover { transition-delay: 0ms; transition-duration: 350ms; }
}
.sci-card:hover { transform: translate(calc(-50% + var(--fx, 0) * var(--gap)), calc(var(--ty, 0px) - 14px)) rotate(var(--r, 0deg)); z-index: 9; }
.sci-cta { margin-top: clamp(52px, 6.5vw, 84px); }
/* mid viewports: tighten the spread so outer cards stay inside the shell */
@media (min-width: 641px) and (max-width: 980px) {
  .sci-fan { --gap: clamp(64px, 9.5vw, 96px); }
  .sci-card { width: min(280px, 42vw); }
}
@media (max-width: 640px) {
  .sci-fan { height: auto; display: flex; flex-direction: column; gap: 14px; align-items: center; }
  .sci-card { position: static; min-height: 0; width: min(340px, 88vw); transform: rotate(var(--r-m, 0deg)); }
  .sci-card:nth-child(odd) { --r-m: -1.4deg; }
  .sci-card:nth-child(even) { --r-m: 1.4deg; }
  .sci-card:nth-child(1), .sci-card:nth-child(4) { display: none; }
  .sci-card p { font-size: 15.5px; margin: 12px 0; }
  .sci-fan:not(.in) .sci-card { transform: none; }
  .sci-card:hover { transform: rotate(var(--r-m, 0deg)); }
}
