:root {
  --bg: #0b0b0c;
  --text: #d8c3a5;
  --muted: #b9a690;
  --maxw: 820px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Lora", ui-serif, Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: grid;
  place-items: center;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(8, 8, 9, 0.3) 100%
  );
  opacity: 0.8;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
  background-size: 220px 220px;
  mix-blend-mode: overlay;
  opacity: 0.035;
}

main {
  width: min(92vw, var(--maxw));
  padding: 6vh 4vw;
}

h1 {
  margin: 0 0 1rem 0;
  font-weight: 600;
  font-size: clamp(2rem, 4vw + 1rem, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

h2 {
  margin: 1.2rem 0 0.5rem;
  font-weight: 500;
  font-size: clamp(1.2rem, 1.4vw + 0.9rem, 1.6rem);
  color: var(--muted);
}

p {
  margin: 0 0 0.9rem 0;
  font-size: clamp(1.1rem, 1.2vw + 0.8rem, 1.4rem);
  line-height: 1.55;
}

.underline {
  font-style: normal;
  text-decoration: none;
  color: #7d3022;
  background-image: linear-gradient(
    180deg,
    #9a3a27 0%,
    #7d3022 60%,
    #5a2218 100%
  );
}

@supports (-webkit-background-clip: text) {
  .underline {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

@supports (background-clip: text) {
  .underline {
    background-clip: text;
    color: transparent;
  }
}

.subtle {
  color: var(--muted);
}

hr {
  border: none;
  border-top: 1px solid rgba(216, 195, 165, 0.22);
  margin: 2.2rem auto 1.9rem;
  width: min(88%, 720px);
}

blockquote {
  margin: 1rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(216, 195, 165, 0.35);
}

blockquote p {
  margin: 0 0 0.4rem 0;
}
cite {
  display: block;
  color: var(--muted);
  font-style: normal;
  font-size: 0.95em;
  letter-spacing: 0.02em;
}

@media (min-height: 800px) {
  main {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }
}

/* Supporting section (index) */
.supporting {
  margin-top: 0.4rem;
}
.supporting h2 {
  margin: 0 0 0.6rem 0;
  font-weight: 500;
  font-size: clamp(1.1rem, 1vw + 0.8rem, 1.3rem);
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.supporting blockquote + blockquote {
  margin-top: 1.6rem;
}

/* Language selector */
.lang-selector {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  font-family: inherit;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 195, 165, 0.25);
  background: rgba(16, 16, 18, 0.6);
  color: #f0e7dc;
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 120ms ease, background 160ms ease, box-shadow 160ms ease,
    border-color 160ms ease;
}
.lang-toggle:hover {
  transform: translateY(-1px);
  background: rgba(24, 24, 26, 0.7);
  border-color: rgba(216, 195, 165, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}
.lang-toggle:active {
  transform: translateY(0);
}

.lang-arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 200ms ease;
  margin-left: 2px;
}
.lang-selector.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: rgba(16, 16, 18, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border: 1px solid rgba(216, 195, 165, 0.25);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.95);
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
}
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #f0e7dc;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 150ms ease, color 150ms ease;
  border-radius: 8px;
  margin: 4px;
}
.lang-option:hover {
  background: rgba(216, 195, 165, 0.12);
  color: #fff;
}
.lang-option.active {
  background: rgba(216, 195, 165, 0.18);
  color: #fff;
}
.lang-flag {
  font-size: 1.1rem;
  width: 18px;
  text-align: center;
}

/* Back link */
a.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 195, 165, 0.25);
  background: rgba(16, 16, 18, 0.6);
  color: #f0e7dc;
  text-decoration: none;
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
}
a.back:hover {
  border-color: rgba(216, 195, 165, 0.35);
  background: rgba(24, 24, 26, 0.7);
}

/* Q&A / callouts */
.objection {
  background: rgba(216, 195, 165, 0.09);
  border-left: 2px solid rgba(216, 195, 165, 0.45);
  padding: 1.05rem 1.2rem 1.05rem 2.6rem;
  margin: 1.4rem 0 1rem;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  font-size: clamp(1.05rem, 1.2vw + 0.8rem, 1.3rem);
  line-height: 1.6;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.response {
  background: rgba(216, 195, 165, 0.045);
  border-left: 2px solid rgba(216, 195, 165, 0.28);
  padding: 1.1rem 1.2rem 1rem;
  margin: 1rem 0;
  border-radius: 0 10px 10px 0;
  position: relative;
  overflow: hidden;
}
.response .verse {
  margin: 0;
  padding-left: 0;
  border-left: none;
}
.response .verse > p:first-child {
  margin-top: 0;
}
.response .verse + .verse {
  margin-top: 2rem;
}

/* Structured verse blocks */
.verse {
  margin-top: 1.2rem;
  padding-left: 0;
  border-left: none;
}
.verse p {
  margin: 0.35rem 0;
}
.vnum {
  color: var(--text);
  font-size: 0.85em;
  vertical-align: super;
  margin-right: 6px;
}

.quotation {
  margin: 1.1rem auto;
  max-width: clamp(40ch, 66%, 66ch);
  padding: 0 5ch;
  display: grid;
  row-gap: 0.4rem;
}
.quote-left {
  text-align: left;
  justify-self: start;
  margin: 0.3rem 0;
  margin-left: -1ch;
}
.quote-right {
  text-align: right;
  justify-self: end;
  margin: 0.3rem 0;
}
.foot {
  font-style: italic;
  font-size: 0.8em;
  vertical-align: super;
  color: var(--text);
  margin-left: 2px;
}

/* Index artwork */
.artwork {
  width: min(92vw, var(--maxw));
  margin: 2vh auto 0;
  padding: 1vh 0;
  display: grid;
  place-items: center;
}
.artwork img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border: 1px solid rgba(216, 195, 165, 0.22);
  background: #111;
}
.artwork figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* Index FAQ */
.faq {
  width: 100%;
  margin: 2rem auto 0;
}
.faq h2 {
  margin: 0 0 0.6rem 0;
  font-weight: 500;
  font-size: clamp(1.1rem, 1vw + 0.8rem, 1.3rem);
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}
.faq-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(216, 195, 165, 0.25);
  background: rgba(16, 16, 18, 0.6);
  color: #f0e7dc;
  text-decoration: none;
  backdrop-filter: saturate(160%) blur(8px);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
  transition: transform 120ms ease, background 160ms ease,
    border-color 160ms ease, box-shadow 160ms ease;
}
.faq .faq-card + .faq-card {
  margin-top: 12px;
}
.faq-card:hover {
  transform: translateY(-1px);
  background: rgba(24, 24, 26, 0.7);
  border-color: rgba(216, 195, 165, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}
.faq-title {
  font-size: clamp(1.05rem, 0.9vw + 0.8rem, 1.25rem);
  letter-spacing: 0.02em;
}
.faq-arrow {
  font-size: 1.3rem;
  opacity: 0.85;
  transition: transform 160ms ease, opacity 160ms ease;
}
.faq-card:hover .faq-arrow {
  transform: translateX(2px);
  opacity: 1;
}
/* Misc */
.lead-question {
  font-size: clamp(1.2rem, 1.4vw + 0.9rem, 1.6rem);
}

/* --- AUDIT / COURTROOM ADDITIONS --- */

/* --- THE "SMART" INTERACTIVE CARD --- */

.audit-trigger,
.audit-trigger:visited {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin: 2.5rem 0;
  padding: 0; /* Padding moved to children for layout control */

  /* GLASS & MATERIAL BASE */
  background: linear-gradient(
    145deg,
    rgba(22, 22, 24, 0.9) 0%,
    rgba(12, 12, 14, 0.95) 100%
  );
  border: 1px solid rgba(216, 195, 165, 0.2);
  border-radius: 12px;

  text-decoration: none;
  cursor: pointer; /* THE CURSOR IS CRITICAL */
  overflow: hidden;

  /* PHYSICS ENGINE (Smooth animations) */
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    /* Bouncy lift */ border-color 0.3s ease, box-shadow 0.3s ease;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* 1. CONTENT AREA */
.trigger-content {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  z-index: 2;
}

/* 2. THE SEARCHLIGHT (Atmosphere) */
.audit-trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(216, 195, 165, 0.1) 50%,
    transparent 80%
  );
  transform: skewX(-25deg);
  animation: searchlightSweep 5s ease-in-out infinite;
  pointer-events: none;
}

/* 3. THE "ACTION BAR" (The Click Cue) */
.action-bar {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(216, 195, 165, 0.1);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.action-text {
  font-family: inherit;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b9a690;
  transition: color 0.3s ease;
}

/* The Smart Arrow */
.action-arrow {
  color: #f0e7dc;
  font-size: 1.1rem;
  opacity: 0.6;
  transform: translateX(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 4. TEXT STYLES */
.audit-trigger #auditMain {
  display: block;
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f0e7dc;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.audit-trigger .audit-sub {
  color: var(--muted);
  font-size: 0.8rem;
}

/* --- INTERACTION STATES (Where the Magic Happens) --- */

/* HOVER: Lift & Invite */
.audit-trigger:hover {
  transform: translateY(-5px); /* Physical Lift */
  border-color: rgba(216, 195, 165, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(216, 195, 165, 0.1);
}

.audit-trigger:hover .action-bar {
  background: rgba(216, 195, 165, 0.08); /* Light up the bottom area */
}

.audit-trigger:hover .action-text {
  color: #f0e7dc; /* Brighten text */
}

.audit-trigger:hover .action-arrow {
  opacity: 1;
  transform: translateX(5px); /* SLIDE THE ARROW RIGHT */
  color: #f0e7dc;
}

/* ACTIVE: The "Click" Feel */
.audit-trigger:active {
  transform: translateY(-2px) scale(0.98); /* Press down effect */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border-color: rgba(216, 195, 165, 0.6);
}

/* Keyframes */
@keyframes searchlightSweep {
  0% {
    left: -150%;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    left: 150%;
    opacity: 0;
  }
  100% {
    left: 150%;
    opacity: 0;
  }
}

/* Courtroom Layout */
.courtroom-scene {
  margin-top: 2rem;
  min-height: 400px; /* Prevents jumping */
  display: flex;
  flex-direction: column;
}

.court-meta {
  border-bottom: 1px solid rgba(216, 195, 165, 0.15);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.big-statement {
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.5;
  margin-bottom: 2rem;
  color: #f0e7dc;
}

/* Choice Buttons (Styled like your FAQ cards) */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.choice-grid.single {
  grid-template-columns: 1fr;
}

.choice-btn {
  padding: 1.2rem;
  background: rgba(216, 195, 165, 0.05);
  border: 1px solid rgba(216, 195, 165, 0.25);
  border-radius: 8px;
  color: var(--text);
  font-family: "Lora", serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.4;
}

.choice-btn:hover {
  background: rgba(216, 195, 165, 0.15);
  border-color: rgba(216, 195, 165, 0.5);
  transform: translateY(-1px);
}

/* The 'Mic Drop' Logic Box */
.logic-box {
  background: rgba(20, 20, 22, 0.8);
  border-left: 3px solid #7d3022; /* Matches your Red Underline color */
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text);
  border-radius: 0 8px 8px 0;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Verdict Stamp */
.verdict-stamp {
  font-family: sans-serif; /* Contrast to Lora */
  font-size: 3rem;
  font-weight: 900;
  color: #7d3022; /* Your Red Accent */
  text-transform: uppercase;
  border: 4px solid #7d3022;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  transform: rotate(-8deg);
  margin: 2rem 0;
  opacity: 0;
  animation: stamp-slam 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes stamp-slam {
  from {
    opacity: 0;
    transform: scale(1.5) rotate(0deg);
  }
  to {
    opacity: 0.9;
    transform: scale(1) rotate(-8deg);
  }
}

/* Smooth Fade In */
.fade-in {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- NEW VERDICT STYLES --- */

/* The Certificate of Debt */
.debt-record {
  background: #f0e7dc;
  color: #1a1a1a;
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transform: rotate(-1deg);
  position: relative;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.debt-record::before {
  content: ""; /* Pin hole effect */
  position: absolute;
  top: -10px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #111;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #444;
}

.debt-line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #999;
  padding: 4px 0;
}

.debt-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #000;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
}

/* The Stamp (Enhanced) */
.verdict-stamp {
  font-family: sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #a33;
  text-transform: uppercase;
  border: 6px solid #a33;
  display: inline-block;
  padding: 0.2rem 2rem;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg) scale(1.5);
  opacity: 0;
  mix-blend-mode: multiply; /* Makes it look inked on paper */
  animation: stamp-slam 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards
    0.5s;
}

@keyframes stamp-slam {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3) rotate(0deg);
  }
  to {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1) rotate(-15deg);
  }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

/* --- UPDATED FINAL ANIMATION STYLES --- */

/* The Receipt Container */
.debt-record {
  background: #f0e7dc;
  color: #1a1a1a;
  padding: 2rem;
  margin: 1.5rem auto 4rem auto; /* Large bottom margin prevents overlap */
  font-family: "Courier New", Courier, monospace;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  transform: rotate(-1deg);
  position: relative;
  max-width: 90%;
  z-index: 1;
  transition: transform 0.2s ease; /* Allows for shake effect */
}

/* The Heavy Red Stamp */
.paid-stamp {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; /* Thick, heavy font */
  font-size: clamp(3rem, 5vw, 4.5rem); /* Responsive size */
  color: #a33; /* Dark blood red */
  border: 8px solid #a33;
  padding: 0.5rem 1rem;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);

  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  white-space: nowrap;

  opacity: 0; /* Hidden by default */
  z-index: 20;
  mix-blend-mode: multiply; /* Looks like ink on paper */
  pointer-events: none;
}

/* The "Slam" Animation */
.stamp-slam-effect {
  animation: slam-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slam-in {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5) rotate(0deg); /* Starts huge */
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.9) rotate(-15deg); /* Hits hard */
  }
  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1) rotate(-15deg); /* Settles */
  }
}

/* Strike-through effect for the list items */
.crossed-out {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: #777;
  opacity: 0.6;
  transition: all 0.5s ease;
}

/* Fade out the Guilty stamp */
.guilty-fade {
  opacity: 0 !important;
  transition: opacity 0.2s ease; /* Disappears instantly when Paid hits */
}

/* --- THE BAD ENDING STYLE --- */
.condemned-box {
  background: rgba(20, 0, 0, 0.6);
  border: 1px solid #7d3022;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

.scary-text {
  color: #ff4444;
  font-family: "Courier New", Courier, monospace;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* --- PRACTICAL STEPS (THE RESULT) --- */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 2rem;
  width: 100%;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  text-decoration: none;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Make the non-links (Clean Slate) look slightly different */
a.step-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #d8c3a5;
  transform: translateX(4px);
}

.step-icon {
  font-size: 1.5rem;
  opacity: 0.8;
  min-width: 40px;
  text-align: center;
}

.step-content strong {
  display: block;
  color: #f0e7dc;
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.step-content span {
  display: block;
  color: #999;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* Special styling for the 'Clean Slate' (Mental Relief) */
.relief-card {
  border-left: 3px solid #d8c3a5;
  background: linear-gradient(
    90deg,
    rgba(216, 195, 165, 0.05) 0%,
    transparent 100%
  );
  cursor: default; /* Not a link */
}

/* --- ELEGANT ENDING STYLES --- */

/* 1. The Scripture Statement (Not a button) */
.final-verse-container {
  margin: 2.5rem 0 2rem 0;
  text-align: center;
  position: relative;
}

.final-verse-container::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #7d3022; /* The Red Accent */
  margin: 0 auto 1.5rem auto;
}

.final-verse-text {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #f0e7dc;
  line-height: 1.6;
}

.final-verse-ref {
  display: block;
  margin-top: 0.8rem;
  font-family: "Courier New", Courier, monospace; /* Legal font */
  font-size: 0.85rem;
  color: #b9a690;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* 2. The Elegant Pathways (Links) */
.pathways-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
}

.elegant-pathway {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(216, 195, 165, 0.15); /* Very subtle divider */
  text-decoration: none;
  transition: all 0.4s ease;
  group: group;
}

/* Hover Effect: Text brightens, arrow moves */
.elegant-pathway:hover {
  border-bottom-color: rgba(216, 195, 165, 0.5);
  padding-left: 10px; /* Slight slide right */
}

.path-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.path-title {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  color: #d8c3a5;
  transition: color 0.3s ease;
}

.elegant-pathway:hover .path-title {
  color: #fff;
}

.path-desc {
  font-family: sans-serif;
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 0.02em;
}

.path-arrow {
  color: #7d3022;
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.elegant-pathway:hover .path-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Home Link (Subtle footer) */
.home-link-simple {
  display: inline-block;
  margin-top: 3rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
  border-bottom: 1px dotted #555;
  transition: color 0.3s;
}
.home-link-simple:hover {
  color: #888;
  border-bottom-color: #888;
}

/* Severance Container */
.severance-container {
  margin: 2rem 0;
  text-align: center;
}

.severance-line {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #f0e7dc;
}

.severance-divider {
  margin: 2.5rem 0 2.5rem 0;
  border: none;
  border-top: 2px solid rgba(216, 195, 165, 0.3);
  opacity: 0.5;
}

.severance-rebuke {
  background: rgba(125, 48, 34, 0.15);
  border-left: 3px solid #7d3022;
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #d8c3a5;
  border-radius: 0 8px 8px 0;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
  font-size: 1.1rem;
  line-height: 1.6;
}

.realization-btn {
  background: rgba(216, 195, 165, 0.1);
  border: 1px solid rgba(216, 195, 165, 0.3);
  color: #d8c3a5;
  padding: 1rem 2rem;
  font-family: "Lora", serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.realization-btn:hover {
  background: rgba(216, 195, 165, 0.2);
  border-color: rgba(216, 195, 165, 0.5);
  color: #f0e7dc;
}
