﻿:root {
  --bg: #101011;
  --bg-soft: #171719;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f3efe8;
  --muted: rgba(243, 239, 232, 0.72);
  --muted-strong: rgba(243, 239, 232, 0.9);
  --accent: #e8dfd4;
  --accent-deep: #232326;
  --accent-warm: #b9afa1;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.08), transparent 30%),
    linear-gradient(180deg, #131315 0%, #0f0f10 52%, #0b0b0c 100%);
}

body.is-audit-mode {
  overflow: hidden;
  height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0.14));
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.hero-orb,
.hero-orb::after {
  display: none;
}

.hero-orb {
  display: none;
}

.hero-orb::after {
  display: none;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.desktop-break {
  display: inline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(15, 15, 16, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .topbar {
  padding: 0;
  min-height: 76px;
}

.site-header .brand-wordmark-text {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.site-header .topbar-links {
  gap: 26px;
  font-size: 0.88rem;
}

.site-header .topbar-links a {
  color: rgba(244, 241, 234, 0.62);
}

.site-header .topbar-auth {
  min-height: 42px;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f1ea;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-header .topbar-auth:hover {
  color: #f4f1ea;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 14px;
}

.brand-wordmark-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.brand-wordmark-text {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-links [data-site-auth-slot] {
  display: inline-flex;
  align-items: center;
}

.topbar-links a:hover {
  color: var(--text);
}

.topbar-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1;
  vertical-align: middle;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.topbar-auth:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-1px);
}

.topbar-auth.is-loading {
  color: rgba(243, 239, 232, 0.52);
  transform: none;
}

.topbar-auth-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.topbar-auth-button:hover {
  color: inherit;
}

.hero {
  padding: 22px 0 82px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  align-items: start;
  gap: 48px;
  padding-top: 52px;
}

.hero-main {
  width: min(760px, 100%);
  text-align: left;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 700px;
  margin: 24px auto 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: rgba(243, 239, 232, 0.72);
}

.hero-subtext {
  max-width: 600px;
  margin: 20px 0 0;
  font-size: clamp(1.03rem, 1.55vw, 1.2rem);
  line-height: 1.72;
  color: rgba(243, 239, 232, 0.74);
}

.hero-outcome {
  margin: 18px 0 0;
  color: rgba(243, 239, 232, 0.88);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-support {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(243, 239, 232, 0.88);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-note {
  margin: 20px 0 0;
  color: rgba(243, 239, 232, 0.64);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-truths {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.hero-truths p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: rgba(243, 239, 232, 0.88);
  line-height: 1.7;
}

.hero-truths span[aria-hidden="true"] {
  width: 8px;
  height: 8px;
  margin-top: 0.62rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, rgba(240, 206, 145, 0.95), rgba(240, 231, 220, 0.38));
  box-shadow: 0 0 0 6px rgba(240, 206, 145, 0.08);
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions-card {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.button-block {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.button-primary {
  background: var(--accent);
  color: #111113;
  font-weight: 600;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}

.hero-tags {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-aside {
  width: 100%;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card-wrap {
  position: relative;
}

.hero-card-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -16px -18px 28px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 72%);
  z-index: 0;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.hero-proof-card {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(11, 11, 13, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.hero-proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%);
  opacity: 0.9;
}

.hero-proof-card span {
  position: relative;
  z-index: 1;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-proof-card strong {
  position: relative;
  z-index: 1;
  color: rgba(243, 239, 232, 0.92);
  font-size: 1.02rem;
  line-height: 1.75;
  font-weight: 500;
}

.hero-card,
.inner-card,
.panel-card {
  position: relative;
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.hero-card {
  z-index: 1;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-entry-card {
  padding: 30px;
}

.hero-preview-shell {
  display: grid;
  gap: 18px;
}

.hero-preview-window {
  display: grid;
  grid-template-rows: auto auto minmax(112px, 112px);
  gap: 12px;
  min-height: 252px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(240, 231, 220, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(16, 16, 18, 0.98), rgba(10, 10, 12, 0.94));
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-entry-kicker {
  margin: 0 0 12px;
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-entry-card h2 {
  margin: 0;
  font-size: 1.95rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  min-height: calc(1.08em * 4);
}

.hero-preview-window .hero-entry-kicker,
.hero-preview-window h2,
.hero-preview-line {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
}

.hero-preview-shell.is-animating .hero-entry-kicker,
.hero-preview-shell.is-animating h2,
.hero-preview-shell.is-animating .hero-preview-line {
  animation: heroPreviewLift 560ms ease;
}

.hero-preview-shell.is-shifting .hero-preview-linewrap {
  animation: heroPreviewSwipe 620ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.hero-preview-linewrap {
  display: flex;
  align-items: flex-start;
  min-height: 112px;
  padding: 20px 18px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.hero-preview-line {
  margin: 0;
  color: rgba(243, 239, 232, 0.84);
  font-size: 0.98rem;
  line-height: 1.68;
  min-height: calc(1.68em * 3);
}

.hero-entry-copy {
  margin: 16px 0 0;
  color: rgba(243, 239, 232, 0.74);
  font-size: 0.98rem;
  line-height: 1.8;
}

@keyframes heroPreviewFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPreviewLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroPreviewSwipe {
  from {
    opacity: 0;
    transform: translateX(26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.inner-card {
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.card-head,
.score-line,
.score-actions,
.offer-head,
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.label {
  margin: 0;
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.85rem;
}

.card-head h3,
.section-copy h2,
.section-heading h2,
.offer-copy h3,
.faq-copy h2,
.question-card h3 {
  margin: 0;
}

.completion {
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  min-width: 104px;
}

.completion strong {
  display: block;
  margin-top: 4px;
}

.score-panel {
  margin-top: 20px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.score-value {
  margin: 8px 0 0;
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 0.95;
  font-weight: 800;
}

.score-value span {
  font-size: 1.2rem;
  color: rgba(243, 239, 232, 0.4);
}

.score-pill {
  align-self: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(243, 239, 232, 0.78);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.score-panel p,
.feature-card p,
.section-copy p,
.step-card p,
.offer-copy p,
.faq-item p,
.question-subcard p {
  color: var(--muted);
  line-height: 1.9;
}

.score-actions {
  margin-top: 22px;
}

.mini-card {
  flex: 1;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.mini-card strong {
  display: block;
  margin-top: 10px;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.6;
}

.section {
  padding: 136px 0;
}

.section-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.section-heading-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading-centered p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading > p:last-child,
.section-heading-centered > p:last-child,
.steps-editorial-copy > p:last-child {
  max-width: 640px;
  color: rgba(243, 239, 232, 0.66);
  line-height: 1.85;
}

.section-kicker {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 239, 232, 0.46);
}

.section-heading h2,
.section-copy h2,
.offer-copy h3,
.faq-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.feature-grid,
.step-grid,
.pricing-grid {
  display: grid;
  gap: 26px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid-balanced {
  max-width: 1100px;
  margin: 0 auto;
}

.editorial-points {
  display: grid;
  gap: 30px;
  max-width: 820px;
  margin: 0 auto;
}

.editorial-points-tight {
  max-width: 1100px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.editorial-point {
  display: grid;
  gap: 10px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-point-strong {
  padding: 28px 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 14, 0.56);
}

.editorial-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.editorial-point-strong:last-child {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-point h3,
.editorial-list p {
  margin: 0;
}

.editorial-point h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}

.editorial-point p {
  max-width: 640px;
  color: rgba(243, 239, 232, 0.68);
  line-height: 1.88;
}

.editorial-list {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin: 0 auto;
  justify-items: start;
}

.section-heading + .editorial-list,
.section-heading + .editorial-points {
  margin-top: -4px;
}

.editorial-list p {
  max-width: 620px;
  font-size: clamp(1.14rem, 1.65vw, 1.42rem);
  line-height: 1.52;
}

.editorial-list-tight {
  gap: 16px;
}

.editorial-list-tight p {
  color: rgba(243, 239, 232, 0.82);
}

.editorial-list-strong p {
  font-weight: 600;
}

.editorial-list-bullets p {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.editorial-list-dot {
  width: 9px;
  height: 9px;
  margin-top: 0.62em;
  border-radius: 999px;
  background: rgba(240, 231, 220, 0.86);
  box-shadow: 0 0 0 6px rgba(240, 231, 220, 0.08);
}

.section-bridge {
  margin: 34px auto 0;
  max-width: 38ch;
  text-align: center;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.98rem;
  line-height: 1.75;
}

.how-it-works-shell {
  display: grid;
  gap: 24px;
}

.how-it-works-intro {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.how-it-works-intro h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.how-it-works-lead,
.how-it-works-bridge,
.how-it-works-outcome-copy p,
.how-it-works-close {
  margin: 0;
}

.how-it-works-lead {
  color: rgba(243, 239, 232, 0.72);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.how-it-works-bridge {
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.how-it-works-stage {
  display: grid;
  gap: 18px;
}

.diagnostic-flow {
  display: grid;
  gap: 18px;
}

.diagnostic-copy {
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.diagnostic-copy h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.diagnostic-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: auto;
  padding: 24px 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(14, 14, 16, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 34px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  text-align: center;
  justify-items: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.diagnostic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 44px rgba(0, 0, 0, 0.24);
}

.diagnostic-card-large {
  grid-row: auto;
  min-height: auto;
}

.diagnostic-card-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.diagnostic-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(240, 231, 220, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(240, 231, 220, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.diagnostic-orb {
  display: none;
}

.diagnostic-card h4 {
  margin: 0;
  font-size: clamp(1.35rem, 1.9vw, 1.72rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.diagnostic-card p {
  margin: 0;
  color: rgba(243, 239, 232, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.72;
  max-width: 29ch;
}

.how-it-works-outcome {
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(240, 231, 220, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(13, 13, 15, 0.7);
}

.how-it-works-outcome-copy {
  display: grid;
  gap: 12px;
  max-width: 780px;
}

.how-it-works-outcome-copy p {
  color: rgba(243, 239, 232, 0.8);
  font-size: clamp(1.02rem, 1.55vw, 1.2rem);
  line-height: 1.75;
}

.how-it-works-answer-intro {
  color: rgba(243, 239, 232, 0.96) !important;
  font-weight: 600;
}

.how-it-works-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.how-it-works-answer-grid p {
  margin: 0;
  padding: 18px 18px 19px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.45;
  font-weight: 600;
}

.how-it-works-promises {
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.how-it-works-promises p {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.how-it-works-close {
  color: rgba(243, 239, 232, 0.92);
  font-size: clamp(1.08rem, 1.7vw, 1.26rem);
  font-weight: 600;
}

.feature-card,
.step-card,
.pricing-card,
.auditor-card,
.question-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.feature-card,
.step-card {
  padding: 34px;
  --panel-lift: 0px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.feature-card:hover,
.step-card:hover {
  transform: translateY(calc(var(--panel-lift) - 2px));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.outcome-grid .feature-card h3,
.not-grid .feature-card h3 {
  font-size: 1.12rem;
  line-height: 1.55;
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  align-items: start;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
}

.steps-editorial-copy {
  max-width: 390px;
  position: sticky;
  top: 120px;
}

.steps-editorial-copy h2 {
  margin-bottom: 18px;
}

.steps-editorial-copy p:last-child {
  max-width: 30ch;
}

.steps-editorial-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}

.step-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 8px;
  align-items: start;
  padding: 4px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, opacity 220ms ease, border-color 220ms ease;
}

.step-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.08);
}

.step-number {
  margin: 0;
  color: rgba(243, 239, 232, 0.44);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  grid-row: 1 / span 2;
}

.step-item h3 {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  line-height: 1.14;
  grid-column: 2;
}

.step-item p:last-child {
  margin: 0;
  max-width: 36ch;
  color: rgba(243, 239, 232, 0.68);
  line-height: 1.82;
  grid-column: 2;
}

.steps-editorial-track .step-item.is-featured .step-number,
.steps-editorial-track .step-item.is-featured h3 {
  color: rgba(255, 244, 224, 0.98);
}

.steps-editorial-track .step-item.is-featured {
  padding-top: 10px;
  padding-bottom: 30px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.preview-sim {
  max-width: 720px;
  margin: 0 auto;
}

.preview-sim-stage {
  display: grid;
  gap: 22px;
}

.preview-sim-shell,
.preview-sim-result {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: opacity 420ms ease, filter 420ms ease, border-color 420ms ease;
}

.preview-sim-label {
  margin: 0;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.preview-sim-question {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1.1;
}

.preview-sim-input {
  min-height: 150px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.22);
}

.preview-sim-answer {
  margin: 0;
  max-width: 60ch;
  color: rgba(243, 239, 232, 0.84);
  font-size: 1rem;
  line-height: 1.8;
}

.preview-sim-cursor {
  display: inline-block;
  width: 2px;
  height: 1.15rem;
  margin-left: 6px;
  vertical-align: -0.12em;
  background: rgba(240, 231, 220, 0.9);
  opacity: 0;
}

.preview-sim.is-typing .preview-sim-cursor {
  opacity: 1;
  animation: previewCursorBlink 0.9s steps(1) infinite;
}

.preview-sim-result {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.preview-sim.is-revealed .preview-sim-result {
  opacity: 1;
  transform: translateY(0);
}

.preview-sim.is-revealed .preview-sim-shell {
  opacity: 0.72;
  filter: saturate(0.9) brightness(0.96);
}

.preview-sim-result h3 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.08;
}

.preview-sim-result h3 > span {
  display: inline;
}

.preview-sim-result h3 > span:first-child,
.preview-sim-result h3 > span:last-child {
  display: block;
}

.preview-sim-result p {
  margin: 0;
  max-width: 60ch;
  color: rgba(243, 239, 232, 0.76);
  line-height: 1.75;
}

.preview-sim-highlight {
  position: relative;
  display: inline;
  padding: 0 0.14em;
  border-radius: 0.35em;
  background: linear-gradient(90deg, rgba(240, 206, 145, 0.14), rgba(240, 206, 145, 0.02));
  box-shadow: inset 0 -0.58em 0 rgba(240, 206, 145, 0.04);
  transition: background 320ms ease, box-shadow 320ms ease, color 320ms ease;
}

.preview-sim.is-highlighted .preview-sim-highlight {
  background: linear-gradient(90deg, rgba(240, 206, 145, 0.28), rgba(240, 206, 145, 0.06));
  box-shadow: inset 0 -0.64em 0 rgba(240, 206, 145, 0.12), 0 0 24px rgba(240, 206, 145, 0.08);
  color: rgba(255, 244, 224, 0.98);
}

.preview-sim.is-highlighted .preview-sim-result {
  border-color: rgba(240, 206, 145, 0.16);
}

.preview-cta {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-top: 38px;
  text-align: center;
}

.preview-cta-line {
  margin: 0;
  max-width: 28ch;
  font-size: 1.04rem;
  line-height: 1.7;
  color: rgba(243, 239, 232, 0.74);
}

.preview-cta-actions {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.preview-cta-actions p {
  margin: 0;
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.96rem;
}

.landing-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.landing-split-card {
  display: grid;
  gap: 18px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(240, 231, 220, 0.05), transparent 35%),
    rgba(255, 255, 255, 0.025);
}

.landing-split-kicker {
  margin: 0;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.access-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 34px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.access-lane {
  display: grid;
  gap: 20px;
  align-content: start;
}

.access-lane-trial {
  padding-right: 24px;
}

.access-lane-full {
  padding: 30px 32px 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(240, 231, 220, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.access-label,
.access-kicker {
  margin: 0;
  color: rgba(243, 239, 232, 0.48);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.access-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.access-head h3 {
  margin: 6px 0 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.04;
}

.access-price {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255, 244, 224, 0.98);
}

.access-list {
  display: grid;
  gap: 14px;
}

.access-list p {
  margin: 0;
  color: rgba(243, 239, 232, 0.76);
  font-size: 1.02rem;
  line-height: 1.72;
}

.access-list-strong p {
  color: rgba(243, 239, 232, 0.9);
  font-size: 1.06rem;
}

.access-details {
  border-top: 1px solid rgba(243, 239, 232, 0.08);
  padding-top: 18px;
}

.access-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(243, 239, 232, 0.86);
  font-weight: 600;
}

.access-details summary::-webkit-details-marker {
  display: none;
}

.access-details .pricing-details-icon {
  flex: 0 0 18px;
}

.access-details .pricing-details-body {
  margin-top: 16px;
}

.access-note {
  margin: 0;
  max-width: 42ch;
  color: rgba(243, 239, 232, 0.6);
  line-height: 1.75;
}

.access-note-strong {
  color: rgba(243, 239, 232, 0.72);
}

@keyframes previewCursorBlink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

.feature-card h3,
.step-card h3,
.faq-item h3 {
  margin: 0;
  font-size: 1.3rem;
}

.category-layout,
.audit-layout,
.auditor-layout,
.faq-layout {
  display: grid;
  gap: 34px;
}

.audit-layout,
.category-layout {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.mental-preview {
  display: grid;
  gap: 28px;
}

.mental-preview-intro {
  max-width: 760px;
}

.mental-carousel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.mental-carousel-viewport {
  overflow: hidden;
}

.mental-carousel-track {
  display: flex;
  transition: transform 260ms ease;
  will-change: transform;
}

.mental-slide {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 18px 6px;
}

.mental-slide-kicker {
  margin: 0;
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mental-slide h3 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.mental-slide p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.mental-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mental-carousel-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.mental-carousel-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
}

.mental-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mental-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.mental-dot.is-active {
  background: rgba(243, 239, 232, 0.88);
  transform: scale(1.1);
}

.resume-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 8, 10, 0.62);
  backdrop-filter: blur(12px);
}

.resume-overlay[hidden] {
  display: none;
}

.resume-dialog {
  width: min(560px, 100%);
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.resume-dialog h3 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.resume-dialog p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.resume-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 4px;
}

.mini-audit-intro {
  max-width: 700px;
  margin: 0 auto 16px;
  text-align: center;
}

.mini-audit-wrap {
  display: flex;
  justify-content: center;
}

.mini-audit-shell {
  width: min(720px, 100%);
  gap: 22px;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
}

.mini-audit-card {
  display: grid;
  gap: 22px;
  padding: 8px 2px 2px;
}

.mini-audit-capture {
  gap: 20px;
}

.mini-audit-processing {
  gap: 18px;
  padding: 26px 8px 6px;
}

.mini-audit-processing-bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.mini-audit-processing-bar span {
  position: absolute;
  inset: 0;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(240, 231, 220, 0.18), rgba(240, 231, 220, 0.92), rgba(240, 231, 220, 0.18));
  animation: miniAuditProcessing 1.25s ease-in-out infinite;
}

.mini-audit-processing-points {
  display: grid;
  gap: 10px;
}

.mini-audit-processing-points span {
  position: relative;
  padding-left: 18px;
  color: rgba(243, 239, 232, 0.72);
  line-height: 1.65;
}

.mini-audit-processing-points span::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(240, 231, 220, 0.74);
}

.mini-audit-head,
.mini-audit-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
}

.mini-audit-kicker {
  margin: 0 0 8px;
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mini-audit-head h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.mini-audit-capture-copy {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.mini-audit-fields {
  display: grid;
  gap: 14px;
}

.mini-audit-field {
  display: grid;
  gap: 8px;
}

.mini-audit-field span {
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.92rem;
}

.mini-audit-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.mini-audit-field input:focus {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mini-audit-field input::placeholder {
  color: rgba(243, 239, 232, 0.34);
}

.mini-audit-footnote {
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
}

.mini-audit-personal {
  margin: 0 0 10px;
  color: rgba(243, 239, 232, 0.64);
  font-size: 0.96rem;
  line-height: 1.7;
}

.mini-audit-progresscopy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.88rem;
  line-height: 1.5;
}

.mini-audit-progressbar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.mini-audit-progressbar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(240, 231, 220, 0.58), rgba(240, 231, 220, 0.98));
  box-shadow: 0 6px 18px rgba(240, 231, 220, 0.16);
}

.mini-audit-options {
  gap: 12px;
}

.mini-audit-question-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.mini-audit-chip,
.mini-audit-help {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font: inherit;
}

.mini-audit-chip {
  padding: 10px 14px;
}

.mini-audit-help {
  padding: 10px 16px;
  cursor: pointer;
}

.mini-audit-support {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.mini-audit-support-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-audit-support-tabs span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.mini-audit-support-tabs .is-active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.mini-audit-support-body,
.mini-audit-support-block {
  display: grid;
  gap: 10px;
}

.mini-audit-support-block p,
.mini-audit-support-block li {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.mini-audit-support-block ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.mini-audit-textarea {
  min-height: 220px;
}

.locked-preview {
  display: grid;
  gap: 14px;
}

.locked-preview-label {
  margin: 0;
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.locked-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.locked-preview-item {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.56);
  filter: blur(0.35px);
}

.locked-preview-item strong {
  color: rgba(243, 239, 232, 0.74);
  font-size: 0.98rem;
  line-height: 1.35;
}

.locked-preview-item p {
  margin: 0;
  color: rgba(243, 239, 232, 0.48);
  font-size: 0.92rem;
  line-height: 1.65;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.system-tile {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.system-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: rgba(243, 239, 232, 0.76);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-tile h3 {
  margin: 0;
  font-size: 1.12rem;
}

.system-tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.system-tile-compact {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.system-tile-compact h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.system-tile-compact p {
  font-size: 0.92rem;
  line-height: 1.65;
}

.mini-audit-footer .button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.audit-shell {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.full-audit-shell {
  min-height: 640px;
}

.full-audit-panel {
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.full-audit-head,
.full-audit-progress,
.full-audit-nav,
.result-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.full-audit-head h3,
.full-audit-progress h3,
.results-block h4,
.full-question-head h4 {
  margin: 0;
}

.full-audit-copy,
.full-question-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.full-audit-stats,
.full-audit-questions,
.results-grid,
.results-list {
  display: grid;
  gap: 14px;
}

.full-audit-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.progress-meta {
  min-width: 120px;
  text-align: right;
}

.progress-meta strong {
  display: block;
  font-size: 1.5rem;
}

.progress-meta span {
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.92rem;
}

.progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #cbbcab, #ddcfbe);
}

.full-question-card,
.result-tile,
.result-focus {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.full-question-card {
  padding: 18px;
}

.full-question-head {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.full-question-head p span {
  color: rgba(243, 239, 232, 0.38);
}

.scale-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.scale-option {
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.scale-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
}

.scale-option.is-active {
  background: rgba(232, 223, 212, 0.14);
  border-color: rgba(232, 223, 212, 0.48);
  color: var(--text);
  font-weight: 700;
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 0 2px rgba(232, 223, 212, 0.14);
}

.full-audit-nav {
  align-items: center;
}

.full-audit-nav .button[disabled] {
  opacity: 0.42;
  cursor: not-allowed;
  transform: none;
}

.results-block {
  display: grid;
  gap: 12px;
}

.results-page {
  width: 100%;
  min-width: 0;
}

.results-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px;
  min-width: 0;
  box-sizing: border-box;
}

.results-progress-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 100%;
  box-sizing: border-box;
}

.results-progress-anchors span {
  opacity: 0.38;
}

.results-progress-anchors a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  max-width: 100%;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.results-progress-anchors a:hover {
  color: rgba(243, 239, 232, 0.9);
  border-color: rgba(232, 223, 212, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.results-progress-anchors a:focus-visible {
  outline: 0;
  border-color: rgba(240, 231, 220, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.results-tab-shell {
  position: sticky;
  top: 0;
  z-index: 14;
  margin-top: 20px;
  padding: 10px 0 12px;
  background: linear-gradient(180deg, rgba(20, 18, 18, 0.96) 0%, rgba(20, 18, 18, 0.86) 78%, rgba(20, 18, 18, 0) 100%);
  backdrop-filter: blur(12px);
}

.results-tab-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(232, 223, 212, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.results-tab-button {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: rgba(243, 239, 232, 0.58);
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.results-tab-button strong {
  color: inherit;
  font-size: 0.82rem;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.results-tab-button span {
  color: rgba(243, 239, 232, 0.44);
  font-size: 0.72rem;
  line-height: 1.35;
}

.results-tab-button:hover,
.results-tab-button:focus-visible {
  outline: 0;
  color: rgba(243, 239, 232, 0.88);
  border-color: rgba(232, 223, 212, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.results-tab-button.is-active {
  color: var(--text);
  border-color: rgba(232, 223, 212, 0.18);
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.12), rgba(255, 255, 255, 0.04));
}

.results-tab-button.is-active span {
  color: rgba(243, 239, 232, 0.7);
}

.results-tab-panels {
  min-width: 0;
}

.results-tab-panel {
  min-width: 0;
}

.results-tab-panel[hidden] {
  display: none !important;
}

.results-tab-panel > .results-section:first-child {
  margin-top: 34px;
}

.results-print-cover {
  display: none;
}

.results-tab-prompt {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.06), transparent 44%),
    rgba(255, 255, 255, 0.028);
}

.results-tab-prompt span,
.results-action-board span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-tab-prompt strong {
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.results-tab-prompt p {
  max-width: 42rem;
  margin: 0;
  color: rgba(243, 239, 232, 0.82);
  line-height: 1.68;
}

.results-tab-prompt .button {
  width: fit-content;
}

.results-analysis-card,
.results-financial-card,
.results-strength-card,
.results-constraint-card {
  min-height: 100%;
}

.results-hero-stat {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.results-hero-stat span,
.results-targeted-issue,
.result-direction-item span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-hero-stat strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.45;
}

.results-section {
  display: grid;
  gap: 16px;
  margin-top: 64px;
}

.results-section-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.results-section-hero .results-section-content {
  align-items: center;
  text-align: center;
  padding: 30px 0 6px;
}

.results-section-hero .full-audit-title {
  max-width: 12ch;
}

.results-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.results-hero-panel {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 720px;
}

.results-diagnosis-meter {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(232, 223, 212, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.results-diagnosis-meter__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.results-diagnosis-meter__head span,
.results-identity-card span,
.results-pattern-loop__item span,
.results-action-stack__meta span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-diagnosis-meter__head strong,
.results-action-stack__meta strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.2;
}

.results-diagnosis-meter__bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.results-diagnosis-meter__bars span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 223, 212, 0.08);
}

.results-diagnosis-meter__bars span.is-active {
  background: linear-gradient(90deg, rgba(232, 223, 212, 0.34), rgba(232, 223, 212, 0.68));
  border-color: rgba(232, 223, 212, 0.18);
}

.results-identity-contrast {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 720px;
}

.results-identity-card {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  text-align: left;
}

.results-identity-card.is-current {
  background: rgba(255, 255, 255, 0.028);
}

.results-identity-card.is-future {
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 223, 212, 0.18);
}

.results-identity-card strong {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.6;
}

.results-section-head {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.results-section-head .section-kicker {
  margin: 0;
}

.results-section-head h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.24rem, 2vw, 1.68rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  max-width: 26ch;
  text-wrap: balance;
}

.results-shell {
  max-width: 860px;
}

.results-section-hero-reveal {
  margin-top: 36px;
  padding: 44px 0 16px;
}

.results-hero-eyebrow {
  margin: 0 0 16px;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.results-hero-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.8rem, 8vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.results-hero-subtitle {
  margin: 18px 0 0;
  color: rgba(243, 239, 232, 0.9);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  max-width: 40rem;
}

.results-hero-copy {
  max-width: 42rem;
  margin: 16px 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.72;
}

.results-hero-confidence {
  max-width: 38rem;
  margin: 12px 0 0;
  color: rgba(243, 239, 232, 0.68);
  font-size: 0.98rem;
  line-height: 1.65;
}

.results-hero-reason,
.results-hero-supporting {
  display: grid;
  gap: 12px;
  max-width: 42rem;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 223, 212, 0.12);
}

.results-hero-reason span,
.results-hero-supporting span,
.results-proof-note span,
.results-insight-row span,
.results-identity-shift-card span,
.results-snapshot-card span,
.results-accordion__support span {
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-hero-reason strong,
.results-hero-supporting-list p,
.results-proof-note p,
.results-pattern-intro,
.results-goal-line {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.72;
}

.results-hero-supporting-list {
  display: grid;
  gap: 10px;
}

.results-why-this-first {
  display: grid;
  gap: 14px;
  max-width: 46rem;
  padding: 18px 0 6px;
  border-top: 1px solid rgba(232, 223, 212, 0.08);
}

.results-core-message {
  display: grid;
  gap: 10px;
  max-width: 42rem;
  padding: 6px 0 2px;
}

.results-core-message__line,
.results-core-message__contrast {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.7;
}

.results-core-message__contrast {
  color: rgba(243, 239, 232, 0.84);
}

.results-why-this-first span,
.results-why-this-first__runner strong {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-why-this-first > p,
.results-why-this-first__runner p {
  margin: 0;
  color: rgba(243, 239, 232, 0.88);
  line-height: 1.68;
}

.results-why-this-first__runners {
  display: grid;
  gap: 12px;
}

.results-why-this-first__runner {
  display: grid;
  gap: 6px;
}

.results-section-important {
  margin-top: 18px;
}

.results-section-important .results-analysis-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-identity-shift-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.results-identity-shift-card {
  display: grid;
  gap: 12px;
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(232, 223, 212, 0.1);
}

.results-identity-shift-card.is-after {
  background: radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 42%), rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 223, 212, 0.18);
}

.results-identity-shift-card strong {
  color: var(--text);
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
  line-height: 1.5;
}

.results-proof-note {
  display: grid;
  gap: 8px;
  max-width: 42rem;
}

.results-why-this-first__evidence {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.results-why-this-first__counterfactual {
  margin: 2px 0 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

.results-why-this-first__evidence p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.results-insight-rows {
  display: grid;
  gap: 0;
}

.results-insight-row {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(232, 223, 212, 0.1);
}

.results-insight-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.results-insight-row p {
  margin: 0;
  color: rgba(243, 239, 232, 0.9);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 42rem;
}

.results-pattern-timeline {
  display: grid;
  gap: 14px;
  max-width: 44rem;
}

.results-pattern-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 12px 0 12px 2px;
}

.results-pattern-step::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 54px;
  bottom: -12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.18), rgba(232, 223, 212, 0.02));
}

.results-pattern-step:last-child::before {
  display: none;
}

.results-pattern-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  color: rgba(243, 239, 232, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  background: rgba(255, 255, 255, 0.02);
}

.results-pattern-step p {
  margin: 0;
  padding-top: 6px;
  color: rgba(243, 239, 232, 0.92);
  font-size: 1.02rem;
  line-height: 1.72;
}

.results-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.results-snapshot-card {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(232, 223, 212, 0.1);
}

.results-snapshot-card strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

.results-action-stack-refined {
  gap: 18px;
}

.results-action-stack-refined .results-action-stack__item {
  padding: 24px 24px 22px;
  border-radius: 26px;
}

.results-action-stack-refined .results-action-stack__meta span {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.results-action-stack-refined .results-action-stack__meta strong {
  font-size: 1.15rem;
}

.results-action-support {
  display: grid;
  gap: 16px;
}

.results-weekly-intro {
  max-width: 42rem;
  margin: 0;
  color: rgba(243, 239, 232, 0.9);
  font-size: 1.02rem;
  line-height: 1.72;
}

.results-checklist {
  display: grid;
  gap: 10px;
}

.results-checklist__item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.results-checklist__item i {
  display: block;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(232, 223, 212, 0.72), rgba(232, 223, 212, 0.22));
  box-shadow: inset 0 0 0 1px rgba(232, 223, 212, 0.18);
}

.results-checklist__item p {
  margin: 0;
  color: rgba(243, 239, 232, 0.9);
  line-height: 1.7;
}

.results-goal-line {
  max-width: 40rem;
  font-size: clamp(1.18rem, 2vw, 1.4rem);
}

.results-timeline-strip-refined {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.results-accordion {
  width: 100%;
  border-top: 1px solid rgba(232, 223, 212, 0.12);
  padding-top: 20px;
}

.results-accordion summary {
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
}

.results-accordion summary::-webkit-details-marker {
  display: none;
}

.results-accordion__body {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.results-accordion__support p {
  margin: 8px 0 0;
  color: rgba(243, 239, 232, 0.88);
  line-height: 1.7;
}

.results-full-scan-grid {
  display: grid;
  gap: 12px;
}

.results-full-scan-item {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(232, 223, 212, 0.1);
}

.results-full-scan-item__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.results-full-scan-item__head span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-full-scan-item__head strong {
  color: var(--text);
}

.results-full-scan-item p,
.results-full-scan-item i {
  margin: 0;
  color: rgba(243, 239, 232, 0.88);
  line-height: 1.68;
}

.results-full-scan-item i {
  color: rgba(243, 239, 232, 0.66);
  font-style: normal;
}

.results-executive-read,
.results-pattern-diagnosis {
  display: grid;
  gap: 18px;
}

.results-executive-read {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: stretch;
}

.results-executive-read__main,
.results-executive-read__side article,
.results-pattern-diagnosis__lead,
.results-pattern-diagnosis__grid article,
.results-protocol-card,
.results-report-summary article {
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.results-executive-read__main {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.12), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
}

.results-executive-read__main > span,
.results-executive-read__side span,
.results-pattern-diagnosis__lead span,
.results-pattern-diagnosis__grid span,
.results-protocol-card span,
.results-report-summary span,
.results-executive-receipts strong {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-executive-read__main h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.032em;
  word-spacing: 0.04em;
  text-wrap: balance;
}

.results-executive-read__main p,
.results-pattern-diagnosis__lead p {
  margin: 0;
  color: rgba(243, 239, 232, 0.92);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  line-height: 1.72;
}

.results-executive-read__side {
  display: grid;
  gap: 12px;
}

.results-executive-read__side article,
.results-pattern-diagnosis__grid article,
.results-protocol-card,
.results-report-summary article {
  display: grid;
  gap: 10px;
  padding: 20px 22px;
  border-radius: 24px;
}

.results-executive-read__side p,
.results-pattern-diagnosis__grid p,
.results-protocol-card p {
  margin: 0;
  color: rgba(243, 239, 232, 0.86);
  line-height: 1.68;
}

.results-executive-receipts {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 223, 212, 0.1);
}

.results-executive-receipts div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.results-executive-receipts em {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: rgba(232, 223, 212, 0.055);
  color: rgba(243, 239, 232, 0.84);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.35;
}

.results-report-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.results-report-summary article {
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.06), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

.results-report-summary strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

.results-pattern-diagnosis__lead {
  display: grid;
  gap: 12px;
  padding: 28px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.results-pattern-diagnosis__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.results-protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.results-action-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.results-action-board article {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.03);
}

.results-action-board strong {
  color: var(--text);
  font-size: 1.04rem;
  line-height: 1.35;
}

.results-action-board p {
  margin: 0;
  color: rgba(243, 239, 232, 0.84);
  line-height: 1.66;
}

.results-real-world-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.results-real-world-card {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px 24px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(232, 223, 212, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.028);
}

.results-real-world-card span {
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-real-world-card strong {
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.results-real-world-card p {
  margin: 0;
  color: rgba(243, 239, 232, 0.8);
  line-height: 1.7;
}

.results-protocol-card {
  min-height: 100%;
}

.results-protocol-card strong {
  color: var(--text);
  font-size: 1.12rem;
  line-height: 1.35;
}

.results-report-card-grid {
  display: grid;
  gap: 16px;
}

.results-debrief-card {
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.results-debrief-card.is-needs-attention {
  border-color: rgba(232, 223, 212, 0.2);
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.results-debrief-card.is-strained {
  border-color: rgba(232, 223, 212, 0.16);
}

.results-debrief-card.is-supporting {
  border-color: rgba(169, 190, 154, 0.2);
}

.results-debrief-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 223, 212, 0.09);
}

.results-debrief-card__head div {
  display: grid;
  gap: 6px;
}

.results-debrief-card__head span,
.results-debrief-evidence > span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-debrief-card__head strong {
  color: var(--text);
  font-size: 1rem;
}

.results-debrief-card__head > em {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-debrief-evidence {
  display: grid;
  gap: 10px;
}

.results-debrief-evidence div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.results-debrief-evidence em {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(232, 223, 212, 0.11);
  background: rgba(232, 223, 212, 0.055);
  color: rgba(243, 239, 232, 0.84);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.35;
}

.results-debrief-body {
  display: grid;
  gap: 12px;
}

.results-debrief-body p {
  margin: 0;
  color: rgba(243, 239, 232, 0.86);
  line-height: 1.72;
}

.results-debrief-body strong {
  color: rgba(243, 239, 232, 0.98);
  font-weight: 650;
}

.results-section-intro,
.results-pattern-meaning {
  max-width: 42rem;
  margin: 0;
  color: rgba(243, 239, 232, 0.86);
  font-size: 1.02rem;
  line-height: 1.72;
}

.results-life-snapshot-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(232, 223, 212, 0.1);
  border-bottom: 1px solid rgba(232, 223, 212, 0.1);
}

.results-life-snapshot-item {
  display: grid;
  gap: 8px;
  padding: 18px 16px;
  border-left: 1px solid rgba(232, 223, 212, 0.08);
}

.results-life-snapshot-item:first-child {
  border-left: 0;
}

.results-life-snapshot-item span,
.results-next-chapter-card span,
.results-constraint-stack span,
.results-goal-bridge span,
.results-action-row span {
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-life-snapshot-item strong {
  color: var(--text);
  font-size: 1rem;
}

.results-life-snapshot-item p {
  margin: 0;
  color: rgba(243, 239, 232, 0.84);
  line-height: 1.6;
  text-wrap: balance;
}

.results-leak-list,
.results-cost-list,
.results-action-rows {
  display: grid;
  gap: 14px;
}

.results-leak-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid rgba(232, 223, 212, 0.08);
}

.results-leak-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.results-leak-row span {
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.results-leak-row p,
.results-cost-list p {
  margin: 0;
  color: rgba(243, 239, 232, 0.92);
  font-size: 1.04rem;
  line-height: 1.72;
}

.results-section-cost-band {
  padding: 10px 0;
  border-top: 1px solid rgba(232, 223, 212, 0.08);
  border-bottom: 1px solid rgba(232, 223, 212, 0.08);
}

.results-cost-bottom-line,
.results-do-first-proof {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.65;
}

.results-tradeoff {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.results-tradeoff-card {
  display: grid;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.results-tradeoff-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-tradeoff-card strong {
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.45;
}

.results-tradeoff-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.results-tradeoff-card.is-focus {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-color: rgba(255, 255, 255, 0.14);
}

.results-consequence-grid {
  display: grid;
  gap: 16px;
  max-width: 46rem;
}

.results-consequence-card {
  display: grid;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.results-consequence-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-consequence-list {
  display: grid;
  gap: 12px;
}

.results-consequence-list p {
  margin: 0;
  color: rgba(243, 239, 232, 0.9);
  font-size: 1.04rem;
  line-height: 1.72;
}

.results-consequence-list p + p {
  padding-top: 12px;
  border-top: 1px solid rgba(232, 223, 212, 0.08);
}

.results-consequence-summary {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.results-self-recognition {
  display: grid;
  gap: 18px;
  max-width: 44rem;
}

.results-self-recognition__intro,
.results-self-recognition__lines p,
.results-self-recognition__closer {
  margin: 0;
}

.results-self-recognition__intro {
  color: rgba(243, 239, 232, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.results-self-recognition__lines {
  display: grid;
  gap: 14px;
}

.results-self-recognition__lines p {
  color: rgba(243, 239, 232, 0.92);
  font-size: 1.06rem;
  line-height: 1.78;
}

.results-self-recognition__closer {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.72;
}

.results-identity-pressure {
  display: grid;
  gap: 16px;
  max-width: 44rem;
}

.results-identity-pressure__intro,
.results-identity-pressure__tension,
.results-identity-pressure__contrast,
.results-identity-pressure__closer {
  margin: 0;
}

.results-identity-pressure__intro,
.results-identity-pressure__contrast {
  color: rgba(243, 239, 232, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.results-identity-pressure__tension {
  color: rgba(243, 239, 232, 0.94);
  font-size: 1.08rem;
  line-height: 1.8;
}

.results-identity-pressure__closer {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.74;
}

.results-sufficiency {
  display: grid;
  gap: 12px;
  max-width: 40rem;
}

.results-sufficiency__message,
.results-sufficiency__anchor,
.results-sufficiency__reassurance {
  margin: 0;
}

.results-sufficiency__message,
.results-sufficiency__anchor {
  color: rgba(243, 239, 232, 0.9);
  font-size: 1.04rem;
  line-height: 1.72;
}

.results-sufficiency__reassurance {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.72;
}

.results-next-chapter-grid,
.results-goal-bridge__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.results-next-chapter-card,
.results-goal-bridge__grid article {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(232, 223, 212, 0.1);
}

.do-this-first {
  display: grid;
  gap: 20px;
  border-radius: 28px;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.results-do-first-steps {
  display: grid;
  gap: 14px;
}

.results-do-first-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.results-do-first-step span {
  color: rgba(243, 239, 232, 0.58);
  font-size: 1.08rem;
  line-height: 1.2;
}

.results-do-first-step p {
  margin: 0;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.72;
}

.results-constraint-stack,
.results-goal-bridge {
  display: grid;
  gap: 16px;
  padding: 24px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 223, 212, 0.1);
}

.results-constraint-stack__node {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.68;
}

.results-constraint-stack i {
  justify-self: center;
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.24), rgba(232, 223, 212, 0.04));
}

.results-goal-bridge__grid article strong {
  color: var(--text);
  font-size: 1rem;
}

.results-goal-bridge__grid article p {
  margin: 0;
  color: rgba(243, 239, 232, 0.88);
  line-height: 1.7;
}

.results-action-row {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(232, 223, 212, 0.08);
}

.results-action-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.results-action-row p {
  margin: 0;
  color: rgba(243, 239, 232, 0.88);
  line-height: 1.68;
}

.results-list-flow .result-line,
.result-focus-strong,
.result-focus-mechanism,
.result-focus-cost,
.result-focus-answer,
.result-focus-translation {
  font-size: 1.02rem;
  line-height: 1.85;
}

.results-list-steps {
  gap: 10px;
}

.result-line-step {
  align-items: flex-start;
}

.result-line-step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(232, 223, 212, 0.2);
  background: rgba(232, 223, 212, 0.08);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 600;
}

.result-line-step strong {
  flex: 1;
  color: var(--muted);
  line-height: 1.75;
}

.results-section-cost .result-focus,
.results-section-answer .result-focus {
  padding: 20px 22px;
  border-radius: 24px;
}

.results-section-cost .result-focus {
  background:
    radial-gradient(circle at top left, rgba(212, 187, 170, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.038);
  border-color: rgba(232, 223, 212, 0.18);
}

.results-section-pivot {
  padding: 0;
  border-top: 1px solid rgba(232, 223, 212, 0.1);
  border-bottom: 1px solid rgba(232, 223, 212, 0.1);
  text-align: center;
}

.results-section-pivot .results-section-content {
  padding: 34px 12px;
}

.results-section-pivot h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--text);
}

.results-section-answer {
  justify-items: center;
  text-align: center;
}

.results-section-answer .results-section-head {
  max-width: 640px;
}

.results-section-answer .result-focus {
  max-width: 700px;
}

.results-pattern-loop {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.results-pattern-loop__item {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.results-pattern-loop__item strong {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.65;
}

.results-pattern-loop__item i {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 1px;
  background: rgba(232, 223, 212, 0.24);
}

.results-pattern-loop__item i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(232, 223, 212, 0.24);
  border-right: 1px solid rgba(232, 223, 212, 0.24);
  transform: rotate(45deg);
}

.results-mental-tabs-map,
.results-reality-snapshot,
.results-weekly-plan-grid,
.results-proof-grid,
.results-analysis-grid,
.results-financial-grid,
.results-strengths-grid,
.results-constraints-grid {
  display: grid;
  gap: 14px;
}

.results-proof-groups {
  display: grid;
  gap: 22px;
}

.results-proof-group {
  display: grid;
  gap: 12px;
}

.results-proof-group > span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-mental-tabs-map {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.results-mental-tabs-map__group,
.results-reality-snapshot__card,
.results-weekly-plan__card,
.results-proof-card,
.results-analysis-card,
.results-financial-card,
.results-strength-card,
.results-constraint-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.results-mental-tabs-map__group span,
.results-reality-snapshot__card span,
.results-weekly-plan__card span,
.results-timeline-strip__item span,
.results-analysis-card span,
.results-financial-card span,
.results-strength-card span,
.results-constraint-card span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.results-chip-row i {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  font-style: normal;
  line-height: 1.4;
}

.results-reality-snapshot {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-reality-snapshot__card strong,
.results-weekly-plan__card strong,
.results-proof-card strong,
.results-answer-line strong,
.results-timeline-strip__item strong,
.results-analysis-card strong,
.results-financial-card strong,
.results-strength-card strong,
.results-constraint-card strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.results-weekly-plan-intro {
  max-width: 46rem;
}

.results-weekly-days {
  display: grid;
  gap: 14px;
}

.results-weekly-day {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.03);
}

.results-weekly-day__head {
  display: grid;
  gap: 6px;
}

.results-weekly-day__head span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-weekly-day__head strong {
  color: var(--text);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.35;
}

.results-weekly-day__why {
  margin: 0;
  max-width: 42rem;
  color: rgba(243, 239, 232, 0.76);
  font-size: 1rem;
  line-height: 1.72;
}

.results-weekly-day__actions {
  display: grid;
  gap: 10px;
}

.results-weekly-plan-grid,
.results-proof-grid,
.results-analysis-grid,
.results-financial-grid,
.results-strengths-grid,
.results-constraints-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.results-proof-card {
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.results-answers-list {
  display: grid;
  gap: 12px;
}

.results-answer-line {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(243, 239, 232, 0.08);
  background:
    radial-gradient(circle at top left, rgba(216, 180, 106, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.results-financial-card {
  background:
    radial-gradient(circle at top left, rgba(212, 187, 170, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.results-strength-card {
  background:
    radial-gradient(circle at top left, rgba(198, 214, 184, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.results-timeline-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.results-timeline-strip__item {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.results-timeline-strip__item i {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 1px;
  background: rgba(232, 223, 212, 0.24);
}

.results-timeline-strip__item i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(232, 223, 212, 0.24);
  border-right: 1px solid rgba(232, 223, 212, 0.24);
  transform: rotate(45deg);
}

.results-direction-grid,
.results-action-grid,
.results-reset-grid,
.results-targeted-list {
  display: grid;
  gap: 14px;
}

.results-direction-grid,
.results-reset-grid,
.results-targeted-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-direction-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.result-direction-item strong {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.results-action-intro {
  margin: 0;
  color: rgba(243, 239, 232, 0.82);
  font-size: 1.02rem;
  line-height: 1.75;
}

.results-action-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.results-action-grid-steps {
  margin-top: 4px;
}

.results-action-column {
  display: grid;
  gap: 12px;
}

.results-action-label,
.results-step-meta {
  margin: 0;
  color: rgba(243, 239, 232, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.results-step-copy {
  display: grid;
  gap: 10px;
}

.results-step-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.results-step-copy span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted-strong);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-subblock-step {
  min-height: 100%;
}

.results-section-translation .result-focus {
  background:
    radial-gradient(circle at top right, rgba(232, 223, 212, 0.07), transparent 40%),
    rgba(255, 255, 255, 0.03);
}

.results-section-reset .results-subblock {
  height: 100%;
}

.results-targeted-item {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.results-targeted-copy,
.results-targeted-evidence {
  margin: 0;
  line-height: 1.75;
}

.results-targeted-copy {
  color: var(--muted-strong);
}

.results-targeted-evidence {
  color: rgba(243, 239, 232, 0.68);
}

.results-grid-scan {
  grid-template-columns: 1fr;
}

.result-tile-scan {
  display: grid;
  align-content: start;
}

.results-section-summary {
  padding-top: 6px;
}

.results-block-answer {
  gap: 14px;
}

.results-block-answer .result-focus {
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.09), transparent 44%),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(232, 223, 212, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.results-block-summary {
  gap: 14px;
}

.results-list-summary .result-line {
  justify-content: flex-start;
  gap: 10px;
}

.results-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.results-export-manual {
  display: grid;
  gap: 10px;
}

.results-export-manual span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.results-export-manual textarea {
  min-height: 220px;
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(232, 223, 212, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  line-height: 1.6;
  resize: vertical;
}

.results-subblock {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.results-action-stack {
  display: grid;
  gap: 14px;
}

.results-action-stack__item {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: rgba(255, 255, 255, 0.032);
}

.results-action-stack__item.is-start {
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.results-action-stack__item.is-fix {
  border-color: rgba(212, 187, 170, 0.16);
}

.results-action-stack__item.is-proof {
  border-color: rgba(232, 223, 212, 0.18);
}

.results-action-stack__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.results-action-stack__lead {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
}

.results-subblock strong {
  color: var(--muted-strong);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.results-reaction-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-reaction {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.result-reaction:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
}

.result-reaction.is-active {
  background: rgba(232, 223, 212, 0.14);
  border-color: rgba(232, 223, 212, 0.46);
  color: var(--text);
}

.result-reflection-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.result-reflection-panel h5,
.result-reflection-followup {
  margin: 0;
}

.result-reflection-panel h5 {
  font-size: 1.02rem;
  line-height: 1.45;
}

.result-reflection-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.result-reflection-followup {
  color: var(--muted-strong);
}

.result-reflection-textarea {
  min-height: 180px;
}

.result-reflection-hint {
  color: rgba(243, 239, 232, 0.68);
  line-height: 1.8;
}

.results-block h4 {
  font-size: 1rem;
  color: var(--muted-strong);
}

.results-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-tile,
.result-focus,
.result-line {
  padding: 14px 16px;
}

.full-audit-card-results .full-audit-lead,
.full-audit-card-results .result-focus,
.full-audit-card-results .result-line,
.full-audit-card-results .result-line-detail,
.full-audit-card-results .result-direction-item,
.full-audit-card-results .results-targeted-item,
.full-audit-card-results .results-identity-card strong,
.full-audit-card-results .results-diagnosis-meter__head strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.result-line-detail {
  display: block;
  color: rgba(243, 239, 232, 0.68);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-top: 0;
}

.result-tile {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-strong);
}

.result-tile span {
  color: rgba(243, 239, 232, 0.54);
}

.results-list {
  gap: 10px;
}

.result-line {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1.7;
}

.result-line strong {
  color: var(--muted-strong);
}

.result-focus {
  color: var(--muted-strong);
  line-height: 1.8;
}

.full-audit-stage {
  width: min(920px, 100%);
  margin: 0 auto;
  overflow: visible;
}

.audit-mode {
  height: 100vh;
  min-height: 100vh;
  padding: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.08), transparent 30%),
    linear-gradient(180deg, #131315 0%, #0f0f10 52%, #0b0b0c 100%);
  animation: auditModeEnter 320ms ease;
  transition:
    background 260ms ease,
    padding 260ms ease;
}

.audit-mode[data-theme="light"] {
  background:
    radial-gradient(circle at top left, rgba(161, 143, 118, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #ddd2c3 0%, #d0c4b5 100%);
}

.audit-mode[data-theme="nature"] {
  background:
    radial-gradient(circle at top left, rgba(127, 151, 115, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(184, 166, 125, 0.1), transparent 24%),
    linear-gradient(180deg, #101611 0%, #0c120d 56%, #090e0a 100%);
}

.audit-mode[hidden] {
  display: none;
}

.audit-mode-shell {
  width: min(1080px, 100%);
  min-height: calc(100vh - 48px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto auto;
  gap: 22px;
  padding-bottom: 24px;
  transition: width 260ms ease;
}

.audit-mode-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 4px 0;
}

.audit-inline-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 10px 4px 0;
  padding: 10px 14px;
  border: 1px solid rgba(214, 174, 103, 0.24);
  border-radius: 18px;
  background: rgba(214, 174, 103, 0.08);
  color: rgba(243, 239, 232, 0.82);
}

.audit-inline-notice[hidden] {
  display: none;
}

.audit-inline-notice.is-error {
  border-color: rgba(196, 126, 126, 0.28);
  background: rgba(196, 126, 126, 0.08);
}

.audit-inline-notice.is-success {
  border-color: rgba(161, 186, 142, 0.24);
  background: rgba(161, 186, 142, 0.08);
}

.audit-inline-notice-copy {
  line-height: 1.45;
  font-size: 0.92rem;
}

.audit-inline-notice-action {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 243, 0.96);
  font: inherit;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.audit-mode-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.audit-save-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.audit-save-status.is-saving {
  color: rgba(243, 239, 232, 0.9);
  border-color: rgba(232, 223, 212, 0.24);
  background: rgba(232, 223, 212, 0.08);
}

.audit-save-status.is-warning {
  color: rgba(244, 216, 169, 0.96);
  border-color: rgba(214, 174, 103, 0.28);
  background: rgba(214, 174, 103, 0.08);
}

.audit-text-scale-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.audit-text-scale-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(243, 239, 232, 0.62);
  padding: 7px 12px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.audit-text-scale-button.is-active {
  background: rgba(243, 239, 232, 0.14);
  color: rgba(255, 250, 243, 0.96);
}

.audit-mode-label {
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-focus,
.audit-break,
.audit-dev,
.audit-exit {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(243, 239, 232, 0.68);
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.audit-focus:hover,
.audit-break:hover,
.audit-dev:hover,
.audit-exit:hover {
  color: var(--text);
}

.audit-focus[hidden],
.audit-break[hidden] {
  display: none;
}

.dev-audit-grid {
  display: grid;
  gap: 18px;
}

.dev-audit-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.dev-audit-card-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dev-audit-card-head h4,
.dev-audit-card-head p {
  margin: 0;
}

.dev-audit-card-head p {
  color: var(--muted);
  line-height: 1.7;
}

.dev-audit-index {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
}

.dev-audit-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dev-audit-question-list {
  display: grid;
  gap: 10px;
}

.dev-audit-question {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted-strong);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.dev-audit-question:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
}

.dev-audit-question span {
  min-width: 24px;
  color: rgba(243, 239, 232, 0.48);
}

.dev-audit-question strong {
  font-weight: 500;
  line-height: 1.6;
}

.full-audit-view {
  width: 100%;
}

.full-audit-view.is-animated {
  animation: auditFade 260ms ease;
}

.full-audit-card {
  min-height: 78vh;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 34px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition:
    padding 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
  overflow: clip;
}

.audit-mode[data-theme="light"] .full-audit-card {
  background: rgba(255, 248, 240, 0.8);
  border-color: rgba(73, 63, 52, 0.14);
  box-shadow: 0 24px 60px rgba(73, 63, 52, 0.12);
}

.audit-mode[data-theme="light"] .audit-text-scale-toggle {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.46);
}

.audit-mode[data-theme="light"] .audit-save-status {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(42, 39, 35, 0.68);
}

.audit-mode[data-theme="light"] .audit-save-status.is-saving {
  border-color: rgba(161, 143, 118, 0.22);
  background: rgba(161, 143, 118, 0.1);
  color: rgba(42, 39, 35, 0.9);
}

.audit-mode[data-theme="light"] .audit-save-status.is-warning {
  border-color: rgba(176, 129, 58, 0.22);
  background: rgba(176, 129, 58, 0.08);
  color: rgba(102, 72, 18, 0.92);
}

.audit-mode[data-theme="light"] .audit-text-scale-button {
  color: rgba(42, 39, 35, 0.64);
}

.audit-mode[data-theme="light"] .audit-text-scale-button.is-active {
  background: rgba(73, 63, 52, 0.1);
  color: rgba(42, 39, 35, 0.94);
}

.audit-mode[data-theme="nature"] .full-audit-card {
  background: rgba(18, 28, 20, 0.82);
  border-color: rgba(154, 167, 133, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.audit-mode[data-theme="nature"] .audit-text-scale-toggle {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.5);
}

.audit-mode[data-theme="nature"] .audit-save-status {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.62);
  color: rgba(219, 227, 214, 0.7);
}

.audit-mode[data-theme="nature"] .audit-save-status.is-saving {
  border-color: rgba(154, 167, 133, 0.24);
  background: rgba(118, 138, 103, 0.16);
  color: rgba(238, 241, 234, 0.94);
}

.audit-mode[data-theme="nature"] .audit-save-status.is-warning {
  border-color: rgba(194, 177, 126, 0.22);
  background: rgba(194, 177, 126, 0.1);
  color: rgba(244, 236, 204, 0.94);
}

.audit-mode[data-theme="nature"] .audit-text-scale-button {
  color: rgba(232, 237, 228, 0.64);
}

.audit-mode[data-theme="nature"] .audit-text-scale-button.is-active {
  background: rgba(154, 167, 133, 0.16);
  color: rgba(243, 248, 239, 0.96);
}

.full-audit-card-question,
.full-audit-card-intro,
.full-audit-card-reflection,
.full-audit-card-interlude,
.full-audit-card-milestone,
.full-audit-card-disclaimer,
.full-audit-card-result-transition,
.full-audit-card-results {
  min-height: auto;
}

.full-audit-card-welcome {
  min-height: calc(100vh - 150px);
  padding-top: 68px;
  padding-bottom: 68px;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  align-content: center;
  justify-items: center;
}

.audit-mode[data-theme="light"] .full-audit-card-welcome {
  background: rgba(248, 241, 232, 0.88);
}

.audit-mode[data-theme="nature"] .full-audit-card-welcome {
  background: rgba(16, 24, 18, 0.9);
}

.audit-mode[data-theme="light"] .audit-guide-shell,
.audit-mode[data-theme="light"] .audit-guide-point {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.audit-mode[data-theme="light"] .audit-guide-head,
.audit-mode[data-theme="light"] .audit-guide-footer {
  color: rgba(42, 39, 35, 0.5);
}

.audit-mode[data-theme="light"] .audit-guide-input {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(42, 39, 35, 0.66);
}

.audit-mode[data-theme="light"] .audit-guide-pill,
.audit-mode[data-theme="light"] .audit-guide-footer span {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.64);
  color: rgba(42, 39, 35, 0.72);
}

.audit-mode[data-theme="light"] .audit-guide-question-copy p,
.audit-mode[data-theme="light"] .audit-guide-point p {
  color: rgba(42, 39, 35, 0.7);
}

.audit-mode[data-theme="light"] .audit-guide-state-label,
.audit-mode[data-theme="light"] .audit-guide-point-kicker,
.audit-mode[data-theme="light"] .audit-guide-input-note {
  color: rgba(42, 39, 35, 0.5);
}

.audit-mode[data-theme="nature"] .audit-guide-shell,
.audit-mode[data-theme="nature"] .audit-guide-point {
  border-color: rgba(154, 167, 133, 0.12);
  background: rgba(20, 31, 22, 0.58);
}

.audit-mode[data-theme="nature"] .audit-guide-head,
.audit-mode[data-theme="nature"] .audit-guide-footer {
  color: rgba(219, 227, 214, 0.5);
}

.audit-mode[data-theme="nature"] .audit-guide-input {
  border-color: rgba(154, 167, 133, 0.12);
  background: rgba(20, 31, 22, 0.72);
  color: rgba(232, 237, 228, 0.66);
}

.audit-mode[data-theme="nature"] .audit-guide-pill,
.audit-mode[data-theme="nature"] .audit-guide-footer span {
  border-color: rgba(154, 167, 133, 0.12);
  background: rgba(27, 39, 28, 0.8);
  color: rgba(232, 237, 228, 0.76);
}

.audit-mode[data-theme="nature"] .audit-guide-question-copy p,
.audit-mode[data-theme="nature"] .audit-guide-state-label,
.audit-mode[data-theme="nature"] .audit-guide-point-kicker,
.audit-mode[data-theme="nature"] .audit-guide-input-note {
  color: rgba(219, 227, 214, 0.56);
}

.audit-mode.is-focus-mode {
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.06), transparent 30%),
    linear-gradient(180deg, #131315 0%, #0f0f10 52%, #0b0b0c 100%);
}

.audit-mode[data-theme="light"].is-focus-mode {
  background:
    radial-gradient(circle at top, rgba(161, 143, 118, 0.12), transparent 34%),
    linear-gradient(180deg, #d7ccbe 0%, #cbc0b1 100%);
}

.audit-mode[data-theme="nature"].is-focus-mode {
  background:
    radial-gradient(circle at top, rgba(127, 151, 115, 0.14), transparent 34%),
    linear-gradient(180deg, #101510 0%, #0b100c 100%);
}

.audit-mode.is-focus-mode .audit-mode-shell {
  width: min(860px, 100%);
}

.audit-mode.is-focus-mode .audit-mode-label {
  color: rgba(243, 239, 232, 0.36);
}

.full-audit-card-question.is-focus-mode {
  min-height: calc(100vh - 150px);
  align-content: center;
  gap: 28px;
  padding: 56px;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.05), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.audit-mode[data-theme="light"] .full-audit-card-question.is-focus-mode {
  background: rgba(246, 238, 229, 0.94);
  box-shadow: 0 24px 70px rgba(73, 63, 52, 0.14);
}

.audit-mode[data-theme="nature"] .full-audit-card-question.is-focus-mode {
  background: rgba(14, 21, 15, 0.94);
}

.full-audit-card-question.is-focus-mode .full-audit-copy-block,
.full-audit-card-question.is-focus-mode .full-audit-input-wrap,
.full-audit-card-question.is-focus-mode .full-audit-footer {
  max-width: 760px;
}

.full-audit-card-question {
  position: relative;
  padding-bottom: 112px;
}

.full-audit-card-break {
  min-height: calc(100vh - 150px);
  align-content: center;
  justify-items: center;
  gap: 22px;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.1), transparent 34%),
    radial-gradient(circle at bottom center, rgba(255, 255, 255, 0.035), transparent 40%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.full-audit-card-result-transition {
  min-height: calc(100vh - 150px);
  align-content: center;
  justify-items: center;
  gap: 26px;
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.09), transparent 32%),
    radial-gradient(circle at bottom center, rgba(255, 255, 255, 0.03), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.result-transition-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.result-transition-copy .full-audit-title {
  max-width: 11ch;
  margin: 0 auto;
}

.result-transition-status {
  display: grid;
  gap: 10px;
}

.result-transition-line {
  margin: 0;
  color: rgba(243, 239, 232, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.6;
  opacity: 0;
  animation: resultTransitionFade 560ms ease forwards;
}

.result-transition-line-a {
  animation-delay: 180ms;
}

.result-transition-line-b {
  animation-delay: 520ms;
}

.result-transition-line-c {
  animation-delay: 860ms;
}

.result-transition-note {
  letter-spacing: 0.04em;
}

.result-transition-tension {
  margin: 0;
  color: rgba(232, 223, 212, 0.88);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: resultTransitionTension 340ms ease forwards;
}

@keyframes resultTransitionFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes resultTransitionTension {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.audit-mode[data-theme="light"] .full-audit-card-break {
  background:
    radial-gradient(circle at top, rgba(161, 143, 118, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(247, 240, 232, 0.98) 0%, rgba(241, 232, 223, 0.98) 100%);
  box-shadow: 0 24px 70px rgba(73, 63, 52, 0.14);
}

.audit-mode[data-theme="nature"] .full-audit-card-break {
  background:
    radial-gradient(circle at top, rgba(118, 138, 103, 0.18), transparent 32%),
    radial-gradient(circle at bottom, rgba(194, 177, 126, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(18, 28, 20, 0.98) 0%, rgba(12, 18, 13, 0.98) 100%);
}

.audit-break-copy {
  text-align: center;
  max-width: 820px;
}

.full-audit-card-break .full-audit-title {
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.audit-break-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
}

.audit-break-ring,
.audit-break-core {
  position: absolute;
  border-radius: 999px;
}

.audit-break-ring {
  border: 1px solid rgba(240, 231, 220, 0.12);
  animation: auditBreakPulse 6s ease-in-out infinite;
}

.audit-break-ring-outer {
  width: 220px;
  height: 220px;
  animation-delay: 0s;
}

.audit-break-ring-middle {
  width: 164px;
  height: 164px;
  animation-delay: 0.35s;
}

.audit-break-ring-inner {
  width: 112px;
  height: 112px;
  animation-delay: 0.7s;
}

.audit-break-core {
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 35% 35%, rgba(240, 231, 220, 0.98), rgba(240, 231, 220, 0.54));
  box-shadow:
    0 0 0 14px rgba(240, 231, 220, 0.035),
    0 0 24px rgba(240, 231, 220, 0.16);
}

.audit-break-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(620px, 100%);
  margin-top: 18px;
}

.audit-break-steps div {
  padding: 18px 18px 16px;
  border: 1px solid rgba(240, 231, 220, 0.11);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.032));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.audit-break-steps strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(243, 239, 232, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.audit-break-steps p {
  margin: 0;
  color: rgba(243, 239, 232, 0.66);
  line-height: 1.7;
}

.audit-mode[data-theme="light"] .full-audit-meta,
.audit-mode[data-theme="light"] .section-kicker,
.audit-mode[data-theme="light"] .full-audit-note,
.audit-mode[data-theme="light"] .full-audit-submeta {
  color: rgba(42, 39, 35, 0.62);
}

.audit-mode[data-theme="light"] .full-audit-title,
.audit-mode[data-theme="light"] .full-audit-meta strong,
.audit-mode[data-theme="light"] .full-audit-copy-block strong,
.audit-mode[data-theme="light"] .auditor-tab.is-active,
.audit-mode[data-theme="light"] .audit-mode-label,
.audit-mode[data-theme="light"] .audit-focus,
.audit-mode[data-theme="light"] .audit-break,
.audit-mode[data-theme="light"] .audit-dev,
.audit-mode[data-theme="light"] .audit-exit {
  color: #2a2723;
}

.audit-mode[data-theme="light"] .full-audit-lead,
.audit-mode[data-theme="light"] .voice-copy,
.audit-mode[data-theme="light"] .audit-break-steps p {
  color: rgba(42, 39, 35, 0.78);
}

.audit-mode[data-theme="light"] .editorial-list-dot {
  background: rgba(73, 63, 52, 0.82);
  box-shadow: 0 0 0 6px rgba(73, 63, 52, 0.08);
}

.audit-mode[data-theme="light"] .audit-read-question-button {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: rgba(42, 39, 35, 0.78);
}

.audit-mode[data-theme="light"] .audit-read-question-button:hover,
.audit-mode[data-theme="light"] .audit-read-question-button:focus-visible,
.audit-mode[data-theme="light"] .audit-read-question-button.is-active {
  border-color: rgba(73, 63, 52, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(42, 39, 35, 0.96);
}

.audit-mode[data-theme="light"] .full-audit-input,
.audit-mode[data-theme="light"] .full-audit-textarea,
.audit-mode[data-theme="light"] .audit-break-steps div,
.audit-mode[data-theme="light"] .auditor-drawer,
.audit-mode[data-theme="light"] .depth-prompt,
.audit-mode[data-theme="light"] .skip-prompt {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(73, 63, 52, 0.14);
  color: #25211d;
}

.audit-mode[data-theme="light"] .auditor-kicker {
  color: rgba(42, 39, 35, 0.46);
}

.audit-mode[data-theme="light"] .auditor-drawer-head h3 {
  color: #2a2723;
}

.audit-mode[data-theme="light"] .auditor-close {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(42, 39, 35, 0.7);
}

.audit-mode[data-theme="light"] .auditor-close:hover {
  border-color: rgba(73, 63, 52, 0.2);
  color: rgba(42, 39, 35, 0.9);
}

.audit-mode[data-theme="light"] .full-audit-input::placeholder,
.audit-mode[data-theme="light"] .full-audit-textarea::placeholder {
  color: rgba(42, 39, 35, 0.34);
}

.audit-mode[data-theme="light"] .inline-voice-button,
.audit-mode[data-theme="light"] .icon-audio-button {
  border-color: rgba(73, 63, 52, 0.14);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(42, 39, 35, 0.72);
}

.audit-mode[data-theme="nature"] .audit-mode-label,
.audit-mode[data-theme="nature"] .audit-focus,
.audit-mode[data-theme="nature"] .audit-break,
.audit-mode[data-theme="nature"] .audit-dev,
.audit-mode[data-theme="nature"] .audit-exit,
.audit-mode[data-theme="nature"] .full-audit-meta,
.audit-mode[data-theme="nature"] .section-kicker,
.audit-mode[data-theme="nature"] .full-audit-note,
.audit-mode[data-theme="nature"] .full-audit-submeta {
  color: rgba(219, 227, 214, 0.62);
}

.audit-mode[data-theme="nature"] .full-audit-title,
.audit-mode[data-theme="nature"] .full-audit-lead,
.audit-mode[data-theme="nature"] .voice-copy,
.audit-mode[data-theme="nature"] .audit-break-steps strong {
  color: #eef1ea;
}

.audit-mode[data-theme="nature"] .audit-break-steps p {
  color: rgba(219, 227, 214, 0.72);
}

.audit-mode[data-theme="nature"] .editorial-list-dot {
  background: rgba(219, 227, 214, 0.86);
  box-shadow: 0 0 0 6px rgba(219, 227, 214, 0.08);
}

.audit-mode[data-theme="nature"] .audit-read-question-button {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.82);
  color: rgba(238, 241, 234, 0.82);
}

.audit-mode[data-theme="nature"] .audit-read-question-button:hover,
.audit-mode[data-theme="nature"] .audit-read-question-button:focus-visible,
.audit-mode[data-theme="nature"] .audit-read-question-button.is-active {
  border-color: rgba(154, 167, 133, 0.24);
  background: rgba(27, 39, 28, 0.96);
  color: rgba(238, 241, 234, 0.96);
}

.audit-mode[data-theme="nature"] .full-audit-input,
.audit-mode[data-theme="nature"] .full-audit-textarea,
.audit-mode[data-theme="nature"] .audit-break-steps div,
.audit-mode[data-theme="nature"] .auditor-drawer,
.audit-mode[data-theme="nature"] .depth-prompt,
.audit-mode[data-theme="nature"] .skip-prompt {
  background: rgba(20, 31, 22, 0.7);
  border-color: rgba(154, 167, 133, 0.14);
}

.audit-mode[data-theme="nature"] .auditor-kicker {
  color: rgba(219, 227, 214, 0.46);
}

.audit-mode[data-theme="nature"] .auditor-drawer-head h3 {
  color: #eef1ea;
}

.audit-mode[data-theme="nature"] .auditor-close {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.76);
  color: rgba(232, 237, 228, 0.72);
}

.audit-mode[data-theme="nature"] .auditor-close:hover {
  border-color: rgba(154, 167, 133, 0.24);
  color: rgba(238, 241, 234, 0.9);
}

.audit-mode[data-theme="nature"] .full-audit-input::placeholder,
.audit-mode[data-theme="nature"] .full-audit-textarea::placeholder {
  color: rgba(219, 227, 214, 0.34);
}

.audit-mode[data-theme="nature"] .inline-voice-button,
.audit-mode[data-theme="nature"] .icon-audio-button {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.72);
  color: rgba(232, 237, 228, 0.76);
}

@keyframes auditBreakPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.42;
  }

  35% {
    transform: scale(1.04);
    opacity: 0.88;
  }

  65% {
    transform: scale(1);
    opacity: 0.6;
  }
}

.full-audit-card-intro,
.full-audit-card-reflection,
.full-audit-card-interlude,
.full-audit-card-milestone,
.full-audit-card-disclaimer {
  justify-items: center;
}

.full-audit-card-interlude {
  gap: 28px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(232, 223, 212, 0.14), transparent 36%),
    radial-gradient(circle at bottom left, rgba(194, 177, 126, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.06), rgba(255, 255, 255, 0.018));
}

.audit-interlude-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audit-interlude-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
}

.audit-interlude-glow-a {
  width: 180px;
  height: 180px;
  top: 36px;
  right: 54px;
  background: radial-gradient(circle, rgba(240, 231, 220, 0.12), transparent 70%);
}

.audit-interlude-glow-b {
  width: 220px;
  height: 220px;
  left: 42px;
  bottom: 34px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 72%);
}

.audit-interlude-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 840px;
}

.audit-interlude-copy .section-kicker {
  color: rgba(240, 231, 220, 0.62);
  letter-spacing: 0.24em;
}

.audit-interlude-copy .full-audit-title {
  max-width: 15ch;
  margin-inline: auto;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.audit-interlude-copy .full-audit-lead {
  max-width: 38rem;
  margin-inline: auto;
  color: rgba(243, 239, 232, 0.78);
  font-size: 1.2rem;
  line-height: 1.55;
}

.audit-interlude-mission {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(920px, 100%);
}

.audit-interlude-mission-card,
.audit-interlude-carry {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.audit-interlude-mission-card span,
.audit-interlude-carry span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 194, 156, 0.82);
}

.audit-interlude-mission-card p,
.audit-interlude-carry p {
  margin: 0;
  color: rgba(243, 239, 232, 0.86);
  line-height: 1.75;
}

.audit-interlude-mission-card-primary {
  text-align: center;
}

.audit-mode[data-theme="light"] .full-audit-card-interlude {
  background:
    radial-gradient(circle at top right, rgba(183, 160, 132, 0.15), transparent 36%),
    linear-gradient(180deg, rgba(247, 240, 232, 0.98), rgba(241, 232, 223, 0.98));
}

.audit-mode[data-theme="light"] .audit-interlude-copy .section-kicker {
  color: rgba(110, 88, 62, 0.62);
}

.audit-mode[data-theme="light"] .audit-interlude-mission-card,
.audit-mode[data-theme="light"] .audit-interlude-carry {
  border-color: rgba(73, 63, 52, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.46));
}

.audit-mode[data-theme="light"] .audit-interlude-mission-card span,
.audit-mode[data-theme="light"] .audit-interlude-carry span {
  color: rgba(135, 103, 63, 0.8);
}

.audit-mode[data-theme="light"] .audit-interlude-mission-card p,
.audit-mode[data-theme="light"] .audit-interlude-carry p {
  color: rgba(42, 39, 35, 0.82);
}

.audit-mode[data-theme="light"] .audit-interlude-copy .full-audit-lead {
  color: rgba(42, 39, 35, 0.76);
}

.audit-mode[data-theme="nature"] .full-audit-card-interlude {
  background:
    radial-gradient(circle at top right, rgba(118, 138, 103, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(14, 20, 15, 0.98), rgba(10, 14, 11, 0.98));
}

.audit-mode[data-theme="nature"] .audit-interlude-copy .section-kicker {
  color: rgba(194, 177, 126, 0.66);
}

.audit-mode[data-theme="nature"] .audit-interlude-mission-card,
.audit-mode[data-theme="nature"] .audit-interlude-carry {
  border-color: rgba(154, 167, 133, 0.12);
  background: linear-gradient(180deg, rgba(27, 39, 28, 0.78), rgba(20, 31, 22, 0.62));
}

.audit-mode[data-theme="nature"] .audit-interlude-mission-card span,
.audit-mode[data-theme="nature"] .audit-interlude-carry span {
  color: rgba(194, 177, 126, 0.82);
}

.audit-mode[data-theme="nature"] .audit-interlude-mission-card p,
.audit-mode[data-theme="nature"] .audit-interlude-carry p {
  color: rgba(232, 237, 228, 0.82);
}

.audit-mode[data-theme="nature"] .audit-interlude-copy .full-audit-lead {
  color: rgba(232, 237, 228, 0.74);
}

.audit-interlude-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.audit-interlude-tile {
  display: grid;
  gap: 10px;
  min-height: 158px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.audit-interlude-tile span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 194, 156, 0.8);
}

.audit-interlude-tile p {
  margin: 0;
  color: rgba(243, 239, 232, 0.82);
  line-height: 1.8;
  font-size: 0.98rem;
}

.audit-mode[data-theme="light"] .audit-interlude-tile {
  border-color: rgba(73, 63, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.46));
}

.audit-mode[data-theme="light"] .audit-interlude-tile span {
  color: rgba(42, 39, 35, 0.46);
}

.audit-mode[data-theme="light"] .audit-interlude-tile p {
  color: rgba(42, 39, 35, 0.82);
}

.audit-mode[data-theme="nature"] .audit-interlude-tile {
  border-color: rgba(154, 167, 133, 0.12);
  background:
    linear-gradient(180deg, rgba(27, 39, 28, 0.78), rgba(20, 31, 22, 0.62));
}

.audit-mode[data-theme="nature"] .audit-interlude-tile span {
  color: rgba(219, 227, 214, 0.48);
}

.audit-mode[data-theme="nature"] .audit-interlude-tile p {
  color: rgba(232, 237, 228, 0.82);
}

.full-audit-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(760px, 100%);
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.full-audit-meta-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.full-audit-header-link {
  color: rgba(243, 239, 232, 0.62);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.full-audit-header-link:hover,
.full-audit-header-link:focus-visible {
  color: rgba(243, 239, 232, 0.92);
}

.full-audit-copy-block {
  max-width: 720px;
  width: min(720px, 100%);
  display: grid;
  gap: 0;
}

.full-audit-copy-block-intro {
  max-width: 820px;
}

.full-audit-copy-block-disclaimer {
  max-width: 620px;
}

.full-audit-disclaimer-text {
  margin: 0;
  color: rgba(243, 239, 232, 0.8);
  font-size: 1rem;
  line-height: 1.9;
}

.full-audit-copy-block-disclaimer > * + .full-audit-disclaimer-text,
.full-audit-copy-block-disclaimer > * + .audit-legal-copy {
  margin-top: 14px;
}

.audit-context-field {
  display: grid;
  gap: 10px;
  width: min(360px, 100%);
  margin-top: 20px;
}

.audit-context-label {
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audit-context-input {
  min-height: 60px;
}

.audit-context-select-wrap {
  position: relative;
}

.audit-context-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 58px;
  cursor: pointer;
  color-scheme: dark;
  background-color: #141416;
  color: rgba(243, 239, 232, 0.96);
}

.audit-context-select option,
.audit-context-select optgroup {
  background-color: #141416;
  color: rgba(243, 239, 232, 0.96);
}

.audit-context-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(243, 239, 232, 0.6);
  border-bottom: 1.5px solid rgba(243, 239, 232, 0.6);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.audit-context-note {
  margin: 0;
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.88rem;
  line-height: 1.7;
}

.full-audit-intro-panel {
  display: grid;
  align-content: start;
  min-height: auto;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 420ms ease, transform 420ms ease;
  justify-items: center;
  text-align: center;
}

.full-audit-intro-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.full-audit-title {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.full-audit-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.full-audit-title-row .audit-walkthrough-question-target {
  flex: 1 1 auto;
  min-width: 0;
}

.full-audit-card-question .full-audit-copy-block {
  margin-inline: auto;
  text-align: center;
}

.full-audit-card-question .full-audit-title-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: start;
  gap: 16px;
  min-height: 42px;
}

.full-audit-card-question .full-audit-title-row::before {
  content: "";
  width: 42px;
  height: 42px;
}

.full-audit-card-question .full-audit-title-row .audit-walkthrough-question-target {
  grid-column: 2;
  width: 100%;
  text-align: center;
}

.full-audit-card-question .full-audit-title {
  text-align: center;
}

.full-audit-card-question .audit-read-question-button {
  grid-column: 3;
  justify-self: end;
  margin: 0;
}

.full-audit-card-question .full-audit-note,
.full-audit-card-question .full-audit-return-note,
.full-audit-card-question .audit-realisation-callback {
  text-align: center;
}

.full-audit-card-question .audit-prompts-entry {
  margin-inline: auto;
}

.full-audit-card-interlude .full-audit-copy-block,
.full-audit-card-milestone .full-audit-copy-block,
.full-audit-card-intro .full-audit-copy-block,
.full-audit-card-disclaimer .full-audit-copy-block,
.full-audit-card-reflection .full-audit-copy-block {
  margin-inline: auto;
  text-align: center;
}

.full-audit-card-interlude .full-audit-footer,
.full-audit-card-milestone .full-audit-footer,
.full-audit-card-intro .full-audit-footer,
.full-audit-card-disclaimer .full-audit-footer,
.full-audit-card-reflection .full-audit-footer {
  justify-content: center;
}

.mini-audit-title-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: start;
  gap: 12px;
}

.mini-audit-title-row::before {
  content: "";
  width: 42px;
  height: 42px;
}

.mini-audit-title-row > div:first-child {
  grid-column: 2;
  min-width: 0;
}

.mini-audit-title-row .audit-read-question-button {
  grid-column: 3;
  justify-self: end;
}

.audit-read-question-button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.82);
  cursor: pointer;
  box-shadow: 0 0 0 rgba(232, 219, 197, 0);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.audit-read-question-button:hover,
.audit-read-question-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(243, 239, 232, 0.96);
}

.audit-read-question-button.is-active {
  border-color: rgba(232, 219, 197, 0.42);
  background: rgba(232, 219, 197, 0.12);
  color: rgba(255, 249, 239, 0.98);
  box-shadow: 0 0 0 1px rgba(232, 219, 197, 0.16), 0 0 18px rgba(232, 219, 197, 0.16);
}

.audit-read-question-button:hover {
  transform: translateY(-1px);
}

.audit-read-question-button svg {
  width: 18px;
  height: 18px;
}

.audit-read-question-button.is-active svg {
  animation: auditReadQuestionPulse 1.25s ease-in-out infinite;
}

.full-audit-note-skip {
  color: rgba(243, 239, 232, 0.6);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 56ch;
  margin-inline: auto;
}

.full-audit-skip-popup {
  width: min(540px, 100%);
  display: grid;
  gap: 16px;
  margin: 0 auto;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.06), transparent 38%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.full-audit-skip-popup-copy {
  display: grid;
  gap: 6px;
  text-align: center;
}

.full-audit-skip-popup-copy .section-kicker {
  margin: 0;
}

.full-audit-skip-popup-copy h3 {
  margin: 0;
  color: rgba(243, 239, 232, 0.96);
  font-size: clamp(1.05rem, 0.98rem + 0.48vw, 1.28rem);
  line-height: 1.2;
}

.full-audit-skip-popup-copy p:last-child {
  margin: 0;
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

.full-audit-skip-popup-action {
  width: 100%;
}

.full-audit-lead,
.full-audit-note {
  margin: 20px 0 0;
  max-width: 720px;
  text-wrap: pretty;
}

.full-audit-lead {
  color: rgba(243, 239, 232, 0.82);
  font-size: 1.02rem;
  line-height: 1.78;
}

.full-audit-lead-compact {
  margin-top: 14px;
  font-size: 0.95rem;
  line-height: 1.65;
}

.full-audit-note {
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.full-audit-note-audio {
  margin-top: 10px;
}

.audit-mode[data-text-scale="compact"] .full-audit-title {
  font-size: clamp(2rem, 4.8vw, 3.85rem);
  line-height: 1.08;
}

.audit-mode[data-text-scale="compact"] .full-audit-lead,
.audit-mode[data-text-scale="compact"] .full-audit-note {
  font-size: 0.94rem;
  line-height: 1.7;
}

.audit-mode[data-text-scale="compact"] .full-audit-input,
.audit-mode[data-text-scale="compact"] .full-audit-textarea {
  font-size: 0.96rem;
  line-height: 1.58;
}

@keyframes auditReadQuestionPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.82;
  }
}

.full-audit-title-intro {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.full-audit-title-guide {
  max-width: 12ch;
}

.full-audit-prep-copy {
  display: grid;
  gap: 0;
  margin-top: 18px;
  justify-items: center;
}

.full-audit-guide-copy {
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.audit-guide-stage {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.88fr);
  gap: 24px;
  align-items: start;
}

.audit-guide-preview {
  width: 100%;
  display: grid;
  justify-items: center;
}

.audit-guide-shell {
  position: relative;
  overflow: hidden;
  width: min(620px, 100%);
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  text-align: left;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.full-audit-card-guide.is-animated .audit-guide-shell {
  animation: auditGuideShellIn 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.audit-guide-shell-glow {
  position: absolute;
  inset: -24% auto auto 62%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231, 221, 206, 0.18), transparent 66%);
  pointer-events: none;
  filter: blur(10px);
}

.audit-guide-question-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  align-items: start;
}

.audit-guide-question-copy {
  display: grid;
  gap: 10px;
}

.audit-guide-question-copy p {
  margin: 0;
  max-width: 36ch;
  color: rgba(243, 239, 232, 0.64);
  line-height: 1.62;
}

.audit-guide-state-badge {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.full-audit-card-guide.is-animated .audit-guide-state-badge {
  animation: auditGuideFocusPulse 5.8s ease-in-out 1.15s infinite;
}

.audit-guide-state-label,
.audit-guide-point-kicker {
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-guide-state-badge strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.4;
}

.audit-guide-head,
.audit-guide-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audit-guide-shell h3 {
  margin: 0;
  font-size: 1.82rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.audit-guide-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audit-guide-pill,
.audit-guide-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.audit-guide-pill-mic {
  padding-left: 12px;
  background: linear-gradient(180deg, rgba(231, 221, 206, 0.18), rgba(255, 255, 255, 0.05));
  color: rgba(255, 247, 236, 0.92);
  box-shadow: 0 0 0 1px rgba(231, 221, 206, 0.08), 0 12px 28px rgba(0, 0, 0, 0.18);
}

.full-audit-card-guide.is-animated .audit-guide-pill {
  opacity: 0;
  transform: translateY(10px);
  animation: auditGuideControlIn 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(1) {
  animation-delay: 260ms;
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(2) {
  animation-delay: 620ms;
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(3) {
  animation-delay: 980ms;
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(4) {
  animation-delay: 1340ms;
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(2),
.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(3),
.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(4) {
  position: relative;
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(2)::after,
.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(3)::after,
.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(4)::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(231, 221, 206, 0.14), 0 0 24px rgba(231, 221, 206, 0.12);
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(2)::after {
  animation: auditGuidePulse 5.4s ease-in-out 1.05s infinite;
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(3)::after {
  animation: auditGuidePulse 5.4s ease-in-out 1.95s infinite;
}

.full-audit-card-guide.is-animated .audit-guide-pill:nth-child(4)::after {
  animation: auditGuidePulse 5.4s ease-in-out 2.85s infinite;
}

.audit-guide-input-wrap {
  display: grid;
  gap: 10px;
}

.audit-guide-input {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 96px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 239, 232, 0.68);
  line-height: 1.65;
}

.audit-guide-cursor {
  width: 10px;
  min-width: 10px;
  height: 26px;
  border-radius: 999px;
  background: rgba(231, 221, 206, 0.92);
  box-shadow: 0 0 0 8px rgba(231, 221, 206, 0.08);
  animation: auditGuideBlink 1.6s ease-in-out infinite;
}

.audit-guide-input-note {
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.full-audit-card-guide.is-animated .audit-guide-input-wrap {
  opacity: 0;
  transform: translateY(10px);
  animation: auditGuideControlIn 560ms cubic-bezier(0.22, 1, 0.36, 1) 1.58s forwards;
}

.audit-guide-points {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
}

.audit-guide-point {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.audit-guide-point-primary {
  padding: 22px 20px 24px;
  background:
    radial-gradient(circle at top right, rgba(231, 221, 206, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.full-audit-card-guide.is-animated .audit-guide-point {
  opacity: 0;
  transform: translateY(12px);
  animation: auditGuideControlIn 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.full-audit-card-guide.is-animated .audit-guide-point:nth-child(1) {
  animation-delay: 1.9s;
}

.full-audit-card-guide.is-animated .audit-guide-point:nth-child(2) {
  animation-delay: 2.1s;
}

.full-audit-card-guide.is-animated .audit-guide-point:nth-child(3) {
  animation-delay: 2.3s;
}

.full-audit-card-guide.is-animated .audit-guide-point:nth-child(4) {
  animation-delay: 2.5s;
}

.audit-guide-point strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.45;
}

.audit-guide-point p {
  margin: 0;
  color: rgba(243, 239, 232, 0.68);
  line-height: 1.65;
}

.full-audit-card-question.has-walkthrough {
  position: relative;
  overflow: hidden;
}

.audit-walkthrough {
  position: absolute;
  inset: 0;
  z-index: 30;
}

.audit-walkthrough-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(1px);
}

.full-audit-card-question.has-walkthrough [data-walkthrough-target] {
  position: relative;
}

.audit-walkthrough-question-target {
  display: inline-block;
  max-width: min(940px, 100%);
}

.full-audit-card-question.walkthrough-step-question [data-walkthrough-target="question"],
.full-audit-card-question.walkthrough-step-input [data-walkthrough-target="input"],
.full-audit-card-question.walkthrough-step-prompts [data-walkthrough-target="prompts"],
.full-audit-card-question.walkthrough-step-side-notes [data-walkthrough-target="side-notes"],
.full-audit-card-question.walkthrough-step-footer [data-walkthrough-target="footer"] {
  z-index: 31;
  pointer-events: none;
}

.full-audit-card-question.walkthrough-step-question [data-walkthrough-target="question"]::after,
.full-audit-card-question.walkthrough-step-input [data-walkthrough-target="input"]::after,
.full-audit-card-question.walkthrough-step-prompts [data-walkthrough-target="prompts"]::after,
.full-audit-card-question.walkthrough-step-side-notes [data-walkthrough-target="side-notes"]::after,
.full-audit-card-question.walkthrough-step-footer [data-walkthrough-target="footer"]::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  border: 1px solid rgba(255, 244, 228, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 244, 228, 0.22),
    0 0 22px rgba(255, 244, 228, 0.26),
    0 0 56px rgba(255, 244, 228, 0.18);
  animation: auditWalkthroughPulse 1.9s ease-in-out infinite;
}

.full-audit-card-question.walkthrough-step-prompts [data-walkthrough-target="prompts"]::after,
.full-audit-card-question.walkthrough-step-side-notes [data-walkthrough-target="side-notes"]::after {
  inset: -8px;
  border-radius: 999px;
}

.audit-walkthrough-tooltip {
  position: absolute;
  width: min(360px, calc(100% - 48px));
  display: grid;
  gap: 12px;
  padding: 22px 22px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #0f1117;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 70px rgba(0, 0, 0, 0.52),
    0 0 26px rgba(231, 221, 206, 0.09);
  z-index: 32;
}

.audit-walkthrough-step {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-walkthrough-tooltip h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.audit-walkthrough-tooltip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.audit-walkthrough-tooltip .button {
  justify-self: start;
}

.audit-walkthrough-tooltip-question {
  top: auto;
  bottom: 164px;
  right: 28px;
}

.audit-walkthrough-tooltip-input {
  top: auto;
  bottom: 248px;
  right: 44px;
}

.audit-walkthrough-tooltip-prompts,
.audit-walkthrough-tooltip-side-notes {
  bottom: 118px;
  right: 28px;
}

.audit-walkthrough-tooltip-footer {
  bottom: 28px;
  right: 28px;
}

@keyframes auditGuideBlink {
  0%,
  100% {
    opacity: 1;
  }

  45%,
  55% {
    opacity: 0.28;
  }
}

@keyframes auditGuideShellIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes auditGuideControlIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes auditGuidePulse {
  0%,
  72%,
  100% {
    opacity: 0;
  }

  10%,
  28% {
    opacity: 1;
  }
}

@keyframes auditGuideFocusPulse {
  0%,
  68%,
  100% {
    box-shadow: none;
    transform: translateY(0);
  }

  12%,
  24% {
    box-shadow: 0 0 0 1px rgba(231, 221, 206, 0.14), 0 20px 34px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
  }
}

@keyframes auditWalkthroughPulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.01);
  }
}

.full-audit-card-routing {
  display: grid;
  gap: 28px;
}

.full-audit-card-routing-pause {
  min-height: 360px;
  align-content: center;
}

.full-audit-routing-copy {
  display: grid;
  gap: 18px;
}

.full-audit-routing-progress {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 30%),
    rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.full-audit-routing-progress strong {
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.full-audit-routing-bar {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.28);
}

.full-audit-routing-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(243, 239, 232, 0.4), rgba(243, 239, 232, 0.95));
}

.full-audit-routing-progress-pause {
  grid-template-columns: 1fr;
  gap: 14px;
}

.full-audit-routing-progress-pause .full-audit-routing-bar span {
  animation: routePulse 1.1s ease-in-out infinite;
}

.full-audit-routing-feature,
.full-audit-routing-grid {
  display: grid;
  gap: 14px;
}

.full-audit-routing-feature {
  gap: 16px;
}

.full-audit-routing-grid-head {
  display: grid;
  gap: 6px;
}

.full-audit-routing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.full-audit-routing-card {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 18px 18px 19px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 28%),
    rgba(255, 255, 255, 0.02);
  color: inherit;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.full-audit-routing-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.full-audit-routing-card.is-primary {
  padding: 24px 24px 26px;
  border-color: rgba(255, 255, 255, 0.14);
  border-width: 1.5px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.09), transparent 30%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
}

.full-audit-routing-card.is-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.2);
}

.full-audit-routing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.full-audit-routing-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.full-audit-routing-card.is-primary h3 {
  font-size: 1.28rem;
}

.full-audit-routing-card p {
  margin: 0;
  color: rgba(243, 239, 232, 0.6);
  line-height: 1.62;
}

.full-audit-routing-card.is-primary p {
  color: rgba(243, 239, 232, 0.76);
}

.full-audit-routing-state {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.full-audit-routing-card.is-primary .full-audit-routing-state {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(243, 239, 232, 0.9);
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.82;
    transform: scaleX(0.985);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.intro-typed-stack {
  display: grid;
  gap: 22px;
}

.intro-type-row {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
}

.intro-type-row p,
.intro-type-row h2 {
  margin: 0;
}

.intro-type-row .full-audit-note,
.intro-type-row .full-audit-lead {
  margin: 0;
}

.intro-cursor {
  width: 1px;
  min-width: 1px;
  height: 1.2em;
  background: rgba(243, 239, 232, 0.72);
  opacity: 0;
}

.intro-type-row.is-active .intro-cursor,
.intro-type-row:last-child.is-complete .intro-cursor {
  opacity: 1;
  animation: heroCaret 1s step-end infinite;
}

.intro-type-row.is-complete:not(:last-child) .intro-cursor {
  opacity: 0;
  animation: none;
}

.full-audit-footer.full-audit-footer-intro {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
  align-self: stretch;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.full-audit-footer.full-audit-footer-intro.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.full-audit-footer.full-audit-footer-intro .button {
  margin-inline: auto;
}

.full-audit-progressbar {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
}

.full-audit-progresscopy {
  display: grid;
  gap: 8px;
}

.full-audit-submeta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.88rem;
  line-height: 1.6;
}

.progress-bar-journey {
  height: 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.full-audit-input-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  overflow: visible;
}

.full-audit-input-zone {
  width: 100%;
  display: block;
  position: relative;
}

.full-audit-inline-nav {
  display: none;
}

.full-audit-input-shell {
  position: relative;
  display: grid;
  gap: 0;
}

.full-audit-input {
  width: 100%;
  min-height: 64px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-size: 1.02rem;
  line-height: 1.6;
  outline: none;
}

.full-audit-input:focus {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.full-audit-input::placeholder {
  color: rgba(243, 239, 232, 0.34);
}

.audit-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  cursor: pointer;
}

.audit-check input {
  margin: 0;
  accent-color: var(--accent);
}

.full-audit-textarea {
  width: 100%;
  min-height: 360px;
  max-width: 100%;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-size: 1.04rem;
  line-height: 2;
  resize: none;
  overflow-y: hidden;
  outline: none;
}

.full-audit-textarea:focus {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.full-audit-textarea::placeholder {
  color: rgba(243, 239, 232, 0.34);
}

.full-audit-textarea-reflection {
  min-height: 360px;
}

.full-audit-textarea-compact {
  min-height: 180px;
  padding: 22px 24px;
  line-height: 1.75;
}

.full-audit-textarea-flow {
  min-height: 220px;
}

.full-audit-direction-builder {
  display: grid;
  gap: 18px;
}

.full-audit-direction-helper {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.full-audit-direction-helper p {
  margin: 0;
  color: rgba(243, 239, 232, 0.84);
  line-height: 1.7;
}

.full-audit-direction-helper ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(243, 239, 232, 0.72);
  display: grid;
  gap: 6px;
}

.full-audit-direction-fields {
  display: grid;
  gap: 14px;
}

.full-audit-direction-field {
  display: grid;
  gap: 8px;
}

.full-audit-direction-field span {
  color: rgba(243, 239, 232, 0.78);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.full-audit-direction-textarea {
  min-height: 132px;
  padding: 22px 24px;
  line-height: 1.7;
}

.full-audit-textarea-with-voice {
  padding-right: 84px;
  padding-bottom: 72px;
}

.full-audit-input-with-voice {
  padding-right: 76px;
}

.full-audit-input-stack {
  display: grid;
  gap: 10px;
}

.full-audit-input[data-voice-locked="true"],
.full-audit-textarea[data-voice-locked="true"] {
  cursor: not-allowed;
  opacity: 0.92;
}

.inline-voice-button {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 239, 232, 0.72);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
  z-index: 2;
}

.voice-state-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 0 0 0 transparent;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.inline-voice-button:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.inline-voice-button svg {
  width: 18px;
  height: 18px;
}

.inline-voice-button-textarea {
  top: auto;
  bottom: 18px;
  transform: none;
}

.inline-voice-button.is-listening {
  border-color: rgba(255, 92, 92, 0.6);
  background: rgba(120, 18, 18, 0.28);
  color: #fff5f5;
  box-shadow: 0 0 0 1px rgba(255, 92, 92, 0.14), 0 0 22px rgba(255, 92, 92, 0.18);
  animation: voiceListeningPulse 1.45s ease-in-out infinite;
}

.inline-voice-button.is-listening .voice-state-dot {
  background: #ff5c5c;
  box-shadow: 0 0 0 6px rgba(255, 92, 92, 0.14);
}

.full-audit-scale-wrap {
  display: grid;
  gap: 14px;
}

.full-audit-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.full-audit-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mental-tabs-builder,
.mental-tabs-selection {
  display: grid;
  gap: 16px;
}

.mental-tabs-mobile-flow,
.mental-tabs-screen,
.mental-tabs-capture-list,
.mental-tabs-handoff-grid {
  display: grid;
  gap: 16px;
}

.mental-tabs-screen {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.025);
  align-content: start;
  justify-items: center;
}

.mental-tabs-screen h3,
.mental-tabs-screen .full-audit-note,
.mental-tabs-screen .section-kicker,
.mental-tabs-screen .mental-tabs-capture-footer,
.mental-tabs-screen .mental-tabs-sort-meta {
  text-align: center;
}

.mental-tabs-screen h3,
.mental-tabs-screen .full-audit-note {
  margin-inline: auto;
}

.mental-tabs-screen h3 {
  margin: 0;
  max-width: 14ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.mental-tabs-screen > p:not(.section-kicker):not(.full-audit-note),
.mental-tabs-capture-copy {
  margin: 12px auto 0;
  max-width: 46ch;
  color: rgba(243, 239, 232, 0.76);
  font-size: 0.98rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.mental-tabs-capture-head,
.mental-tabs-entry-row,
.mental-tabs-cloud,
.mental-tabs-capture-bar,
.mental-tabs-rotating-examples,
.mental-tabs-capture-list,
.mental-tabs-empty,
.mental-tabs-handoff-grid,
.mental-tabs-sort-meta,
.mental-tabs-swipe-stage,
.mental-tabs-swipe-labels,
.mental-tabs-swipe-actions,
.mental-tabs-state-panel,
.mental-tabs-relief-band,
.mental-tabs-output-list,
.mental-tabs-priority-list {
  width: 100%;
}

.mental-tabs-capture-bar,
.mental-tabs-rotating-examples,
.mental-tabs-capture-list,
.mental-tabs-empty,
.mental-tabs-capture-footer {
  max-width: 760px;
  margin-inline: auto;
}

.mental-tabs-screen .mental-tabs-capture-copy {
  text-align: center;
}

.mental-tabs-sort-question {
  margin: 0;
  max-width: 16ch;
}

.mental-tabs-capture-head,
.mental-tabs-sort-meta,
.mental-tab-list-actions,
.mental-tabs-swipe-labels,
.mental-tabs-swipe-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.mental-tabs-count,
.mental-tabs-sort-meta span,
.mental-tabs-handoff-grid article span {
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mental-tabs-round-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.07), rgba(255, 255, 255, 0.025));
}

.mental-tabs-screen-intro .mental-tabs-round-card,
.mental-tabs-screen-intro .mental-tabs-round-card span,
.mental-tabs-screen-intro .mental-tabs-round-card strong,
.mental-tabs-screen-intro .full-audit-note,
.mental-tabs-screen-intro > p:not(.section-kicker) {
  text-align: center;
}

.mental-tabs-screen-intro .full-audit-note,
.mental-tabs-screen-intro > p:not(.section-kicker),
.mental-tabs-screen-intro .mental-tabs-round-card {
  margin-inline: auto;
}

.mental-tabs-screen-intro .mental-tabs-round-card {
  max-width: 58ch;
}

.mental-tabs-round-card span {
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mental-tabs-round-card strong {
  color: rgba(243, 239, 232, 0.94);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
}

.mental-tabs-round-transition-card {
  display: grid;
  gap: 10px;
  padding: 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(232, 223, 212, 0.14);
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.08), rgba(255, 255, 255, 0.03));
  text-align: center;
}

.mental-tabs-round-transition-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.1;
}

.mental-tabs-round-transition-card p {
  margin: 0;
  color: rgba(243, 239, 232, 0.76);
  line-height: 1.6;
}

.mental-tabs-capture-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.mental-tabs-capture-copy {
  margin: 12px 0 0;
}

.mental-tabs-draft-shell {
  min-height: 148px;
}

.mental-tabs-input-area,
.mental-tabs-edit-area {
  min-height: 132px;
  resize: vertical;
}

.mental-tabs-starter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mental-tabs-capture-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.mental-tabs-rotating-examples {
  display: grid;
  gap: 10px;
  align-content: start;
}

.mental-tabs-example-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mental-tabs-example-label {
  margin: 0;
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mental-tabs-example-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mental-tabs-example-chip {
  width: auto;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.88);
  font: inherit;
  font-size: 0.96rem;
  text-align: left;
  line-height: 1.45;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  animation: mentalTabsExampleFade 420ms ease forwards;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.mental-tabs-example-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(243, 239, 232, 0.7);
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 180ms ease, opacity 180ms ease;
}

.mental-tabs-example-toggle:hover,
.mental-tabs-example-toggle:focus-visible {
  color: rgba(243, 239, 232, 0.96);
  outline: none;
}

.mental-tabs-example-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.mental-tabs-example-chip-1 {
  animation-delay: 80ms;
}

.mental-tabs-capture-footer .button {
  justify-self: center;
}

.mental-tab-list-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.mental-tab-list-card strong {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.mental-tabs-output-group {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.mental-tabs-output-list {
  display: grid;
  gap: 10px;
  width: 100%;
}

.mental-tabs-priority-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(243, 239, 232, 0.82);
  text-align: left;
  display: grid;
  gap: 8px;
  width: min(100%, 34rem);
}

.mental-tabs-swipe-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
}

.mental-tabs-swipe-hint {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(120px, 24vw);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(232, 223, 212, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(243, 239, 232, 0.55);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
}

.mental-tabs-swipe-hint-left {
  left: -6px;
}

.mental-tabs-swipe-hint-right {
  right: -6px;
}

.mental-tabs-swipe-card {
  display: grid;
  place-items: center;
  min-height: 220px;
  width: min(100%, 520px);
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(232, 223, 212, 0.18);
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.08), rgba(255, 255, 255, 0.03));
  text-align: center;
  touch-action: pan-y;
  user-select: none;
  will-change: transform, opacity;
  cursor: grab;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    box-shadow 220ms ease;
}

.mental-tabs-swipe-card p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.6;
}

.mental-tabs-swipe-card:active {
  cursor: grabbing;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.24);
}

@media (max-width: 760px) {
  .mental-tabs-swipe-stage {
    min-height: 224px;
  }

  .mental-tabs-swipe-hint {
    display: none;
  }
}

.mental-tabs-swipe-labels span:first-child {
  text-align: left;
}

.mental-tabs-swipe-labels span:last-child {
  text-align: right;
}

.mental-tabs-handoff-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mental-tabs-handoff-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.mental-tabs-handoff-grid article strong {
  font-size: 1.2rem;
}

.mental-tabs-builder-premium,
.mental-tabs-clarity-workspace,
.mental-tabs-state-panel,
.mental-tab-chip-row {
  display: grid;
  gap: 14px;
}

.financial-clarity-module,
.financial-quick-mode,
.financial-clarity-workspace,
.energy-clarity-workspace,
.financial-stage-panel,
.financial-expense-list,
.financial-projection-controls,
.financial-stage-actions,
.energy-baseline-grid,
.energy-choice-stack,
.energy-input-block,
.energy-slider-list,
.energy-visual-row {
  display: grid;
  gap: 16px;
}

.financial-mode-chooser,
.financial-topline,
.financial-bubble-map,
.financial-expense-card,
.financial-projection-gains,
.financial-confidence-wrap,
.financial-pressure-band,
.financial-insight-save {
  display: grid;
  gap: 14px;
}

.financial-kicker,
.financial-mini-label {
  margin: 0;
  color: rgba(243, 239, 232, 0.62);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.financial-mode-grid,
.financial-stage-tabs,
.financial-projection-statuses {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.financial-mode-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-align: left;
  font: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.financial-mode-card span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.financial-mode-card strong {
  font-size: 1rem;
  line-height: 1.5;
}

.financial-mode-card:hover,
.financial-mode-card.is-active {
  transform: translateY(-1px);
  border-color: rgba(232, 223, 212, 0.28);
  background: rgba(232, 223, 212, 0.07);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.financial-income-bubble {
  display: grid;
  gap: 10px;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top, rgba(232, 223, 212, 0.16), transparent 56%),
    rgba(255, 255, 255, 0.03);
  text-align: center;
}

.financial-income-bubble span,
.financial-totals-panel span,
.financial-expense-meta span,
.financial-projection-gains span,
.financial-bubble-map-head span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.financial-income-bubble strong {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
}

.financial-income-bubble p {
  margin: 0;
  max-width: 18rem;
  color: rgba(243, 239, 232, 0.64);
  line-height: 1.6;
}

.financial-totals-panel,
.financial-projection-gains,
.financial-comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.financial-totals-panel > div,
.financial-projection-gains > div {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.026);
}

.financial-totals-panel strong,
.financial-projection-gains strong,
.financial-bubble-map-head strong,
.financial-expense-card-head span {
  font-size: 1.12rem;
}

.financial-stage-panel {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.02);
}

.financial-pressure-band {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.08), rgba(255, 255, 255, 0.025));
}

.financial-pressure-band p,
.financial-pressure-read {
  margin: 0;
  color: rgba(243, 239, 232, 0.84);
  line-height: 1.7;
}

.financial-expense-form {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-audit-select {
  appearance: none;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  min-height: 58px;
}

.financial-bubble-map {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.financial-bubble-map-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.financial-state-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.financial-state-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(232, 223, 212, 0.36), rgba(243, 239, 232, 0.86));
}

.financial-state-bar-projected span {
  background: linear-gradient(90deg, rgba(170, 212, 188, 0.45), rgba(216, 241, 228, 0.92));
}

.financial-bubble-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.financial-income-core {
  display: grid;
  gap: 6px;
  min-width: 140px;
  min-height: 140px;
  place-items: center;
  padding: 20px;
  border-radius: 50%;
  border: 1px solid rgba(232, 223, 212, 0.2);
  background: rgba(232, 223, 212, 0.08);
}

.financial-income-core strong {
  font-size: 1.3rem;
}

.financial-expense-bubble {
  background: rgba(255, 255, 255, 0.04);
}

.financial-bubble-sm { min-height: 50px; }
.financial-bubble-md { min-height: 62px; padding-inline: 18px; }
.financial-bubble-lg { min-height: 74px; padding-inline: 22px; }

.financial-expense-card {
  position: relative;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.024);
}

.financial-expense-card.is-ghosted {
  opacity: 0.54;
}

.financial-expense-card-head,
.financial-expense-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: space-between;
  align-items: baseline;
}

.financial-expense-card-head strong {
  font-size: 1.06rem;
}

.financial-expense-meta {
  color: rgba(243, 239, 232, 0.62);
}

.financial-expense-remove {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  color: rgba(243, 239, 232, 0.52);
  font-size: 1.2rem;
  cursor: pointer;
}

.financial-projection-reduce {
  display: grid;
  gap: 8px;
}

.financial-projection-reduce label {
  color: rgba(243, 239, 232, 0.62);
  font-size: 0.86rem;
}

.financial-insight-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.energy-clarity-module {
  display: grid;
  gap: 18px;
}

.energy-baseline-grid,
.energy-visual-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.energy-tree-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.energy-tree-head,
.energy-tree-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.energy-tree-head span,
.energy-tree-meta span,
.energy-tree-meta em {
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
}

.energy-tree {
  position: relative;
  min-height: 200px;
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 70%);
  overflow: hidden;
}

.energy-tree-trunk {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 16px;
  height: 96px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(127, 96, 65, 0.86), rgba(83, 58, 40, 0.9));
}

.energy-tree-branch {
  position: absolute;
  bottom: 98px;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(116, 92, 67, 0.8);
  transform-origin: center;
}

.energy-tree-branch-a {
  left: calc(50% - 58px);
  transform: rotate(-28deg);
}

.energy-tree-branch-b {
  right: calc(50% - 58px);
  transform: rotate(28deg);
}

.energy-tree-canopy {
  position: absolute;
  left: 50%;
  top: 26px;
  width: 130px;
  height: 110px;
  transform: translateX(-50%);
  border-radius: 50% 50% 46% 46%;
  transition: all 420ms ease;
}

.energy-tree.is-depleted .energy-tree-canopy {
  width: 94px;
  height: 74px;
  top: 54px;
  opacity: 0.48;
  filter: saturate(0.5);
  background: radial-gradient(circle at top, rgba(115, 115, 104, 0.72), rgba(76, 76, 70, 0.7));
}

.energy-tree.is-low .energy-tree-canopy {
  width: 112px;
  height: 88px;
  top: 44px;
  background: radial-gradient(circle at top, rgba(132, 153, 111, 0.74), rgba(81, 110, 70, 0.76));
}

.energy-tree.is-stable .energy-tree-canopy {
  background: radial-gradient(circle at top, rgba(146, 177, 119, 0.86), rgba(70, 124, 74, 0.82));
}

.energy-tree.is-good .energy-tree-canopy {
  width: 142px;
  height: 118px;
  top: 20px;
  background: radial-gradient(circle at top, rgba(165, 204, 116, 0.9), rgba(58, 142, 72, 0.88));
}

.energy-tree.is-high .energy-tree-canopy {
  width: 154px;
  height: 128px;
  top: 14px;
  background: radial-gradient(circle at top, rgba(190, 228, 119, 0.95), rgba(49, 162, 73, 0.92));
  box-shadow: 0 0 24px rgba(102, 190, 108, 0.18);
}

.energy-slider-row {
  display: grid;
  gap: 10px;
  align-items: center;
}

.energy-slider-row > span {
  color: rgba(243, 239, 232, 0.82);
  line-height: 1.5;
}

.energy-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mental-tabs-entry-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 220px) auto;
  gap: 12px;
  align-items: start;
}

.mental-tabs-add-button {
  min-height: 64px;
  white-space: nowrap;
}

.mental-tabs-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 180px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.025);
  align-content: flex-start;
}

.mental-tabs-state-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mental-tabs-state-card,
.mental-tab-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.mental-tabs-state-card {
  justify-items: center;
  text-align: center;
}

.mental-tabs-state-card span,
.mental-tab-card-head span {
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mental-tabs-state-card strong {
  font-size: 1.2rem;
}

.mental-tab-card {
  position: relative;
  align-content: start;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  animation: mental-tab-float 8s ease-in-out infinite;
  animation-delay: var(--mental-float-delay, 0s);
}

.mental-tab-card.has-action {
  border-color: rgba(232, 223, 212, 0.2);
  background: rgba(232, 223, 212, 0.05);
}

.mental-tab-card.is-priority {
  border-color: rgba(232, 223, 212, 0.26);
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.1), rgba(255, 255, 255, 0.032));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.mental-tab-card.is-secondary {
  border-color: rgba(232, 223, 212, 0.16);
}

.mental-tab-card-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: baseline;
  padding-right: 24px;
}

.mental-tab-card-head strong {
  font-size: 1.04rem;
  line-height: 1.45;
}

.mental-tab-weightline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: rgba(243, 239, 232, 0.62);
  font-size: 0.88rem;
}

.mental-tab-weightline strong {
  font-size: 0.92rem;
  color: rgba(243, 239, 232, 0.88);
}

.mental-tab-chip-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mental-tab-chip-row-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mental-tabs-projection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mental-tabs-relief-band {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr);
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(232, 223, 212, 0.12);
  background: linear-gradient(180deg, rgba(232, 223, 212, 0.06), rgba(255, 255, 255, 0.02));
  align-items: center;
}

.mental-tabs-relief-copy {
  display: grid;
  gap: 8px;
  text-align: center;
  justify-items: center;
}

.mental-tabs-relief-copy strong {
  font-size: 1.06rem;
  line-height: 1.5;
}

.mental-tabs-relief-copy p {
  margin: 0;
  color: rgba(243, 239, 232, 0.68);
  line-height: 1.65;
}

.mental-tabs-relief-bars {
  display: grid;
  gap: 12px;
}

.mental-tabs-relief-bar {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.mental-tabs-relief-bar span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mental-tabs-relief-bar div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.mental-tabs-relief-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(232, 223, 212, 0.38), rgba(243, 239, 232, 0.86));
}

.mental-tabs-relief-bar.is-projected i {
  background: linear-gradient(90deg, rgba(176, 213, 191, 0.4), rgba(214, 241, 225, 0.9));
}

.mental-tabs-relief-bar strong {
  font-size: 0.96rem;
}

.mental-tabs-mini-cloud {
  display: flex;
  flex-wrap: wrap;
  min-height: 44px;
  margin-top: 8px;
  justify-content: center;
}

.mental-tabs-mini-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(243, 239, 232, 0.8);
  font-size: 0.92rem;
}

.mental-tabs-mini-cloud-projected span {
  background: rgba(184, 223, 199, 0.08);
  border-color: rgba(184, 223, 199, 0.16);
}

@keyframes mental-tab-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

@keyframes mentalTabsExampleFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mental-tabs-empty {
  color: rgba(243, 239, 232, 0.42);
  line-height: 1.7;
  max-width: 28rem;
}

.mental-tab-bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  line-height: 1.35;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.mental-tab-bubble:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

.mental-tab-bubble span {
  overflow-wrap: anywhere;
}

.mental-tab-bubble strong {
  font-size: 1rem;
  color: rgba(243, 239, 232, 0.52);
}

.mental-tab-bubble.is-active {
  background: rgba(232, 223, 212, 0.16);
  border-color: rgba(232, 223, 212, 0.42);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.mental-tab-bubble-size-1 {
  font-size: 0.96rem;
}

.mental-tab-bubble-size-2 {
  font-size: 1.02rem;
}

.mental-tab-bubble-size-3 {
  font-size: 1.08rem;
}

.full-audit-scale-copy {
  margin: 0;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.94rem;
  line-height: 1.7;
}

.choice-option {
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.74);
  font: inherit;
  line-height: 1.45;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.choice-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
}

.choice-option.is-active {
  background: rgba(232, 223, 212, 0.14);
  border-color: rgba(232, 223, 212, 0.48);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.voice-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.voice-button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.icon-audio-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-audio-button:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.icon-audio-button.is-active {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.icon-audio-button svg {
  width: 18px;
  height: 18px;
}

.voice-button:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.voice-button.is-listening {
  border-color: rgba(255, 92, 92, 0.6);
  background: rgba(120, 18, 18, 0.28);
  color: #fff5f5;
  box-shadow: 0 0 0 1px rgba(255, 92, 92, 0.14), 0 0 22px rgba(255, 92, 92, 0.18);
}

.voice-copy {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.94rem;
  line-height: 1.8;
}

.voice-copy.is-active,
.voice-copy-under-input.is-active {
  color: rgba(255, 245, 245, 0.92);
}

.voice-copy-inline {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.voice-copy-under-input {
  width: min(760px, 100%);
  margin: 10px auto 0;
  color: rgba(243, 239, 232, 0.62);
}

.voice-inline-hint {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(243, 239, 232, 0.78);
  font-size: 0.84rem;
  line-height: 1.45;
}

.voice-inline-hint-compact {
  width: min(760px, 100%);
  margin: 0 auto;
}

.voice-inline-hint-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff6a6a;
  box-shadow: 0 0 0 5px rgba(255, 92, 92, 0.1);
  animation: voiceInlinePulse 1.3s ease-in-out infinite;
  flex: 0 0 auto;
}

.voice-live-preview {
  width: min(760px, 100%);
  margin: 8px auto 0;
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.voice-recorder {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 92, 92, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(120, 18, 18, 0.18), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

@keyframes voiceInlinePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 92, 92, 0.18);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 7px rgba(255, 92, 92, 0.08);
  }
}

.voice-recorder-compact {
  margin-top: 10px;
  border-radius: 18px;
  padding: 12px 14px;
}

.voice-recorder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.voice-recorder-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff4f4;
}

.voice-recorder-mic {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff6c6c;
  box-shadow: 0 0 0 0 rgba(255, 108, 108, 0.34);
  animation: voiceRecorderPulse 1.4s ease-in-out infinite;
}

.voice-recorder-timer {
  font-variant-numeric: tabular-nums;
  font-size: 0.95rem;
  color: rgba(255, 244, 244, 0.84);
}

.voice-recorder-wave {
  display: flex;
  align-items: end;
  gap: 6px;
  height: 28px;
}

.voice-recorder-wave span {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 176, 176, 0.92), rgba(255, 108, 108, 0.45));
  animation: voiceRecorderWave 1.1s ease-in-out infinite;
}

.voice-recorder-wave span:nth-child(1) { height: 12px; animation-delay: 0s; }
.voice-recorder-wave span:nth-child(2) { height: 24px; animation-delay: 0.12s; }
.voice-recorder-wave span:nth-child(3) { height: 18px; animation-delay: 0.24s; }
.voice-recorder-wave span:nth-child(4) { height: 14px; animation-delay: 0.36s; }

.voice-recorder-copy {
  margin: 0;
  color: rgba(255, 240, 240, 0.8);
  font-size: 0.92rem;
  line-height: 1.55;
}

.voice-recorder-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.voice-recorder-stop,
.voice-recorder-cancel {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff7f7;
  font: inherit;
  cursor: pointer;
}

.voice-recorder-stop {
  background: rgba(255, 108, 108, 0.18);
  border-color: rgba(255, 108, 108, 0.28);
}

.voice-recorder-cancel {
  color: rgba(255, 240, 240, 0.78);
}

@keyframes voiceRecorderPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 108, 108, 0.34); }
  50% { box-shadow: 0 0 0 8px rgba(255, 108, 108, 0.08); }
}

@keyframes voiceRecorderWave {
  0%, 100% { transform: scaleY(0.72); opacity: 0.6; }
  50% { transform: scaleY(1.15); opacity: 1; }
}

@keyframes voiceListeningPulse {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(255, 92, 92, 0.14), 0 0 16px rgba(255, 92, 92, 0.14);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(255, 92, 92, 0.2), 0 0 26px rgba(255, 92, 92, 0.28);
  }
}

.audit-prompts-entry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(243, 239, 232, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
  align-self: flex-start;
}

.audit-prompts-entry::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(243, 239, 232, 0.2);
  background:
    radial-gradient(circle at 50% 50%, rgba(243, 239, 232, 0.7) 0 1px, transparent 2px),
    transparent;
  box-shadow: 0 0 0 4px rgba(243, 239, 232, 0.035);
}

.audit-prompts-entry:hover,
.audit-prompts-entry:focus-visible,
.audit-prompts-entry.is-open {
  color: rgba(243, 239, 232, 0.96);
}

.audit-mode[data-theme="light"] .audit-prompts-entry {
  color: rgba(42, 39, 35, 0.78);
}

.audit-mode[data-theme="light"] .audit-prompts-entry:hover,
.audit-mode[data-theme="light"] .audit-prompts-entry:focus-visible,
.audit-mode[data-theme="light"] .audit-prompts-entry.is-open {
  color: rgba(42, 39, 35, 0.96);
}

.audit-mode[data-theme="light"] .audit-prompts-entry::before {
  border-color: rgba(73, 63, 52, 0.18);
  box-shadow: 0 0 0 4px rgba(73, 63, 52, 0.04);
  background:
    radial-gradient(circle at 50% 50%, rgba(42, 39, 35, 0.6) 0 1px, transparent 2px),
    transparent;
}

.audit-mode[data-theme="nature"] .audit-prompts-entry {
  color: rgba(232, 237, 228, 0.78);
}

.audit-mode[data-theme="nature"] .audit-prompts-entry:hover,
.audit-mode[data-theme="nature"] .audit-prompts-entry:focus-visible,
.audit-mode[data-theme="nature"] .audit-prompts-entry.is-open {
  color: rgba(238, 241, 234, 0.96);
}

.audit-mode[data-theme="nature"] .audit-prompts-entry::before {
  border-color: rgba(154, 167, 133, 0.22);
  box-shadow: 0 0 0 4px rgba(154, 167, 133, 0.05);
  background:
    radial-gradient(circle at 50% 50%, rgba(232, 237, 228, 0.62) 0 1px, transparent 2px),
    transparent;
}

.depth-prompt {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  animation: auditFade 220ms ease;
}

.depth-prompt-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 239, 232, 0.44);
}

.depth-prompt h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

.depth-prompt p,
.depth-prompt li {
  color: rgba(243, 239, 232, 0.78);
  line-height: 1.75;
}

.depth-prompt p {
  margin: 0;
}

.depth-prompt ul {
  margin: 0;
  padding-left: 20px;
}

.depth-prompt-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.full-audit-return-note {
  margin: 0 0 8px;
  color: rgba(243, 239, 232, 0.62);
  font-size: 0.94rem;
  line-height: 1.75;
}

.skip-prompt {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  animation: auditFade 220ms ease;
}

.skip-prompt-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 239, 232, 0.44);
}

.skip-prompt h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

.skip-prompt p {
  margin: 0;
  color: rgba(243, 239, 232, 0.78);
  line-height: 1.75;
}

.skip-prompt-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.full-audit-statline {
  display: grid;
  gap: 12px;
}

.full-audit-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  padding-bottom: 2px;
  width: min(760px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.full-audit-footer-section-entry,
.full-audit-card-intro .full-audit-footer,
.full-audit-card-disclaimer .full-audit-footer,
.full-audit-card-results .full-audit-footer,
.full-audit-card-milestone .full-audit-footer,
.full-audit-card-reflection .full-audit-footer,
.full-audit-card-interlude .full-audit-footer {
  position: static;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 2px;
}

.full-audit-footer-section-entry,
.full-audit-card-intro .full-audit-footer,
.full-audit-card-disclaimer .full-audit-footer {
  justify-content: center;
}

.full-audit-card-question .full-audit-footer .button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  box-shadow: none;
}

.full-audit-card-question .full-audit-footer .button:hover {
  box-shadow: none;
}

.full-audit-card-question .full-audit-footer .button-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(243, 239, 232, 0.74);
}

.full-audit-card-question .full-audit-footer .button-primary {
  min-width: 112px;
}

@media (min-width: 1100px) {
  .full-audit-inline-nav {
    display: block;
  }

  .full-audit-inline-nav-button {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(243, 239, 232, 0.54);
    display: inline-grid;
    place-items: center;
    font: inherit;
    font-size: 1.35rem;
    cursor: pointer;
    transform: translateY(-50%);
    transition:
      border-color 180ms ease,
      color 180ms ease,
      background 180ms ease,
      transform 180ms ease;
    z-index: 2;
  }

  .full-audit-inline-nav-button-back {
    left: 14px;
  }

  .full-audit-inline-nav-button-next {
    right: 14px;
  }

  .full-audit-inline-nav-button:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(243, 239, 232, 0.82);
    transform: translateY(calc(-50% - 1px));
  }

  .full-audit-inline-nav-button:focus-visible {
    outline: none;
    border-color: rgba(240, 231, 220, 0.4);
    box-shadow: 0 0 0 2px rgba(240, 231, 220, 0.12);
    color: rgba(243, 239, 232, 0.9);
  }

  .audit-mode[data-theme="light"] .full-audit-inline-nav-button {
    border-color: rgba(73, 63, 52, 0.12);
    background: rgba(255, 255, 255, 0.5);
    color: rgba(42, 39, 35, 0.54);
  }

  .audit-mode[data-theme="light"] .full-audit-inline-nav-button:hover {
    border-color: rgba(73, 63, 52, 0.18);
    background: rgba(255, 255, 255, 0.76);
    color: rgba(42, 39, 35, 0.82);
  }

  .audit-mode[data-theme="nature"] .full-audit-inline-nav-button {
    border-color: rgba(154, 167, 133, 0.14);
    background: rgba(20, 31, 22, 0.62);
    color: rgba(232, 237, 228, 0.56);
  }

  .audit-mode[data-theme="nature"] .full-audit-inline-nav-button:hover {
    border-color: rgba(154, 167, 133, 0.22);
    background: rgba(20, 31, 22, 0.82);
    color: rgba(232, 237, 228, 0.84);
  }
}

.audit-mode[data-theme="light"] .full-audit-card-question .full-audit-footer {
  border-top-color: rgba(73, 63, 52, 0.1);
}

.audit-mode[data-theme="light"] .full-audit-card-question .full-audit-footer .button-secondary {
  border-color: rgba(73, 63, 52, 0.12);
  color: rgba(42, 39, 35, 0.72);
  background: transparent;
}

.audit-mode[data-theme="light"] .choice-option {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(42, 39, 35, 0.76);
}

.audit-mode[data-theme="light"] .mental-tabs-cloud {
  border-color: rgba(73, 63, 52, 0.12);
  background:
    radial-gradient(circle at top left, rgba(161, 143, 118, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.5);
}

.audit-mode[data-theme="light"] .mental-tabs-empty {
  color: rgba(42, 39, 35, 0.42);
}

.audit-mode[data-theme="light"] .mental-tab-bubble {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: #2a2723;
}

.audit-mode[data-theme="light"] .mental-tab-bubble strong {
  color: rgba(42, 39, 35, 0.46);
}

.audit-mode[data-theme="light"] .mental-tab-bubble.is-active {
  background: rgba(73, 63, 52, 0.12);
  border-color: rgba(73, 63, 52, 0.24);
}

.audit-mode[data-theme="light"] .choice-option:hover {
  border-color: rgba(73, 63, 52, 0.2);
}

.audit-mode[data-theme="light"] .choice-option.is-active {
  background: rgba(73, 63, 52, 0.12);
  border-color: rgba(73, 63, 52, 0.24);
  color: #2a2723;
}

.audit-mode[data-theme="nature"] .full-audit-card-question .full-audit-footer {
  border-top-color: rgba(154, 167, 133, 0.1);
}

.audit-mode[data-theme="nature"] .full-audit-card-question .full-audit-footer .button-secondary {
  border-color: rgba(154, 167, 133, 0.12);
  color: rgba(232, 237, 228, 0.72);
  background: transparent;
}

.audit-mode[data-theme="nature"] .choice-option {
  border-color: rgba(154, 167, 133, 0.12);
  background: rgba(20, 31, 22, 0.7);
  color: rgba(232, 237, 228, 0.76);
}

.audit-mode[data-theme="nature"] .mental-tabs-cloud {
  border-color: rgba(154, 167, 133, 0.12);
  background:
    radial-gradient(circle at top left, rgba(118, 138, 103, 0.1), transparent 34%),
    rgba(20, 31, 22, 0.62);
}

.audit-mode[data-theme="nature"] .mental-tabs-empty {
  color: rgba(232, 237, 228, 0.42);
}

.audit-mode[data-theme="nature"] .mental-tab-bubble {
  border-color: rgba(154, 167, 133, 0.12);
  background: rgba(27, 39, 28, 0.82);
  color: #eef1ea;
}

.audit-mode[data-theme="nature"] .mental-tab-bubble strong {
  color: rgba(232, 237, 228, 0.46);
}

.audit-mode[data-theme="nature"] .mental-tab-bubble.is-active {
  background: rgba(118, 138, 103, 0.18);
  border-color: rgba(154, 167, 133, 0.28);
}

.audit-mode[data-theme="nature"] .choice-option:hover {
  border-color: rgba(154, 167, 133, 0.22);
}

.audit-mode[data-theme="nature"] .choice-option.is-active {
  background: rgba(118, 138, 103, 0.16);
  border-color: rgba(154, 167, 133, 0.28);
  color: #eef1ea;
}

.audit-interlude-footer-note {
  position: relative;
  z-index: 1;
  color: rgba(243, 239, 232, 0.64);
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-align: center;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-style: italic;
}

.audit-mode[data-theme="light"] .audit-interlude-footer-note {
  color: rgba(42, 39, 35, 0.56);
}

.audit-mode[data-theme="nature"] .audit-interlude-footer-note {
  color: rgba(232, 237, 228, 0.58);
}

.audit-assist-bar {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
}

.audit-assist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.audit-prompt-panel {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
  margin-bottom: 12px;
}

.question-clarify-panel {
  display: grid;
  gap: 8px;
  width: min(760px, 100%);
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.question-clarify-kicker {
  margin: 0;
  color: rgba(243, 239, 232, 0.48);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.question-clarify-panel p,
.question-clarify-panel li {
  margin: 0;
  color: rgba(243, 239, 232, 0.8);
  line-height: 1.52;
}

.question-clarify-panel ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.audit-assist-bar-mini {
  display: grid;
  gap: 10px;
}

.audit-prompt-kicker {
  margin: 0;
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audit-prompt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audit-prompt-chip {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(243, 239, 232, 0.82);
  font: inherit;
  line-height: 1.45;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.audit-prompt-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 239, 232, 0.96);
}

.audit-support-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 16px 20px;
}

.audit-support-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(4, 4, 5, 0.78);
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.audit-support-sheet {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  height: min(76vh, 760px);
  overflow: hidden;
  overscroll-behavior: contain;
  touch-action: pan-y;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top left, rgba(240, 231, 220, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    #171615;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.audit-support-grabber {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 52px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(243, 239, 232, 0.18);
  pointer-events: none;
}

.audit-support-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 14px;
}

.audit-support-kicker {
  margin: 0 0 8px;
  color: rgba(243, 239, 232, 0.46);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-support-title {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.45;
}

.audit-support-close {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 239, 232, 0.82);
  font: inherit;
  cursor: pointer;
}

.audit-support-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audit-support-tab {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(243, 239, 232, 0.62);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.audit-support-tab.is-active,
.audit-support-tab:hover,
.audit-support-close:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(243, 239, 232, 0.96);
}

.audit-support-content {
  display: grid;
  align-content: start;
  min-height: 0;
  overflow: auto;
  gap: 14px;
  padding-right: 4px;
}

.audit-support-content p {
  margin: 0;
  color: rgba(243, 239, 232, 0.82);
  line-height: 1.75;
}

.audit-support-copy,
.audit-support-example-label {
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.audit-support-prompt-list {
  display: grid;
  align-content: start;
  gap: 12px;
}

.audit-support-prompt {
  width: 100%;
  position: relative;
  padding: 0 0 0 22px;
  text-align: left;
  border: none;
  background: transparent;
  color: rgba(243, 239, 232, 0.82);
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.7;
  cursor: default;
  transition: none;
  box-shadow: none;
}

.audit-support-prompt::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(232, 223, 212, 0.44);
}

.audit-support-prompt:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
}

.audit-support-prompt-static {
  color: rgba(243, 239, 232, 0.74);
  user-select: text;
}

.audit-support-prompt-static:hover {
  transform: none;
}

@media (min-width: 900px) {
  .audit-support-overlay {
    align-items: center;
    padding: 32px;
  }

  .audit-support-grabber {
    display: none;
  }
}

.audit-idle-note {
  width: min(760px, 100%);
  margin: 0 0 12px;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.95rem;
  line-height: 1.6;
}

.audit-realisation-callback {
  width: min(760px, 100%);
  margin: 14px 0 0;
  color: rgba(243, 239, 232, 0.76);
  line-height: 1.7;
}

.audit-realisation-panel {
  width: min(760px, 100%);
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.06), transparent 34%),
    rgba(255, 255, 255, 0.025);
}

.audit-realisation-kicker {
  margin: 0 0 10px;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audit-realisation-copy {
  margin: 0 0 14px;
  color: rgba(243, 239, 232, 0.62);
  line-height: 1.7;
}

.audit-realisation-confirm {
  margin: 12px 0 0;
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

.audit-realisation-confirm-strong {
  color: rgba(243, 239, 232, 0.92);
}

.full-audit-note-carry {
  color: rgba(243, 239, 232, 0.58);
}

.relationship-pattern-stack {
  display: grid;
  gap: 16px;
  width: min(760px, 100%);
}

.relationship-pattern-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.05), transparent 32%),
    rgba(255, 255, 255, 0.025);
}

.relationship-pattern-panel-mirror {
  gap: 10px;
}

.relationship-pattern-panel-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.relationship-pattern-label {
  margin: 0;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.relationship-pattern-copy {
  margin: 0;
  color: rgba(243, 239, 232, 0.64);
  line-height: 1.6;
}

.relationship-pattern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.relationship-pattern-mirror {
  margin: 0;
  color: rgba(243, 239, 232, 0.88);
  font-size: 1.04rem;
  line-height: 1.6;
}

.identity-shift-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 18px;
  width: min(980px, 100%);
}

.identity-shift-stage,
.identity-shift-panel,
.identity-shift-proof-grid,
.identity-shift-trait-groups,
.identity-shift-trait-group,
.identity-shift-preview,
.identity-shift-preview-group,
.identity-shift-reality {
  display: grid;
  gap: 14px;
}

.identity-shift-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.identity-shift-progressline {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.identity-shift-progressline span {
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-shift-progressline strong {
  color: rgba(243, 239, 232, 0.84);
  font-size: 0.98rem;
  font-weight: 600;
}

.identity-shift-step {
  min-width: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  background: rgba(255, 255, 255, 0.025);
}

.identity-shift-step.is-active {
  border-color: rgba(232, 223, 212, 0.26);
  background: rgba(232, 223, 212, 0.1);
  color: rgba(243, 239, 232, 0.92);
}

.identity-shift-step.is-done {
  color: rgba(243, 239, 232, 0.78);
}

.identity-shift-panel,
.identity-shift-preview,
.identity-shift-reality {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.06), transparent 34%),
    rgba(255, 255, 255, 0.025);
}

.identity-shift-kicker,
.identity-shift-preview-kicker {
  margin: 0;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.identity-shift-copy,
.identity-shift-preview-group p {
  margin: 0;
  color: rgba(243, 239, 232, 0.68);
  line-height: 1.65;
}

.identity-shift-preview {
  align-self: start;
  position: sticky;
  top: 110px;
}

.identity-shift-preview h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
  color: rgba(243, 239, 232, 0.96);
}

.identity-shift-preview-group span,
.identity-shift-trait-group span {
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-shift-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.identity-shift-chip-grid.is-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.identity-shift-chip-card {
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.84);
  font: inherit;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.identity-shift-chip-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.identity-shift-chip-card.is-active {
  border-color: rgba(232, 223, 212, 0.26);
  background: rgba(232, 223, 212, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  color: rgba(243, 239, 232, 0.96);
}

.identity-shift-inline-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.identity-shift-selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.identity-shift-selected-item {
  padding: 10px 14px;
  border: 1px solid rgba(232, 223, 212, 0.16);
  border-radius: 999px;
  background: rgba(232, 223, 212, 0.08);
  color: rgba(243, 239, 232, 0.88);
  font: inherit;
  cursor: pointer;
}

.identity-shift-selected-item span {
  color: rgba(243, 239, 232, 0.54);
}

.identity-shift-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.identity-shift-feedback {
  margin: -4px 0 0;
  color: rgba(243, 239, 232, 0.62);
  line-height: 1.55;
}

.identity-shift-reality-cards {
  display: grid;
  gap: 14px;
}

.identity-reality-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.028);
}

.identity-reality-card.is-green {
  border-color: rgba(123, 171, 126, 0.22);
}

.identity-reality-card.is-amber {
  border-color: rgba(196, 165, 102, 0.26);
}

.identity-reality-card.is-red {
  border-color: rgba(190, 118, 118, 0.28);
}

.identity-reality-card-head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.identity-reality-card-head span {
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-reality-card-head strong {
  color: rgba(243, 239, 232, 0.96);
  font-size: 1.05rem;
}

.identity-reality-card-head em {
  color: rgba(243, 239, 232, 0.72);
  font-style: normal;
}

.identity-reality-card-body {
  display: grid;
  gap: 10px;
}

.identity-reality-card-body p {
  margin: 0;
  color: rgba(243, 239, 232, 0.72);
  line-height: 1.65;
}

.identity-reality-card-body span {
  display: block;
  margin-bottom: 3px;
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-shift-panel-commit {
  gap: 18px;
  min-height: 420px;
  align-content: center;
}

.results-section-identity-shift .results-reset-grid-identity {
  margin-bottom: 18px;
}

.audit-mode[data-theme="light"] .identity-shift-panel,
.audit-mode[data-theme="light"] .identity-shift-preview,
.audit-mode[data-theme="light"] .identity-shift-reality {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.audit-mode[data-theme="light"] .identity-shift-kicker,
.audit-mode[data-theme="light"] .identity-shift-preview-kicker,
.audit-mode[data-theme="light"] .identity-shift-preview-group span,
.audit-mode[data-theme="light"] .identity-shift-trait-group span {
  color: rgba(42, 39, 35, 0.5);
}

.audit-mode[data-theme="light"] .identity-shift-copy,
.audit-mode[data-theme="light"] .identity-shift-preview-group p {
  color: rgba(42, 39, 35, 0.7);
}

.audit-mode[data-theme="light"] .identity-shift-progressline span,
.audit-mode[data-theme="light"] .identity-shift-kicker,
.audit-mode[data-theme="light"] .identity-shift-preview-kicker,
.audit-mode[data-theme="light"] .identity-shift-preview-group span,
.audit-mode[data-theme="light"] .identity-shift-trait-group span,
.audit-mode[data-theme="light"] .identity-reality-card-head span,
.audit-mode[data-theme="light"] .identity-reality-card-body span {
  color: rgba(42, 39, 35, 0.5);
}

.audit-mode[data-theme="light"] .identity-shift-progressline strong,
.audit-mode[data-theme="light"] .identity-shift-preview h3,
.audit-mode[data-theme="light"] .identity-reality-card-head strong {
  color: rgba(42, 39, 35, 0.9);
}

.audit-mode[data-theme="light"] .identity-shift-chip-card {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(42, 39, 35, 0.84);
}

.audit-mode[data-theme="light"] .identity-shift-chip-card.is-active {
  border-color: rgba(161, 143, 118, 0.24);
  background: rgba(161, 143, 118, 0.1);
}

.audit-mode[data-theme="nature"] .identity-shift-panel,
.audit-mode[data-theme="nature"] .identity-shift-preview,
.audit-mode[data-theme="nature"] .identity-shift-reality {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.7);
}

.audit-mode[data-theme="nature"] .identity-shift-kicker,
.audit-mode[data-theme="nature"] .identity-shift-preview-kicker,
.audit-mode[data-theme="nature"] .identity-shift-preview-group span,
.audit-mode[data-theme="nature"] .identity-shift-trait-group span {
  color: rgba(219, 227, 214, 0.54);
}

.audit-mode[data-theme="nature"] .identity-shift-copy,
.audit-mode[data-theme="nature"] .identity-shift-preview-group p {
  color: rgba(232, 237, 228, 0.7);
}

.audit-mode[data-theme="nature"] .identity-shift-progressline span,
.audit-mode[data-theme="nature"] .identity-shift-kicker,
.audit-mode[data-theme="nature"] .identity-shift-preview-kicker,
.audit-mode[data-theme="nature"] .identity-shift-preview-group span,
.audit-mode[data-theme="nature"] .identity-shift-trait-group span,
.audit-mode[data-theme="nature"] .identity-reality-card-head span,
.audit-mode[data-theme="nature"] .identity-reality-card-body span {
  color: rgba(219, 227, 214, 0.54);
}

.audit-mode[data-theme="nature"] .identity-shift-progressline strong,
.audit-mode[data-theme="nature"] .identity-shift-preview h3,
.audit-mode[data-theme="nature"] .identity-reality-card-head strong {
  color: rgba(238, 241, 234, 0.92);
}

.audit-mode[data-theme="nature"] .identity-shift-chip-card {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.74);
  color: rgba(238, 241, 234, 0.86);
}

.audit-mode[data-theme="nature"] .identity-shift-chip-card.is-active {
  border-color: rgba(154, 167, 133, 0.26);
  background: rgba(118, 138, 103, 0.16);
}

.audit-realisation-summary {
  display: grid;
  gap: 10px;
  width: min(760px, 100%);
  margin: 18px 0 0;
}

.audit-realisation-summary-list {
  display: grid;
  gap: 10px;
}

.audit-realisation-summary-item {
  color: rgba(243, 239, 232, 0.78);
  line-height: 1.7;
}

.audit-realisation-textarea {
  min-height: 360px;
}

.audit-mode[data-theme="light"] .audit-realisation-panel {
  border-color: rgba(73, 63, 52, 0.12);
  background:
    radial-gradient(circle at top left, rgba(161, 143, 118, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.5);
}

.audit-mode[data-theme="light"] .question-clarify-panel {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

.audit-mode[data-theme="light"] .question-clarify-kicker {
  color: rgba(42, 39, 35, 0.5);
}

.audit-mode[data-theme="light"] .question-clarify-panel p,
.audit-mode[data-theme="light"] .question-clarify-panel li {
  color: rgba(42, 39, 35, 0.82);
}

.audit-mode[data-theme="light"] .audit-realisation-kicker {
  color: rgba(42, 39, 35, 0.48);
}

.audit-mode[data-theme="light"] .audit-realisation-copy {
  color: rgba(42, 39, 35, 0.62);
}

.audit-mode[data-theme="light"] .audit-realisation-confirm {
  color: rgba(42, 39, 35, 0.66);
}

.audit-mode[data-theme="light"] .relationship-pattern-panel {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

.audit-mode[data-theme="light"] .relationship-pattern-label,
.audit-mode[data-theme="light"] .full-audit-note-carry {
  color: rgba(42, 39, 35, 0.52);
}

.audit-mode[data-theme="light"] .relationship-pattern-copy {
  color: rgba(42, 39, 35, 0.66);
}

.audit-mode[data-theme="light"] .relationship-pattern-mirror {
  color: rgba(42, 39, 35, 0.86);
}

.audit-mode[data-theme="light"] .audit-realisation-confirm-strong,
.audit-mode[data-theme="light"] .audit-realisation-callback,
.audit-mode[data-theme="light"] .audit-realisation-summary-item {
  color: rgba(42, 39, 35, 0.8);
}

.audit-mode[data-theme="light"] .audit-prompt-kicker,
.audit-mode[data-theme="light"] .audit-idle-note {
  color: rgba(42, 39, 35, 0.52);
}

.audit-mode[data-theme="light"] .audit-prompt-chip {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(42, 39, 35, 0.84);
}

.audit-mode[data-theme="light"] .audit-support-sheet {
  border-color: rgba(73, 63, 52, 0.14);
  background:
    radial-gradient(circle at top left, rgba(161, 143, 118, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 242, 233, 0.98)),
    rgba(250, 246, 239, 0.99);
}

.audit-mode[data-theme="light"] .audit-support-title {
  color: rgba(42, 39, 35, 0.96);
}

.audit-mode[data-theme="light"] .audit-support-kicker,
.audit-mode[data-theme="light"] .audit-support-copy,
.audit-mode[data-theme="light"] .audit-support-example-label {
  color: rgba(42, 39, 35, 0.54);
}

.audit-mode[data-theme="light"] .audit-support-head {
  border-bottom-color: rgba(73, 63, 52, 0.08);
}

.audit-mode[data-theme="light"] .audit-support-grabber {
  background: rgba(73, 63, 52, 0.18);
}

.audit-mode[data-theme="light"] .audit-support-content p,
.audit-mode[data-theme="light"] .audit-support-close,
.audit-mode[data-theme="light"] .audit-support-tab,
.audit-mode[data-theme="light"] .audit-support-prompt {
  color: rgba(42, 39, 35, 0.82);
}

.audit-mode[data-theme="light"] .audit-support-close,
.audit-mode[data-theme="light"] .audit-support-tab {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.58);
}

.audit-mode[data-theme="light"] .audit-support-tab.is-active,
.audit-mode[data-theme="light"] .audit-support-tab:hover,
.audit-mode[data-theme="light"] .audit-support-close:hover {
  border-color: rgba(73, 63, 52, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: rgba(42, 39, 35, 0.96);
}

.audit-mode[data-theme="light"] .audit-support-prompt::before {
  background: rgba(73, 63, 52, 0.34);
}

.audit-mode[data-theme="nature"] .audit-realisation-panel {
  border-color: rgba(154, 167, 133, 0.12);
  background:
    radial-gradient(circle at top left, rgba(118, 138, 103, 0.1), transparent 34%),
    rgba(20, 31, 22, 0.62);
}

.audit-mode[data-theme="nature"] .question-clarify-panel {
  border-color: rgba(154, 167, 133, 0.12);
  background: rgba(20, 31, 22, 0.62);
}

.audit-mode[data-theme="nature"] .question-clarify-kicker {
  color: rgba(214, 223, 207, 0.5);
}

.audit-mode[data-theme="nature"] .question-clarify-panel p,
.audit-mode[data-theme="nature"] .question-clarify-panel li {
  color: rgba(238, 241, 234, 0.84);
}

.audit-mode[data-theme="nature"] .audit-realisation-kicker {
  color: rgba(232, 237, 228, 0.5);
}

.audit-mode[data-theme="nature"] .audit-realisation-copy {
  color: rgba(232, 237, 228, 0.62);
}

.audit-mode[data-theme="nature"] .audit-realisation-confirm {
  color: rgba(232, 237, 228, 0.74);
}

.audit-mode[data-theme="nature"] .relationship-pattern-panel {
  border-color: rgba(154, 167, 133, 0.12);
  background: rgba(20, 31, 22, 0.68);
}

.audit-mode[data-theme="nature"] .relationship-pattern-label,
.audit-mode[data-theme="nature"] .full-audit-note-carry {
  color: rgba(219, 227, 214, 0.54);
}

.audit-mode[data-theme="nature"] .relationship-pattern-copy {
  color: rgba(219, 227, 214, 0.66);
}

.audit-mode[data-theme="nature"] .relationship-pattern-mirror {
  color: rgba(232, 237, 228, 0.9);
}

.audit-mode[data-theme="nature"] .audit-realisation-confirm-strong,
.audit-mode[data-theme="nature"] .audit-realisation-callback,
.audit-mode[data-theme="nature"] .audit-realisation-summary-item {
  color: rgba(238, 241, 234, 0.82);
}

.audit-mode[data-theme="nature"] .audit-prompt-kicker,
.audit-mode[data-theme="nature"] .audit-idle-note {
  color: rgba(232, 237, 228, 0.54);
}

.audit-mode[data-theme="nature"] .audit-prompt-chip {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.68);
  color: rgba(238, 241, 234, 0.86);
}

.audit-mode[data-theme="nature"] .audit-support-sheet {
  border-color: rgba(154, 167, 133, 0.18);
  background:
    radial-gradient(circle at top left, rgba(118, 138, 103, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(27, 39, 28, 0.98), rgba(16, 24, 17, 0.99)),
    rgba(16, 24, 17, 0.99);
}

.audit-mode[data-theme="nature"] .audit-support-kicker,
.audit-mode[data-theme="nature"] .audit-support-copy,
.audit-mode[data-theme="nature"] .audit-support-example-label {
  color: rgba(219, 227, 214, 0.56);
}

.audit-mode[data-theme="nature"] .audit-support-head {
  border-bottom-color: rgba(154, 167, 133, 0.08);
}

.audit-mode[data-theme="nature"] .audit-support-grabber {
  background: rgba(219, 227, 214, 0.18);
}

.audit-mode[data-theme="nature"] .audit-support-title,
.audit-mode[data-theme="nature"] .audit-support-content p,
.audit-mode[data-theme="nature"] .audit-support-close,
.audit-mode[data-theme="nature"] .audit-support-tab,
.audit-mode[data-theme="nature"] .audit-support-prompt {
  color: rgba(238, 241, 234, 0.88);
}

.audit-mode[data-theme="nature"] .audit-support-close,
.audit-mode[data-theme="nature"] .audit-support-tab {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.82);
}

.audit-mode[data-theme="nature"] .audit-support-tab.is-active,
.audit-mode[data-theme="nature"] .audit-support-tab:hover,
.audit-mode[data-theme="nature"] .audit-support-close:hover {
  border-color: rgba(154, 167, 133, 0.24);
  background: rgba(27, 39, 28, 0.96);
  color: rgba(238, 241, 234, 0.96);
}

.audit-mode[data-theme="nature"] .audit-support-prompt::before {
  background: rgba(194, 177, 126, 0.42);
}

.full-audit-card-results .results-block {
  width: min(760px, 100%);
}

.full-audit-card-results .full-audit-copy-block,
.full-audit-card-results .results-section-content,
.full-audit-card-results .results-section-head {
  margin-inline: auto;
  text-align: center;
}

.full-audit-card-results .results-section-head {
  justify-items: center;
}

.full-audit-card-results .results-section-hero .result-focus,
.full-audit-card-results .results-section-hero .result-quote {
  margin-inline: auto;
}

.full-audit-card-results {
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.full-audit-card-results .section-kicker,
.full-audit-card-results .full-audit-meta,
.full-audit-card-results .results-block h4 {
  color: rgba(243, 239, 232, 0.82);
}

.full-audit-card-results .full-audit-lead {
  color: rgba(243, 239, 232, 0.84);
}

.full-audit-card-results .full-audit-note,
.full-audit-card-results .result-line-detail,
.full-audit-card-results .result-reflection-hint {
  color: rgba(243, 239, 232, 0.72);
}

.full-audit-card-results .result-tile,
.full-audit-card-results .result-focus,
.full-audit-card-results .result-line,
.full-audit-card-results .results-subblock,
.full-audit-card-results .result-reflection-panel {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.full-audit-card-results .result-reaction {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.full-audit-card-results .result-reaction.is-active {
  background: rgba(232, 223, 212, 0.14);
  border-color: rgba(232, 223, 212, 0.46);
}

.full-audit-card-results .results-section-head .section-kicker,
.full-audit-card-results .results-hero-stat span,
.full-audit-card-results .result-direction-item span,
.full-audit-card-results .results-targeted-issue {
  color: rgba(243, 239, 232, 0.62);
}

.full-audit-card-results .results-section-pivot h3 {
  color: #f3efe8;
}

.auditor-toggle {
  justify-self: start;
  min-width: 132px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.74);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.auditor-toggle:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.auditor-toggle-highlight {
  border-color: rgba(232, 223, 212, 0.18);
  background: rgba(232, 223, 212, 0.08);
  color: rgba(243, 239, 232, 0.92);
}

.auditor-toggle-highlight:hover {
  border-color: rgba(232, 223, 212, 0.28);
  background: rgba(232, 223, 212, 0.12);
}

.auditor-toggle.is-open {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 239, 232, 0.9);
}

.auditor-drawer {
  display: grid;
  gap: 18px;
  margin-top: 6px;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(232, 223, 212, 0.08), transparent 42%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.auditor-drawer-kicker {
  margin: 0;
  color: rgba(243, 239, 232, 0.48);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auditor-prompt-list {
  display: grid;
  gap: 10px;
}

.auditor-prompt-line {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.76);
  line-height: 1.65;
}

.auditor-drawer-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.auditor-drawer-copy {
  display: grid;
  gap: 6px;
}

.auditor-kicker {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 239, 232, 0.44);
}

.auditor-drawer-head h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(243, 239, 232, 0.92);
}

.auditor-close {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.68);
  font: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.auditor-close:hover {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(243, 239, 232, 0.86);
}

.audit-mode[data-theme="light"] .auditor-toggle {
  border-color: rgba(73, 63, 52, 0.14);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(42, 39, 35, 0.76);
}

.audit-mode[data-theme="light"] .auditor-toggle-highlight {
  border-color: rgba(161, 143, 118, 0.2);
  background: rgba(161, 143, 118, 0.1);
  color: rgba(42, 39, 35, 0.88);
}

.audit-mode[data-theme="nature"] .auditor-toggle {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.68);
  color: rgba(232, 237, 228, 0.76);
}

.audit-mode[data-theme="nature"] .auditor-toggle-highlight {
  border-color: rgba(154, 167, 133, 0.22);
  background: rgba(118, 138, 103, 0.16);
  color: rgba(238, 241, 234, 0.92);
}

.audit-mode[data-theme="light"] .auditor-toggle.is-open {
  background: rgba(255, 255, 255, 0.78);
  color: rgba(42, 39, 35, 0.88);
}

.audit-mode[data-theme="nature"] .auditor-toggle.is-open {
  background: rgba(20, 31, 22, 0.86);
  color: rgba(238, 241, 234, 0.9);
}

.audit-mode[data-theme="light"] .auditor-prompt-line {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.54);
  color: rgba(42, 39, 35, 0.76);
}

.audit-mode[data-theme="nature"] .auditor-prompt-line {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.6);
  color: rgba(232, 237, 228, 0.8);
}

.auditor-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auditor-tab {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.62);
  font: inherit;
  cursor: pointer;
}

.auditor-tab.is-active {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.auditor-drawer-block strong {
  display: block;
  margin-bottom: 8px;
}

.auditor-drawer-block p,
.auditor-drawer-block li {
  color: var(--muted);
  line-height: 1.8;
}

.auditor-drawer-block ul {
  margin: 0;
  padding-left: 20px;
}

.auditor-answer-guide,
.auditor-answer-row {
  display: grid;
  gap: 8px;
}

@keyframes auditFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTyping {
  from {
    width: 0;
  }
  to {
    width: 12ch;
  }
}

@keyframes heroCaret {
  0%,
  100% {
    border-color: rgba(243, 239, 232, 0.65);
  }
  50% {
    border-color: transparent;
  }
}

@keyframes mentalTabFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes mentalPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes auditModeEnter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.audit-form {
  display: grid;
  gap: 18px;
}

.audit-question {
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.audit-question legend {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 0;
  color: var(--muted-strong);
  font-weight: 700;
  line-height: 1.6;
}

.question-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(243, 239, 232, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.audit-options {
  display: grid;
  gap: 10px;
}

.audit-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.audit-option:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--muted-strong);
}

.audit-option input {
  margin: 0;
  accent-color: var(--accent);
}

.audit-option:has(input:checked) {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.audit-actions {
  display: flex;
  justify-content: flex-start;
}

.audit-result {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.audit-result h3 {
  margin: 10px 0 0;
  font-size: 1.6rem;
}

.audit-score-note {
  margin: 8px 0 0;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audit-result p {
  color: var(--muted);
  line-height: 1.8;
}

.audit-insight {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.audit-insight-label {
  margin: 0 0 8px;
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-insight p:last-child {
  margin: 0;
}

.audit-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.audit-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.audit-meta-row span {
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.92rem;
}

.audit-meta-row strong {
  color: var(--muted-strong);
  text-align: right;
  line-height: 1.6;
}

.audit-next-step {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(240, 231, 220, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(240, 231, 220, 0.08), rgba(240, 231, 220, 0.03));
}

.audit-next-step-label {
  margin: 0;
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-next-step h4 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
  color: rgba(243, 239, 232, 0.95);
}

.audit-next-step-list {
  display: grid;
  gap: 10px;
}

.audit-next-step-item {
  position: relative;
  padding-left: 18px;
  color: rgba(243, 239, 232, 0.8);
  line-height: 1.7;
}

.audit-next-step-item::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(240, 231, 220, 0.76);
}

.audit-upgrade {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(240, 231, 220, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 247, 232, 0.08), rgba(255, 247, 232, 0.03));
}

.audit-upgrade-kicker {
  margin: 0;
  color: rgba(243, 239, 232, 0.54);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audit-upgrade h4 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.4;
  color: rgba(243, 239, 232, 0.96);
}

.audit-upgrade p {
  margin: 0;
}

.audit-upgrade .button {
  margin-top: 4px;
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 1rem;
}

.audit-score {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.category-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.category-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
}

.category-item em {
  color: rgba(243, 239, 232, 0.44);
  font-style: normal;
}

.step-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.step-num {
  color: rgba(216, 207, 193, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.journey-visual {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.journey-node {
  position: relative;
  display: grid;
  gap: 10px;
  padding-top: 22px;
}

.journey-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.journey-node:last-child::before {
  right: 0;
}

.journey-node span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 239, 232, 0.68);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.journey-node strong {
  max-width: 150px;
  color: var(--muted-strong);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.journey-node p {
  margin: 0;
  max-width: 180px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.journey-outcome {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.journey-label {
  margin: 0;
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-outcome h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.journey-outcome-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journey-outcome-points span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.66);
  font-size: 0.9rem;
}

.auditor-layout,
.faq-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auditor-card,
.question-card {
  padding: 32px;
}

.icon-badge {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.4rem;
}

.auditor-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.auditor-point,
.question-subcard,
.pricing-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.auditor-point {
  padding: 14px 16px;
  color: var(--muted-strong);
}

.question-card {
  background:
    radial-gradient(circle at top left, rgba(232, 223, 212, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.question-subcards {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.question-subcard {
  padding: 18px;
}

.question-subcard strong {
  display: block;
  font-size: 0.92rem;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
  padding: 28px;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured .pricing-item,
.pricing-card.featured .price-subtitle,
.pricing-card.featured .price-tagline {
  color: rgba(243, 239, 232, 0.68);
}

.price-tagline {
  margin: 0;
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.9rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.price-value {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 0.9;
  font-weight: 800;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.pricing-item {
  padding: 14px 16px;
}

.pricing-details {
  margin-top: 18px;
  border-top: 1px solid rgba(243, 239, 232, 0.08);
  padding-top: 16px;
}

.pricing-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  border: 1px solid rgba(243, 239, 232, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(243, 239, 232, 0.82);
  font-weight: 600;
}

.pricing-details summary::-webkit-details-marker {
  display: none;
}

.pricing-details-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.pricing-details-icon::before,
.pricing-details-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(243, 239, 232, 0.62);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.pricing-details-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.pricing-details[open] .pricing-details-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.pricing-details-body {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.pricing-details-body-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pricing-detail-line {
  color: var(--muted);
  line-height: 1.75;
}

.pricing-value {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-access-note {
  margin: 16px 0 0;
  color: rgba(243, 239, 232, 0.74);
  line-height: 1.7;
}

.pricing-card .button {
  width: 100%;
  margin-top: 24px;
}

.pricing-card.featured .button {
  background: #f0e7dc;
  color: #111113;
}

.pricing-trust {
  margin: 18px 0 0;
  text-align: center;
  color: rgba(243, 239, 232, 0.6);
  font-size: 0.96rem;
  line-height: 1.7;
}

.landing-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: 20px;
  align-items: start;
}

.flow-panel,
.faq-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.landing-panel-toggle {
  padding: 0;
  overflow: hidden;
}

.landing-panel-toggle summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px;
  cursor: pointer;
  list-style: none;
}

.landing-panel-toggle summary::-webkit-details-marker {
  display: none;
}

.landing-panel-summary p:last-child {
  margin-bottom: 0;
}

.landing-panel-body {
  padding: 0 30px 30px;
}

.landing-panel-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.landing-panel-icon::before,
.landing-panel-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(243, 239, 232, 0.5);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.landing-panel-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.landing-panel-toggle[open] .landing-panel-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.flow-steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(243, 239, 232, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.022);
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(243, 239, 232, 0.08);
  color: rgba(243, 239, 232, 0.74);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.flow-step strong {
  display: block;
  margin: 0;
  font-size: 1rem;
}

.flow-step p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-layout {
  align-items: start;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.faq-item {
  display: block;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span:first-child {
  color: var(--muted-strong);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-toggle {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(243, 239, 232, 0.5);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.faq-copy p {
  max-width: 420px;
}

.footer {
  padding: 36px 0 52px;
}

.footer-row {
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(243, 239, 232, 0.54);
}

.footer .container > p {
  margin: 18px 0 0;
  color: rgba(243, 239, 232, 0.62);
  text-align: center;
}

.footer-links {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-link,
.footer-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.footer-link {
  color: rgba(243, 239, 232, 0.72);
}

.footer-link:hover,
.footer-cta:hover {
  color: var(--text);
}

.audit-legal-copy {
  margin: 0;
  color: rgba(243, 239, 232, 0.72);
}

.audit-legal-copy a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.legal-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(233, 222, 203, 0.08), transparent 36%),
    linear-gradient(180deg, #131211 0%, #0f0e0d 100%);
  color: var(--text);
}

.portal-boot-shell {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.08), transparent 30%),
    linear-gradient(180deg, #131315 0%, #0f0f10 52%, #0b0b0c 100%);
  z-index: 20;
}

body:not(.portal-ready) .portal-boot-shell {
  display: flex;
}

body:not(.portal-ready) #portal-app {
  visibility: hidden;
}

.portal-boot-card {
  width: min(520px, 100%);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.portal-boot-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.portal-boot-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
}

.portal-boot-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
}

.portal-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portal-header-audit-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.legal-back {
  color: rgba(243, 239, 232, 0.76);
}

.legal-back-button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.legal-back:hover {
  color: var(--text);
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(17, 16, 15, 0.72);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
}

.legal-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.02;
}

.legal-lead {
  margin: 0;
  max-width: 640px;
  font-size: 1.04rem;
  line-height: 1.72;
}

.legal-section {
  padding-top: 28px;
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.legal-section p,
.legal-section li {
  color: rgba(243, 239, 232, 0.8);
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.portal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.08), transparent 30%),
    linear-gradient(180deg, #131315 0%, #0f0f10 52%, #0b0b0c 100%);
}

.portal-page[data-theme="light"] {
  background:
    radial-gradient(circle at top, rgba(161, 143, 118, 0.16), transparent 34%),
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #ddd2c3 0%, #d0c4b5 100%);
  color: #25211d;
}

.portal-page[data-theme="nature"] {
  background:
    radial-gradient(circle at top, rgba(127, 151, 115, 0.18), transparent 28%),
    radial-gradient(circle at 14% 14%, rgba(184, 166, 125, 0.1), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(77, 101, 72, 0.16), transparent 28%),
    linear-gradient(180deg, #101611 0%, #0c120d 56%, #090e0a 100%);
  color: #eef1ea;
}

.portal-card {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.portal-page[data-theme="light"] .portal-card,
.portal-page[data-theme="light"] .legal-card {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.portal-arrival {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
  align-items: end;
  padding: 8px 2px 22px;
  border-bottom: 1px solid rgba(243, 239, 232, 0.07);
}

.portal-arrival-compact {
  grid-template-columns: 1fr;
  gap: 0;
  padding-bottom: 18px;
}

.portal-arrival-aside {
  justify-self: end;
  max-width: 320px;
  padding: 16px 18px;
  border: 1px solid rgba(243, 239, 232, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.04), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  position: relative;
}

.portal-arrival-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
  opacity: 0.7;
}

.portal-journey-wheel {
  --portal-progress: 0deg;
  width: 124px;
  height: 124px;
  margin: 4px 0 12px;
  border-radius: 999px;
  background:
    conic-gradient(from -90deg, rgba(243, 239, 232, 0.86) 0deg, rgba(214, 218, 228, 0.74) var(--portal-progress), rgba(255, 255, 255, 0.06) var(--portal-progress), rgba(255, 255, 255, 0.06) 360deg);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.portal-journey-wheel-inner {
  width: 92px;
  height: 92px;
  border-radius: inherit;
  background: rgba(12, 12, 11, 0.9);
  border: 1px solid rgba(243, 239, 232, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
}

.portal-journey-wheel-inner strong {
  display: block;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
}

.portal-journey-wheel-inner span {
  color: rgba(243, 239, 232, 0.62);
  font-size: 0.72rem;
  line-height: 1.35;
}

.portal-arrival-label {
  margin: 0 0 8px;
  color: rgba(243, 239, 232, 0.58);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.portal-arrival-copy {
  margin: 0;
  color: rgba(243, 239, 232, 0.74);
  line-height: 1.68;
}

.portal-arrival-label-insight {
  margin-top: 10px;
}

.portal-arrival-copy-insight {
  margin-top: 0;
  font-size: 0.88rem;
  line-height: 1.58;
  color: rgba(243, 239, 232, 0.62);
}

.portal-arrival-aside-loading .portal-journey-wheel {
  opacity: 0.72;
}

.portal-arrival-aside-loading .portal-journey-wheel-inner strong {
  letter-spacing: 0.08em;
}

.portal-arrival-aside-inline {
  width: min(100%, 212px);
  display: grid;
  justify-items: center;
  align-content: start;
  justify-self: stretch;
  margin-left: auto;
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-align: center;
}

.portal-arrival-copy-inline {
  margin-top: 10px;
  font-size: 0.86rem;
  line-height: 1.5;
}

.portal-arrival-summary {
  gap: 4px;
}

.portal-arrival-percent {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(243, 239, 232, 0.94);
}

.portal-arrival-checkpoint {
  margin: 0;
  color: rgba(243, 239, 232, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-head,
.portal-arrival-aside,
.pricing-card,
.flow-panel,
.faq-panel,
.locked-preview-item,
.system-tile,
.feature-card,
.step-card {
  min-width: 0;
}

.portal-page[data-theme="light"] .legal-lead,
.portal-page[data-theme="light"] .portal-session-card p,
.portal-page[data-theme="light"] .portal-draft-row p,
.portal-page[data-theme="light"] .portal-empty,
.portal-page[data-theme="light"] .portal-banner,
.portal-page[data-theme="light"] .portal-auth-top p,
.portal-page[data-theme="light"] .portal-security-note p,
.portal-page[data-theme="light"] .portal-form-footnote,
.portal-page[data-theme="light"] .legal-back,
.portal-page[data-theme="light"] .portal-inline-link {
  color: rgba(42, 39, 35, 0.72);
}

.portal-page[data-theme="light"] .brand,
.portal-page[data-theme="light"] .portal-head h1,
.portal-page[data-theme="light"] .portal-auth-top h2,
.portal-page[data-theme="light"] .portal-session-card h2,
.portal-page[data-theme="light"] .portal-unlock-state h2,
.portal-page[data-theme="light"] .portal-security-note strong,
.portal-page[data-theme="light"] .section-kicker,
.portal-page[data-theme="light"] .legal-back:hover,
.portal-page[data-theme="light"] .portal-inline-link:hover {
  color: #2a2723;
}

.portal-page[data-theme="nature"] .legal-lead,
.portal-page[data-theme="nature"] .portal-session-card p,
.portal-page[data-theme="nature"] .portal-draft-row p,
.portal-page[data-theme="nature"] .portal-empty,
.portal-page[data-theme="nature"] .portal-banner,
.portal-page[data-theme="nature"] .portal-auth-top p,
.portal-page[data-theme="nature"] .portal-security-note p,
.portal-page[data-theme="nature"] .portal-form-footnote,
.portal-page[data-theme="nature"] .legal-back,
.portal-page[data-theme="nature"] .portal-inline-link,
.portal-page[data-theme="nature"] .portal-progress-detail,
.portal-page[data-theme="nature"] .portal-progress-meta,
.portal-page[data-theme="nature"] .portal-collapsible-body p {
  color: rgba(230, 236, 225, 0.72);
}

.portal-page[data-theme="nature"] .brand,
.portal-page[data-theme="nature"] .portal-head h1,
.portal-page[data-theme="nature"] .portal-auth-top h2,
.portal-page[data-theme="nature"] .portal-session-card h2,
.portal-page[data-theme="nature"] .portal-unlock-state h2,
.portal-page[data-theme="nature"] .portal-security-note strong,
.portal-page[data-theme="nature"] .section-kicker,
.portal-page[data-theme="nature"] .legal-back:hover,
.portal-page[data-theme="nature"] .portal-inline-link:hover,
.portal-page[data-theme="nature"] .portal-progress-label,
.portal-page[data-theme="nature"] .portal-collapsible summary {
  color: #f1f3ee;
}

.portal-page[data-theme="light"] .portal-session-card,
.portal-page[data-theme="light"] .portal-draft-row,
.portal-page[data-theme="light"] .portal-empty,
.portal-page[data-theme="light"] .portal-banner,
.portal-page[data-theme="light"] .portal-auth-panel,
.portal-page[data-theme="light"] .portal-security-note,
.portal-page[data-theme="light"] .portal-toggle {
  background: rgba(255, 248, 240, 0.68);
  border-color: rgba(73, 63, 52, 0.16);
}

.portal-page[data-theme="nature"] .portal-session-card,
.portal-page[data-theme="nature"] .portal-draft-row,
.portal-page[data-theme="nature"] .portal-empty,
.portal-page[data-theme="nature"] .portal-banner,
.portal-page[data-theme="nature"] .portal-auth-panel,
.portal-page[data-theme="nature"] .portal-security-note,
.portal-page[data-theme="nature"] .portal-toggle,
.portal-page[data-theme="nature"] .portal-arrival-aside,
.portal-page[data-theme="nature"] .portal-collapsible {
  background: rgba(18, 28, 20, 0.56);
  border-color: rgba(154, 167, 133, 0.16);
}

.portal-page[data-theme="light"] .portal-toggle-button {
  color: rgba(34, 31, 27, 0.82);
}

.portal-page[data-theme="light"] .portal-theme-button {
  color: rgba(34, 31, 27, 0.82);
}

.portal-page[data-theme="nature"] .portal-theme-button {
  color: rgba(232, 237, 228, 0.8);
}

.portal-page[data-theme="light"] .portal-toggle-button.is-active {
  background: rgba(42, 39, 35, 0.1);
  color: #2a2723;
  border-color: rgba(42, 39, 35, 0.18);
  box-shadow: inset 0 0 0 1px rgba(42, 39, 35, 0.04);
}

.portal-page[data-theme="nature"] .portal-toggle-button.is-active {
  background: rgba(118, 138, 103, 0.16);
  color: #eef1ea;
  border-color: rgba(154, 167, 133, 0.24);
  box-shadow: inset 0 0 0 1px rgba(154, 167, 133, 0.06);
}

.portal-page[data-theme="light"] .button-secondary {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(73, 63, 52, 0.16);
  color: rgba(34, 31, 27, 0.88);
}

.portal-page[data-theme="nature"] .button-secondary {
  background: rgba(28, 42, 30, 0.7);
  border-color: rgba(154, 167, 133, 0.16);
  color: rgba(236, 240, 232, 0.9);
}

.portal-page[data-theme="light"] .button[disabled],
.portal-page[data-theme="light"] .button:disabled,
.portal-page[data-theme="light"] .portal-theme-button[disabled],
.portal-page[data-theme="light"] .portal-theme-button:disabled,
.portal-page[data-theme="light"] .portal-toggle-button[disabled],
.portal-page[data-theme="light"] .portal-toggle-button:disabled {
  opacity: 0.5;
  color: rgba(34, 31, 27, 0.48);
}

.portal-page[data-theme="nature"] .button[disabled],
.portal-page[data-theme="nature"] .button:disabled,
.portal-page[data-theme="nature"] .portal-theme-button[disabled],
.portal-page[data-theme="nature"] .portal-theme-button:disabled,
.portal-page[data-theme="nature"] .portal-toggle-button[disabled],
.portal-page[data-theme="nature"] .portal-toggle-button:disabled {
  opacity: 0.5;
  color: rgba(219, 227, 214, 0.45);
}

.portal-page[data-theme="light"] .portal-security-icon {
  border-color: rgba(42, 39, 35, 0.16);
  color: rgba(42, 39, 35, 0.72);
}

.portal-page[data-theme="nature"] .portal-security-icon {
  border-color: rgba(154, 167, 133, 0.18);
  color: rgba(233, 238, 229, 0.72);
}

.portal-head h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}

.portal-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
  margin-top: 34px;
}

.portal-auth-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.065), transparent 42%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 34px 88px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.portal-auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 32%);
  opacity: 0.9;
}

.portal-auth-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.portal-auth-top h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  line-height: 1.08;
}

.portal-auth-top p {
  color: var(--muted);
  line-height: 1.8;
}

.portal-auth-panel {
  padding: 34px;
}

.portal-auth-top {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.portal-theme-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(243, 239, 232, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.portal-theme-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.portal-theme-button.is-active {
  background: rgba(243, 239, 232, 0.88);
  color: #111113;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.portal-security-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(243, 239, 232, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.012);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.portal-security-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(243, 239, 232, 0.16);
  border-radius: 999px;
  color: rgba(243, 239, 232, 0.78);
  font-weight: 700;
  line-height: 1;
}

.portal-security-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.98rem;
}

.portal-security-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.portal-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.portal-toggle-button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 500;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.portal-toggle-button:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.portal-toggle-button.is-active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 600;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.portal-form,
.portal-session,
.portal-drafts {
  display: grid;
  gap: 16px;
}

.portal-form {
  margin-top: 20px;
  max-width: 560px;
}

.portal-session {
  margin-top: 20px;
  grid-template-columns: 1fr;
  gap: 12px;
}

.portal-session-dashboard {
  width: min(720px, 100%);
  margin-inline: auto;
  gap: 14px;
}

.portal-unlock-state {
  position: relative;
  padding: 30px 28px 28px;
  border: 1px solid rgba(243, 239, 232, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.portal-unlock-state::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.045) 46%, transparent 100%);
  transform: translateX(-100%);
  animation: portalUnlockSweep 1.8s ease forwards;
  pointer-events: none;
}

@keyframes portalUnlockSweep {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

.portal-unlock-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(240, 231, 220, 0.18);
  background: rgba(240, 231, 220, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  position: relative;
}

.portal-unlock-mark::before,
.portal-unlock-mark::after {
  content: "";
  position: absolute;
  background: rgba(240, 231, 220, 0.92);
  border-radius: 999px;
}

.portal-unlock-mark::before {
  width: 14px;
  height: 3px;
  left: 16px;
  top: 29px;
  transform: rotate(42deg);
}

.portal-unlock-mark::after {
  width: 24px;
  height: 3px;
  left: 22px;
  top: 25px;
  transform: rotate(-44deg);
}

.portal-unlock-state h2 {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.portal-unlock-state-compact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
}

.portal-unlock-state-compact h2 {
  margin: 0 0 6px;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  line-height: 1;
}

.portal-unlock-copy {
  min-width: 0;
}

.portal-unlock-state-compact .section-kicker {
  margin-bottom: 8px;
}

.portal-unlock-state-compact .portal-unlock-lead {
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.portal-unlock-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(243, 239, 232, 0.82);
  line-height: 1.75;
  font-size: 1.02rem;
}

.portal-unlock-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.portal-unlock-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(240, 231, 220, 0.12);
  color: rgba(243, 239, 232, 0.76);
  background: rgba(255, 255, 255, 0.03);
}

.portal-actions-centered {
  justify-content: center;
}

.portal-banner.is-hidden {
  display: none;
}

.portal-session-card,
.portal-draft-row,
.portal-empty,
.portal-banner {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.portal-session-card {
  padding: 18px 20px;
}

.portal-dashboard-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.portal-dashboard-card > * {
  position: relative;
  z-index: 1;
}

.portal-dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%);
  opacity: 0.9;
}

.portal-dashboard-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 239, 232, 0.12), transparent);
  pointer-events: none;
  opacity: 0.8;
}

.portal-dashboard-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.portal-dashboard-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.portal-dashboard-intro {
  margin: 0;
  max-width: 28ch;
  color: rgba(243, 239, 232, 0.92);
  font-size: 1.14rem;
  line-height: 1.32;
  font-weight: 600;
}

.portal-account-meta {
  margin: 10px 0 0;
  color: rgba(243, 239, 232, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

.portal-status-line {
  margin: 16px 0 0;
  max-width: 34ch;
  color: rgba(243, 239, 232, 0.68);
  font-size: 0.98rem;
  line-height: 1.55;
}

.portal-session-card-primary {
  background:
    radial-gradient(circle at top center, rgba(232, 223, 212, 0.1), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.055), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.portal-progress {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.portal-progress strong {
  color: var(--text);
  font-size: 0.95rem;
}

.portal-progress-label {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.portal-progress-detail {
  margin: 2px 0 0;
  color: rgba(243, 239, 232, 0.62);
  line-height: 1.55;
}

.portal-progress-meta {
  margin-top: 6px;
  color: rgba(243, 239, 232, 0.62);
  line-height: 1.5;
  font-size: 0.92rem;
}

.portal-progress-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.portal-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(240, 231, 220, 0.65), rgba(240, 231, 220, 0.98));
}

.portal-progress-light {
  padding-top: 6px;
}

.portal-progress-light,
.portal-stats-grid {
  border-top: 1px solid rgba(243, 239, 232, 0.06);
  padding-top: 16px;
}

.portal-cta-block {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 8px 0 2px;
  position: relative;
  z-index: 1;
}

.portal-dashboard-cta {
  min-width: min(100%, 360px);
  min-height: 58px;
  padding-inline: 28px;
  font-size: 1rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.portal-cta-microcopy {
  margin: 0;
  color: rgba(243, 239, 232, 0.6);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: center;
}

.portal-dashboard-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.portal-stat {
  display: grid;
  gap: 8px;
  padding: 18px 18px;
  border: 1px solid rgba(243, 239, 232, 0.05);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.portal-stat-label {
  color: rgba(243, 239, 232, 0.52);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portal-stat strong {
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 600;
}

.portal-page[data-theme="light"] .portal-progress-bar {
  background: rgba(73, 63, 52, 0.08);
}

.portal-page[data-theme="light"] .portal-progress-bar span {
  background: linear-gradient(90deg, rgba(42, 39, 35, 0.38), rgba(42, 39, 35, 0.78));
}

.portal-page[data-theme="nature"] .portal-progress-bar {
  background: rgba(163, 175, 145, 0.08);
}

.portal-page[data-theme="nature"] .portal-progress-bar span {
  background: linear-gradient(90deg, rgba(118, 138, 103, 0.62), rgba(194, 177, 126, 0.88));
}

.portal-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.portal-chip-row-tight {
  margin-top: 0;
  gap: 8px;
}

.portal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(214, 185, 142, 0.12);
  border-radius: 999px;
  color: rgba(243, 239, 232, 0.72);
  background: rgba(255, 255, 255, 0.02);
}

.portal-chip-accent {
  border-color: rgba(240, 231, 220, 0.22);
  color: rgba(255, 245, 232, 0.92);
  background: linear-gradient(180deg, rgba(240, 231, 220, 0.16), rgba(240, 231, 220, 0.07));
}

.portal-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.portal-trust-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(243, 239, 232, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(243, 239, 232, 0.7);
  font-size: 0.84rem;
  line-height: 1.3;
}

.portal-trust-row span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(240, 231, 220, 0.9);
  box-shadow: 0 0 10px rgba(240, 231, 220, 0.25);
}

.portal-focus-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  position: relative;
  z-index: 1;
}

.portal-focus-strip p {
  margin: 0;
  min-height: 100%;
  padding: 14px 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(243, 239, 232, 0.055);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.045), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.012);
  color: rgba(243, 239, 232, 0.78);
  line-height: 1.55;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.portal-page[data-theme="light"] .portal-chip {
  border-color: rgba(73, 63, 52, 0.12);
  color: rgba(34, 31, 27, 0.8);
  background: rgba(255, 255, 255, 0.66);
}

.portal-page[data-theme="light"] .portal-chip-accent {
  border-color: rgba(73, 63, 52, 0.18);
  color: #221f1b;
  background: linear-gradient(180deg, rgba(73, 63, 52, 0.1), rgba(73, 63, 52, 0.05));
}

.portal-page[data-theme="light"] .portal-dashboard-intro {
  color: rgba(42, 39, 35, 0.92);
}

.portal-page[data-theme="light"] .portal-account-meta {
  color: rgba(42, 39, 35, 0.58);
}

.portal-page[data-theme="light"] .portal-status-line {
  color: rgba(42, 39, 35, 0.7);
}

.portal-page[data-theme="light"] .portal-stat {
  border-color: rgba(73, 63, 52, 0.08);
  background: rgba(255, 255, 255, 0.38);
}

.portal-page[data-theme="light"] .portal-stat-label {
  color: rgba(42, 39, 35, 0.5);
}

.portal-page[data-theme="light"] .portal-stat strong {
  color: #221f1b;
}

.portal-page[data-theme="nature"] .portal-chip {
  border-color: rgba(154, 167, 133, 0.14);
  color: rgba(232, 237, 228, 0.82);
  background: rgba(33, 47, 35, 0.58);
}

.portal-page[data-theme="nature"] .portal-chip-accent {
  border-color: rgba(182, 164, 114, 0.24);
  color: rgba(245, 240, 228, 0.94);
  background: linear-gradient(180deg, rgba(182, 164, 114, 0.16), rgba(118, 138, 103, 0.12));
}

.portal-page[data-theme="nature"] .portal-dashboard-intro {
  color: rgba(238, 242, 234, 0.92);
}

.portal-page[data-theme="nature"] .portal-account-meta {
  color: rgba(232, 237, 228, 0.58);
}

.portal-page[data-theme="nature"] .portal-status-line {
  color: rgba(224, 232, 218, 0.72);
}

.portal-page[data-theme="nature"] .portal-stat {
  border-color: rgba(154, 167, 133, 0.1);
  background: rgba(26, 39, 28, 0.46);
}

.portal-page[data-theme="nature"] .portal-stat-label {
  color: rgba(215, 223, 209, 0.52);
}

.portal-page[data-theme="nature"] .portal-stat strong {
  color: #edf1e9;
}

.portal-page[data-theme="light"] .portal-progress-meta {
  color: rgba(34, 31, 27, 0.7);
}

.portal-page[data-theme="light"] .portal-progress-detail {
  color: rgba(42, 39, 35, 0.66);
}

.portal-collapsible {
  border: 1px solid rgba(243, 239, 232, 0.07);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.portal-collapsible-utility {
  background: rgba(255, 255, 255, 0.018);
}

.portal-page[data-theme="light"] .portal-trust-row span {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(42, 39, 35, 0.74);
}

.portal-page[data-theme="light"] .portal-trust-row span::before {
  background: rgba(73, 63, 52, 0.72);
  box-shadow: 0 0 8px rgba(73, 63, 52, 0.16);
}

.portal-page[data-theme="nature"] .portal-trust-row span {
  border-color: rgba(154, 167, 133, 0.12);
  background: rgba(28, 42, 30, 0.54);
  color: rgba(232, 237, 228, 0.76);
}

.portal-page[data-theme="nature"] .portal-trust-row span::before {
  background: rgba(194, 177, 126, 0.84);
  box-shadow: 0 0 8px rgba(194, 177, 126, 0.18);
}

.portal-page[data-theme="light"] .portal-focus-strip p {
  border-color: rgba(73, 63, 52, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 240, 0.54)),
    rgba(255, 255, 255, 0.4);
  color: rgba(42, 39, 35, 0.78);
}

.portal-page[data-theme="nature"] .portal-focus-strip p {
  border-color: rgba(154, 167, 133, 0.12);
  background:
    linear-gradient(180deg, rgba(28, 42, 30, 0.72), rgba(19, 29, 21, 0.62)),
    rgba(20, 31, 22, 0.48);
  color: rgba(232, 237, 228, 0.78);
}

.portal-utility-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.portal-utility-row-single {
  grid-template-columns: minmax(0, 1fr);
}

.portal-collapsible summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.portal-collapsible summary::-webkit-details-marker {
  display: none;
}

.portal-collapsible-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.portal-collapsible-icon::before,
.portal-collapsible-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(243, 239, 232, 0.62);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.portal-collapsible-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.portal-collapsible[open] .portal-collapsible-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.portal-collapsible-body {
  padding: 0 16px 16px;
}

.portal-collapsible-body p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.62;
}

.portal-menu-block + .portal-menu-block {
  margin-top: 12px;
}

.portal-menu-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.portal-page[data-theme="light"] .portal-collapsible {
  background: rgba(255, 250, 244, 0.6);
  border-color: rgba(73, 63, 52, 0.16);
}

.portal-page[data-theme="light"] .portal-unlock-state {
  border-color: rgba(73, 63, 52, 0.14);
  background:
    radial-gradient(circle at top, rgba(161, 143, 118, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 250, 244, 0.84), rgba(245, 237, 228, 0.76));
  box-shadow: 0 22px 48px rgba(73, 63, 52, 0.14);
}

.portal-page[data-theme="nature"] .portal-unlock-state {
  border-color: rgba(154, 167, 133, 0.18);
  background:
    radial-gradient(circle at top, rgba(118, 138, 103, 0.2), transparent 48%),
    linear-gradient(180deg, rgba(23, 33, 24, 0.88), rgba(16, 24, 18, 0.8));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.portal-page[data-theme="light"] .portal-arrival {
  border-bottom-color: rgba(73, 63, 52, 0.12);
}

.portal-page[data-theme="nature"] .portal-arrival {
  border-bottom-color: rgba(154, 167, 133, 0.12);
}

.portal-page[data-theme="light"] .portal-arrival-aside {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 250, 244, 0.68);
}

.portal-page[data-theme="light"] .portal-arrival-label {
  color: rgba(42, 39, 35, 0.56);
}

.portal-page[data-theme="light"] .portal-arrival-percent {
  color: #2a2723;
}

.portal-page[data-theme="light"] .portal-arrival-checkpoint {
  color: rgba(42, 39, 35, 0.56);
}

.portal-page[data-theme="light"] .portal-arrival-copy {
  color: rgba(42, 39, 35, 0.78);
}

.portal-page[data-theme="light"] .portal-remember-check {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.portal-page[data-theme="light"] .portal-install-callout {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.portal-page[data-theme="light"] .portal-install-kicker {
  color: rgba(42, 39, 35, 0.46);
}

.portal-page[data-theme="light"] .portal-install-copy {
  color: rgba(42, 39, 35, 0.9);
}

.portal-page[data-theme="light"] .portal-install-note {
  color: rgba(42, 39, 35, 0.62);
}

.portal-page[data-theme="light"] .portal-remember-check small {
  color: rgba(42, 39, 35, 0.58);
}

.portal-page[data-theme="light"] .portal-arrival-copy-insight {
  color: rgba(42, 39, 35, 0.68);
}

.portal-page[data-theme="nature"] .portal-arrival-label {
  color: rgba(214, 223, 207, 0.54);
}

.portal-page[data-theme="nature"] .portal-arrival-copy {
  color: rgba(232, 237, 228, 0.76);
}

.portal-page[data-theme="nature"] .portal-remember-check {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.7);
}

.portal-page[data-theme="nature"] .portal-install-callout {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(20, 31, 22, 0.72);
}

.portal-page[data-theme="nature"] .portal-install-kicker {
  color: rgba(219, 227, 214, 0.46);
}

.portal-page[data-theme="nature"] .portal-install-copy {
  color: rgba(238, 241, 234, 0.9);
}

.portal-page[data-theme="nature"] .portal-install-note {
  color: rgba(219, 227, 214, 0.62);
}

.portal-page[data-theme="nature"] .portal-remember-check small {
  color: rgba(219, 227, 214, 0.58);
}

.portal-page[data-theme="nature"] .portal-arrival-copy-insight {
  color: rgba(219, 227, 214, 0.68);
}

.portal-page[data-theme="light"] .portal-unlock-mark {
  border-color: rgba(73, 63, 52, 0.14);
  background: rgba(73, 63, 52, 0.06);
}

.portal-page[data-theme="light"] .portal-unlock-mark::before,
.portal-page[data-theme="light"] .portal-unlock-mark::after {
  background: rgba(42, 39, 35, 0.86);
}

.portal-page[data-theme="nature"] .portal-unlock-mark {
  border-color: rgba(154, 167, 133, 0.18);
  background: rgba(118, 138, 103, 0.12);
}

.portal-page[data-theme="nature"] .portal-unlock-mark::before,
.portal-page[data-theme="nature"] .portal-unlock-mark::after {
  background: rgba(237, 241, 233, 0.9);
}

.portal-page[data-theme="light"] .portal-unlock-lead,
.portal-page[data-theme="light"] .portal-unlock-points span {
  color: rgba(42, 39, 35, 0.82);
}

.portal-page[data-theme="light"] .portal-unlock-points span {
  border-color: rgba(73, 63, 52, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.portal-page[data-theme="nature"] .portal-unlock-lead,
.portal-page[data-theme="nature"] .portal-unlock-points span {
  color: rgba(232, 237, 228, 0.84);
}

.portal-page[data-theme="nature"] .portal-unlock-points span {
  border-color: rgba(154, 167, 133, 0.14);
  background: rgba(31, 45, 32, 0.6);
}

.portal-page[data-theme="light"] .portal-collapsible summary {
  color: #221f1b;
}

.portal-page[data-theme="light"] .portal-collapsible-icon::before,
.portal-page[data-theme="light"] .portal-collapsible-icon::after {
  background: rgba(34, 31, 27, 0.62);
}

.portal-page[data-theme="nature"] .portal-collapsible-icon::before,
.portal-page[data-theme="nature"] .portal-collapsible-icon::after {
  background: rgba(232, 237, 228, 0.62);
}

.portal-page[data-theme="light"] .portal-collapsible-body p {
  color: rgba(34, 31, 27, 0.72);
}

.portal-session-card h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.15;
}

.portal-session-card p,
.portal-draft-row p,
.portal-empty,
.portal-banner {
  color: var(--muted);
  line-height: 1.8;
}

.portal-draft-row,
.portal-empty,
.portal-banner {
  padding: 16px 18px;
}

.portal-banner {
  margin-top: 20px;
}

.portal-banner.is-error {
  border-color: rgba(190, 120, 120, 0.35);
}

.portal-banner.is-success {
  border-color: rgba(192, 180, 150, 0.35);
}

.admin-page .portal-arrival {
  padding-bottom: 28px;
}

.admin-session-card {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-metric-card {
  display: grid;
  gap: 10px;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-metric-label {
  color: rgba(243, 239, 232, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-metric-card strong {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.admin-metric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.admin-refresh-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.admin-events-list {
  display: grid;
  gap: 12px;
}

.admin-event-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.028);
}

.admin-event-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.admin-event-head strong {
  font-size: 0.96rem;
}

.admin-event-head span {
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-event-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

.admin-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.admin-event-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.portal-actions-compact {
  margin-top: 0;
}

.portal-install-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.portal-install-callout-muted {
  opacity: 0.72;
}

.portal-install-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 239, 232, 0.46);
}

.portal-install-copy {
  margin: 0;
  color: rgba(243, 239, 232, 0.88);
  line-height: 1.45;
}

.portal-install-note {
  margin: 6px 0 0;
  color: rgba(243, 239, 232, 0.62);
  line-height: 1.6;
  font-size: 0.9rem;
}

.portal-form-footnote {
  margin: 10px 0 0;
  color: rgba(243, 239, 232, 0.64);
  line-height: 1.55;
  font-size: 0.92rem;
}

.support-shell {
  padding-bottom: 52px;
}

.support-card {
  overflow: visible;
}

.support-layout {
  max-width: 760px;
  margin: 0 auto;
}

.support-panel {
  gap: 20px;
}

.support-form {
  gap: 16px;
}

.support-textarea {
  min-height: 180px;
}

.support-actions {
  align-items: center;
}

.support-footnote a {
  color: inherit;
}

.support-note {
  margin-top: 14px;
}

.portal-remember-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.portal-remember-check input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.portal-remember-check span {
  display: grid;
  gap: 4px;
}

.portal-remember-check strong {
  font-size: 0.96rem;
  line-height: 1.4;
}

.portal-remember-check small {
  color: rgba(243, 239, 232, 0.58);
  line-height: 1.5;
  font-size: 0.84rem;
}

.portal-inline-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(243, 239, 232, 0.72);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.portal-inline-link:hover {
  color: var(--text);
}

.portal-inline-link-button {
  appearance: none;
  cursor: pointer;
}

code {
  font-family: inherit;
  font-size: 0.95em;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes miniAuditProcessing {
  0% {
    transform: translateX(-95%);
  }
  50% {
    transform: translateX(90%);
  }
  100% {
    transform: translateX(220%);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .steps-editorial,
  .access-editorial,
  .audit-layout,
  .category-layout,
  .auditor-layout,
  .faq-layout,
  .landing-lower-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .step-grid,
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-grid,
  .editorial-points-tight,
  .landing-split {
    grid-template-columns: 1fr;
  }

  .steps-editorial-copy {
    position: static;
    max-width: 720px;
  }

  .steps-editorial-copy p:last-child {
    max-width: 56ch;
  }

  .steps-editorial-track {
    grid-template-columns: 1fr;
  }

  .access-lane-trial {
    padding-right: 0;
  }

  .system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-details-body-grid {
    grid-template-columns: 1fr;
  }

  .journey-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mental-slide {
    min-height: 280px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .portal-arrival {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 290px);
    gap: 16px;
  }

  .portal-arrival-compact {
    grid-template-columns: 1fr;
  }

  .portal-arrival-aside {
    max-width: 290px;
    padding: 15px 16px;
  }

  .portal-head h1 {
    font-size: clamp(2rem, 5.8vw, 3.2rem);
  }
}

@media (max-width: 900px) {
  .legal-header {
    align-items: flex-start;
    gap: 16px;
  }

  .portal-head {
    text-align: center;
    justify-items: center;
  }

  .portal-head .legal-lead,
  .portal-head .portal-status-line {
    margin-inline: auto;
  }

  .portal-header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .portal-header-audit-button {
    order: -1;
  }

  .portal-theme-toggle {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .portal-theme-button {
    flex: 1 1 auto;
    min-width: 88px;
  }

  .portal-arrival {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .portal-dashboard-top {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .portal-dashboard-copy {
    justify-items: center;
    text-align: center;
  }

  .portal-arrival-aside-inline {
    margin-left: 0;
    margin-right: 0;
    margin-inline: auto;
    width: min(100%, 240px);
    justify-self: center;
    align-self: center;
  }

  .portal-dashboard-meta {
    grid-template-columns: 1fr;
  }

  .portal-focus-strip {
    grid-template-columns: 1fr;
  }

  .portal-install-callout {
    grid-template-columns: 1fr;
  }

  .portal-arrival-aside {
    justify-self: stretch;
    max-width: none;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 6px;
    align-items: center;
  }

  .portal-arrival-aside .portal-arrival-label:first-child {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .portal-journey-wheel {
    grid-row: span 3;
    margin: 2px 0;
  }

  .portal-arrival-copy,
  .portal-arrival-label-insight,
  .portal-arrival-copy-insight {
    margin: 0;
  }

  .results-hero,
  .results-direction-grid,
  .results-action-grid,
  .results-reset-grid,
  .results-targeted-list,
  .results-grid-scan {
    grid-template-columns: 1fr;
  }

  .full-audit-routing-list {
    grid-template-columns: 1fr;
  }

  .results-section-pivot {
    padding: 0;
  }

  .results-section-pivot h3 {
    font-size: clamp(1.7rem, 10vw, 2.8rem);
  }
}

@media (min-width: 1024px) {
  .results-section {
    margin-top: 80px;
  }
}

@media (max-width: 760px) {
  .site-header .topbar {
    min-height: 68px;
    flex-direction: row;
    gap: 12px;
    text-align: left;
  }

  .site-header .brand-wordmark-text {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
  }

  .site-header .topbar-links {
    width: auto;
    gap: 10px;
  }

  .site-header .topbar-links a:not(.topbar-auth) {
    display: none;
  }

  .site-header .topbar-links [data-site-auth-slot] {
    width: auto;
  }

  .site-header .topbar-auth {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .topbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .topbar-links {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .topbar-links [data-site-auth-slot] {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding-bottom: 48px;
  }

  .footer-row,
  .legal-header {
    align-items: center;
    text-align: center;
  }

  .portal-header-actions {
    justify-content: center;
  }

  .portal-page {
    overflow-x: clip;
  }

  .hero-grid {
    gap: 24px;
    padding-top: 22px;
  }

  .hero-aside {
    order: 2;
    max-width: 480px;
    margin-inline: auto;
  }

  .hero-main {
    width: 100%;
    text-align: center;
    margin-inline: auto;
  }

  .hero-subtext,
  .hero-support,
  .hero-note {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-truths {
    gap: 10px;
    justify-items: center;
  }

  .hero-truths p {
    max-width: 34ch;
    text-align: left;
  }

  .hero-actions,
  .hero-tags {
    justify-content: center;
  }

  .hero-proof-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10.5vw, 3.45rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    margin-inline: auto;
    text-align: center;
  }

  .hero-note {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-proof-card,
  .landing-split-card,
  .editorial-point-strong {
    padding: 22px 20px;
    border-radius: 22px;
  }

  .desktop-break {
    display: none;
  }

  .hero-preview-window {
    grid-template-rows: auto auto minmax(92px, 92px);
    min-height: 220px;
    padding: 16px;
  }

  .hero-preview-linewrap {
    min-height: 92px;
    padding: 14px 14px 12px;
  }

  .hero-entry-card h2 {
    font-size: 1.65rem;
    min-height: calc(1.08em * 3);
  }

  .hero-preview-line {
    font-size: 0.92rem;
    line-height: 1.56;
    min-height: calc(1.56em * 3);
  }

  .legal-shell {
    width: min(100% - 24px, 1180px);
    padding: max(18px, env(safe-area-inset-top)) 0 44px;
  }

  .full-audit-title-intro {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }

  .audit-guide-stage,
  .audit-guide-question-row {
    grid-template-columns: 1fr;
  }

  .full-audit-routing-progress {
    grid-template-columns: 1fr;
  }

  .full-audit-routing-card-head {
    flex-direction: column;
  }

  .full-audit-routing-state {
    align-self: flex-start;
  }

  .audit-guide-shell {
    padding: 20px;
  }

  .audit-guide-state-badge {
    max-width: 260px;
  }

  .audit-walkthrough-tooltip {
    left: 20px;
    right: 20px;
    width: auto;
  }

  .audit-walkthrough-tooltip-question,
  .audit-walkthrough-tooltip-input,
  .audit-walkthrough-tooltip-prompts,
  .audit-walkthrough-tooltip-side-notes,
  .audit-walkthrough-tooltip-footer {
    top: auto;
    right: 20px;
    bottom: 20px;
  }

  .relationship-pattern-panel-split,
  .relationship-pattern-grid,
  .identity-shift-shell,
  .identity-shift-proof-grid,
  .identity-shift-chip-grid.is-card-grid {
    grid-template-columns: 1fr;
  }

  .identity-shift-preview {
    position: static;
  }

  .identity-shift-inline-builder {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .full-audit-stats,
  .category-grid,
  .step-grid,
  .preview-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps-editorial-track {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .section-heading-centered {
    margin-bottom: 32px;
  }

  .results-container {
    padding: 0 16px;
  }

  .results-progress-anchors {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 12px;
    padding-bottom: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .results-progress-anchors::-webkit-scrollbar {
    display: none;
  }

  .results-progress-anchors span {
    display: none;
  }

  .results-progress-anchors a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(232, 223, 212, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    letter-spacing: 0.06em;
    font-size: 0.67rem;
  }

  .results-section {
    margin-top: 44px;
  }

  .results-section-head h3 {
    font-size: clamp(1.12rem, 5.4vw, 1.45rem);
  }

  .results-section-content {
    gap: 12px;
  }

  .results-section-pivot .results-section-content {
    padding: 28px 10px;
  }

  .editorial-list {
    max-width: 100%;
  }

  .how-it-works-shell {
    gap: 28px;
  }

  .how-it-works-intro {
    text-align: center;
  }

  .how-it-works-flow {
    gap: 18px;
  }

  .how-it-works-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .diagnostic-grid {
    grid-template-columns: 1fr;
  }

  .diagnostic-card,
  .diagnostic-card-large {
    min-height: auto;
  }

  .diagnostic-card {
    padding: 24px 22px 24px;
    border-radius: 24px;
  }

  .diagnostic-orb {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .how-it-works-outcome {
    margin-top: 28px;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .how-it-works-answer-grid,
  .how-it-works-promises {
    grid-template-columns: 1fr;
  }

  .section-bridge {
    margin-top: 28px;
  }

  .step-item {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .step-number,
  .step-item h3,
  .step-item p:last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .access-lane-full {
    padding: 24px 22px 26px;
    border-radius: 24px;
  }

  .access-head {
    gap: 14px;
  }

  .system-grid,
  .locked-preview-grid,
  .pricing-details-body-grid {
    grid-template-columns: 1fr;
  }

  .journey-visual,
  .journey-track {
    grid-template-columns: 1fr;
  }

  .journey-node::before {
    right: 0;
  }

  .mental-carousel {
    padding: 22px;
  }

  .flow-panel,
  .faq-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .landing-panel-toggle summary,
  .landing-panel-body {
    padding-left: 22px;
    padding-right: 22px;
  }

  .landing-panel-body {
    padding-bottom: 22px;
  }

  .portal-session {
    grid-template-columns: 1fr;
  }

  .portal-dashboard-card {
    padding: 20px 18px;
  }

  .portal-session-card-primary {
    box-shadow:
      0 24px 52px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .portal-trust-row {
    gap: 8px;
  }

  .portal-trust-row span {
    width: 100%;
  }

  .portal-focus-strip p {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .portal-arrival-aside {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 14px 15px;
  }

  .portal-arrival-aside .portal-arrival-label:first-child {
    grid-column: auto;
  }

  .portal-journey-wheel {
    grid-row: auto;
    width: 112px;
    height: 112px;
    margin: 0;
  }

  .portal-journey-wheel-inner {
    width: 82px;
    height: 82px;
    padding: 10px;
  }

  .portal-journey-wheel-inner strong {
    font-size: 1.18rem;
  }

  .portal-journey-wheel-inner span {
    font-size: 0.68rem;
  }

  .portal-head h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .portal-arrival-copy,
  .portal-arrival-copy-insight,
  .legal-lead {
    line-height: 1.55;
  }

  .portal-unlock-state {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .portal-unlock-state-compact {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portal-unlock-state h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .mental-slide {
    min-height: 260px;
    padding: 8px 2px;
  }

  .mental-carousel-controls {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mini-audit-progress-node::before,
  .mini-audit-progress-node::after {
    max-width: 72px;
  }

  .resume-actions {
    width: 100%;
    flex-direction: column-reverse;
  }

  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  .admin-refresh-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-type-row {
    width: 100%;
  }

  .full-audit-footer.full-audit-footer-intro {
    justify-content: center;
    width: 100%;
  }

  .full-audit-footer.full-audit-footer-intro .button {
    width: auto;
    min-width: 180px;
    margin-inline: auto;
  }

  .audit-shell,
  .full-audit-panel,
  .audit-question,
  .audit-result {
    padding: 20px;
  }

  .card-head,
  .score-line,
  .score-actions,
  .audit-meta-row,
  .full-audit-head,
  .full-audit-progress,
  .full-audit-nav,
  .result-line,
  .price-row,
  .footer-row {
    flex-direction: column;
  }

  .pricing-card .price-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .scale-options {
    grid-template-columns: repeat(5, minmax(44px, 1fr));
  }

  .progress-meta {
    text-align: left;
  }

  .full-audit-card {
    min-height: auto;
    padding: 16px 16px 20px;
    border-radius: 22px;
  }

  .audit-mode {
    padding: 12px 10px 18px;
    height: 100dvh;
    min-height: 100dvh;
  }

  .audit-mode-shell {
    min-height: calc(100dvh - 20px);
    padding-bottom: 10px;
  }

  .full-audit-stage {
    width: 100%;
  }

  .audit-mode-bar {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    padding: 0;
    margin-bottom: 4px;
  }

  .audit-inline-notice {
    flex-direction: column;
    align-items: flex-start;
    margin: 8px 0 0;
  }

  .audit-inline-notice-action {
    padding: 0;
  }

  .audit-mode-label {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    color: rgba(243, 239, 232, 0.42);
    white-space: nowrap;
  }

  .audit-mode-actions {
    justify-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
    width: 100%;
  }

  .audit-save-status {
    min-height: 24px;
    padding: 0 6px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    flex: 0 0 auto;
    order: 1;
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(243, 239, 232, 0.5);
  }

  .audit-text-scale-toggle {
    padding: 2px;
    flex: 0 0 auto;
    order: 2;
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
  }

  .audit-text-scale-button {
    padding: 4px 8px;
    font-size: 0.64rem;
  }

  .audit-break,
  .audit-focus,
  .icon-audio-button,
  .audit-dev {
    display: none !important;
  }

  .audit-exit {
    font-size: 0.74rem;
    color: rgba(243, 239, 232, 0.46);
    flex: 1 0 100%;
    order: 3;
    justify-self: start;
    text-align: left;
    margin-top: 1px;
  }

  .full-audit-meta,
  .full-audit-submeta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }

  .full-audit-meta-actions {
    width: auto;
    justify-content: flex-end;
    gap: 10px;
  }

  .full-audit-progressbar {
    gap: 8px;
    margin-bottom: 8px;
  }

  .full-audit-progresscopy {
    gap: 4px;
  }

  .full-audit-meta,
  .full-audit-submeta {
    font-size: 0.78rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }

  .full-audit-meta span:first-child,
  .full-audit-submeta span:last-child {
    display: none;
  }

  .full-audit-header-link {
    display: none;
  }

  .progress-bar-journey {
    height: 6px;
  }

  .full-audit-title {
    font-size: clamp(2.25rem, 11.6vw, 3.2rem);
    line-height: 0.94;
    margin-top: 0;
  }

  .full-audit-title-row {
    gap: 12px;
    min-width: 0;
  }

  .full-audit-title-row .audit-walkthrough-question-target {
    min-width: 0;
  }

  .full-audit-title {
    overflow-wrap: anywhere;
  }

  .full-audit-card-question .full-audit-title-row {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 12px;
    min-height: 0;
  }

  .full-audit-card-question .full-audit-title-row::before {
    display: none;
  }

  .full-audit-card-question .full-audit-title-row .audit-walkthrough-question-target {
    grid-column: 1;
    display: block;
    width: 100%;
  }

  .full-audit-card-question .audit-read-question-button {
    grid-column: 2;
    position: static;
    justify-self: end;
  }

  .full-audit-card-question .full-audit-title {
    font-size: clamp(1.88rem, 9.35vw, 2.72rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: pretty;
  }

  .audit-mode[data-text-scale="compact"] .full-audit-card-question .full-audit-title {
    font-size: clamp(1.76rem, 8.75vw, 2.48rem);
    line-height: 1.07;
  }

  .audit-read-question-button {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .full-audit-copy-block {
    width: 100%;
  }

  .full-audit-section-entry-copy {
    text-align: left;
  }

  .full-audit-card-question {
    gap: 14px;
  }

  .full-audit-input-zone {
    margin-top: 0;
  }

  .full-audit-input-wrap {
    max-width: none;
  }

  .full-audit-scale {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .full-audit-choice-grid {
    grid-template-columns: 1fr;
  }

  .financial-mode-grid,
  .financial-stage-tabs,
  .financial-projection-statuses,
  .financial-totals-panel,
  .financial-projection-gains,
  .financial-comparison-grid,
  .financial-expense-form,
  .energy-baseline-grid,
  .energy-visual-row {
    grid-template-columns: 1fr;
  }

  .financial-income-bubble {
    min-height: 180px;
    border-radius: 32px;
  }

  .financial-bubble-map-head,
  .financial-expense-card-head,
  .financial-expense-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .mental-tabs-entry-row {
    grid-template-columns: 1fr;
  }

  .mental-tabs-cloud,
  .mental-tabs-state-panel,
  .mental-tabs-projection-grid {
    grid-template-columns: 1fr;
  }

  .mental-tabs-relief-band {
    grid-template-columns: 1fr;
  }

  .mental-tabs-relief-bar {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mental-tabs-add-button {
    min-height: 54px;
  }

  .mental-tabs-capture-bar {
    grid-template-columns: 1fr;
  }

  .full-audit-textarea {
    min-height: 280px;
    padding: 22px;
  }

  .full-audit-textarea-reflection,
  .audit-realisation-textarea {
    min-height: 280px;
  }

  .full-audit-textarea-with-voice {
    padding-right: 72px;
    padding-bottom: 68px;
  }

  .full-audit-input {
    min-height: 58px;
    padding: 0 18px;
  }

  .audit-prompts-entry {
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(243, 239, 232, 0.74);
    align-self: flex-start;
  }

  .audit-support-overlay {
    padding: 12px;
    align-items: flex-end;
  }

  .audit-support-sheet {
    width: min(100%, 560px);
    height: min(82vh, 680px);
    grid-template-rows: auto auto minmax(0, 1fr);
    gap: 16px;
    padding: 18px 18px 16px;
    border-radius: 22px;
  }

  .audit-support-head {
    gap: 12px;
    padding-top: 8px;
  }

  .audit-support-title {
    font-size: 1rem;
  }

  .audit-support-tabs {
    gap: 8px;
  }

  .audit-support-tab {
    font-size: 0.86rem;
  }

  .voice-copy-under-input {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.45;
    color: rgba(243, 239, 232, 0.52);
  }

  .audit-assist-bar {
    display: none;
  }

  .full-audit-footer {
    position: sticky;
    bottom: 0;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: 14px;
    padding: 14px 0 max(10px, env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(14, 14, 17, 0), rgba(14, 14, 17, 0.92) 18%, rgba(14, 14, 17, 0.98) 100%);
    border-top: 0;
  }

  .full-audit-footer-section-entry,
  .full-audit-card-intro .full-audit-footer,
  .full-audit-card-disclaimer .full-audit-footer,
  .full-audit-card-question .full-audit-footer,
  .full-audit-card-reflection .full-audit-footer,
  .full-audit-card-interlude .full-audit-footer,
  .full-audit-card-milestone .full-audit-footer {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 12;
    width: auto;
    margin-top: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: rgba(11, 11, 12, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  }

  .full-audit-card-question .full-audit-footer .button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .footer-links {
    justify-content: center;
    width: 100%;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 22px;
  }

  .faq-item summary {
    align-items: center;
    padding: 20px;
    gap: 14px;
  }

  .faq-item summary span:first-child {
    font-size: 1rem;
    line-height: 1.45;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }

  .full-audit-card-question {
    min-height: calc(100dvh - 92px);
    padding: 28px 20px calc(132px + env(safe-area-inset-bottom));
    gap: 22px;
  }

  .full-audit-card-intro,
  .full-audit-card-disclaimer,
  .full-audit-card-results,
  .full-audit-card-milestone,
  .full-audit-card-reflection,
  .full-audit-card-interlude {
    padding: 28px 20px;
  }

  .full-audit-card-results .full-audit-footer,
  .full-audit-card-result-transition .full-audit-footer {
    position: static;
    padding-bottom: 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .full-audit-footer .button:only-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(220px, 100%);
  }

  .full-audit-card-intro,
  .full-audit-card-disclaimer,
  .full-audit-card-question,
  .full-audit-card-reflection,
  .full-audit-card-interlude,
  .full-audit-card-milestone {
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }

  .full-audit-card-results .results-section-hero .full-audit-title {
    max-width: 10ch;
    margin-inline: auto;
  }

  .full-audit-card-results .result-focus-answer,
  .full-audit-card-results .result-focus-translation {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .identity-shift-shell {
    gap: 14px;
  }

  .identity-shift-panel,
  .identity-shift-preview,
  .identity-shift-reality {
    padding: 18px;
    border-radius: 20px;
  }

  .identity-shift-preview h3 {
    font-size: 1.34rem;
  }

  .identity-shift-copy,
  .identity-shift-preview-group p,
  .identity-reality-card-body p {
    font-size: 0.96rem;
  }


  .full-audit-card-question.is-focus-mode {
    min-height: auto;
    padding: 28px 24px;
    gap: 22px;
  }

  .full-audit-card-break {
    min-height: auto;
    padding: 28px 24px;
    gap: 22px;
  }

  .audit-break-orbit {
    width: 180px;
    height: 180px;
  }

  .audit-break-ring-outer {
    width: 180px;
    height: 180px;
  }

  .audit-break-ring-middle {
    width: 136px;
    height: 136px;
  }

  .audit-break-ring-inner {
    width: 92px;
    height: 92px;
  }

  .audit-break-steps {
    grid-template-columns: 1fr;
  }

  .audit-interlude-grid {
    grid-template-columns: 1fr;
  }

  .audit-interlude-mission {
    width: 100%;
  }

  .depth-prompt-actions {
    justify-content: stretch;
  }

  .depth-prompt-actions .button {
    width: 100%;
  }

  .skip-prompt-actions {
    justify-content: stretch;
  }

  .skip-prompt-actions .button {
    width: 100%;
  }

  .container {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .section {
    padding: 82px 0;
  }

  .mini-audit-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .mini-audit-footer {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
  }

  .mini-audit-footer .button {
    flex: 1 1 0;
    width: auto;
  }

  .mini-audit-progresscopy {
    text-align: left;
  }

  .auditor-card,
  .question-card,
  .pricing-card,
  .feature-card,
  .step-card,
  .faq-item {
    padding: 24px;
  }

  .price-row {
    gap: 10px;
    align-items: flex-start;
  }

  .pricing-card .button,
  .portal-session-card .button,
  .portal-collapsible-body .button {
    width: 100%;
  }

  .portal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .support-actions {
    align-items: stretch;
  }

  .portal-collapsible summary {
    padding: 13px 14px;
  }

  .portal-collapsible-body {
    padding: 0 14px 14px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 48px;
  }

  .hero-tags {
    display: none;
  }

  .hero-entry-card {
    padding: 20px;
  }

  .hero-preview-window h2 {
    font-size: 1.45rem;
    line-height: 1.06;
    min-height: calc(1.06em * 3);
  }

  .hero-preview-window {
    grid-template-rows: auto auto minmax(84px, 84px);
    min-height: 204px;
  }

  .hero-preview-line {
    font-size: 0.88rem;
    line-height: 1.52;
    min-height: calc(1.52em * 3);
  }

  .hero-preview-linewrap {
    min-height: 84px;
    padding: 12px 12px 10px;
  }

  .legal-shell {
    width: min(100% - 18px, 1180px);
    padding-bottom: 32px;
  }

  .portal-theme-toggle {
    width: 100%;
    justify-content: stretch;
  }

  .portal-theme-button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.95rem;
  }

  .portal-header-actions {
    gap: 10px;
  }

  .hero-actions,
  .hero-actions-card {
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions-card .button {
    width: 100%;
  }

  .results-container {
    padding: 0 12px;
  }

  .results-progress-anchors {
    gap: 6px;
  }

  .results-progress-anchors a {
    padding: 7px 10px;
    font-size: 0.68rem;
    letter-spacing: 0.06em;
  }

  .results-section {
    margin-top: 42px;
  }

  .pricing-grid,
  .feature-grid,
  .system-grid,
  .locked-preview-grid,
  .landing-lower-grid {
    gap: 16px;
  }

  .pricing-card,
  .feature-card,
  .step-card,
  .faq-item,
  .auditor-card,
  .question-card,
  .portal-session-card,
  .portal-unlock-state {
    border-radius: 22px;
  }

  .pricing-card,
  .feature-card,
  .step-card,
  .faq-item,
  .auditor-card,
  .question-card {
    padding: 20px;
  }

  .flow-panel,
  .faq-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .landing-panel-toggle summary,
  .landing-panel-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .portal-session-card {
    padding: 16px;
  }

  .portal-progress-detail,
  .portal-progress-meta,
  .portal-form-footnote,
  .portal-collapsible-body p {
    font-size: 0.94rem;
  }

  .portal-menu-block + .portal-menu-block {
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  body,
  html {
    background: #fff !important;
    color: #111 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .results-progress-anchors,
  .results-tab-shell,
  .results-export-actions,
  .full-audit-footer {
    display: none !important;
  }

  .results-tab-panel[hidden] {
    display: block !important;
  }

  .full-audit-card-results {
    background: #fff !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .results-container {
    max-width: none !important;
    padding: 0 6mm !important;
  }

  .results-section {
    margin-top: 14px !important;
  }

  .result-line,
  .result-direction-item,
  .results-targeted-item,
  .result-list li,
  .results-identity-shift-card,
  .results-snapshot-card,
  .results-insight-row,
  .results-proof-note,
  .results-pattern-step,
  .results-weekly-day,
  .results-debrief-card,
  .results-executive-read__main,
  .results-executive-read__side article,
  .results-pattern-diagnosis__lead,
  .results-pattern-diagnosis__grid article,
  .results-protocol-card,
  .results-action-board article,
  .results-report-summary article,
  .results-full-scan-item,
  .results-tradeoff-card,
  .results-consequence-card,
  .results-next-chapter-card,
  .results-goal-bridge__grid article {
    page-break-inside: avoid;
    break-inside: avoid-column;
    break-inside: avoid;
  }

  .results-print-cover {
    display: grid !important;
    gap: 18px;
    min-height: 84vh;
    align-content: center;
    padding: 0 4mm;
    page-break-after: always;
    break-after: page;
  }

  .results-print-cover h1 {
    max-width: 14ch;
    margin: 0;
    color: #111 !important;
    font-size: 44px;
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .results-print-cover p {
    max-width: 620px;
    margin: 0;
    color: #333 !important;
    font-size: 16px;
    line-height: 1.6;
  }

  .results-print-cover__grid {
    display: grid;
    gap: 10px;
    margin-top: 10mm;
  }

  .results-print-cover__grid article {
    display: grid;
    gap: 4px;
    padding: 12px 0;
    border-top: 1px solid #d8d0c7;
  }

  .results-print-cover__grid span,
  .results-print-cover .section-kicker {
    color: #777 !important;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .results-print-cover__grid strong {
    color: #111 !important;
    font-size: 14px;
    line-height: 1.45;
  }

  .results-section-tab-prompt,
  .results-section-export {
    display: none !important;
  }

  .results-section-head {
    justify-items: start !important;
    text-align: left !important;
    padding-bottom: 6px;
    border-bottom: 1px solid #ddd6ce;
  }

  .results-section-head h2,
  .results-section-head h3,
  .results-hero-title,
  .results-identity-shift-card strong,
  .results-protocol-card strong,
  .results-action-board strong,
  .results-real-world-card strong,
  .results-debrief-card__head strong,
  .results-report-summary strong,
  .results-answer-line strong {
    color: #111 !important;
  }

  .results-section,
  .results-tab-panel > .results-section:first-child {
    margin-top: 20px !important;
  }

  .results-section-content,
  .results-tab-panels {
    gap: 10px !important;
  }

  .results-executive-read,
  .results-pattern-diagnosis__grid,
  .results-protocol-grid,
  .results-action-board,
  .results-real-world-grid,
  .results-report-summary,
  .results-life-snapshot-strip,
  .results-next-chapter-grid,
  .results-goal-bridge__grid,
  .results-consequence-grid,
  .results-proof-grid {
    grid-template-columns: 1fr !important;
  }

  .results-executive-read__main,
  .results-executive-read__side article,
  .results-pattern-diagnosis__lead,
  .results-pattern-diagnosis__grid article,
  .results-protocol-card,
  .results-action-board article,
  .results-real-world-card,
  .results-report-summary article,
  .results-debrief-card,
  .results-full-scan-item,
  .results-life-snapshot-item,
  .results-next-chapter-card,
  .results-goal-bridge__grid article,
  .results-consequence-card,
  .results-weekly-day,
  .results-proof-card,
  .results-answer-line {
    box-shadow: none !important;
    border-color: #ddd6ce !important;
    background: #fff !important;
    color: #111 !important;
  }

  .results-executive-read__main p,
  .results-executive-read__side p,
  .results-pattern-diagnosis__lead p,
  .results-pattern-diagnosis__grid p,
  .results-protocol-card p,
  .results-action-board p,
  .results-real-world-card p,
  .results-debrief-body p,
  .results-full-scan-item p,
  .results-full-scan-item i,
  .results-section-intro,
  .results-cost-list p,
  .result-reflection-hint,
  .result-line,
  .results-checklist__item p,
  .results-weekly-day__why,
  .results-consequence-list p,
  .results-pattern-step p {
    color: #333 !important;
  }

  .section-kicker,
  .results-debrief-card__head span,
  .results-debrief-card__head > em,
  .results-debrief-evidence > span,
  .results-executive-read__main > span,
  .results-executive-read__side span,
  .results-pattern-diagnosis__lead span,
  .results-pattern-diagnosis__grid span,
  .results-protocol-card span,
  .results-action-board span,
  .results-real-world-card span,
  .results-report-summary span,
  .results-full-scan-item__head span {
    color: #777 !important;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    align-items: start;
  }

  .hero-copy {
    padding-top: 4px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  }

  .hero-preview-window {
    border-radius: 22px;
  }

  .results-progress-anchors {
    position: sticky;
    top: 0;
    z-index: 12;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 7px;
    width: 100%;
    margin-inline: 0;
    padding: 6px 0 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, rgba(20, 18, 18, 0.9) 0%, rgba(20, 18, 18, 0.72) 72%, rgba(20, 18, 18, 0) 100%);
  }

  .results-progress-anchors::-webkit-scrollbar {
    display: none;
  }

  .results-progress-anchors span {
    display: none;
  }

  .results-progress-anchors a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 0 10px;
    box-shadow: inset 0 0 0 1px rgba(232, 223, 212, 0.08);
    background: rgba(255, 255, 255, 0.018);
    scroll-snap-align: start;
  }

  .results-tab-shell {
    margin-inline: -2px;
    padding-top: 8px;
  }

  .results-tab-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    border-radius: 20px;
  }

  .results-tab-button {
    min-width: 0;
    padding: 10px 11px;
  }

  .results-tab-button span {
    display: none;
  }

  .results-section-content {
    gap: 13px;
  }

  .results-tab-prompt .button {
    width: 100%;
    justify-content: center;
  }

  .results-hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .results-identity-contrast,
  .results-executive-read,
  .results-pattern-diagnosis__grid,
  .results-protocol-grid,
  .results-action-board,
  .results-real-world-grid,
  .results-report-summary,
  .results-pattern-loop,
  .results-mental-tabs-map,
  .results-reality-snapshot,
  .results-weekly-plan-grid,
  .results-proof-grid,
  .results-timeline-strip,
  .results-analysis-grid,
  .results-financial-grid,
  .results-strengths-grid,
  .results-constraints-grid {
    grid-template-columns: 1fr;
  }

  .results-pattern-loop__item i {
    display: none;
  }

  .results-timeline-strip__item i {
    display: none;
  }

  .results-subblock {
    padding: 16px 15px;
    border-radius: 18px;
  }

  .results-list .result-line {
    line-height: 1.62;
  }

  .result-focus {
    padding: 17px 15px;
    border-radius: 20px;
  }

  .results-analysis-card,
  .results-financial-card,
  .results-strength-card,
  .results-constraint-card,
  .results-proof-card,
  .results-weekly-plan__card,
  .results-weekly-day,
  .results-executive-read__main,
  .results-executive-read__side article,
  .results-pattern-diagnosis__lead,
  .results-pattern-diagnosis__grid article,
  .results-protocol-card,
  .results-action-board article,
  .results-real-world-card,
  .results-report-summary article,
  .results-timeline-strip__item {
    border-color: rgba(232, 223, 212, 0.08);
    background: rgba(255, 255, 255, 0.022);
    box-shadow: none;
  }

  .results-analysis-card strong,
  .results-financial-card strong,
  .results-strength-card strong,
  .results-constraint-card strong,
  .results-proof-card strong,
  .results-weekly-plan__card strong,
  .results-weekly-day__head strong,
  .results-timeline-strip__item strong {
    line-height: 1.62;
  }
}

@media (max-width: 860px) {
  .results-life-snapshot-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-life-snapshot-item {
    min-height: 0;
    padding: 16px 14px;
    border-top: 1px solid rgba(232, 223, 212, 0.08);
  }

  .results-life-snapshot-item:nth-child(odd) {
    border-left: 0;
  }

  .results-life-snapshot-item:nth-child(-n + 2) {
    border-top: 0;
  }

  .results-life-snapshot-item strong {
    font-size: 0.98rem;
    line-height: 1.25;
  }

  .results-life-snapshot-item p {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

@media (max-width: 560px) {
  .results-life-snapshot-strip,
  .results-next-chapter-grid,
  .results-goal-bridge__grid {
    grid-template-columns: 1fr;
  }

  .results-life-snapshot-item {
    border-left: 0;
    border-top: 1px solid rgba(232, 223, 212, 0.08);
  }

  .results-life-snapshot-item:first-child {
    border-top: 0;
  }

  .results-leak-row,
  .results-do-first-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .results-tradeoff {
    grid-template-columns: 1fr;
  }

  .results-next-chapter-card,
  .results-goal-bridge__grid article,
  .results-constraint-stack,
  .do-this-first,
  .results-debrief-card,
  .results-executive-read__main,
  .results-executive-read__side article,
  .results-pattern-diagnosis__lead,
  .results-pattern-diagnosis__grid article,
  .results-protocol-card,
  .results-action-board article,
  .results-real-world-card,
  .results-report-summary article,
  .results-tradeoff-card,
  .results-consequence-card {
    padding: 18px 16px;
  }

  .results-life-snapshot-item,
  .results-action-row {
    padding-left: 0;
    padding-right: 0;
  }

  .results-section-hero-reveal {
    padding-top: 18px;
  }

  .results-hero-title {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  .results-identity-shift-grid,
  .results-snapshot-grid,
  .results-section-important .results-analysis-grid {
    grid-template-columns: 1fr;
  }

  .results-pattern-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }

  .results-pattern-step::before {
    left: 19px;
  }

  .results-pattern-step span {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }

  .results-action-stack-refined .results-action-stack__item,
  .results-identity-shift-card,
  .results-snapshot-card,
  .results-full-scan-item {
    padding: 18px 16px;
  }

  .results-timeline-strip-refined {
    grid-template-columns: 1fr;
  }

  .results-full-scan-item__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .results-debrief-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .results-debrief-evidence em {
    width: 100%;
    border-radius: 18px;
  }

  .results-progress-anchors {
    top: 0;
    gap: 6px;
    padding-top: 6px;
  }

  .results-progress-anchors a {
    padding: 0 9px;
    font-size: 0.64rem;
    letter-spacing: 0.045em;
  }

  .results-section-head {
    gap: 5px;
  }

  .results-section-head h3 {
    line-height: 1.18;
  }

  .results-diagnosis-meter,
  .results-identity-card,
  .results-pattern-loop__item,
  .results-action-stack__item,
  .results-mental-tabs-map__group,
  .results-reality-snapshot__card,
  .results-weekly-plan__card,
  .results-weekly-day,
  .results-proof-card,
  .results-timeline-strip__item,
  .results-analysis-card,
  .results-financial-card,
  .results-strength-card,
  .results-constraint-card {
    padding: 14px 13px;
  }

  .results-analysis-grid,
  .results-financial-grid,
  .results-strengths-grid,
  .results-constraints-grid {
    gap: 10px;
  }

  .results-section-content {
    gap: 9px;
  }

  .results-section {
    margin-top: 34px;
  }

  .result-line,
  .result-tile {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .results-analysis-card,
  .results-financial-card,
  .results-strength-card,
  .results-constraint-card {
    gap: 9px;
    border-radius: 17px;
  }

  .results-proof-card,
  .results-weekly-plan__card,
  .results-weekly-day,
  .results-timeline-strip__item {
    gap: 9px;
    border-radius: 17px;
  }

  .results-weekly-day {
    padding: 18px 16px;
  }

  .results-weekly-day__why {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .results-subblock strong {
    font-size: 0.93rem;
  }
}
