/* ===== DIVINE CHARACTER — CLEAN ELEGANT ===== */
:root {
  --navy-950: #080e1a;
  --navy-900: #0f1a2e;
  --navy-800: #152238;
  --navy-700: #1b3050;
  --navy-600: #234068;
  --gold-500: #c8a45c;
  --gold-600: #a77c2f;
  --gold-400: #d4af6d;
  --gold-300: #e0c180;
  --gold-200: #ecd9a8;
  --gold-100: #f5e6c8;
  --gold-50: #faf5e8;
  --white: #ffffff;
  --page: #f7f5f0;
  --surface: #ffffff;
  --border: #e2ddd4;
  --border-light: #ede9e2;
  --text: #1a1a1a;
  --text-secondary: #5c5548;
  --text-muted: #8a8374;
  --red: #ef4444;
  --green: #22c55e;
  --amber: #facc15;
  --yellow: #facc15;
  --purple: #8b5cf6;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 2px 8px rgba(0,0,0,.06);
  --shadow-gold: 0 2px 12px rgba(200,164,92,.12);
  --motion-fast: 120ms;
  --motion-base: 180ms;
  --motion-slow: 260ms;
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);
  --ease-out-quint: cubic-bezier(.22, 1, .36, 1);
  --focus-ring: 0 0 0 3px rgba(200,164,92,.34);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --max-w: 1140px;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: var(--font);
  background: var(--page);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-size: 1rem;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; font-size: 1rem; }

:where(button, a[href], summary, [role="button"], input[type="checkbox"], input[type="radio"]) {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
:where(button, a[href], summary, [role="button"]):focus-visible {
  outline: 3px solid rgba(200,164,92,.5);
  outline-offset: 3px;
}
:where(button, a[href], summary, [role="button"]).is-pressing {
  transform: scale(.975) !important;
  filter: brightness(.96);
}
:where(button, a[href], summary, [role="button"]).is-click-confirmed {
  animation: interaction-confirm var(--motion-slow) var(--ease-out-quart);
}
button:disabled, [aria-disabled="true"], [aria-busy="true"] {
  cursor: not-allowed;
  opacity: .58;
}

@keyframes interaction-confirm {
  0% { box-shadow: 0 0 0 0 rgba(200,164,92,.3); }
  100% { box-shadow: 0 0 0 7px rgba(200,164,92,0); }
}

#app.view-enter > * {
  animation: view-enter var(--motion-slow) var(--ease-out-quint) both;
}
@keyframes view-enter {
  from { opacity: .94; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SHELL ===== */
.shell {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); padding: 0 28px;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(200,164,92,.12);
  backdrop-filter: blur(12px);
}
.shell-right { display: flex; align-items: center; gap: 28px; }
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold-400); font-weight: 700; letter-spacing: .02em;
  font-size: 1.1rem;
}
.brand-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); padding: 1px; overflow: hidden;
  box-shadow: 0 8px 22px rgba(11,18,32,.22);
}
.brand-icon img { width: 100%; height: 100%; object-fit: contain; }
.brand-text strong {
  display: inline-flex; align-items: baseline; gap: 1px;
  font-size: 1.18rem; color: var(--gold-400); line-height: 1;
  white-space: nowrap;
}
.brand-text .brand-name { letter-spacing: .12em; }
.brand-text .brand-domain { font-size: .82em; letter-spacing: .06em; color: var(--gold-300); opacity: .92; }
.brand-beta {
  display: none;
  margin-left: 7px;
  padding: 3px 6px 2px;
  border: 1px solid rgba(232,198,111,.58);
  border-radius: 4px;
  color: #f7deb0;
  font-size: .42em;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .08em;
  transform: translateY(-1px);
}
.landing-route .brand-text .brand-beta { display: inline-flex; }
.brand-text small { display: block; font-size: .58rem; color: var(--gold-300); opacity: .75; letter-spacing: .05em; margin-top: 4px; }

.top-nav { display: flex; align-items: center; gap: 4px; }
.top-nav a, .top-nav button {
  padding: 8px 18px; border-radius: var(--radius-sm);
  color: #c4beb2; font-size: .9rem;
  transition: color var(--motion-base) ease, background-color var(--motion-base) ease, transform var(--motion-fast) ease;
  background: none; border: none; cursor: pointer; font-weight: 500;
}
.top-nav a:hover, .top-nav button:hover { color: var(--gold-400); background: rgba(200,164,92,.06); }
.top-nav .ghost-btn-sm { padding: 6px 14px; color: #9c9488; font-size: .85rem; }
.top-nav .ghost-btn-sm:hover { color: #ffffff; }

.lang-switch { display: flex; align-items: center; gap: 0; }
.lang-switch button {
  background: none; border: none; color: #8a8274; font-size: .75rem;
  min-width: 44px; min-height: 44px; padding: 4px 10px; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; letter-spacing: .05em;
  transition: color var(--motion-base) ease, background-color var(--motion-base) ease, transform var(--motion-fast) ease;
}
.lang-switch button:hover { color: var(--gold-400); }
.lang-switch button.active { color: var(--gold-500); }
.lang-divider { color: #6b6458; font-size: .75rem; margin: 0 2px; }

.hamburger {
  display: none; background: none; border: none;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
  font-size: 30px; color: var(--gold-400); cursor: pointer; line-height: 1; padding: 4px 8px;
  transition: color var(--motion-base) ease, transform var(--motion-fast) ease, background-color var(--motion-base) ease;
}
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy-900); border-bottom: 1px solid rgba(200,164,92,.1);
  padding: 16px 24px; flex-direction: column; gap: 4px; z-index: 99;
}
.mobile-nav.open { display: flex; }
.mobile-nav a, .mobile-nav button {
  display: block; padding: 14px 18px; color: #c4beb2; font-size: .95rem;
  border: none; background: none; text-align: left; border-radius: var(--radius-sm); cursor: pointer;
  transition: color var(--motion-base) ease, background-color var(--motion-base) ease, transform var(--motion-fast) ease;
}
.mobile-nav a:hover, .mobile-nav button:hover { color: var(--gold-400); background: rgba(200,164,92,.05); }

.shell-footer {
  text-align: center; padding: 36px 24px;
  background: var(--navy-950); color: #8a8274; font-size: .75rem;
  letter-spacing: .04em; border-top: 1px solid rgba(200,164,92,.08);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border: none; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: transform var(--motion-fast) var(--ease-out-quart), box-shadow var(--motion-base) ease, background-color var(--motion-base) ease, border-color var(--motion-base) ease, color var(--motion-base) ease, filter var(--motion-fast) ease;
  letter-spacing: .02em; line-height: 1.3;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), #d4af6d);
  color: var(--navy-950); box-shadow: 0 2px 8px rgba(200,164,92,.2);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 4px 18px rgba(200,164,92,.3); }
.btn-navy { background: var(--navy-800); color: var(--gold-400); font-size: .9rem; }
.btn-navy:hover { background: var(--navy-700); }
.btn-outline {
  background: transparent; border: 1.5px solid var(--gold-500); color: var(--gold-400);
}
.btn-outline:hover { background: rgba(200,164,92,.08); }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-danger { background: var(--red); color: #fff; }
.btn-danger:hover { opacity: .9; }

.ghost-btn {
  background: none; border: none; color: var(--text-muted);
  font-size: .9rem; cursor: pointer; text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--motion-base) ease, transform var(--motion-fast) ease, background-color var(--motion-base) ease;
  font-weight: 500;
}
.ghost-btn:hover { color: var(--gold-500); }

/* ===== CONTAINER ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; width: 100%; }
.container-narrow { max-width: 840px; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(90deg, rgba(8,14,26,.96) 0%, rgba(8,14,26,.9) 46%, rgba(8,14,26,.48) 100%),
    url("./assets/landing-hero-devotional.png") center right / cover no-repeat;
  padding: 96px 0 112px;
  position: relative; overflow: hidden;
  border-bottom: 2px solid var(--gold-500);
}
.hero::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200,164,92,.05) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(200,164,92,.04) 0%, transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  color: var(--gold-400); font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 24px; font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700;
  color: var(--white); line-height: 1.12; margin-bottom: 24px;
  letter-spacing: -.02em; max-width: 820px;
}
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero-subtitle {
  color: #b0a898; font-size: 1.1rem; line-height: 1.7; max-width: 680px;
  margin-bottom: 36px;
}
.hero .btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-mkhu {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px;
}
.point-value-note {
  color: var(--navy-700) !important;
  font-weight: 700;
  margin-bottom: 4px !important;
}
.cta-band .section-head h2 { color: #fff; }
.cta-band .section-head p { color: #d7dfec; }
#app > .section {
  background: #060b14;
  color: #eaf0f8;
}
#app > .section.band-alt { background: #0b1422; }
#app > .section .section-head h2 { color: #f8fafc; }
#app > .section .section-head p { color: #b7c4d5; }
#app > .section .section-head .eyebrow { color: #f3d487; }
#app > .section .fw-card,
#app > .section .feature-item {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.13);
  box-shadow: none;
}
#app > .section .fw-card h3,
#app > .section .feature-item h3,
#app > .section .process-step h3 { color: #f8fafc; }
#app > .section .fw-card p,
#app > .section .feature-item p,
#app > .section .process-step p { color: #b7c4d5; }
#app > .section .fw-card strong { color: #f3d487; }
#app > .section .fw-num { color: #f3d487; }
#app > .section .process-num {
  background: rgba(255,255,255,.06);
  color: #f8fafc;
  border-color: rgba(243,212,135,.62);
}
#app > .section .audience-tag {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.14);
  color: #d7e2f0;
}
#app > .section .audience-tag:hover {
  background: rgba(243,212,135,.10);
  border-color: rgba(243,212,135,.55);
  color: #fff4d4;
}
#app > .section .scripture-quote {
  background: rgba(255,255,255,.045);
  border-color: rgba(243,212,135,.42);
}
#app > .section .scripture-quote blockquote { color: #f8fafc; }
#app > .section .scripture-quote cite { color: #f3d487; }
.mkhu-badge {
  background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-align: center; transition: all .3s;
}
.mkhu-badge:hover { background: rgba(255,255,255,.05); transform: translateY(-3px); }
.mkhu-symbol {
  width: 44px; height: 44px; border-radius: 14px; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 14px;
  color: var(--navy-950); font-size: 1.35rem; font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 10px 26px rgba(0,0,0,.16);
}
.mkhu-badge h3 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.mkhu-badge p { color: #908878; font-size: .8rem; line-height: 1.55; }

/* ===== SECTION TITLES ===== */
.section-head { text-align: center; margin-bottom: 64px; }
.section-head .eyebrow {
  color: var(--gold-500); font-size: .7rem; letter-spacing: .15em;
  text-transform: uppercase; font-weight: 700; margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700;
  color: var(--navy-900); line-height: 1.2; margin-bottom: 14px;
}
.section-head p { color: var(--text-secondary); font-size: 1.05rem; max-width: 620px; margin: 0 auto; line-height: 1.65; }

/* ===== FRAMEWORK CARDS ===== */
.framework-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.fw-card {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 22px;
  transition: all .3s; position: relative; overflow: hidden;
}
.fw-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.fw-card:nth-child(1)::before { background: var(--red); }
.fw-card:nth-child(2)::before { background: var(--green); }
.fw-card:nth-child(3)::before { background: var(--purple); }
.fw-card:nth-child(4)::before { background: var(--yellow); }
.fw-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.fw-num { font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: var(--gold-500); margin-bottom: 10px; }
.fw-image {
  width: 100%; aspect-ratio: 16 / 10; object-fit: contain;
  background: #fbfaf6; padding: 10px;
  border-radius: var(--radius); margin-bottom: 18px;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
}
.fw-symbol {
  width: 38px; height: 38px; border-radius: 12px; display: inline-flex;
  align-items: center; justify-content: center; margin-bottom: 14px;
  color: var(--navy-950); font-size: 1.2rem; font-weight: 900;
}
.fw-card h3 { font-size: 1.05rem; color: var(--navy-900); margin-bottom: 10px; font-weight: 650; line-height: 1.28; }
.fw-card p { color: var(--text-secondary); font-size: .9rem; line-height: 1.65; margin-bottom: 14px; }
.fw-card strong { display: block; color: var(--navy-700); font-size: .85rem; font-style: italic; }

/* ===== FEATURE GRID ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-item {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 32px 28px;
}
.feature-item h3 { font-size: 1.05rem; color: var(--navy-900); margin-bottom: 8px; font-weight: 600; }
.feature-item p { color: var(--text-secondary); font-size: .88rem; line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 28px 18px; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-50); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; margin: 0 auto 18px;
  border: 1.5px solid var(--gold-200);
}
.process-step h3 { font-size: 1rem; color: var(--navy-900); margin-bottom: 8px; font-weight: 600; }
.process-step p { font-size: .82rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== AUDIENCE ===== */
.audience-wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.audience-tag {
  padding: 12px 24px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--navy-700); font-size: .88rem; transition: all .2s; font-weight: 500;
}
.audience-tag:hover { border-color: var(--gold-400); color: var(--gold-500); background: var(--gold-50); }

/* ===== SCRIPTURE QUOTE ===== */
.scripture-quote {
  background: var(--surface); border: 1px solid var(--gold-300);
  padding: 32px 36px; border-radius: 8px; margin: 36px 0;
  box-shadow: var(--shadow-sm);
}
.scripture-quote blockquote { font-size: 1.3rem; color: var(--navy-900); line-height: 1.55; margin-bottom: 10px; font-weight: 500; }
.scripture-quote cite { font-size: .85rem; font-weight: 600; color: var(--gold-500); font-style: normal; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy-800); padding: 88px 0; text-align: center;
}
.cta-band .eyebrow { color: var(--gold-400); }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: #b0a898; max-width: 560px; margin: 0 auto 32px; font-size: 1rem; line-height: 1.65; }

.band-alt { background: var(--surface); }

/* ===== AUTH SCREENS ===== */
.auth-screen { display: flex; align-items: flex-start; justify-content: center; padding: 72px 28px; min-height: 60vh; }
.auth-card {
  width: 100%; max-width: 480px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 44px 40px; box-shadow: var(--shadow);
}
.auth-card h1 { font-size: 1.8rem; color: var(--navy-900); margin-bottom: 10px; font-weight: 700; }
.auth-card .subtitle { color: var(--text-secondary); font-size: .9rem; margin-bottom: 32px; line-height: 1.55; }
.form-alert {
  background: #fff7ed; color: #9a3412; border: 1px solid #fed7aa;
  border-radius: var(--radius); padding: 12px 14px; margin: -14px 0 18px;
  font-size: .86rem; line-height: 1.45;
}
.auth-switch {
  margin-top: 18px; text-align: center; color: var(--text-secondary);
  font-size: .9rem;
}
.auth-switch a {
  display: inline-block;
  min-height: 40px;
  padding: 7px 2px;
  color: var(--gold-500);
  font-weight: 700;
  text-decoration: none;
}
.auth-switch a:hover { text-decoration: underline; }
.form-grp { margin-bottom: 20px; }
.form-grp label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy-700); margin-bottom: 7px; }
.form-grp input, .form-grp select, .form-grp textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); background: var(--surface); color: var(--text);
  font-size: .95rem;
  transition: border-color var(--motion-base) ease, box-shadow var(--motion-base) ease, background-color var(--motion-base) ease;
}
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(200,164,92,.08);
}
.form-grp.has-error input,
.form-grp.has-error select,
.form-grp.has-error textarea,
.form-grp input[aria-invalid="true"],
.form-grp select[aria-invalid="true"] {
  border-color: #b42318;
  background: #fff8f7;
  box-shadow: 0 0 0 3px rgba(180,35,24,.1);
}
.field-error {
  display: block;
  margin-top: 7px;
  color: #9f1f17;
  font-size: .82rem;
  font-weight: 650;
  line-height: 1.4;
}
.field-error:empty { display: none; }
.form-alert {
  margin: 0 0 18px;
  padding: 13px 15px;
  border: 1px solid #efb3ad;
  border-radius: var(--radius);
  background: #fff3f1;
  color: #842018;
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.5;
}
.form-alert[hidden] { display: none; }
.required-note {
  margin: -4px 0 14px;
  color: var(--text-secondary);
  font-size: .82rem;
}
.form-grp textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.profile-screen { padding-top: 48px; }
.profile-card-form { max-width: 1040px; }
.profile-step {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-50); color: var(--gold-600);
  border: 1px solid var(--gold-100); border-radius: 999px;
  padding: 7px 12px; font-size: .78rem; font-weight: 800;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em;
}
.profile-context {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; margin-bottom: 24px; color: var(--text-secondary);
  font-size: .9rem;
}
.profile-context strong { color: var(--navy-800); }
.profile-form-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}
.profile-form-grid .wide { grid-column: 1 / -1; }
.profile-optional {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  margin: 2px 0 22px;
  overflow: hidden;
}
.profile-optional summary {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 18px;
  padding: 16px 18px;
  color: var(--navy-800);
  cursor: pointer;
  list-style: none;
  font-weight: 750;
  transition: background-color var(--motion-base) ease, color var(--motion-base) ease, transform var(--motion-fast) ease;
}
.profile-optional summary::-webkit-details-marker { display: none; }
.profile-optional summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform var(--motion-base) var(--ease-out-quart), border-color var(--motion-base) ease, background-color var(--motion-base) ease;
}
.profile-optional[open] summary::after { content: "−"; transform: rotate(180deg); }
.profile-optional summary small {
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 500;
}
.profile-optional[open] summary { border-bottom: 1px solid var(--border); }
.profile-optional > .profile-form-grid { padding: 20px 18px 0; }
.req { color: var(--red); font-weight: 900; }
.optional {
  color: var(--text-muted); font-size: .75rem; font-weight: 600;
  margin-left: 4px;
}
.consent-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--gold-50); border: 1px solid var(--gold-100);
  border-radius: var(--radius); padding: 16px; color: var(--navy-800);
  font-size: .9rem; line-height: 1.55; margin: 8px 0 22px;
}
.consent-box input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; }
.consent-box.has-error { border-color: #b42318; background: #fff8f7; }
.consent-error { margin: -14px 0 20px; }
.profile-actions { margin-top: 18px; }
.profile-mini {
  display: grid;
  gap: 7px;
  min-width: 150px;
}
.profile-mini small {
  color: var(--muted);
  line-height: 1.45;
}
.profile-detail { min-width: min(720px, 86vw); }
.profile-detail-status {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 0 18px; border-bottom: 1px solid var(--border-light); margin-bottom: 18px;
}
.profile-detail-status span:last-child { color: var(--text-muted); font-size: .9rem; }
.profile-detail-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px;
}
.profile-detail-item {
  background: #fbfaf6; border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 14px 16px; min-width: 0;
}
.profile-detail-item span {
  display: block; color: var(--text-muted); font-size: .72rem;
  font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px;
}
.profile-detail-item strong {
  display: block; color: var(--navy-900); font-size: .95rem; line-height: 1.45;
  word-break: break-word; white-space: pre-wrap;
}

/* ===== TEST ===== */
.test-wrap { max-width: 800px; margin: 0 auto; padding: 56px 28px; }
.test-head { margin-bottom: 36px; }
.test-head h1 { font-size: 1.8rem; color: var(--navy-900); margin-bottom: 6px; font-weight: 700; }
.test-head .q-counter { color: var(--text-muted); font-size: .9rem; font-weight: 500; }
.progress-bar {
  height: 4px; background: var(--border); border-radius: 2px;
  margin-bottom: 40px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold-400), var(--gold-500));
  border-radius: 2px;
  transition: width var(--motion-slow) var(--ease-out-quint);
}
.question-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm);
}
.question-card .instruction { color: var(--text-secondary); font-size: 1rem; margin-bottom: 32px; line-height: 1.55; }
.choice-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 20px; border: 1.5px solid var(--border-light);
  border-radius: var(--radius); margin-bottom: 14px;
  transition: transform var(--motion-fast) var(--ease-out-quart), border-color var(--motion-base) ease, background-color var(--motion-base) ease, box-shadow var(--motion-base) ease;
  background: var(--surface);
  width: 100%; text-align: left; cursor: pointer; font: inherit; color: inherit;
}
.choice-item:hover { border-color: var(--gold-300); background: var(--gold-50); }
.choice-item:focus-visible { outline: 3px solid rgba(201,154,61,.28); outline-offset: 2px; }
.choice-item.choice-most {
  border-color: rgba(21,128,61,.42); background: #f0fdf4;
  animation: choice-confirm var(--motion-slow) var(--ease-out-quart);
}
.choice-item.choice-least { border-color: rgba(185,28,28,.34); background: #fff5f5; }
.choice-letter {
  width: 44px; height: 44px; border-radius: 50%;
  background: #f8f6f1; color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.choice-text { flex: 1; font-size: .95rem; color: var(--text); line-height: 1.55; }
.choice-actions { display: flex; gap: 8px; flex-shrink: 0; }
.pick-btn {
  width: 44px; height: 44px; padding: 0; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); background: var(--surface); color: var(--text-muted);
  font-size: 1.05rem; cursor: pointer;
  transition: transform var(--motion-fast) var(--ease-out-quart), background-color var(--motion-base) ease, border-color var(--motion-base) ease, color var(--motion-base) ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.pick-btn:hover { border-color: var(--gold-400); color: var(--gold-500); }
.pick-btn.active-most { background: var(--green); border-color: var(--green); color: #fff; }
.pick-btn.active-least { background: var(--red); border-color: var(--red); color: #fff; }
.icon-pick:focus-visible {
  outline: none; box-shadow: 0 0 0 4px rgba(200,164,92,.18);
}

@keyframes choice-confirm {
  0% { transform: scale(.985); box-shadow: 0 0 0 0 rgba(34,197,94,.24); }
  100% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.question-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }

/* MKHU Legend */
.mkhu-legend { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.mkhu-legend-item { display: flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--text-muted); }
.mkhu-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ===== PAYMENT ===== */
.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.price-card, .voucher-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.price-card h3, .voucher-card h3 { font-size: 1.2rem; color: var(--navy-900); margin-bottom: 10px; font-weight: 600; }
.price-card p { color: var(--text-secondary); font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
.price-amount { font-size: 2.5rem; font-weight: 700; color: var(--navy-900); }
.access-card { max-width: 980px; }
.access-card .subtitle { max-width: 760px; }
.access-form-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px; margin: 28px 0 10px;
}
.access-card .form-grp.wide { grid-column: 1 / -1; }
.access-choice-note {
  background: var(--gold-50); border: 1px solid var(--gold-100);
  border-radius: var(--radius); padding: 16px 18px; color: var(--navy-800);
  font-size: .9rem; line-height: 1.6; margin: 8px 0 24px;
}
.access-card .pay-grid { align-items: stretch; }
.access-card .price-card,
.access-card .voucher-card { display: flex; flex-direction: column; gap: 16px; }
.price-meta {
  display: flex; gap: 10px; flex-wrap: wrap; margin: 6px 0 4px;
}
.price-meta span {
  display: inline-flex; align-items: center; border-radius: 999px;
  background: var(--gold-50); color: var(--navy-700); border: 1px solid var(--gold-100);
  padding: 7px 12px; font-size: .78rem; font-weight: 700;
}
.voucher-inline { display: flex; gap: 10px; align-items: stretch; }
.voucher-inline input {
  flex: 1; min-width: 0; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); background: var(--surface);
}
.voucher-inline input:focus {
  outline: none; border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(200,164,92,.08);
}
.secure-note { color: var(--text-muted); font-size: .8rem; line-height: 1.55; margin-top: auto; }

/* ===== REPORT ===== */
.report { max-width: 840px; margin: 0 auto; padding: 56px 28px 96px; font-size: 1rem; }

.report-cover {
  text-align: center; padding: 80px 32px 64px; margin-bottom: 56px;
  position: relative; background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.report-cover::before, .report-cover::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
}
.report-cover::before { top: 32px; width: 120px; }
.report-cover::after { bottom: 32px; width: 120px; }
.report-brand {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  margin-bottom: 22px; color: var(--navy-900); font-weight: 800; letter-spacing: .12em;
}
.report-brand img { width: 38px; height: 38px; object-fit: contain; display: block; }
.report-brand > span {
  display: inline-flex; align-items: baseline; gap: 1px;
  white-space: nowrap;
}
.report-brand .brand-name { letter-spacing: .12em; }
.report-brand .brand-domain { font-size: .82em; letter-spacing: .06em; opacity: .88; }
.report-brand .brand-beta {
  margin-left: 6px;
  border-color: rgba(155,116,26,.46);
  color: #76540d;
  font-size: .46em;
}
.report-cover .type-symbol { font-size: 3rem; display: block; margin-bottom: 16px; }
.type-emblem {
  width: 86px; height: 86px; display: inline-block; position: relative;
  margin: 0 auto 18px; border-radius: 26px;
  background: linear-gradient(135deg, var(--emblem-a), var(--emblem-b));
  box-shadow: 0 18px 44px rgba(11,18,32,.16);
}
.type-emblem i,
.type-emblem b,
.type-emblem em { position: absolute; display: block; content: ""; }
.type-emblem i {
  inset: 10px; border-radius: 22px; background: linear-gradient(135deg, var(--emblem-b), var(--emblem-a));
  transform: rotate(45deg);
}
.type-emblem b {
  width: 38px; height: 38px; left: 24px; top: 24px; border-radius: 10px;
  background: var(--surface); transform: rotate(45deg);
}
.type-emblem em {
  width: 18px; height: 18px; left: 34px; top: 34px; border-radius: 50%;
  border: 2px solid rgba(11,18,32,.22);
}
.report-cover .rc-label {
  font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-500); font-weight: 700; margin-bottom: 18px;
}
.report-cover h1 {
  font-size: clamp(2rem, 4vw, 2.7rem); color: var(--navy-900);
  font-weight: 700; line-height: 1.15; margin-bottom: 14px;
}
.report-cover .rc-subtitle {
  font-size: 1rem; color: var(--text-secondary); line-height: 1.72;
  max-width: 520px; margin: 0 auto 20px;
}
.report-cover-visual {
  max-width: 330px; margin: -8px auto 28px;
}
.report-cover-image,
.report-hero-image,
.generated-card-image,
.generated-mini-image,
.generated-tall-image {
  display: block; object-fit: cover; border: 1px solid rgba(200,164,92,.26);
  box-shadow: 0 18px 44px rgba(11,18,32,.10);
}
.report-cover-image {
  width: 100%; aspect-ratio: 3 / 4; border-radius: 28px;
  object-fit: contain; background: #fff;
}
.rc-participant {
  background: var(--gold-50); border: 1px solid var(--gold-200);
  border-radius: var(--radius-lg); padding: 24px 36px; display: inline-block;
}
.rc-participant strong { display: block; font-size: 1.08rem; color: var(--navy-900); font-weight: 600; }
.rc-participant span { font-size: .9rem; color: var(--text-secondary); }
.color-code-list {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
  margin: 0 auto 34px;
}
.color-code-chip {
  min-width: 92px; min-height: 48px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 8px 14px; background: var(--chip-color); color: var(--chip-text);
  box-shadow: 0 10px 22px rgba(11,18,32,.12), inset 0 0 0 1px rgba(255,255,255,.30);
  border: 1px solid rgba(11,18,32,.10);
}
.color-code-chip.is-yellow {
  border-color: #eab308;
  box-shadow: 0 10px 22px rgba(250,204,21,.18), inset 0 0 0 1px rgba(255,255,255,.42);
}
.color-code-chip b {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.18); color: inherit;
  font-size: .92rem; font-weight: 900; line-height: 1;
}
.color-code-chip.is-yellow b { background: rgba(255,255,255,.55); }
.color-code-chip small {
  display: inline-block; color: inherit; font-size: .76rem;
  font-weight: 800; letter-spacing: .02em;
}

.report-chapter { margin-bottom: 64px; padding-top: 48px; border-top: 1px solid var(--border-light); }
.report-chapter:first-of-type { border-top: none; padding-top: 0; }
.chapter-heading { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 14px; }
.chapter-heading .chapter-title { margin-bottom: 8px; }
.chapter-title { font-size: 1.55rem; color: var(--navy-900); font-weight: 700; line-height: 1.26; margin-bottom: 12px; }
.chapter-intro { font-size: 1rem; color: var(--text-secondary); line-height: 1.78; margin-bottom: 34px; }
.report-symbol {
  width: 42px; height: 42px; flex: 0 0 42px; border: 1.5px solid var(--gold-400);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  position: relative; margin-top: 2px; background: #fffaf0; overflow: hidden;
}
.report-symbol i, .report-symbol b { display: block; position: absolute; }
.report-symbol.formation i {
  width: 18px; height: 18px; border: 2px solid var(--gold-500); border-radius: 50%;
}
.report-symbol.formation b {
  width: 2px; height: 30px; background: var(--gold-500);
  box-shadow: 0 0 0 0 var(--gold-500);
}
.report-symbol.fruit i {
  width: 18px; height: 22px; background: var(--gold-400); border-radius: 55% 45% 50% 50%;
  transform: rotate(-8deg); left: 11px; top: 14px;
}
.report-symbol.fruit b {
  width: 14px; height: 8px; background: var(--green); border-radius: 50%;
  left: 22px; top: 9px; transform: rotate(15deg);
}
.report-symbol.gift i {
  width: 20px; height: 18px; border: 2px solid var(--gold-500); border-radius: 4px;
}
.report-symbol.gift b {
  width: 2px; height: 22px; background: var(--gold-500);
  box-shadow: 9px 9px 0 -8px var(--gold-500), -9px 9px 0 -8px var(--gold-500);
}
.report-symbol.calling i {
  width: 22px; height: 22px; border: 2px solid var(--gold-500); border-radius: 50%;
}
.report-symbol.calling b {
  width: 30px; height: 2px; background: var(--gold-500);
}
.report-symbol.calling::after {
  content: ""; position: absolute; width: 2px; height: 30px; background: var(--gold-500);
}
.report-symbol.belief i {
  width: 21px;
  height: 21px;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
}
.report-symbol.belief b {
  width: 4px;
  height: 4px;
  left: 18px;
  top: 18px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: -10px 8px 0 var(--gold-500), 10px 8px 0 var(--gold-500);
}
.report-symbol.belief::after {
  content: "";
  position: absolute;
  width: 29px;
  height: 18px;
  border: 2px solid var(--gold-500);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  opacity: .55;
  top: 14px;
}
.scripture-card {
  background: var(--gold-50); border: 1px solid var(--gold-200); border-radius: var(--radius-lg);
  padding: 30px 34px; margin: 12px 0 30px; position: relative;
}
.scripture-card::before {
  content: "\""; position: absolute; left: 18px; top: 8px; color: var(--gold-400);
  font-size: 3rem; font-weight: 700; line-height: 1;
}
.scripture-card p { font-size: 1rem; line-height: 1.82; color: var(--navy-800); margin-left: 20px; }
.scripture-card span { display: block; margin: 12px 0 0 20px; color: var(--gold-500); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.narrative { margin-bottom: 32px; }
.narrative p { font-size: 1rem; color: var(--text); line-height: 1.86; margin-bottom: 20px; }
.report-visual-panel {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: center;
  padding: 18px; border: 1px solid var(--gold-200); border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #fffaf0 0%, #fff 62%, #f8f4ea 100%);
  box-shadow: var(--shadow-sm); margin: 22px 0 32px;
}
.report-hero-image {
  width: 100%; aspect-ratio: 900 / 460; border-radius: 24px; box-shadow: none;
}
.report-visual-panel h3 {
  color: var(--navy-900); font-size: 1.1rem; margin-bottom: 10px; font-weight: 800;
}
.report-visual-panel p {
  color: var(--text-secondary); line-height: 1.75; font-size: .95rem;
}

.insight-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 30px 0;
}
.insight-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm);
}
.insight-card.warm { background: #fffaf0; border-color: var(--gold-200); }
.insight-card h3 {
  font-size: 1.06rem; color: var(--navy-900); margin-bottom: 12px; font-weight: 700;
}
.insight-card p { font-size: .96rem; color: var(--text-secondary); line-height: 1.78; margin-bottom: 12px; }
.insight-card p:last-child { margin-bottom: 0; }
.type-atlas {
  margin: 28px 0 8px;
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-lg);
  background: #05070b;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.type-atlas img {
  display: block;
  width: 100%;
  height: auto;
}

.highlight-box {
  background: var(--gold-50); border: 1px solid var(--gold-300);
  padding: 24px 28px; border-radius: 8px;
  margin-bottom: 28px;
}
.highlight-box h4 { font-size: .8rem; letter-spacing: .1em; color: var(--gold-500); text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.highlight-box p { font-size: 1rem; color: var(--navy-800); line-height: 1.78; }

.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 28px; }
.profile-card {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 24px; transition: all .2s;
}
.profile-card.top { border-color: var(--gold-400); box-shadow: var(--shadow-gold); }
.profile-card .rank-badge {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; margin-bottom: 14px;
}
.rank-badge.gold { background: var(--gold-100); color: var(--gold-500); }
.rank-badge.green { background: #d1fae5; color: #065f46; }
.profile-card h3 { font-size: 1.08rem; color: var(--navy-900); margin-bottom: 8px; font-weight: 600; }
.profile-card .level { font-size: .82rem; color: var(--text-muted); margin-bottom: 10px; }
.profile-card p { font-size: .96rem; color: var(--text-secondary); line-height: 1.72; }
.profile-card.gift-card p { margin-bottom: 10px; }
.profile-card .verse { font-size: .86rem; color: var(--text-muted); margin-top: 10px; font-style: italic; }
.generated-card-image {
  width: 100%; aspect-ratio: 360 / 260; border-radius: 18px;
  margin-bottom: 16px; box-shadow: 0 12px 30px rgba(11,18,32,.10);
}
.generated-mini-image {
  width: 58px; height: 58px; border-radius: 18px;
  box-shadow: 0 8px 18px rgba(11,18,32,.08);
}
.generated-tall-image {
  width: 112px; max-width: 100%; aspect-ratio: 360 / 260; border-radius: 22px;
  box-shadow: 0 12px 30px rgba(11,18,32,.10);
}
.fruit-visual {
  width: 54px; height: 54px; display: inline-block; position: relative; margin-bottom: 12px;
}
.fruit-visual i, .fruit-visual b, .fruit-visual em { position: absolute; display: block; content: ""; }
.fruit-visual i {
  width: 26px; height: 28px; left: 7px; top: 18px; border-radius: 50%;
  background: #f59e0b;
}
.fruit-visual b {
  width: 26px; height: 28px; left: 23px; top: 17px; border-radius: 50%;
  background: #c2410c;
}
.fruit-visual em {
  width: 21px; height: 11px; left: 24px; top: 10px; border-radius: 50%;
  background: var(--green); transform: rotate(12deg);
}
.fruit-visual::before {
  content: ""; position: absolute; width: 2px; height: 19px; left: 25px; top: 8px;
  background: var(--navy-800); transform: rotate(12deg);
}
.fruit-visual.fv-1 i { background: #a78bfa; }
.fruit-visual.fv-1 b { background: #7c3aed; }
.fruit-visual.fv-2 i { background: #fb7185; }
.fruit-visual.fv-2 b { background: #be123c; }
.fruit-visual.fv-3 i { background: #86efac; }
.fruit-visual.fv-3 b { background: #15803d; }
.fruit-profile { position: relative; overflow: hidden; }
.gift-card .report-symbol { margin-bottom: 12px; }
.fruit-map-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px; margin: 28px 0 32px;
}
.fruit-map-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); min-height: 150px; padding: 22px 20px;
  display: grid; grid-template-columns: 58px 1fr; grid-template-rows: auto auto;
  column-gap: 14px; align-items: center; box-shadow: var(--shadow-sm);
}
.fruit-map-card.active { background: var(--gold-50); border-color: var(--gold-200); }
.fruit-map-card .fruit-visual { grid-row: 1 / 3; margin-bottom: 0; }
.fruit-map-card .generated-mini-image { grid-row: 1 / 3; }
.fruit-map-card strong { color: var(--navy-900); font-size: .95rem; }
.fruit-map-card span { color: var(--text-muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.fruit-map-card.active span { color: #2f6b49; }
.formation-fruit-layout {
  display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: start;
}
.formation-fruit-layout .fruit-visual {
  width: 76px; height: 76px; margin-top: 10px;
}
.formation-fruit-layout .fruit-visual i,
.formation-fruit-layout .fruit-visual b { width: 36px; height: 39px; }
.formation-fruit-layout .fruit-visual b { left: 31px; }
.formation-fruit-layout .fruit-visual em { left: 34px; top: 8px; }
.big-color-block {
  display: block; width: 100%; height: 72px; border-radius: var(--radius);
  margin: 8px 0 18px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}

.profile-list { margin-top: 32px; }
.profile-row {
  display: flex; align-items: center; gap: 16px; padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}
.profile-row:last-child { border-bottom: none; }
.profile-row .pr-name { width: 200px; font-size: .9rem; color: var(--text); flex-shrink: 0; font-weight: 500; }
.profile-row .pr-bar-wrap { flex: 1; height: 10px; background: var(--border-light); border-radius: 5px; overflow: hidden; }
.profile-row .pr-bar-fill { height: 100%; border-radius: 5px; }
.profile-row .pr-score { width: 42px; text-align: right; font-size: .85rem; font-weight: 700; color: var(--text-secondary); }

.growth-section {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px; margin-top: 36px; box-shadow: var(--shadow-sm);
}
.growth-section h3 { font-size: 1.12rem; color: var(--navy-900); margin-bottom: 14px; font-weight: 600; }
.growth-section p { font-size: 1rem; color: var(--text-secondary); line-height: 1.78; }

.integrated { font-size: 1rem; color: var(--text); line-height: 1.86; border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; margin-bottom: 28px; }
.integrated p { margin-bottom: 16px; }
.integrated p:last-child { margin-bottom: 0; }
.reflection-box {
  background: #fbfaf6; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 36px; margin-top: 36px;
}
.reflection-box h3 { font-size: 1.08rem; color: var(--navy-900); margin-bottom: 14px; font-weight: 700; }
.reflection-box ul { padding-left: 20px; color: var(--text-secondary); line-height: 1.82; font-size: 1rem; }
.reflection-box li { margin-bottom: 8px; }
.ministry-box {
  background: var(--navy-800); color: #fff; border-radius: var(--radius-lg);
  padding: 32px 36px; margin-top: 28px;
}
.ministry-box h3 { font-size: 1.08rem; color: var(--gold-400); margin-bottom: 10px; font-weight: 600; }
.ministry-box p { font-size: 1rem; color: #c4beb2; line-height: 1.78; }

.report-appendix {
  margin-top: 56px; padding-top: 36px; border-top: 2px dashed var(--border);
}
.report-appendix h3 { font-size: 1.15rem; color: var(--navy-700); margin-bottom: 24px; font-weight: 600; }
.report-appendix .pct-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.report-appendix .pct-label { font-size: .82rem; color: var(--text-muted); width: 110px; flex-shrink: 0; }
.report-appendix .pct-bar {
  flex: 1; min-width: 80px; display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.report-appendix .pct-bar-outer {
  width: 100%; height: 70px; background: var(--border-light); border-radius: var(--radius-sm);
  display: flex; align-items: flex-end; overflow: hidden;
}
.report-appendix .pct-bar-inner { width: 100%; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.report-appendix .pct-bar-label { font-size: .75rem; font-weight: 700; }
.report-appendix .pct-bar-value { font-size: .7rem; color: var(--text-muted); }

/* ===== DASHBOARD ===== */
.dash-layout { display: flex; min-height: calc(100vh - var(--nav-h)); }
.dash-sidebar {
  width: 260px; background: var(--surface); border-right: 1px solid var(--border-light);
  padding: 36px 24px; flex-shrink: 0;
}
.dash-sidebar h2 { font-size: 1.1rem; color: var(--navy-900); margin-bottom: 6px; font-weight: 700; }
.dash-sidebar .subtitle { font-size: .8rem; color: var(--text-muted); margin-bottom: 28px; }
.dash-menu { display: flex; flex-direction: column; gap: 2px; }
.dash-menu a, .dash-menu button {
  background: none; border: none; text-align: left; padding: 12px 16px;
  border-radius: var(--radius); color: var(--text-secondary); font-size: .9rem;
  cursor: pointer; transition: all .18s; font-weight: 500; width: 100%;
  text-decoration: none; display: block; font-family: inherit;
}
.dash-menu a:hover, .dash-menu button:hover { background: var(--border-light); }
.dash-menu a.active, .dash-menu button.active { background: var(--gold-50); color: var(--gold-500); font-weight: 700; }

.dash-main { flex: 1; padding: 40px; overflow-x: auto; min-width: 0; }
.dash-head { margin-bottom: 36px; }
.dash-head h1 { font-size: 1.8rem; color: var(--navy-900); margin-bottom: 6px; font-weight: 700; }
.dash-head p { font-size: .95rem; color: var(--text-muted); }
.voucher-project-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.voucher-project-title .eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-600);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px; }
.metric-card {
  background: var(--surface); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  transition: all .2s;
}
.metric-card:hover { border-color: var(--gold-300); box-shadow: var(--shadow-gold); }
.metric-card .metric-val { font-size: 2.5rem; font-weight: 700; color: var(--navy-900); }
.metric-card .metric-lbl { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

.table-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: auto; box-shadow: var(--shadow-sm);
}
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead { border-bottom: 1.5px solid var(--border); }
th { text-align: left; padding: 16px 20px; font-size: .72rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
td { padding: 16px 20px; color: var(--text); border-bottom: 1px solid var(--border-light); }
.table-wrap td small { overflow-wrap: anywhere; word-break: break-word; }
.invite-table th,
.invite-table td { padding: 14px 14px; vertical-align: middle; }
.invite-table td:nth-child(2) { max-width: 170px; font-size: .84rem; }
.invite-table td:nth-child(3) { min-width: 150px; }
.invite-table td:nth-child(4) { min-width: 145px; }
.stacked-status { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.bulk-send-results {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
  margin: 16px 0 4px;
}
.bulk-send-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  background: #fff;
}
.bulk-send-row span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.bulk-send-row strong {
  color: var(--navy-900);
  line-height: 1.25;
}
.bulk-send-row small {
  color: var(--text-muted);
  overflow-wrap: anywhere;
}
.bulk-send-row b {
  flex-shrink: 0;
  color: var(--gold-600);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.table-wrap th:last-child,
.table-wrap td:last-child {
  position: sticky;
  right: 0;
  z-index: 1;
  background: var(--surface);
  box-shadow: -10px 0 18px rgba(250, 248, 244, .9);
  white-space: nowrap;
}
.table-wrap th:last-child { z-index: 2; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #faf8f4; }
tr:hover td:last-child { background: #faf8f4; }
tr.clickable { cursor: pointer; }
tr.clickable:hover td { background: var(--gold-50); }
td strong { color: var(--navy-900); }
td small { color: var(--text-muted); font-size: .78rem; }

.badge {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  font-size: .73rem; font-weight: 700; letter-spacing: .05em; white-space: nowrap;
}
.badge.good { background: #d1fae5; color: #065f46; }
.badge.warn { background: #fef3c7; color: #92400e; }
.badge.bad { background: #fee2e2; color: #991b1b; }
.badge.info { background: #e0e7ff; color: #3730a3; }

.dash-panel {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.dash-panel h3 { font-size: 1.15rem; color: var(--navy-900); margin-bottom: 20px; font-weight: 600; }
.dash-panel-head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.dash-panel-head h3 { margin-bottom: 4px; }
.dash-panel-head p { color: var(--text-muted); font-size: .9rem; line-height: 1.55; }
.dash-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.mini-stats {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
}
.mini-stats span {
  background: var(--gold-50); border: 1px solid var(--gold-100);
  color: var(--navy-800); border-radius: 999px; padding: 8px 12px;
  font-size: .82rem; font-weight: 700;
}
.credit-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #fff; border-radius: var(--radius-lg); padding: 32px; margin-bottom: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.credit-card .credit-value { font-size: 3rem; line-height: 1; font-weight: 800; color: var(--gold-400); }
.credit-card p { color: #c4beb2; font-size: .95rem; }
.empty-state {
  border: 1px dashed var(--border); border-radius: var(--radius-lg);
  padding: 28px; color: var(--text-muted); background: #fbfaf6;
}
.notice-card {
  display: grid; gap: 6px; margin-bottom: 24px; padding: 18px 20px;
  border: 1px solid #c7d2fe; border-left: 4px solid #4f46e5;
  border-radius: var(--radius); background: #eef2ff; color: #312e81;
}
.notice-card p { margin: 0; color: #4338ca; line-height: 1.55; }

.project-symbol { font-size: 1.4rem; margin-right: 6px; }

.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: .85rem; margin-bottom: 24px; font-weight: 500; }
.back-link:hover { color: var(--gold-500); }

/* ===== MODAL ===== */
.modal-root:empty { display: none; }
.app-modal {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(11, 18, 32, .56); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: modal-backdrop-in var(--motion-base) ease-out both;
}
.app-modal-panel {
  width: min(520px, 100%); max-height: calc(100vh - 48px); overflow: auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: 0 24px 70px rgba(0,0,0,.28);
  animation: modal-panel-in 220ms var(--ease-out-quint) both;
}
.app-modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; border-bottom: 1px solid var(--border-light);
}
.app-modal-head h3 { color: var(--navy-900); font-size: 1.15rem; font-weight: 700; }
.modal-close {
  width: 36px; height: 36px; border: 1px solid var(--border);
  border-radius: 50%; background: var(--surface); color: var(--text-muted);
  cursor: pointer; font-size: 1.3rem; line-height: 1;
  transition: color var(--motion-base) ease, border-color var(--motion-base) ease, background-color var(--motion-base) ease, transform var(--motion-fast) ease;
}
.modal-close:hover { color: var(--navy-900); border-color: var(--gold-300); }
.app-modal-body { padding: 24px; }
.modal-note {
  color: var(--text-secondary); line-height: 1.6; font-size: .92rem; margin-bottom: 18px;
}
.modal-actions {
  display: flex; justify-content: flex-end; align-items: center; gap: 12px;
  margin-top: 22px; flex-wrap: wrap;
}
.collaborator-table { margin-bottom: 24px; }
.collaborator-form {
  padding-top: 20px; border-top: 1px solid var(--border-light);
}
.collaborator-form h4 { margin: 0 0 16px; color: var(--navy-900); }
.credential-box {
  display: grid; gap: 6px; margin: 18px 0; padding: 18px;
  border: 1px solid var(--gold-200); border-radius: var(--radius);
  background: var(--gold-50);
}
.credential-box span, .credential-box small { color: var(--text-muted); }
.credential-box strong {
  overflow-wrap: anywhere; color: var(--navy-900); font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.05rem;
}

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%) translateY(140px);
  background: var(--navy-900); color: #fff; padding: 16px 32px;
  border-radius: var(--radius); font-size: .9rem; z-index: 9999;
  visibility: hidden; opacity: 0;
  transition: transform var(--motion-slow) var(--ease-out-quint), opacity var(--motion-base) ease, visibility 0s linear var(--motion-slow);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  max-width: 90vw; text-align: center;
}

@keyframes modal-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modal-panel-in {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.toast.show {
  visibility: visible; opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .shell { padding: 0 18px; }
  .shell-right .top-nav { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-nav {
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--motion-base) ease, transform var(--motion-base) var(--ease-out-quart), visibility 0s linear var(--motion-base);
  }
  .mobile-nav.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .framework-grid { grid-template-columns: repeat(2, 1fr); }
  .hero {
    padding: 64px 0 72px;
    background:
      linear-gradient(180deg, rgba(8,14,26,.94) 0%, rgba(8,14,26,.88) 58%, rgba(8,14,26,.58) 100%),
      url("./assets/landing-hero-devotional.png") center / cover no-repeat;
  }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-mkhu { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 64px 0; }
  .section-head h2 { font-size: 1.8rem; }
  .pay-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .fruit-map-grid { grid-template-columns: 1fr; }
  .formation-fruit-layout { grid-template-columns: 1fr; }
  .report-visual-panel { grid-template-columns: 1fr; padding: 14px; }
  .report-cover-visual { max-width: 100%; }
  .generated-tall-image { width: 100%; max-width: 320px; }
  .chapter-heading { gap: 12px; }
  .report-symbol { width: 42px; height: 42px; flex-basis: 42px; }
  .insight-grid { grid-template-columns: 1fr; }
  .test-wrap { padding: 40px 18px; }
  .choice-item { flex-wrap: wrap; }
  .choice-actions { width: 100%; justify-content: flex-end; margin-top: 10px; }
  .dash-layout { flex-direction: column; }
  .dash-sidebar { width: 100%; padding: 24px 18px; border-right: none; border-bottom: 1px solid var(--border); }
  .dash-menu { flex-direction: row; flex-wrap: wrap; gap: 4px; }
  .dash-menu a, .dash-menu button { width: auto; padding: 10px 14px; font-size: .85rem; }
  .dash-main { padding: 28px 18px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .credit-card { align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .profile-form-grid { grid-template-columns: 1fr; }
  .profile-card-form { padding: 32px 22px; }
  .profile-context { display: block; }
  .profile-context strong { display: block; margin-bottom: 4px; }
  .profile-detail { min-width: 0; }
  .profile-detail-grid { grid-template-columns: 1fr; }
  .modal-actions { justify-content: stretch; }
  .modal-actions .btn, .modal-actions .ghost-btn { width: 100%; }
  .access-form-grid { grid-template-columns: 1fr; }
  .report-cover { padding: 56px 20px 48px; }
  .report-cover h1 { font-size: 1.9rem; }
  .report-cover-image, .report-hero-image { border-radius: 18px; }
  .profile-row .pr-name { width: 140px; }
  .question-card { padding: 28px 20px; }
}

@media (max-width: 480px) {
  html { font-size: 16px; }
  .hero h1 { font-size: 1.7rem; }
  .brand-text small { display: none; }
  .brand-text strong { font-size: .95rem; letter-spacing: .08em; }
  .brand-icon { width: 34px; height: 34px; }
  .voucher-inline { flex-direction: column; }
  .voucher-inline .btn { width: 100%; }
  .framework-grid { grid-template-columns: 1fr; }
  .hero .btn-row { flex-direction: column; }
  .hero .btn-row .btn { width: 100%; }
  .report { padding: 36px 16px 72px; }
  .report-cover { padding: 46px 18px 42px; }
  .chapter-title { font-size: 1.35rem; }
  .report-cover h1 { font-size: 1.6rem; }
  .chapter-heading { align-items: flex-start; }
  .price-amount { font-size: 2rem; }
  .profile-row .pr-name { width: 100%; }
  .profile-row { flex-wrap: wrap; }
  .dash-panel { padding: 24px 18px; }
  .auth-card { padding: 32px 24px; }
}

/* ===== DYVN IMPECCABLE REDESIGN PASS ===== */
:root {
  --navy-950: #06101f;
  --navy-900: #0b1728;
  --navy-800: #13243b;
  --navy-700: #1f3656;
  --navy-600: #2e527d;
  --gold-500: #c99a3d;
  --gold-600: #9f7020;
  --gold-400: #e0b862;
  --gold-300: #f0cf80;
  --gold-200: #f5dfaa;
  --gold-100: #fbedcb;
  --gold-50: #fff8e8;
  --page: #f3f6f8;
  --surface: #ffffff;
  --border: #dce3ea;
  --border-light: #e8edf2;
  --text: #172033;
  --text-secondary: #435166;
  --text-muted: #6f7c8f;
  --red: #e6534f;
  --green: #2dbf73;
  --amber: #efb83f;
  --yellow: #efb83f;
  --purple: #7c66d9;
  --radius-sm: 7px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(13, 24, 39, .06);
  --shadow: 0 4px 8px rgba(13, 24, 39, .08);
  --shadow-gold: 0 4px 8px rgba(201, 154, 61, .14);
}

body {
  background:
    linear-gradient(180deg, #f8fafc 0%, var(--page) 42%, #eef3f6 100%);
  color: var(--text);
}

h1, h2, h3 { text-wrap: balance; letter-spacing: 0; }
p, li { text-wrap: pretty; }

.shell {
  background: rgba(6, 16, 31, .96);
  border-bottom-color: rgba(224,184,98,.18);
  box-shadow: 0 1px 0 rgba(255,255,255,.04);
}
.brand-icon { border-radius: 10px; box-shadow: 0 4px 8px rgba(201,154,61,.18); }
.top-nav a, .top-nav button { color: #d8deea; }
.top-nav a:hover, .top-nav button:hover { color: var(--gold-300); background: rgba(224,184,98,.09); }

.btn {
  border-radius: 10px;
  min-height: 42px;
  box-shadow: none;
}
.btn:focus-visible,
.ghost-btn:focus-visible,
.dash-menu a:focus-visible,
.dash-menu button:focus-visible,
.pick-btn:focus-visible,
.modal-close:focus-visible {
  outline: 3px solid rgba(201,154,61,.28);
  outline-offset: 2px;
}
.btn-gold {
  background: #d2a24b;
  color: #08111e;
  box-shadow: none;
}
.btn-gold:hover { background: #e0b862; transform: translateY(-1px); box-shadow: 0 4px 8px rgba(201,154,61,.18); }
.btn-navy { background: var(--navy-800); color: #fff4d6; }
.btn-navy:hover { background: var(--navy-700); }
.btn-outline {
  border: 1px solid rgba(201,154,61,.64);
  color: #f4d792;
  background: rgba(255,255,255,.02);
}
.btn-outline:hover { background: rgba(224,184,98,.10); }

.hero {
  min-height: calc(100vh - var(--nav-h));
  padding: 86px 0 76px;
  background:
    linear-gradient(90deg, rgba(6,16,31,.98) 0%, rgba(6,16,31,.92) 48%, rgba(6,16,31,.56) 100%),
    url("./assets/landing-hero-devotional.png") center right / cover no-repeat;
  border-bottom: 0;
  isolation: isolate;
}
.hero::before {
  background:
    linear-gradient(180deg, transparent 0%, rgba(6,16,31,.82) 100%),
    radial-gradient(ellipse at 18% 20%, rgba(201,154,61,.18) 0%, transparent 38%),
    radial-gradient(ellipse at 90% 86%, rgba(124,102,217,.22) 0%, transparent 34%);
}
.hero-eyebrow {
  width: fit-content;
  color: #ffe2a1;
  letter-spacing: .09em;
  text-transform: none;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  padding: 7px 12px;
  margin-bottom: 20px;
}
.hero h1 {
  max-width: 780px;
  font-size: clamp(2.5rem, 6vw, 4.65rem);
  line-height: 1.05;
  letter-spacing: -.025em;
}
.hero-subtitle { color: #d7dfec; max-width: 690px; }
.hero-mascot-stage {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: rgba(3, 8, 15, .58);
}
.hero-mascot-stage img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.hero-mascot-stage strong {
  display: block;
  color: #fff6da;
  font-size: .98rem;
  margin-bottom: 5px;
}
.hero-mascot-stage span {
  display: block;
  color: #c6d0df;
  font-size: .84rem;
  line-height: 1.55;
}
.hero-mkhu {
  max-width: 880px;
  gap: 14px;
  margin-top: 36px;
}
.mkhu-badge {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 22px 18px;
}
.mkhu-badge:hover { box-shadow: none; }
.mkhu-badge p { color: #b9c4d4; }

@media (min-width: 1100px) {
  .hero .container {
    min-height: calc(100vh - var(--nav-h) - 150px);
  }
  .hero h1,
  .hero-subtitle {
    max-width: 600px;
  }
  .hero-mascot-stage {
    position: absolute;
    right: 28px;
    top: 118px;
    bottom: auto;
    width: min(36vw, 470px);
    grid-template-columns: 1fr;
    margin-top: 0;
    padding: 10px;
  }
  .hero-mascot-stage img {
    aspect-ratio: 3 / 2;
    object-fit: contain;
    background: #020509;
  }
  .hero-mascot-stage div {
    padding: 2px 4px 4px;
  }
  .hero-mkhu {
    max-width: 620px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
  }
}

.mascot-section {
  background: #08111e;
  color: #eaf0f8;
  padding: 72px 0;
}
.mascot-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(320px, 1.2fr);
  gap: 42px;
  align-items: center;
}
.mascot-copy span {
  display: inline-flex;
  color: #ffe0a1;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.mascot-copy h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 18px;
  color: #fff;
}
.mascot-copy p {
  max-width: 64ch;
  color: #cbd6e4;
  font-size: 1rem;
  line-height: 1.78;
}
.mascot-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #020509;
}
.mascot-frame img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
}
.companion-motion {
  position: relative;
  min-height: 396px;
}
.companion-slides {
  position: relative;
  min-height: 326px;
}
.companion-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(180px, .95fr) minmax(200px, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    radial-gradient(circle at 88% 12%, rgba(224,184,98,.18), transparent 30%),
    #0b1728;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateY(14px) scale(.985);
  animation: companionCycle 64s cubic-bezier(.22,.8,.24,1) infinite;
  animation-delay: calc(var(--i) * 4s);
}
.companion-tone-1 {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    radial-gradient(circle at 90% 12%, rgba(34,197,94,.20), transparent 30%),
    #0b1728;
}
.companion-tone-2 {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    radial-gradient(circle at 90% 12%, rgba(139,92,246,.20), transparent 30%),
    #0b1728;
}
.companion-tone-3 {
  background:
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
    radial-gradient(circle at 90% 12%, rgba(248,113,113,.20), transparent 30%),
    #0b1728;
}
.companion-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
}
.companion-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.companion-meta span {
  display: inline-flex;
  color: #f3d487;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.companion-meta h3 {
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.14;
  margin-bottom: 10px;
}
.companion-meta p {
  color: #cbd6e4;
  font-size: .95rem;
  line-height: 1.62;
}
.companion-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.companion-rail span {
  color: #d7e2f0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .78rem;
  line-height: 1;
}
@keyframes companionCycle {
  0%, 5.8% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  7%, 100% {
    opacity: 0;
    transform: translateY(-10px) scale(.985);
    filter: blur(1.5px);
  }
}
.module-visual-panel {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  margin: 18px 0 28px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.90)),
    radial-gradient(circle at 0 0, color-mix(in srgb, var(--module-accent) 16%, transparent), transparent 42%);
  box-shadow: none;
}
.module-visual-formation { --module-accent: #ef4444; }
.module-visual-fruit { --module-accent: #f5b638; }
.module-visual-gift { --module-accent: #22c55e; }
.module-visual-stewardship { --module-accent: #8b5cf6; }
.module-visual-panel img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.module-symbol-wrap {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: color-mix(in srgb, var(--module-accent) 14%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--module-accent) 28%, var(--border-light));
}
.module-symbol {
  width: 46px;
  height: 46px;
  position: relative;
  display: inline-block;
  color: var(--module-accent);
}
.module-symbol i,
.module-symbol b,
.module-symbol em,
.module-symbol strong {
  position: absolute;
  display: block;
  content: "";
}
.module-symbol-formation i {
  width: 38px;
  height: 3px;
  left: 4px;
  top: 23px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-34deg);
}
.module-symbol-formation b,
.module-symbol-formation em,
.module-symbol-formation strong {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid currentColor;
}
.module-symbol-formation b { left: 2px; top: 28px; }
.module-symbol-formation em { left: 17px; top: 18px; }
.module-symbol-formation strong { right: 2px; top: 6px; }
.module-symbol-fruit i {
  width: 36px;
  height: 18px;
  left: 5px;
  bottom: 7px;
  border: 4px solid currentColor;
  border-top: 0;
  border-radius: 0 0 999px 999px;
}
.module-symbol-fruit b,
.module-symbol-fruit em,
.module-symbol-fruit strong {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: currentColor;
}
.module-symbol-fruit b { left: 8px; top: 12px; }
.module-symbol-fruit em { left: 22px; top: 9px; background: #ef4444; }
.module-symbol-fruit strong {
  width: 12px;
  height: 8px;
  left: 27px;
  top: 3px;
  border-radius: 50%;
  background: #22c55e;
  transform: rotate(18deg);
}
.module-symbol-gift i {
  width: 30px;
  height: 28px;
  left: 8px;
  bottom: 6px;
  border-radius: 7px;
  background: color-mix(in srgb, currentColor 20%, #ffffff);
  border: 3px solid currentColor;
}
.module-symbol-gift b {
  width: 4px;
  height: 32px;
  left: 21px;
  bottom: 4px;
  border-radius: 999px;
  background: currentColor;
}
.module-symbol-gift em {
  width: 36px;
  height: 4px;
  left: 5px;
  top: 23px;
  border-radius: 999px;
  background: currentColor;
}
.module-symbol-gift strong {
  width: 24px;
  height: 14px;
  left: 11px;
  top: 2px;
  border: 4px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}
.module-symbol-stewardship i {
  width: 4px;
  height: 30px;
  left: 21px;
  top: 9px;
  border-radius: 999px;
  background: currentColor;
}
.module-symbol-stewardship b {
  width: 18px;
  height: 18px;
  left: 14px;
  top: 6px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(-45deg);
}
.module-symbol-stewardship em {
  width: 36px;
  height: 20px;
  left: 5px;
  bottom: 3px;
  border: 4px solid currentColor;
  border-top: 0;
  border-radius: 0 0 999px 999px;
  opacity: .55;
}
.module-symbol-stewardship strong {
  width: 24px;
  height: 4px;
  left: 11px;
  bottom: 12px;
  border-radius: 999px;
  background: currentColor;
}
.module-visual-panel h3 {
  color: var(--navy-900);
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.module-visual-panel p {
  color: var(--text-secondary);
  line-height: 1.68;
  font-size: .95rem;
}

.section-head .eyebrow,
.fw-num,
.report-cover .rc-label,
.highlight-box h4 {
  letter-spacing: .08em;
}
.section-head h2 { color: #102039; }
.section-head p { color: var(--text-secondary); }

.fw-card,
.feature-item,
.auth-card,
.question-card,
.price-card,
.voucher-card,
.dash-panel,
.metric-card,
.profile-card,
.insight-card,
.reflection-box,
.growth-section {
  border-color: var(--border);
  box-shadow: none;
}
.fw-card:hover,
.metric-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,154,61,.48);
  box-shadow: var(--shadow);
}
.fw-card::before { height: 0; }
.fw-image {
  background: #f7f9fb;
  border-color: var(--border);
  box-shadow: none;
}
.feature-grid { gap: 16px; }
.feature-item {
  padding: 26px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}
.process-step { background: transparent; }
.process-num { background: #fff; color: var(--navy-800); border-color: var(--border); }
.scripture-quote {
  border: 1px solid var(--gold-200);
  border-radius: var(--radius-lg);
  box-shadow: none;
}
.cta-band {
  background:
    linear-gradient(135deg, #08111e 0%, #142540 56%, #18294a 100%);
}

.dash-layout { background: #eef3f6; }
.dash-sidebar {
  background: #07111f;
  color: #eaf0f8;
  border-right: 0;
}
.dash-sidebar h2 { color: #fff2cd; }
.dash-sidebar .subtitle { color: #aeb9ca; }
.dash-menu a,
.dash-menu button {
  color: #c7d1df;
  border-radius: 9px;
}
.dash-menu a:hover,
.dash-menu button:hover { background: rgba(255,255,255,.08); color: #fff; }
.dash-menu a.active,
.dash-menu button.active {
  background: #d2a24b;
  color: #07111f;
}
.dash-main { padding: 42px; }
.dash-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.dash-head h1 { color: #102039; }
.metrics { gap: 14px; }
.metric-card {
  text-align: left;
  padding: 22px 20px;
  border-radius: 12px;
}
.metric-card .metric-val {
  font-size: 2rem;
  line-height: 1;
}
.metric-card .metric-lbl {
  color: var(--text-secondary);
  letter-spacing: .04em;
}
.dash-panel {
  padding: 26px;
  border-radius: 14px;
}
.table-wrap {
  border-color: var(--border);
  box-shadow: none;
}
.invite-table {
  min-width: 1080px;
}
.invite-table th:nth-child(2),
.invite-table td:nth-child(2) {
  min-width: 210px;
}
.invite-table th:nth-child(3),
.invite-table td:nth-child(3) {
  min-width: 230px;
}
.invite-table th:nth-child(5),
.invite-table td:nth-child(5) {
  min-width: 350px;
}
.voucher-project-table {
  min-width: 860px;
}
.voucher-project-table th,
.voucher-project-table td {
  padding: 14px 16px;
  vertical-align: middle;
}
.voucher-project-table th:first-child,
.voucher-project-table td:first-child {
  min-width: 180px;
}
.voucher-project-table th:nth-child(2),
.voucher-project-table td:nth-child(2) {
  min-width: 128px;
}
.voucher-project-table td:nth-last-child(-n + 4) {
  font-variant-numeric: tabular-nums;
}
.voucher-project-table-wrap::after {
  content: "";
  position: sticky;
  display: block;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-400), transparent 42%);
  pointer-events: none;
}
.voucher-participant-table {
  min-width: 760px;
}
.voucher-participant-table th,
.voucher-participant-table td {
  padding: 14px 16px;
  vertical-align: middle;
}
.voucher-participant-table th:first-child,
.voucher-participant-table td:first-child {
  min-width: 190px;
}
.voucher-participant-table th:nth-child(2),
.voucher-participant-table td:nth-child(2) {
  min-width: 180px;
}
.voucher-participant-table th:nth-child(3),
.voucher-participant-table td:nth-child(3) {
  min-width: 150px;
}
.voucher-participant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 190px;
}
th {
  color: #56657a;
  letter-spacing: .06em;
  background: #f8fafc;
}
td { vertical-align: top; }
.table-wrap th:last-child,
.table-wrap td:last-child {
  box-shadow: -8px 0 8px rgba(248,250,252,.92);
}
tr:hover td,
tr:hover td:last-child { background: #f6f8fb; }
.badge { letter-spacing: .02em; }
.accessCodeBadge { font-variant-numeric: tabular-nums; }
.mini-stats span {
  background: #f8fafc;
  border-color: var(--border);
  color: #21344f;
}
.credit-card {
  background:
    radial-gradient(circle at top right, rgba(224,184,98,.20), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #142540 100%);
  border-radius: 14px;
}

.tech-mini {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  min-width: 190px;
}
.tech-mini span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef4ff;
  border: 1px solid #dbe7fb;
  color: #18304f;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.tech-mini b {
  color: #6d541f;
  font-size: .68rem;
  letter-spacing: .05em;
}
.gob-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 20px;
  margin: 18px 0 24px;
}
.gob-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.gob-panel-head span {
  color: var(--gold-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.gob-panel-head strong {
  color: var(--navy-900);
  font-size: 1.02rem;
}
.gob-panel p {
  color: var(--text-secondary);
  font-size: .94rem;
  line-height: 1.68;
  margin-bottom: 10px;
}
.gob-panel small {
  display: block;
  color: var(--text-muted);
  font-size: .76rem;
  margin-top: 8px;
}
.gob-main-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 54%, #fff8e8 100%);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.gob-main-badge {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #102542;
  color: #f5c85c;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.gob-sensory-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}
.gob-sensory-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.gob-sensory-card.is-active {
  border-color: var(--gold-300);
  background: #fff8e8;
}
.gob-sensory-card strong {
  display: block;
  color: var(--navy-900);
  font-size: .96rem;
  margin-bottom: 4px;
}
.gob-sensory-card span:not(.gob-sensory-symbol) {
  display: block;
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.45;
}
.gob-sensory-symbol {
  width: 52px;
  height: 52px;
  display: inline-block;
  position: relative;
  border-radius: 16px;
  background: #edf6ff;
  border: 1px solid rgba(18,46,79,.12);
}
.gob-sensory-card.is-active .gob-sensory-symbol {
  background: #102542;
  border-color: #102542;
}
.gob-sensory-symbol i,
.gob-sensory-symbol b,
.gob-sensory-symbol em {
  position: absolute;
  display: block;
  content: "";
}
.gob-sensory-symbol.ear i {
  width: 20px;
  height: 28px;
  border: 3px solid #102542;
  border-left-width: 2px;
  border-radius: 50% 50% 48% 42%;
  left: 16px;
  top: 10px;
}
.gob-sensory-symbol.ear b {
  width: 8px;
  height: 12px;
  border: 2px solid #102542;
  border-left: 0;
  border-radius: 0 12px 12px 0;
  left: 25px;
  top: 20px;
}
.gob-sensory-symbol.eye i {
  width: 30px;
  height: 18px;
  border: 3px solid #102542;
  border-radius: 50%;
  left: 10px;
  top: 17px;
  transform: rotate(-8deg);
}
.gob-sensory-symbol.eye b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #102542;
  left: 22px;
  top: 22px;
}
.gob-sensory-symbol.hand i {
  width: 21px;
  height: 22px;
  border: 3px solid #102542;
  border-top-width: 2px;
  border-radius: 9px 9px 13px 13px;
  left: 16px;
  top: 22px;
  transform: rotate(-6deg);
}
.gob-sensory-symbol.hand b,
.gob-sensory-symbol.hand em {
  width: 5px;
  height: 24px;
  border-radius: 999px;
  background: #102542;
  top: 8px;
}
.gob-sensory-symbol.hand b { left: 19px; }
.gob-sensory-symbol.hand em { left: 27px; height: 21px; top: 10px; }
.gob-sensory-symbol.hand::before,
.gob-sensory-symbol.hand::after {
  content: "";
  position: absolute;
  display: block;
  background: #102542;
}
.gob-sensory-symbol.hand::before {
  width: 5px;
  height: 18px;
  left: 35px;
  top: 16px;
  border-radius: 999px;
  transform: rotate(24deg);
}
.gob-sensory-symbol.hand::after {
  width: 14px;
  height: 6px;
  left: 9px;
  top: 29px;
  border-radius: 999px;
  transform: rotate(-38deg);
}
.gob-sensory-card.is-active .gob-sensory-symbol i,
.gob-sensory-card.is-active .gob-sensory-symbol.ear b,
.gob-sensory-card.is-active .gob-sensory-symbol.eye i,
.gob-sensory-card.is-active .gob-sensory-symbol.hand i {
  border-color: #f5c85c;
}
.gob-sensory-card.is-active .gob-sensory-symbol.eye b,
.gob-sensory-card.is-active .gob-sensory-symbol.hand b,
.gob-sensory-card.is-active .gob-sensory-symbol.hand em {
  background: #f5c85c;
}
.gob-sensory-card.is-active .gob-sensory-symbol.hand::before,
.gob-sensory-card.is-active .gob-sensory-symbol.hand::after {
  background: #f5c85c;
}
.gob-main-card span,
.gob-source-note {
  color: var(--gold-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.gob-main-card h3 {
  color: var(--navy-900);
  font-size: 1.35rem;
  margin: 4px 0 8px;
}
.gob-main-card p,
.gob-source-note {
  line-height: 1.7;
}
.gob-main-card p {
  color: var(--text-secondary);
}
.gob-source-note {
  margin-top: -8px;
  color: var(--text-muted);
}
.gob-score-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.gob-score-pills span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  border-radius: 999px;
  background: #fff8e8;
  color: #21344f;
  border: 1px solid var(--gold-200);
  padding: 6px 10px;
  font-size: .8rem;
  font-weight: 800;
}
.gob-score-pills b { color: var(--gold-600); }

.technical-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.technical-result-group {
  border: 1px solid #dbe2e9;
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
}
.technical-result-group h4 {
  margin: 0;
  padding: 12px 16px;
  background: #13243a;
  color: #e8c66f;
  font-size: .78rem;
  letter-spacing: .08em;
}
.technical-result-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-top: 1px solid #e3e8ee;
}
.technical-result-row span {
  color: #8d691f;
  font-size: .78rem;
  font-weight: 850;
}
.technical-result-row strong {
  color: #14253b;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.05rem;
  letter-spacing: 0;
}
.technical-result-grid.is-compact {
  gap: 8px;
  margin: 8px 0 0;
}
.technical-result-grid.is-compact .technical-result-row {
  min-height: 32px;
  padding: 5px 10px;
}
.technical-result-grid.is-compact .technical-result-group h4 { padding: 8px 10px; }
.technical-result-grid.is-compact .technical-result-row strong { font-size: .85rem; }

.report-cover,
.scripture-card,
.highlight-box,
.insight-card,
.profile-card,
.reflection-box,
.growth-section,
.ministry-box {
  box-shadow: none;
}
.highlight-box,
.integrated {
  border: 1px solid var(--gold-200);
  border-left-width: 1px;
  border-radius: var(--radius-lg);
  background: #fff9ed;
}
.integrated { padding: 24px 28px; }
.report-cover-image,
.report-hero-image,
.generated-card-image,
.generated-mini-image,
.generated-tall-image {
  border: 0;
  box-shadow: 0 4px 8px rgba(13,24,39,.10);
}
.module-visual-panel .report-hero-image,
.module-visual-panel img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.type-atlas,
.mascot-frame {
  box-shadow: 0 4px 8px rgba(0,0,0,.18);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 58px 0 64px;
  }
  .mascot-layout { grid-template-columns: 1fr; }
  .companion-motion {
    min-height: 380px;
  }
  .companion-slides {
    min-height: 312px;
  }
  .module-visual-panel {
    grid-template-columns: 1fr;
  }
  .gob-sensory-row {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    background: #07111f;
    border-bottom: 0;
  }
  .dash-main { padding: 28px 18px; }
  .table-wrap th:last-child,
  .table-wrap td:last-child {
    position: sticky;
    box-shadow: -8px 0 12px rgba(248,250,252,.94);
  }
  .voucher-project-table { min-width: 780px; }
  .voucher-project-table th,
  .voucher-project-table td { padding: 12px 13px; }
  .voucher-participant-table { min-width: 700px; }
  .voucher-participant-table th,
  .voucher-participant-table td { padding: 12px 13px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 2rem; }
  .hero-mkhu { grid-template-columns: 1fr; }
  .mascot-section { padding: 52px 0; }
  .companion-motion { min-height: 520px; }
  .companion-slides { min-height: 452px; }
  .companion-slide {
    grid-template-columns: 1fr;
    gap: 16px;
    align-content: start;
  }
  .companion-meta h3 { font-size: 1.35rem; }
  .tech-mini { min-width: 0; }
  .tech-mini span { width: 100%; }
  .dash-head h1 { font-size: 1.55rem; }
  .metric-card .metric-val { font-size: 1.65rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .companion-slide {
    animation: none !important;
    opacity: 0;
    transform: none;
    filter: none;
  }
  .companion-slide:first-child {
    opacity: 1;
  }
  #app.view-enter > *,
  .app-modal,
  .app-modal-panel,
  .choice-item.choice-most,
  .is-click-confirmed {
    animation: none !important;
  }
}

/* ===== PRINT ===== */
/* Legacy print rules are retained as a reference but intentionally disabled.
   The Safari-safe A4 rules near the report styles are the single print source. */
@media print and (max-width: 1px) {
  @page { size: A4; margin: 14mm; }
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body { background: #fff; color: var(--text); font-size: 11.2px; line-height: 1.6; }
  .no-print { display: none !important; }
  .report { max-width: 180mm; padding: 0; }
  .report-cover {
    min-height: 240mm; display: flex; flex-direction: column; justify-content: center;
    page-break-after: auto; break-after: auto; padding: 28mm 16mm; border: 1px solid var(--gold-200);
    box-shadow: none; background: linear-gradient(180deg, #fffaf0 0%, #fff 54%, #f8f4ea 100%);
  }
  .report-cover::before, .report-cover::after { background: linear-gradient(90deg, transparent, var(--gold-400), transparent); }
  .report-cover h1 { font-size: 26px; }
  .report-cover .rc-subtitle { font-size: 11.5px; }
  .report-cover-visual { max-width: 132mm; margin: 0 auto 10mm; }
  .report-cover-image { border-radius: 16px; box-shadow: none; max-height: 68mm; }
  .report-chapter { page-break-before: auto; break-before: auto; border-top: none; padding-top: 0; margin-bottom: 22mm; }
  .chapter-title { font-size: 19px; }
  .chapter-intro, .narrative p, .highlight-box p, .growth-section p, .integrated { font-size: 10.8px; }
  .insight-card p, .profile-card p, .reflection-box li, .ministry-box p { font-size: 10px; }
  .report-visual-panel { grid-template-columns: 1fr 1fr; gap: 10mm; padding: 10px; box-shadow: none; break-inside: avoid; page-break-inside: avoid; }
  .report-hero-image, .generated-card-image, .generated-mini-image, .generated-tall-image, .type-atlas { box-shadow: none; break-inside: avoid; page-break-inside: avoid; }
  .generated-card-image { border-radius: 12px; margin-bottom: 10px; }
  .generated-mini-image { width: 42px; height: 42px; border-radius: 12px; }
  .generated-tall-image { width: 52mm; border-radius: 12px; }
  .profile-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .fruit-map-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .fruit-map-card { min-height: 112px; padding: 14px 12px; grid-template-columns: 42px 1fr; column-gap: 8px; box-shadow: none; }
  .fruit-map-card .fruit-visual { transform: scale(.72); transform-origin: left center; }
  .fruit-map-card strong { font-size: 9px; }
  .fruit-map-card span { font-size: 6.5px; }
  .chapter-heading { break-inside: avoid; page-break-inside: avoid; }
  .scripture-card { break-inside: avoid; page-break-inside: avoid; }
  .fruit-visual { break-inside: avoid; page-break-inside: avoid; }
  .formation-fruit-layout { grid-template-columns: 60px 1fr; }
  .formation-fruit-layout .fruit-visual { transform: scale(.82); transform-origin: left top; }
  .insight-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .profile-card, .insight-card, .reflection-box, .growth-section, .highlight-box, .ministry-box {
    box-shadow: none; break-inside: avoid; page-break-inside: avoid;
  }
  .profile-card { border: 1px solid var(--gold-200); padding: 18px 14px; }
  .highlight-box { background: var(--gold-50); border-left-color: var(--gold-400); }
  .ministry-box { background: var(--navy-800); color: #fff; }
  .ministry-box h3 { color: var(--gold-400); }
  .ministry-box p { color: #e7dfd0; }
  .report-appendix { display: none; }
}

/* ===== LANDING EXPERIENCE ===== */
.hero {
  min-height: calc(100vh - var(--nav-h));
  padding: clamp(58px, 8vw, 96px) 0 72px;
  background: #060b14;
  border-bottom: 1px solid rgba(200,164,92,.28);
}
.hero::before {
  background:
    radial-gradient(circle at 78% 22%, rgba(139,92,246,.16), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(200,164,92,.10), transparent 28%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy { max-width: 680px; }
.hero h1 { max-width: 700px; font-size: clamp(2.8rem, 5.8vw, 5rem); }
.hero-subtitle { max-width: 640px; }
.hero-trust {
  max-width: 52ch;
  margin-top: 24px;
  color: #aebbd0;
  font-size: .86rem;
  line-height: 1.65;
}
.hero-companion { min-width: 0; }
.hero .companion-motion { min-height: 486px; }
.hero .companion-slides { min-height: 396px; }
.hero .companion-slide {
  grid-template-columns: minmax(190px, .88fr) minmax(205px, 1.12fr);
  padding: 16px;
  background: #101c2c;
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 20px 42px rgba(0,0,0,.22);
}
.hero .companion-tone-1 { background: #111d2b; }
.hero .companion-tone-2 { background: #111c2e; }
.hero .companion-tone-3 { background: #15202d; }
.hero .companion-portrait { aspect-ratio: 4 / 5; border-radius: 14px; }
.hero .companion-meta { padding-right: 10px; }
.hero .companion-meta h3 { font-size: clamp(1.45rem, 2.5vw, 2.15rem); }
.hero .companion-meta p { max-width: 28ch; }
.hero .companion-rail { margin-top: 14px; }
.hero .companion-rail span { font-size: .74rem; }
.hero-mkhu {
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  gap: 14px;
}
.mkhu-badge {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.12);
  padding: 20px 18px;
}
.mkhu-badge h3 { font-size: .98rem; }
.mkhu-badge p { color: #b7c4d5; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-companion { width: min(760px, 100%); margin: 0 auto; }
  .hero .companion-motion { min-height: 430px; }
  .hero .companion-slides { min-height: 344px; }
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 58px 0 64px; }
  .hero-grid { gap: 34px; }
  .hero-mkhu { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 38px; }
}

@media (max-width: 560px) {
  .hero-grid { gap: 28px; }
  .hero .companion-motion { min-height: 532px; }
  .hero .companion-slides { min-height: 448px; }
  .hero .companion-slide { grid-template-columns: 1fr; gap: 14px; align-content: start; }
  .hero .companion-portrait { aspect-ratio: 1 / 1; max-height: 286px; }
  .hero .companion-meta { padding: 0 4px; }
  .hero .companion-meta p { max-width: none; }
  .hero .companion-rail { display: none; }
  .hero-mkhu { grid-template-columns: 1fr; }
  .gob-main-card { grid-template-columns: 1fr; padding: 20px; }
  .gob-main-badge { width: 68px; height: 68px; border-radius: 20px; }
  .voucher-participant-table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }
  .voucher-participant-table {
    min-width: 0;
  }
  .voucher-participant-table thead {
    display: none;
  }
  .voucher-participant-table tbody {
    display: grid;
    gap: 12px;
  }
  .voucher-participant-table tr {
    display: grid;
    gap: 3px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
  }
  .voucher-participant-table td,
  .voucher-participant-table td:first-child,
  .voucher-participant-table td:nth-child(2),
  .voucher-participant-table td:nth-child(3),
  .voucher-participant-table td:last-child {
    display: block;
    min-width: 0;
    padding: 7px 0;
    border: 0;
    position: static;
    box-shadow: none;
    background: transparent;
  }
  .voucher-participant-table td:first-child {
    padding-bottom: 11px;
    border-bottom: 1px solid var(--border-light);
  }
  .voucher-participant-actions {
    min-width: 0;
    padding-top: 3px;
  }
}

/* ===== IMPECCABLE LANDING ===== */
.landing-route .shell-footer { display: none; }
.dyvn-landing { background: #05070b; color: #f8fafc; overflow: hidden; }
.dyvn-landing h1,
.dyvn-landing h2,
.dyvn-landing h3,
.dyvn-landing p { margin-top: 0; }
.landing-beta {
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  padding: 5px 8px 4px;
  border: 1px solid rgba(232,198,111,.72);
  border-radius: 4px;
  color: #fff0c8;
  background: rgba(5,7,11,.42);
  font-size: .68em;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .1em;
}
.story-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  align-items: end;
  isolation: isolate;
  background: #05070b;
}
.story-hero-video,
.story-final-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.story-hero-shade,
.story-final-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4,8,15,.94) 0%, rgba(4,8,15,.76) 48%, rgba(4,8,15,.18) 100%);
}
.story-hero-inner { padding-top: 110px; padding-bottom: 72px; }
.story-kicker {
  margin-bottom: 18px;
  color: #e9bd63;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.story-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 4.8rem;
  line-height: 1.02;
  letter-spacing: 0;
}
.story-hero h1 em { color: #e9bd63; font-style: normal; }
.story-hero-inner > p {
  max-width: 660px;
  color: #d7dfeb;
  font-size: 1.22rem;
  line-height: 1.7;
}
.story-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.story-text-link {
  display: inline-flex;
  align-items: center;
  color: #f2d48e;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid rgba(242,212,142,.54);
  padding: 4px 0;
}
.story-text-link:hover { color: #fff; border-bottom-color: #fff; }
.story-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 42px;
  color: #b9c5d4;
  font-size: .8rem;
}
.story-proof span { display: inline-flex; align-items: center; gap: 8px; }
.story-proof span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #e9bd63; }
.dimension-band { background: #070b12; color: #f8fafc; border-bottom: 1px solid #242b36; }
.dimension-line { display: grid; grid-template-columns: repeat(4, 1fr); }
.dimension-line > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 116px;
  padding: 24px 20px;
  border-right: 1px solid #242b36;
}
.dimension-line > div:first-child { border-left: 1px solid #242b36; }
.dimension-symbol {
  grid-row: 1 / 3;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  font-style: normal;
}
.dimension-symbol.is-red { background: #e54d42; }
.dimension-symbol.is-yellow { background: #e5b64a; color: #332608; }
.dimension-symbol.is-green { background: #2fa66f; }
.dimension-symbol.is-purple { background: #7453c7; }
.dimension-line strong { font-size: .95rem; }
.dimension-line small { color: #aab5c4; line-height: 1.4; }
.story-section { padding: 112px 0; background: #080c13; color: #f8fafc; }
.story-section.story-dark { background: #0a1118; color: #f8fafc; }
.story-section.story-community { background: #05070b; }
.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 72px;
  align-items: center;
}
.story-split-reverse .story-media { order: 2; }
.story-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 8px; background: #0b1320; }
.story-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-copy { max-width: 610px; }
.story-copy h2,
.story-final h2 {
  margin-bottom: 22px;
  color: inherit;
  font-size: 3.2rem;
  line-height: 1.08;
  letter-spacing: 0;
}
.story-copy > p,
.story-final-copy > p { color: #bfc9d7; font-size: 1.05rem; line-height: 1.8; }
.story-dark .story-copy > p { color: #bdc8d7; }
.story-subheading { margin: 30px 0 0; color: #f6f8fb; font-size: 1rem; }
.story-copy blockquote {
  margin: 34px 0 0;
  padding: 24px 0 0;
  color: #eef2f7;
  border-top: 1px solid rgba(233,189,99,.42);
  font-size: 1.05rem;
  line-height: 1.8;
}
.story-copy blockquote cite { display: block; margin-top: 12px; color: #e9bd63; font-size: .78rem; font-style: normal; }
.story-steps { list-style: none; padding: 0; margin: 34px 0 0; }
.story-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 17px 0; border-top: 1px solid #293241; }
.story-steps b { color: #e9bd63; font-size: .78rem; }
.story-steps span { color: #d3dbe6; line-height: 1.6; }
.companion-section { padding: 112px 0; background: #090f18; }
.companion-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: center; }
.companion-section .story-copy h2 { color: #fff; }
.companion-section .story-copy p { color: #bfc9d7; }
.landing-companion {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(280px, 1.1fr);
  min-height: 470px;
  overflow: hidden;
  background: #172335;
  border: 1px solid #314056;
  border-radius: 8px;
}
.landing-companion-portrait { min-height: 470px; background: #f5f0e8; overflow: hidden; }
.landing-companion-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity .22s ease, transform .45s ease; }
.landing-companion-copy { align-self: center; padding: 42px; }
.landing-companion-copy > span { color: #e9bd63; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.landing-companion-copy h3 { margin: 14px 0 16px; color: #fff; font-size: 2.1rem; line-height: 1.15; }
.landing-companion-copy p { color: #c5cedb; line-height: 1.75; }
.landing-companion.is-changing img { opacity: .1; transform: scale(1.02); }
.landing-companion.is-changing .landing-companion-copy { opacity: .74; }
.companion-progress { height: 2px; margin-top: 28px; overflow: hidden; background: #334158; }
.companion-progress i { display: block; width: 100%; height: 100%; background: #e9bd63; transform-origin: left; animation: companion-progress 4.6s linear infinite; }
@keyframes companion-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.story-audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 30px 0 26px;
  border-top: 1px solid #293241;
}
.story-audience-list > div { padding: 18px 0; border-bottom: 1px solid #293241; }
.story-audience-list strong { display: block; margin-bottom: 7px; color: #f5f7fa; font-size: .9rem; }
.story-audience-list span { display: block; color: #aeb9c7; font-size: .82rem; line-height: 1.55; }
.story-final {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #05070b;
}
.story-final-shade { background: rgba(4,8,15,.72); }
.story-final-copy { max-width: 720px; padding-top: 90px; padding-bottom: 90px; }
.story-final-copy h2 { color: #fff; }
.story-final-copy > p { color: #d3dce8; max-width: 610px; }

/* ===== ACCESS AND PROFILE FLOW ===== */
.access-card { max-width: 880px; }
.access-card .access-form-grid { grid-template-columns: 1fr 1fr; }
.access-card .voucher-field { margin-top: 4px; padding: 24px; border: 1px solid var(--gold-300); border-radius: 8px; background: #fffaf0; }
.voucher-field small { display: block; margin-top: 10px; color: #667085; line-height: 1.5; }
.access-card .pay-grid { grid-template-columns: .72fr 1.28fr; gap: 16px; }
.access-price-summary,
.access-help { border: 1px solid #d7dee8; border-radius: 8px; background: #fff; padding: 24px; }
.access-price-summary { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.access-price-summary span { color: #6b7482; font-size: .82rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.access-price-summary strong { color: var(--navy-900); font-size: 1.7rem; }
.access-price-summary small { color: #8a641e; }
.access-help { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.access-help h3 { margin: 0 0 8px; }
.access-help p { margin: 0; color: #5d6878; line-height: 1.6; }
.btn-outline-dark { border: 1px solid var(--navy-800); color: var(--navy-900); background: #fff; white-space: nowrap; }
.profile-card-form { max-width: 920px; }
.profile-card-form .profile-form-grid { gap: 18px 20px; }
.profile-card-form .form-grp.wide textarea { min-height: 108px; }

/* ===== TEN-PAGE REPORT ===== */
.report-ten-pages { max-width: 960px; padding: 48px 0 80px; }
.report-sheet {
  position: relative;
  min-height: 1080px;
  margin: 0 0 32px;
  padding: 64px 70px;
  background: #fff;
  border: 1px solid #dbe1e8;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17,24,39,.08);
}
.report-ten-pages .report-cover { min-height: 1080px; margin-bottom: 32px; border-radius: 8px; }
.report-page-marker { position: absolute; top: 28px; left: 70px; right: 70px; display: flex; justify-content: space-between; color: #8792a2; font-size: .67rem; font-weight: 850; letter-spacing: .12em; }
.report-page-marker b { color: #b0822e; }
.report-sheet .chapter-heading { margin-top: 28px; margin-bottom: 28px; }
.report-sheet .chapter-title { font-size: 2rem; line-height: 1.16; }
.report-sheet .chapter-intro { max-width: 720px; font-size: 1rem; line-height: 1.75; }
.report-cover-note { max-width: 520px; margin: 6px auto 0; color: #667085; font-size: .82rem; line-height: 1.55; }
.rc-participant { display: flex; flex-direction: column; gap: 4px; }
.rc-participant span { color: #7f8793; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.report-journey-map { display: grid; grid-template-columns: repeat(4, 1fr); margin: 30px 0; border: 1px solid #dce2e9; border-radius: 8px; overflow: hidden; }
.report-journey-map > div { display: grid; justify-items: center; text-align: center; gap: 7px; padding: 20px 12px; border-right: 1px solid #dce2e9; }
.report-journey-map > div:last-child { border-right: 0; }
.report-journey-map .dimension-symbol { grid-row: auto; }
.report-journey-map small { color: #687486; line-height: 1.4; }
.character-emblem-row { display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: center; margin: 30px 0; padding: 24px; background: #f7f9fb; border: 1px solid #dfe5ec; border-radius: 8px; }
.character-emblem-row .type-emblem { margin: auto; transform: scale(1.25); }
.character-emblem-row span { color: #8a641e; font-size: .72rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.character-emblem-row h3 { margin: 6px 0 8px; font-size: 1.55rem; }
.character-emblem-row p { margin: 0; color: #5a6677; line-height: 1.65; }
.pressure-panel { margin: 26px 0; padding: 26px 28px; background: #142338; color: #fff; border-radius: 8px; }
.pressure-panel span { color: #e9bd63; font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.pressure-panel p { margin: 10px 0 0; color: #e5ebf2; line-height: 1.75; }
.report-subheading { margin: 30px 0 12px; font-size: 1.16rem; }
.report-practice-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid #dce2e8; }
.report-practice-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 15px 0; border-bottom: 1px solid #dce2e8; color: #344054; line-height: 1.6; }
.report-practice-list b { color: #b0822e; font-size: .72rem; }
.reflection-line { display: grid; grid-template-columns: 118px 1fr; gap: 20px; margin-top: 24px; padding: 20px 22px; border: 1px solid #e4c982; border-radius: 8px; background: #fffaf0; }
.reflection-line b { color: #946a20; }
.reflection-line span { color: #4b5666; line-height: 1.65; }
.fruit-legend { display: flex; gap: 24px; margin: 16px 0 28px; color: #606c7e; font-size: .76rem; }
.fruit-legend span { display: inline-flex; align-items: center; gap: 8px; }
.fruit-legend i { width: 12px; height: 12px; border: 1px solid #cbd3dd; border-radius: 3px; background: #fff; }
.fruit-legend i.is-strong { background: #fff3d3; border-color: #d6a43f; }
.report-compact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.report-mini-profile { padding: 18px; border: 1px solid #dce2e9; border-radius: 8px; background: #fff; }
.report-mini-profile > span { display: block; margin: 10px 0 5px; color: #9a7128; font-size: .65rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.report-mini-profile h3 { margin: 0 0 8px; font-size: 1rem; }
.report-mini-profile p { margin: 0 0 10px; color: #566173; font-size: .83rem; line-height: 1.55; }
.report-mini-profile small { color: #7b8491; line-height: 1.4; }
.report-mini-profile .gift-scripture-ref { display: block; margin-top: -3px; color: #9a7128; font-weight: 750; }
.report-mini-profile .generated-mini-image { width: 58px; height: 44px; object-fit: cover; border-radius: 6px; box-shadow: none; }
.report-mini-profile .generated-card-image { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; margin-bottom: 10px; border-radius: 6px; box-shadow: none; }
.report-mini-profile dl { margin: 10px 0 0; font-size: .77rem; line-height: 1.45; }
.report-mini-profile dt { margin-top: 8px; color: #8a641e; font-weight: 850; }
.report-mini-profile dd { margin: 2px 0 0; color: #596577; }
.formation-focus { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 24px; margin-top: 20px; padding: 22px; border: 1px solid #e1bf69; border-radius: 8px; background: #fffaf0; }
.formation-focus > div { display: grid; grid-template-columns: 54px 1fr; gap: 8px; align-items: center; }
.formation-focus img { grid-row: 1 / 3; box-shadow: none; }
.formation-focus span { color: #9a7128; font-size: .65rem; font-weight: 850; text-transform: uppercase; }
.formation-focus h3 { margin: 0; font-size: 1rem; }
.formation-focus p { margin: 0; color: #566173; line-height: 1.65; }
.integration-path { display: grid; grid-template-columns: 1fr 20px 1fr 20px 1fr 20px 1fr; align-items: stretch; margin: 28px 0; }
.integration-path > div { padding: 18px 12px; text-align: center; border: 1px solid #dbe2e9; border-radius: 8px; }
.integration-path > i { align-self: center; height: 1px; background: #c4a65d; }
.integration-path span { display: grid; place-items: center; width: 28px; height: 28px; margin: 0 auto 10px; border-radius: 50%; background: #13243a; color: #fff; font-size: .68rem; }
.integration-path b { display: block; font-size: .84rem; }
.integration-path small { display: block; margin-top: 7px; color: #6a7585; line-height: 1.4; }
.thirty-day-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.thirty-day-grid > div { padding: 18px 20px; border: 1px solid #dbe2e9; border-radius: 8px; }
.thirty-day-grid span { color: #a77725; font-size: .67rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.thirty-day-grid h3 { margin: 6px 0 6px; font-size: 1rem; }
.thirty-day-grid p { margin: 0; color: #596577; font-size: .83rem; line-height: 1.55; }
.report-final-actions { margin-top: 20px; text-align: center; }
.report-final-actions p { margin: 10px auto 0; max-width: 520px; color: #667085; font-size: .82rem; line-height: 1.55; }
.report-recovery { margin-top: 22px; padding: 18px; border: 1px solid #d7dee8; border-radius: 8px; background: #f8fafc; }
.report-recovery strong { display: block; color: var(--navy-900); }
.report-recovery p { margin: 7px 0 14px; color: #667085; font-size: .88rem; line-height: 1.55; }
.report-document-title { margin-top: 18px; color: #9a7128; font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.report-document-deck { max-width: 660px; margin: 8px auto 22px; color: #536074; font-size: 1rem; line-height: 1.6; text-align: center; }
.character-type-heading { margin: 22px 0 8px; }
.character-type-heading > span { color: #9a7128; font-size: .7rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.character-type-heading h3 { margin: 7px 0 8px; color: var(--navy-900); font-size: 1.65rem; }
.character-type-heading p { margin: 0; color: #566173; line-height: 1.7; }
.report-technical { max-width: 980px; margin: 28px auto; padding: 30px; border: 1px solid #dce2e8; border-radius: 8px; background: #fff; }
.highlight-box,
.integrated { border-left-width: 1px !important; }

@media (max-width: 960px) {
  .story-hero h1 { font-size: 3.6rem; }
  .story-copy h2, .story-final h2 { font-size: 2.55rem; }
  .story-split, .companion-layout { grid-template-columns: 1fr; gap: 42px; }
  .story-split-reverse .story-media { order: 0; }
  .landing-companion { min-height: 430px; }
  .dimension-line { grid-template-columns: 1fr 1fr; }
  .dimension-line > div:nth-child(3) { border-left: 1px solid #242b36; }
  .report-sheet { padding: 56px 42px; }
  .report-page-marker { left: 42px; right: 42px; }
}
@media (max-width: 640px) {
  .story-hero { min-height: 740px; }
  .story-hero-shade { background: rgba(4,8,15,.76); }
  .story-hero-inner { padding-top: 82px; padding-bottom: 46px; }
  .story-hero h1 { font-size: 2.55rem; }
  .story-hero-inner > p { font-size: 1rem; }
  .story-actions { align-items: flex-start; flex-direction: column; }
  .story-proof { display: grid; }
  .dimension-line { grid-template-columns: 1fr; }
  .dimension-line > div, .dimension-line > div:nth-child(3) { border-left: 0; border-right: 0; border-bottom: 1px solid #242b36; }
  .dimension-line > div:last-child { border-bottom: 0; }
  .story-section, .companion-section { padding: 72px 0; }
  .story-copy h2, .story-final h2 { font-size: 2rem; }
  .story-media { aspect-ratio: 4 / 3; }
  .landing-companion { grid-template-columns: 1fr; min-height: 0; }
  .landing-companion-portrait { min-height: 360px; }
  .landing-companion-copy { padding: 28px 24px; }
  .story-audience-list { grid-template-columns: 1fr; }
  .story-final { min-height: 640px; }
  .access-card .access-form-grid, .access-card .pay-grid { grid-template-columns: 1fr; }
  .access-help { align-items: flex-start; flex-direction: column; }
  .voucher-inline { grid-template-columns: 1fr; }
  .report-ten-pages { padding: 18px 10px 48px; }
  .report-sheet, .report-ten-pages .report-cover { min-height: 0; padding: 54px 20px 34px; border-radius: 0; }
  .report-page-marker { left: 20px; right: 20px; }
  .report-sheet .chapter-title { font-size: 1.55rem; }
  .report-journey-map, .report-compact-grid, .thirty-day-grid { grid-template-columns: 1fr; }
  .report-journey-map > div { border-right: 0; border-bottom: 1px solid #dce2e9; }
  .report-journey-map > div:last-child { border-bottom: 0; }
  .character-emblem-row, .formation-focus { grid-template-columns: 1fr; }
  .integration-path { grid-template-columns: 1fr; gap: 8px; }
  .integration-path > i { width: 1px; height: 14px; justify-self: center; }
  .reflection-line { grid-template-columns: 1fr; gap: 8px; }
}

#dyvn-print-stage { display: none; }

@media print {
  @page { size: A4; margin: 0; }
  .no-print { display: none !important; }
  html, body {
    width: 210mm !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body.is-printing-report > *:not(#dyvn-print-stage) { display: none !important; }
  #dyvn-print-stage {
    display: block !important;
    width: 210mm !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #dyvn-print-stage,
  #dyvn-print-stage .report,
  #dyvn-print-stage .report-ten-pages {
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  #dyvn-print-stage .report-ten-pages {
    display: block !important;
    width: 210mm !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  #dyvn-print-stage .report-sheet,
  #dyvn-print-stage .report-ten-pages .report-cover {
    display: block !important;
    width: 210mm !important;
    height: 297mm !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 15mm 15mm 12mm;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    page-break-before: auto !important;
    page-break-after: auto !important;
    break-before: auto !important;
    break-after: auto !important;
    page-break-inside: auto !important;
    break-inside: auto !important;
  }
  #dyvn-print-stage .report-sheet:not(.report-sheet-10) {
    page-break-after: always !important;
    break-after: page !important;
  }
  #dyvn-print-stage .report-sheet-10 {
    page-break-after: auto !important;
    break-after: auto !important;
  }
  .report-page-marker { top: 8mm; left: 15mm; right: 15mm; font-size: 7.4pt; }
  .report-sheet .chapter-heading { margin-top: 8mm; margin-bottom: 7mm; gap: 5mm; }
  .report-sheet .chapter-title { font-size: 20pt; line-height: 1.14; }
  .report-sheet .chapter-intro { font-size: 10.4pt; line-height: 1.58; }
  #dyvn-print-stage .report-sheet .report-symbol {
    width: 11mm;
    height: 11mm;
    flex-basis: 11mm;
  }
  #dyvn-print-stage .report-ten-pages .report-cover {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 14mm 18mm 11mm;
    text-align: center !important;
  }
  #dyvn-print-stage .report-cover .report-brand { margin: 1mm 0 3mm; }
  #dyvn-print-stage .report-cover .report-brand img { width: 9mm; height: 9mm; }
  #dyvn-print-stage .report-cover h1 {
    width: 100%;
    max-width: 152mm;
    margin: 2mm auto 2mm;
    font-size: 25pt;
    line-height: 1.08;
  }
  #dyvn-print-stage .report-cover .rc-label { margin: 2mm 0 0; }
  #dyvn-print-stage .report-cover .rc-subtitle {
    width: 100%;
    max-width: 138mm;
    margin: 0 auto 3mm;
    font-size: 10pt;
    line-height: 1.5;
  }
  #dyvn-print-stage .report-cover .color-code-list {
    display: flex !important;
    flex: 0 0 auto !important;
    justify-content: center !important;
    width: auto !important;
    margin: 0 auto 4mm !important;
  }
  #dyvn-print-stage .report-cover .color-code-chip {
    min-width: 28mm;
    min-height: 10mm;
    padding: 1.5mm 3mm;
  }
  #dyvn-print-stage .report-cover .color-code-chip b { width: 7mm; height: 7mm; font-size: 9pt; }
  #dyvn-print-stage .report-cover .color-code-chip small { font-size: 7pt; }
  #dyvn-print-stage .report-cover-visual {
    width: 76mm;
    max-width: 76mm;
    margin: 0 auto 4mm;
  }
  #dyvn-print-stage .report-cover-image {
    width: 76mm;
    height: 100mm;
    max-height: 100mm;
    border-radius: 5px;
    object-fit: contain;
    box-shadow: none;
  }
  #dyvn-print-stage .report-cover .rc-participant {
    display: flex !important;
    flex: 0 0 auto !important;
    min-width: 60mm;
    margin: 0 auto 2mm;
    padding: 3mm 8mm;
  }
  #dyvn-print-stage .report-cover .report-cover-note { margin: 1mm auto 0; font-size: 7pt; line-height: 1.4; }
  .report-document-title { margin-top: 3mm; font-size: 7.6pt; }
  .report-document-deck { margin: 1.5mm auto 3mm; font-size: 9.2pt; line-height: 1.45; }
  .character-type-heading { margin: 4mm 0 2mm; }
  .character-type-heading h3 { margin: 1.5mm 0; font-size: 18pt; }
  .character-type-heading p { font-size: 10pt; line-height: 1.55; }
  .scripture-card { padding: 7mm 7mm; margin: 1mm 0 7mm; }
  .scripture-card p { font-size: 10.8pt; line-height: 1.65; }
  .scripture-card span { font-size: 8.2pt; }
  .report-journey-map { margin: 6mm 0; }
  .report-journey-map > div { min-height: 32mm; padding: 5mm 2.5mm; }
  .report-journey-map .dimension-symbol { width: 10mm; height: 10mm; font-size: 10.5pt; }
  .report-journey-map b { font-size: 9.4pt; }
  .report-journey-map small { font-size: 7.7pt; line-height: 1.48; }
  .insight-grid { gap: 4mm; margin: 6mm 0; }
  .insight-card { padding: 6mm; }
  .insight-card h3 { font-size: 11.2pt; margin-bottom: 3mm; }
  .insight-card p, .narrative p, .highlight-box p, .integrated p { font-size: 9.7pt; line-height: 1.62; }
  .character-emblem-row { margin: 6mm 0; padding: 6mm; min-height: 47mm; }
  .character-emblem-row span { font-size: 8pt; }
  .character-emblem-row h3 { font-size: 17pt; }
  .character-emblem-row p { font-size: 10pt; line-height: 1.6; }
  .pressure-panel { margin: 6mm 0; padding: 6mm 7mm; }
  .pressure-panel span { font-size: 8pt; }
  .pressure-panel p { font-size: 9.8pt; line-height: 1.58; }
  .report-subheading { margin: 6mm 0 3mm; font-size: 11.5pt; }
  .report-practice-list li { padding: 3.5mm 0; font-size: 9.2pt; line-height: 1.52; }
  .reflection-line { margin-top: 4mm; padding: 4mm 5mm; font-size: 9.2pt; }
  #dyvn-print-stage .fruit-map-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 3mm;
    margin: 6mm 0;
  }
  .fruit-map-card { min-height: 30mm; padding: 3.5mm; }
  .fruit-map-card strong { font-size: 8.7pt; }
  .fruit-map-card span { font-size: 6.7pt; }
  .fruit-legend { margin: 4mm 0 6mm; font-size: 8.5pt; }
  .highlight-box { margin-top: 6mm; margin-bottom: 5mm; padding: 5.5mm 6mm; }
  .highlight-box h4 { font-size: 8.4pt; margin-bottom: 2mm; }
  .report-compact-grid { gap: 3.5mm; }
  .report-mini-profile { padding: 4.5mm; }
  .report-mini-profile > span { font-size: 7pt; }
  .report-mini-profile h3 { font-size: 10.2pt; }
  .report-mini-profile p { font-size: 8.2pt; line-height: 1.5; }
  .report-mini-profile small, .report-mini-profile dl { font-size: 7.2pt; line-height: 1.48; }
  .report-mini-profile .generated-mini-image { width: 16mm; height: 12mm; }
  .report-mini-profile .generated-card-image { max-height: 36mm; }
  .formation-focus { margin-top: 5mm; padding: 5mm; gap: 6mm; }
  .formation-focus span { font-size: 7.2pt; }
  .formation-focus h3 { font-size: 11pt; }
  .formation-focus p { font-size: 8.7pt; line-height: 1.55; }
  .gob-main-card { padding: 6mm; margin: 2mm 0 5mm; }
  .gob-main-badge { width: 22mm; height: 22mm; font-size: 17pt; }
  .gob-main-card span { font-size: 8pt; }
  .gob-main-card h3 { font-size: 16pt; }
  .gob-main-card p { font-size: 10.2pt; line-height: 1.58; }
  .gob-sensory-row { gap: 3mm; margin-bottom: 5mm; }
  .gob-sensory-card { padding: 4mm; grid-template-columns: 14mm 1fr; gap: 3mm; }
  .gob-sensory-symbol { width: 14mm; height: 14mm; }
  .gob-sensory-card strong { font-size: 9.6pt; }
  .gob-sensory-card span:not(.gob-sensory-symbol) { font-size: 7.8pt; line-height: 1.45; }
  .integration-path { margin: 6mm 0; }
  .integration-path > div { padding: 5mm 2.5mm; }
  .integration-path span { width: 9mm; height: 9mm; font-size: 8pt; }
  .integration-path b { font-size: 10pt; }
  .integration-path small { font-size: 7.1pt; line-height: 1.45; }
  .thirty-day-grid { gap: 4mm; margin-bottom: 5mm; }
  .thirty-day-grid > div { padding: 5mm 5.5mm; min-height: 38mm; }
  .thirty-day-grid span { font-size: 7.5pt; }
  .thirty-day-grid h3 { font-size: 11.5pt; }
  .thirty-day-grid p { font-size: 8.5pt; line-height: 1.52; }
  .reflection-box, .ministry-box { padding: 5mm 6mm; margin-top: 4mm; }
  .reflection-box h3, .ministry-box h3 { font-size: 11.5pt; }
  .reflection-box p { font-size: 9.4pt; }
  .reflection-box li, .ministry-box p { font-size: 8.5pt; line-height: 1.5; }
  #dyvn-print-stage .report-sheet-8 .report-mini-profile p,
  #dyvn-print-stage .report-sheet-8 .report-mini-profile dl { font-size: 7.5pt; }
  #dyvn-print-stage .report-sheet-10 .chapter-heading { margin-bottom: 5mm; }
  .report-technical { margin: 16px 12px; padding: 20px; }
  .technical-result-grid { grid-template-columns: 1fr; }
}

/* ===== RESOURCE REGISTRY + PARTICIPANT EXPERIENCE ===== */
.registry-controls {
  position: sticky;
  top: calc(var(--nav-h) + 10px);
  z-index: 16;
  display: grid;
  grid-template-columns: minmax(240px, 2fr) repeat(4, minmax(130px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin: 18px 0 14px;
  padding: 16px;
  background: rgba(255,255,255,.97);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(13,31,53,.08);
  backdrop-filter: blur(12px);
}
.registry-field,
.registry-search { min-width: 0; }
.registry-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-700);
  font-size: .72rem;
  font-weight: 750;
}
.registry-search label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-700);
  font-size: .72rem;
  font-weight: 750;
}
.registry-field input,
.registry-field select,
.registry-search input {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: .82rem;
}
.registry-field input:focus,
.registry-field select:focus,
.registry-search input:focus {
  border-color: var(--gold-400);
  outline: 3px solid rgba(201,154,61,.16);
}
.registry-control-actions,
.registry-submit { display: flex; gap: 8px; align-items: center; }
.registry-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
  color: var(--text-muted);
  font-size: .8rem;
}
.registry-table-wrap {
  overflow: auto;
  max-height: min(68vh, 720px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}
.registry-table { min-width: 1240px; margin: 0; font-size: .78rem; }
.registry-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f4f6f8;
  box-shadow: inset 0 -1px 0 var(--border);
}
.registry-table td { vertical-align: middle; }
.registry-resource-name { display: grid; gap: 3px; min-width: 190px; }
.registry-resource-name strong { color: var(--navy-900); font-size: .84rem; }
.registry-resource-name small { color: var(--text-muted); font-size: .68rem; }
.registry-actions { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; min-width: 220px; }
.registry-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: .78rem;
}
.registry-pagination select { min-height: 40px; }
.permission-fieldset {
  margin: 16px 0;
  padding: 0;
  border: 0;
}
.permission-fieldset legend {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: .9rem;
  font-weight: 750;
}
.permission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 54px;
  padding: 11px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #fbfcfd;
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.4;
  cursor: pointer;
}
.check-row input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--gold-500); }

.test-wrap { max-width: 980px; padding-top: 48px; padding-bottom: 72px; }
.test-head { margin-bottom: 30px; }
.test-head h1 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.15;
}
.test-head .q-counter { font-size: 1.05rem; line-height: 1.5; }
.question-card { padding: 44px 48px; }
.question-card .instruction {
  max-width: 760px;
  font-size: clamp(1.2rem, 2.3vw, 1.35rem);
  line-height: 1.55;
  margin-bottom: 28px;
}
.question-card h3 { font-size: 1.45rem !important; line-height: 1.35 !important; }
.choice-item {
  min-height: 76px;
  gap: 20px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.choice-letter { width: 52px; height: 52px; font-size: 1.12rem; }
.choice-text,
.choice-text span { font-size: 1.18rem !important; line-height: 1.5 !important; }
.pick-btn { width: 52px; height: 52px; font-size: 1.16rem; }
.question-nav .btn,
.question-nav .ghost-btn {
  min-height: 52px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

button,
.btn,
[data-action] {
  -webkit-tap-highlight-color: rgba(201,154,61,.18);
  touch-action: manipulation;
}
button:active:not(:disabled),
.btn:active:not(:disabled),
[data-action]:active:not(:disabled) {
  transform: translateY(1px) scale(.985);
  filter: brightness(.97);
}

@media (max-width: 1120px) {
  .registry-controls { grid-template-columns: repeat(3, minmax(0, 1fr)); position: static; }
  .registry-search { grid-column: span 2; }
  .registry-control-actions,
  .registry-submit { justify-content: flex-end; }
}

@media (max-width: 720px) {
  .registry-controls { grid-template-columns: 1fr 1fr; padding: 14px; }
  .registry-search { grid-column: 1 / -1; }
  .registry-control-actions,
  .registry-submit { grid-column: 1 / -1; justify-content: stretch; }
  .registry-control-actions .btn,
  .registry-submit .btn { flex: 1; min-height: 46px; }
  .registry-summary { align-items: flex-start; flex-direction: column; }
  .registry-pagination { justify-content: space-between; flex-wrap: wrap; }
  .permission-grid { grid-template-columns: 1fr; }

  .test-wrap { padding: 32px 14px 56px; }
  .test-head h1 { font-size: clamp(2rem, 9vw, 2.35rem); }
  .test-head .q-counter { font-size: 1rem; }
  .progress-bar { margin-bottom: 26px; }
  .question-card { padding: 26px 18px; border-radius: 8px; }
  .question-card .instruction { font-size: 1.2rem; margin-bottom: 22px; }
  .question-card h3 { font-size: 1.32rem !important; }
  .choice-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    min-height: 76px;
    padding: 16px;
    gap: 13px;
  }
  .choice-letter { width: 48px; height: 48px; }
  .choice-text,
  .choice-text span { font-size: 1.08rem !important; }
  .choice-actions { width: auto !important; }
  .pick-btn { width: 48px; height: 48px; }
  .question-nav { gap: 12px; }
  .question-nav .btn,
  .question-nav .ghost-btn { flex: 1; min-width: 0; padding-inline: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  button:active:not(:disabled),
  .btn:active:not(:disabled),
  [data-action]:active:not(:disabled) { transform: none; }
}
