:root {
  --bg: oklch(97% 0.004 240);
  --bg-dark: oklch(16% 0.008 250);
  --card-light: oklch(93% 0.006 240);
  --card-dark: oklch(18% 0.008 250);
  --ink: oklch(20% 0.01 240);
  --muted: oklch(42% 0.01 240);
  --muted-soft: oklch(50% 0.01 240);
  --muted-on-dark: oklch(70% 0.01 240);
  --line: oklch(90% 0.005 240);
  --line-soft: oklch(88% 0.005 240);
  --accent: oklch(55% 0.1 250);
  --accent-strong: oklch(30% 0.09 250);
  --success: oklch(75% 0.05 150);
  --error: oklch(50% 0.15 30);
  --radius: 4px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: oklch(65% 0.1 250);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-soft);
}

/* ---------- Landing: profile hero ---------- */

.profile-hero {
  background: var(--bg-dark);
  color: white;
  padding: 28px 24px 72px;
}

.profile-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 600;
}

.profile-nav a {
  color: oklch(85% 0.005 240);
}

.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 64px;
}

.avatar-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-name {
  font-size: 30px;
  font-weight: 700;
  margin: 20px 0 4px;
}

.profile-handle {
  font-size: 15px;
  color: var(--muted-on-dark);
  margin-bottom: 20px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: monospace;
}

.social-btn:hover {
  color: var(--ink);
  opacity: 0.85;
}

/* Signup form */

.subscribe-form {
  display: flex;
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}

.subscribe-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 999px;
  color: var(--ink);
  min-width: 0;
}

.subscribe-input:first-of-type {
  border-right: 1px solid var(--line-soft);
}

.subscribe-btn {
  background: var(--ink);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.subscribe-btn:hover {
  opacity: 0.85;
}

.form-note {
  min-height: 16px;
  font-size: 13px;
  color: var(--muted-on-dark);
  margin: 12px 0 0;
  text-align: center;
}

.form-note.error { color: oklch(75% 0.12 30); }
.form-note.success { color: var(--success); }

/* Tagline */

.tagline-section {
  padding: 64px 24px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.tagline-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.tagline-heading {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.15;
}

.tagline-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* Pillars */

.pillars-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pillar-card {
  display: block;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--card-light);
  color: var(--ink);
}

.pillar-card--dark {
  background: var(--card-dark);
  color: white;
}

.pillar-card--dark .pillar-desc {
  color: oklch(78% 0.01 240);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: oklch(75% 0.02 240);
}

.pillar-card--dark .pillar-icon {
  background: oklch(35% 0.05 250);
}

.pillar-title {
  font-size: 18px;
  font-weight: 700;
  margin: 16px 0 8px;
}

.pillar-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pillar-arrow {
  font-size: 18px;
  margin-top: 16px;
}

/* ---------- Shared footer ---------- */

.site-footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-fine {
  font-size: 13px;
  color: var(--muted-soft);
}

/* ---------- Booking page ---------- */

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.booking-home-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

.booking-hours {
  font-size: 13px;
  color: var(--muted-soft);
}

.booking-main {
  flex: 1;
  padding: 20px 24px 60px;
}

.booking-container {
  max-width: 760px;
  margin: 0 auto;
}

.booking-container--narrow {
  max-width: 440px;
  margin: 20px auto 0;
}

.booking-container--summary {
  max-width: 520px;
  margin: 60px auto 0;
}

.payment-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-card {
  max-width: 420px;
  width: 100%;
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 40px;
  box-sizing: border-box;
}

.payment-card-title,
.payment-card-subtitle {
  text-align: center;
}

.payment-card-subtitle {
  line-height: 1.5;
}

.payment-card .booking-error {
  text-align: center;
  margin-bottom: 16px;
}

.booking-title {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 8px;
}

.booking-title--sm {
  font-size: 28px;
}

.booking-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 40px;
}

.booking-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.option-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

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

.option-btn {
  padding: 16px 12px;
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--line-soft);
  background: white;
  font-family: inherit;
  color: inherit;
  font-size: 16px;
  font-weight: 700;
}

.option-btn:hover {
  border-color: var(--accent-strong);
}

.option-btn.is-selected {
  border: 2px solid var(--accent-strong);
  background: oklch(94% 0.03 250);
}

.option-btn-sub {
  font-size: 13px;
  color: var(--muted-soft);
  font-weight: 400;
  margin-top: 6px;
}

.date-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 36px;
}

.date-btn {
  padding: 16px 12px;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--line-soft);
  background: white;
  font-family: inherit;
  color: inherit;
  min-width: 64px;
  flex: 0 0 auto;
}

.date-btn:hover {
  border-color: var(--accent-strong);
}

.date-btn.is-selected {
  border: 2px solid var(--accent-strong);
  background: oklch(94% 0.03 250);
}

.date-btn:disabled,
.date-btn.is-full {
  cursor: not-allowed;
  opacity: 0.4;
  background: var(--card-light);
}

.date-btn:disabled:hover {
  border-color: var(--line-soft);
}

.date-weekday {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.7;
}

.date-num {
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

.date-month {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 2px;
}

.time-btn {
  padding: 16px 12px;
  border-radius: 2px;
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--line-soft);
  background: white;
  font-family: inherit;
  color: inherit;
  font-size: 15px;
}

.time-btn:hover {
  border-color: var(--accent-strong);
}

.time-btn.is-selected {
  border: 2px solid var(--accent-strong);
  background: oklch(94% 0.03 250);
}

.time-btn:disabled,
.time-btn.is-booked {
  cursor: not-allowed;
  opacity: 0.4;
  background: var(--card-light);
  text-decoration: line-through;
}

.time-btn:disabled:hover {
  border-color: var(--line-soft);
}

.details-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-input {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  color: var(--ink);
  width: 100%;
}

.booking-textarea {
  resize: vertical;
}

.booking-error {
  font-size: 14px;
  color: var(--error);
  margin: 0;
}

.booking-btn {
  width: 100%;
  background: var(--accent-strong);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.booking-btn:hover {
  opacity: 0.9;
}

.booking-back-btn {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--muted-soft);
  font-size: 14px;
  text-align: center;
  margin-top: 18px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.amount-due {
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  background: white;
}

.amount-due-label {
  font-size: 14px;
  color: var(--muted);
}

.amount-due-value {
  font-size: 20px;
  font-weight: 700;
}

.confirm-head {
  text-align: center;
  margin-bottom: 32px;
}

.confirm-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-strong);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px;
}

.summary-card {
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  padding: 24px;
  background: white;
  margin-bottom: 28px;
}

.summary-card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 5px 0;
}

.summary-row span {
  color: var(--muted-soft);
}

.summary-row--total {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 4px;
}

.summary-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.booking-outline-btn {
  border: 1px solid oklch(80% 0.01 240);
  padding: 12px 22px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.booking-outline-btn:hover {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.booking-back-home {
  display: block;
  margin-top: 32px;
  font-size: 14px;
  color: var(--muted-soft);
  text-align: center;
}

/* ---------- Contact page ---------- */

.contact-hero {
  background: var(--bg-dark);
  color: white;
  padding: 28px 24px 56px;
}

.contact-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 600;
}

.contact-brand {
  color: oklch(85% 0.005 240);
}

.contact-nav-links {
  display: flex;
  gap: 28px;
}

.contact-nav-links a {
  color: oklch(85% 0.005 240);
}

.contact-nav-links a.is-current {
  color: white;
}

.contact-hero-text {
  text-align: center;
  padding-top: 48px;
}

.contact-hero-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-hero-sub {
  font-size: 16px;
  color: oklch(70% 0.01 240);
  margin: 0;
}

.contact-card-wrap {
  max-width: 520px;
  margin: -32px auto 64px;
  padding: 0 24px;
}

.contact-form {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.contact-form[hidden] {
  display: none;
}

.contact-name-email-row {
  display: flex;
  gap: 12px;
}

.contact-name-email-row .booking-input {
  flex: 1;
  min-width: 0;
}

.contact-sent {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 48px 32px;
  text-align: center;
  box-sizing: border-box;
}

.contact-sent-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}

.contact-sent-note {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.social-row--outline {
  justify-content: center;
  margin-top: 24px;
}

.social-btn--outline {
  border: 1px solid var(--line-soft);
}

/* ---------- Press kit ---------- */

.press-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
  flex: 1;
}

.press-body h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.press-body p {
  color: var(--muted);
  line-height: 1.6;
}

.press-body ul {
  line-height: 1.9;
  padding-left: 20px;
  color: var(--muted);
}

.press-header {
  padding: 28px 48px;
}

.press-mark {
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.back-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
}

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
  .profile-hero {
    padding: 24px 16px 56px;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 16px;
  }

  .subscribe-input:first-of-type {
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .booking-header {
    padding: 20px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .option-grid--3 {
    grid-template-columns: 1fr;
  }

  .details-row {
    grid-template-columns: 1fr;
  }

  .summary-actions {
    flex-direction: column;
  }

  .payment-card {
    padding: 28px 20px;
  }

  .contact-name-email-row {
    flex-direction: column;
  }

  .contact-form,
  .contact-sent {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   Money Wound quiz result page — deliberately its own visual identity
   (literal hex colors, different font stack), not the site's oklch palette.
   Matches the "MoneyWoundResult" design in Claude Design as authored.
   ========================================================================== */

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

body.wound-page {
  background: #F1F4F6;
  color: #0B0C0E;
  font-family: -apple-system, "Inter", Helvetica, Arial, sans-serif;
}

.wound-hero {
  background: #0B0C0E;
  color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.wound-hero-rule {
  width: 120px;
  height: 1px;
  background: #333538;
  margin-bottom: 40px;
}

.wound-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9AA1A6;
  margin-bottom: 24px;
  animation: fadein 0.5s ease;
}

.wound-icon-box {
  width: 36px;
  height: 36px;
  border: 2px solid #FFFFFF;
  border-radius: 4px;
  margin-bottom: 24px;
}

.wound-hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  max-width: 680px;
  margin: 0 0 40px;
  animation: fadein 0.6s ease;
}

.wound-belief {
  font-size: 28px;
  font-weight: 700;
  max-width: 600px;
  margin: 0 auto 16px;
}

.wound-sub {
  font-size: 14px;
  color: #6B7378;
}

.wound-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 0;
}

.wound-section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7378;
  margin-bottom: 20px;
}

.wound-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 80px;
}

.wound-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.wound-bar-score {
  color: #6B7378;
}

.wound-bar-track {
  height: 10px;
  background: #D7DCE0;
  border-radius: 99px;
  overflow: hidden;
}

.wound-bar-fill {
  height: 100%;
  border-radius: 99px;
}

.wound-h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 20px;
}

.wound-h2--sm {
  font-size: 22px;
  margin-bottom: 16px;
}

.wound-h2--light {
  color: #FFFFFF;
}

.wound-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.wound-paragraphs p {
  margin: 0;
}

.wound-list {
  padding-left: 20px;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.wound-pair-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 64px;
}

.wound-unlock-card {
  background: #0B0C0E;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 40px 32px;
  margin-bottom: 56px;
}

.wound-unlock-note {
  font-size: 15px;
  color: #9AA1A6;
  line-height: 1.6;
  margin: 0 0 28px;
}

.wound-unlock-form {
  display: flex;
  background: #FFFFFF;
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
}

.wound-unlock-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 999px;
  color: #0B0C0E;
  min-width: 0;
}

.wound-unlock-input:first-of-type {
  border-right: 1px solid #D7DCE0;
}

.wound-unlock-btn {
  background: #0B0C0E;
  color: #FFFFFF;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.wound-unlock-btn:hover {
  opacity: 0.85;
}

.wound-unlock-fine {
  font-size: 12px;
  color: #6B7378;
  margin-top: 14px;
}

.wound-unlock-sent {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
}

.wound-unlock-sent.is-visible {
  display: flex;
}

.wound-unlock-sent::before {
  content: "\2713";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #3F7A6A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.wound-unlock-fine a {
  color: #9AA1A6;
  text-decoration: underline;
}

.wound-gated {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease;
}

.wound-gated.is-unlocked {
  filter: none;
  pointer-events: auto;
  user-select: auto;
}

.wound-cost {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 48px;
}

.wound-lies {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.wound-lie-card {
  background: #E4E7EA;
  border-radius: 8px;
  padding: 20px 24px;
}

.wound-lie-text {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.wound-truth-text {
  font-size: 14px;
  color: #4A6D95;
}

.wound-protocol-note {
  font-size: 14px;
  color: #6B7378;
  margin: 0 0 20px;
}

.wound-protocol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.wound-protocol-row {
  display: flex;
  gap: 16px;
}

.wound-protocol-n {
  font-size: 15px;
  font-weight: 800;
  color: #4A6D95;
  flex-shrink: 0;
  width: 24px;
}

.wound-protocol-text {
  font-size: 15px;
  line-height: 1.6;
}

.wound-script {
  border: 1px solid #0B0C0E;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
}

.wound-script-note {
  text-align: center;
  font-size: 14px;
  color: #6B7378;
  margin-bottom: 48px;
}

.wound-generational {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 64px;
}

.wound-cta {
  background: #0B0C0E;
  color: #FFFFFF;
  padding: 88px 24px;
  text-align: center;
}

.wound-cta-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A6D95;
  margin-bottom: 20px;
}

.wound-cta-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 24px;
}

.wound-cta-body {
  font-size: 16px;
  color: #9AA1A6;
  max-width: 560px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.wound-cta-line {
  font-size: 16px;
  font-weight: 600;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.wound-cta-btn {
  display: inline-block;
  background: #FFFFFF;
  color: #0B0C0E;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 999px;
  margin-bottom: 20px;
  transition: opacity 0.2s ease;
}

.wound-cta-btn:hover {
  color: #0B0C0E;
  opacity: 0.85;
}

.wound-cta-yt {
  color: #6B7378;
  font-size: 14px;
}

.wound-footer {
  text-align: center;
  padding: 28px 24px;
  background: #F1F4F6;
  font-size: 13px;
  color: #6B7378;
}

@media (max-width: 640px) {
  .wound-hero-title {
    font-size: 30px;
  }

  .wound-belief {
    font-size: 22px;
  }

  .wound-body {
    padding-top: 56px;
  }

  .wound-unlock-form {
    flex-direction: column;
    border-radius: 16px;
  }

  .wound-unlock-input:first-of-type {
    border-right: none;
    border-bottom: 1px solid #D7DCE0;
  }

  .wound-unlock-card {
    padding: 28px 20px;
  }

  .wound-cta-title {
    font-size: 26px;
  }

  .wound-script {
    padding: 24px 20px;
    font-size: 17px;
  }
}

/* ==========================================================================
   Money Wound landing page (intro + archetype cards)
   ========================================================================== */

.wound-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.wound-nav-brand {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
}

.wound-nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}

.wound-nav-links a {
  color: #9AA1A6;
}

.wound-landing-hero {
  background: #0B0C0E;
  color: #FFFFFF;
  padding: 24px 24px 100px;
}

.wound-landing-hero-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.wound-landing-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.wound-landing-sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
  line-height: 1.6;
  color: #9AA1A6;
  margin: 0 auto 36px;
  max-width: 56ch;
}

.wound-landing-sub p {
  margin: 0;
}

.wound-landing-fine {
  font-size: 13px;
  color: #6B7378;
  margin-top: 20px;
}

.wound-landing-intro {
  padding: 88px 24px;
  background: #F1F4F6;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wound-landing-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #0B0C0E;
  margin: 0;
}

.wound-archetypes-section {
  padding: 20px 24px 96px;
  background: #F1F4F6;
}

.wound-archetypes-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.wound-archetype-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.wound-archetype-card {
  background: #E4E7EA;
  color: #0B0C0E;
  border-radius: 8px;
  padding: 28px 24px;
}

.wound-archetype-card--dark {
  background: #0B0C0E;
  color: #FFFFFF;
}

.wound-archetype-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #D7DCE0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wound-archetype-card--dark .wound-archetype-icon {
  background: #1c1d20;
}

.wound-archetype-icon::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid #0B0C0E;
  border-radius: 3px;
}

.wound-archetype-card--dark .wound-archetype-icon::after {
  border-color: #FFFFFF;
}

.wound-archetype-name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}

.wound-archetype-rule {
  height: 1px;
  background: #D7DCE0;
  margin-bottom: 14px;
}

.wound-archetype-card--dark .wound-archetype-rule {
  background: #333538;
}

.wound-archetype-belief {
  font-size: 15px;
  font-weight: 600;
  color: #4A6D95;
  margin-bottom: 8px;
  line-height: 1.4;
}

.wound-archetype-card--dark .wound-archetype-belief {
  color: #8fb0d6;
}

.wound-steps-section {
  padding: 20px 24px 96px;
  background: #F1F4F6;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.wound-step-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4A6D95;
  margin-bottom: 10px;
}

.wound-step-text {
  font-size: 18px;
  font-weight: 700;
}

.wound-step-sub {
  font-size: 14px;
  color: #6B7378;
  line-height: 1.5;
  margin-top: 8px;
}

.wound-landing-cta-line {
  font-size: 17px;
  color: #9AA1A6;
  margin: 0 0 24px;
}

@media (max-width: 640px) {
  .wound-landing-title {
    font-size: 32px;
  }

  .wound-archetype-grid,
  .wound-steps-section {
    grid-template-columns: 1fr;
  }

  .wound-landing-hero {
    padding: 24px 20px 72px;
  }

  .wound-nav {
    margin-bottom: 40px;
  }
}

/* ==========================================================================
   Money Wound quiz page — full-screen dark, one question at a time
   ========================================================================== */

body.quiz-page {
  background: #0B0C0E;
  color: #FFFFFF;
}

.quiz-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.quiz-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #FFFFFF;
  z-index: 10;
  transition: width 0.3s ease;
  width: 0%;
}

.quiz-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #9AA1A6;
  font-size: 22px;
  z-index: 10;
}

.quiz-phase {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  animation: fadein 0.3s ease;
}

.quiz-phase[hidden] {
  display: none;
}

.quiz-resume-text {
  font-size: 20px;
  margin: 0 0 24px;
}

.quiz-resume-actions {
  display: flex;
  gap: 16px;
}

.quiz-btn-primary {
  background: #FFFFFF;
  color: #0B0C0E;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.quiz-btn-secondary {
  background: none;
  border: 1px solid #6B7378;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.quiz-interstitial-text {
  font-size: 24px;
  font-weight: 600;
  color: #9AA1A6;
  max-width: 520px;
  line-height: 1.4;
}

.quiz-question-num {
  font-size: 13px;
  color: #6B7378;
  margin-bottom: 28px;
}

.quiz-question-text {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 640px;
  text-align: center;
  margin: 0 0 48px;
}

.quiz-scale-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.quiz-scale-label {
  font-size: 13px;
  width: 70px;
}

.quiz-scale-label--left {
  color: #9AA1A6;
  text-align: right;
}

.quiz-scale-label--right {
  color: #4A6D95;
  text-align: left;
}

.quiz-circles {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quiz-circle {
  border-radius: 50%;
  border-style: solid;
  border-width: 2px;
  padding: 0;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.quiz-na-link {
  background: none;
  border: none;
  color: #6B7378;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 8px;
  font-family: inherit;
}

.quiz-tip {
  font-size: 12px;
  color: #6B7378;
  margin-top: 28px;
}

.quiz-back-btn {
  position: absolute;
  bottom: 28px;
  left: 24px;
  background: none;
  border: none;
  color: #6B7378;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
}

@media (max-width: 480px) {
  .quiz-question-text {
    font-size: 22px;
  }

  .quiz-scale-row {
    transform: scale(0.82);
  }

  .quiz-scale-label {
    width: 54px;
  }

  .quiz-resume-actions {
    flex-direction: column;
    width: 100%;
    max-width: 240px;
  }
}

/* ==========================================================================
   Resources page
   ========================================================================== */

.resources-hero {
  background: #0B0C0E;
  color: #FFFFFF;
  padding: 24px 24px 64px;
}

.resources-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.resources-title {
  font-size: 38px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.15;
}

.resources-sub {
  font-size: 16px;
  line-height: 1.6;
  color: #9AA1A6;
  margin: 0;
}

.resources-grid {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.resources-card {
  display: block;
  padding: 28px 24px;
  border-radius: 4px;
  background: #E4E7EA;
  color: #0B0C0E;
}

.resources-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #D7DCE0;
}

.resources-card-title {
  font-size: 19px;
  font-weight: 700;
  margin: 18px 0 8px;
}

.resources-card-desc {
  font-size: 14px;
  color: #6B7378;
  line-height: 1.5;
}

.resources-card-arrow {
  font-size: 18px;
  margin-top: 18px;
}

@media (max-width: 640px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resources-title {
    font-size: 30px;
  }
}
