:root {
  --ivory-50: #fffdf8;
  --ivory-100: #f8f3ea;
  --ivory-200: #efe7da;
  --ink-950: #0d1210;
  --ink-900: #111715;
  --ink-700: #303832;
  --ink-500: #6f716b;
  --forest-950: #062619;
  --forest-900: #02351f;
  --forest-800: #06452a;
  --forest-700: #07592e;
  --forest-100: #e7ece4;
  --stone-300: #d8cfc2;
  --stone-200: #e7ded1;
  --brass-600: #b8864f;
  --brass-300: #d7b98e;
  --error-600: #b94a48;
  --success-100: #edf7ef;
  --success-800: #17492c;
  --white: #ffffff;
  --shadow-lg: 0 34px 90px rgba(17, 23, 21, 0.14);
  --shadow-md: 0 18px 48px rgba(17, 23, 21, 0.10);
  --shadow-sm: 0 10px 24px rgba(17, 23, 21, 0.07);
  --radius-3xl: 34px;
  --radius-2xl: 26px;
  --radius-xl: 20px;
  --radius-lg: 16px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  background:
    radial-gradient(circle at 12% 8%, rgba(184, 134, 79, 0.18), transparent 30rem),
    radial-gradient(circle at 86% 6%, rgba(6, 69, 42, 0.12), transparent 32rem),
    linear-gradient(135deg, var(--ivory-50) 0%, var(--ivory-100) 54%, #f1eadf 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(17, 23, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 21, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, #000 0 0.5px, transparent 0.75px),
    radial-gradient(circle at 70% 20%, #000 0 0.5px, transparent 0.75px);
  background-size: 18px 18px, 26px 26px;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(6, 69, 42, 0.16);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--forest-800);
  box-shadow: var(--shadow-sm);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand-mark.small {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  box-shadow: none;
}

.brand-mark.small svg {
  width: 21px;
  height: 21px;
}

.brand-type {
  display: grid;
  gap: 0;
  line-height: 1.02;
}

.brand-type strong {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.brand-type strong:first-child {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-type strong:last-child {
  color: var(--ink-500);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink-500);
  font-size: 0.88rem;
  font-weight: 700;
}

.header-links a,
.footer-links a {
  text-decoration: none;
}

.header-links a:hover,
.footer-links a:hover {
  color: var(--forest-800);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.98fr);
  gap: 48px;
  align-items: start;
  padding: 56px 0 60px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--forest-700);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker.dark {
  color: var(--brass-300);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing:-0.01em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(3.85rem, 7.1vw, 7rem);
  font-weight: 400;
  line-height: 0.98;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 26px;
  color: var(--ink-700);
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
  line-height: 1.48;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
  margin-bottom: 34px;
}

.trust-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(216, 207, 194, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink-700);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(17, 23, 21, 0.035);
}

.trust-chips span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--forest-700);
}

.signature-visual {
  position: relative;
  min-height: 238px;
  max-width: 680px;
  border: 1px solid rgba(216, 207, 194, 0.7);
  border-radius: var(--radius-3xl);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.86), rgba(248, 243, 234, 0.64)),
    radial-gradient(circle at 20% 18%, rgba(184, 134, 79, 0.16), transparent 16rem);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.signature-visual::before {
  content: "one path";
  position: absolute;
  left: 24px;
  bottom: 18px;
  color: rgba(17, 23, 21, 0.28);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.path-card {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(216, 207, 194, 0.9);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.home-card {
  left: 30px;
  top: 66px;
}

.pro-card {
  right: 30px;
  top: 66px;
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  color: var(--brass-600);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-900);
  font-size: 1rem;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.path-card small {
  display: block;
  color: var(--ink-500);
  font-size: 0.78rem;
  line-height: 1.35;
}

.path-line {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 40px;
  width: 520px;
  height: 150px;
  transform: translateX(-50%);
  overflow: visible;
}

.path-line-muted {
  stroke: rgba(216, 207, 194, 0.92);
  stroke-width: 2;
}

.path-line-active {
  stroke: var(--forest-700);
  stroke-width: 3;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawLine 1.3s ease 0.35s forwards;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.secure-node {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 91px;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--forest-800);
  color: var(--ivory-50);
  transform: translateX(-50%);
  box-shadow: 0 18px 36px rgba(6, 69, 42, 0.24);
}

.secure-node svg {
  width: 28px;
  height: 28px;
}

.noise-card {
  position: absolute;
  z-index: 1;
  padding: 9px 12px;
  border: 1px solid rgba(216, 207, 194, 0.65);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.46);
  color: rgba(48, 56, 50, 0.44);
  font-size: 0.76rem;
  font-weight: 850;
  filter: blur(0.2px);
  transform: rotate(var(--r));
  animation: fadeNoise 3.2s ease-in-out infinite alternate;
}

.noise-card-a {
  --r: -7deg;
  left: 46%;
  top: 30px;
}

.noise-card-b {
  --r: 5deg;
  left: 28%;
  bottom: 38px;
  animation-delay: 0.4s;
}

.noise-card-c {
  --r: -2deg;
  right: 20%;
  bottom: 34px;
  animation-delay: 0.8s;
}

@keyframes fadeNoise {
  from {
    opacity: 0.7;
    transform: translateY(0) rotate(var(--r));
  }
  to {
    opacity: 0.32;
    transform: translateY(6px) rotate(var(--r));
  }
}

.review-card {
  position: sticky;
  top: 24px;
  padding: 30px 30px 34px;
  border: 1px solid rgba(216, 207, 194, 0.92);
  border-radius: var(--radius-3xl);
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.86)),
    radial-gradient(circle at 80% 0%, rgba(6, 69, 42, 0.1), transparent 18rem);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 26px;
}

.review-top h2 {
  max-width: 410px;
  margin-bottom: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 0.98;
}

.review-badge {
  display: inline-flex;
  white-space: nowrap;
  padding: 8px 11px;
  border: 1px solid rgba(184, 134, 79, 0.38);
  border-radius: 999px;
  background: rgba(184, 134, 79, 0.08);
  color: var(--forest-800);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 24px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  color: var(--ink-500);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

#step-title {
  color: var(--forest-800);
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: var(--ivory-200);
  overflow: hidden;
}

#progress-bar {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest-800), var(--forest-700));
  transition: width 0.26s ease;
}

.form-step {
  display: none;
  animation: stepIn 0.26s ease;
}

.form-step.is-active {
  display: grid;
  gap: 22px;
}

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

.choice-fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.choice-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink-900);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.choice-fieldset.compact {
  gap: 10px;
}

.choice-fieldset.compact .choice-card span {
  min-height: 50px;
  font-size: 0.84rem;
}

[hidden] {
  display: none !important;
}

.conditional-block {
  display: grid;
  gap: 18px;
}

.scenario-preview {
  padding: 15px 16px;
  border: 1px solid rgba(6, 69, 42, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(231, 236, 228, 0.9), rgba(255, 253, 248, 0.78));
}

.scenario-preview span {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-800);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scenario-preview p {
  margin-bottom: 0;
  color: var(--ink-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--stone-300);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 800;
  transition: border-color 0.16s ease, background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.choice-card:hover span {
  transform: translateY(-1px);
  border-color: rgba(6, 69, 42, 0.36);
  box-shadow: 0 10px 20px rgba(17, 23, 21, 0.05);
}

.choice-card input:checked + span {
  border-color: rgba(6, 69, 42, 0.56);
  background: var(--forest-100);
  color: var(--forest-900);
  box-shadow: inset 0 0 0 1px rgba(6, 69, 42, 0.15);
}

.choice-card.is-disabled-choice {
  cursor: not-allowed;
}

.choice-card.is-disabled-choice span {
  opacity: 0.34;
  filter: grayscale(0.35);
  background: rgba(239, 231, 218, 0.5);
  border-color: rgba(216, 207, 194, 0.55);
  box-shadow: none;
  transform: none;
}

.choice-card.is-disabled-choice:hover span {
  transform: none;
  border-color: rgba(216, 207, 194, 0.55);
  box-shadow: none;
}

.field {
  display: grid;
  gap: 8px;
}

label,
.field label {
  color: var(--ink-900);
  font-size: 0.92rem;
  font-weight: 850;
}

label span,
label strong {
  color: var(--error-600);
}

label small {
  color: var(--ink-500);
  font-weight: 650;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--stone-300);
  border-radius: 15px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--ink-900);
  outline: none;
  padding: 14px 14px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(111, 113, 107, 0.78);
}

select {
  cursor: pointer;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(6, 69, 42, 0.11);
}

.consent {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 12px;
  color: var(--ink-700);
  font-size: 0.79rem;
  font-weight: 550;
  line-height: 1.45;
}

.consent input {
  width: 21px;
  height: 21px;
  margin: 2px 0 0;
  accent-color: var(--forest-800);
}

.form-status {
  display: none;
  padding: 12px 13px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-error {
  display: block;
  border: 1px solid rgba(185, 74, 72, 0.28);
  background: rgba(185, 74, 72, 0.08);
  color: #8f302e;
}

.form-status.is-success {
  display: block;
  border: 1px solid rgba(23, 73, 44, 0.22);
  background: var(--success-100);
  color: var(--success-800);
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.submit-button,
.ghost-button {
  min-height: 56px;
  border-radius: 15px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  width: auto;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--forest-800), var(--forest-700));
  color: var(--ivory-50);
  box-shadow: 0 18px 34px rgba(6, 69, 42, 0.22);
}

.ghost-button {
  padding: 0 18px;
  border: 1px solid var(--stone-300);
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink-700);
}

.submit-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.submit-button:hover {
  filter: brightness(1.03);
  box-shadow: 0 22px 42px rgba(6, 69, 42, 0.25);
}

.submit-button:disabled {
  cursor: not-allowed;
  opacity: 1;
  transform: none;
  background: linear-gradient(135deg, #d8cfc2, #c9c0b4);
  color: rgba(17, 23, 21, 0.55);
  box-shadow: none;
}

.safe-note {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 0 84px;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: var(--stone-300);
  box-shadow: var(--shadow-sm);
}

.proof-strip article {
  padding: 24px;
  background: rgba(255, 253, 248, 0.72);
}

.proof-strip span {
  display: block;
  margin-bottom: 32px;
  color: var(--brass-600);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-900);
  font-size: 1rem;
}

.proof-strip p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.how-section,
.faq-section {
  padding: 86px 0;
  border-top: 1px solid rgba(216, 207, 194, 0.85);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.36fr) minmax(0, 0.64fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.difference-copy h2,
.simple-card h1 {
  margin-bottom: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 0.95;
}

.section-heading h2,
.difference-copy h2 {
  max-width: 820px;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-2xl);
  background: rgba(255, 253, 248, 0.62);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 72px;
  border-radius: 999px;
  background: var(--forest-800);
  color: var(--ivory-50);
  font-size: 0.85rem;
  font-weight: 900;
}

.steps-grid h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.steps-grid p {
  margin-bottom: 0;
  color: var(--ink-500);
}

.difference-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: stretch;
  margin: 0 calc(50% - 50vw) 0;
  padding: 94px max(21px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 20% 15%, rgba(184, 134, 79, 0.2), transparent 26rem),
    linear-gradient(135deg, var(--forest-950), #0c1c15 68%, #111715);
  color: var(--ivory-50);
}

.difference-copy p:not(.kicker) {
  max-width: 520px;
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 1.04rem;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-height: 420px;
}

.comparison-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.05);
}

.comparison-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--brass-300);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-card h3 {
  position: relative;
  z-index: 2;
  max-width: 330px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.scatter {
  position: absolute;
  inset: 0;
}

.scatter i {
  position: absolute;
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.34);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  transform: rotate(var(--r));
}

.scatter i:nth-child(1) { left: 16%; top: 48%; --r: -9deg; }
.scatter i:nth-child(2) { right: 12%; top: 28%; --r: 7deg; }
.scatter i:nth-child(3) { left: 35%; bottom: 15%; --r: 4deg; }
.scatter i:nth-child(4) { right: 10%; bottom: 22%; --r: -6deg; }
.scatter i:nth-child(5) { left: 7%; bottom: 34%; --r: 8deg; }
.scatter i:nth-child(6) { right: 32%; bottom: 8%; --r: -4deg; }

.single-path {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.single-path b {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.09);
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.78rem;
}

.single-path em {
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brass-300), var(--ivory-50));
}

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

details {
  border: 1px solid var(--stone-300);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 22px;
  color: var(--ink-900);
  font-weight: 900;
  letter-spacing: -0.02em;
}

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

summary::after {
  content: "+";
  float: right;
  color: var(--forest-800);
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -6px 22px 22px;
  color: var(--ink-500);
}

.disclosure-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  padding: 36px 0 48px;
  border-top: 1px solid rgba(216, 207, 194, 0.85);
  color: var(--ink-500);
  font-size: 0.86rem;
}

.disclosure-section p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(216, 207, 194, 0.85);
  color: var(--ink-500);
  font-size: 0.9rem;
}

.simple-page {
  width: min(900px, calc(100% - 42px));
  margin: 0 auto;
  padding: 44px 0 70px;
}

.simple-card {
  padding: 40px;
  border: 1px solid var(--stone-300);
  border-radius: var(--radius-3xl);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow-md);
}

.simple-card .brand {
  margin-bottom: 50px;
}

.simple-card h1 {
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 9vw, 7rem);
}

.simple-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 1.34rem;
  letter-spacing: -0.04em;
}

.simple-card p {
  color: var(--ink-700);
}

.simple-card .lead {
  color: var(--ink-700);
  font-size: 1.15rem;
}

.back-link {
  display: inline-flex;
  margin-top: 32px;
  color: var(--forest-800);
  font-weight: 900;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .review-card {
    position: static;
  }

  .signature-visual {
    max-width: none;
  }

  .difference-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    align-items: flex-start;
  }

  .header-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.8rem;
  }

  .hero-section {
    gap: 28px;
    padding: 28px 0 44px;
  }

  h1 {
    font-size: clamp(3.1rem, 13.2vw, 5.45rem);
    line-height: 1;
  }

  .signature-visual {
    min-height: 330px;
  }

  .home-card,
  .pro-card {
    left: 24px;
    right: 24px;
    width: auto;
  }

  .home-card {
    top: 34px;
  }

  .pro-card {
    top: auto;
    bottom: 34px;
  }

  .path-line {
    display: none;
  }

  .secure-node {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .noise-card-a {
    left: 8%;
    top: 45%;
  }

  .noise-card-b {
    left: 58%;
    bottom: 42%;
  }

  .noise-card-c {
    right: 6%;
    bottom: 48%;
  }

  .choice-fieldset,
  .proof-strip,
  .steps-grid,
  .faq-grid,
  .disclosure-section,
  .comparison-cards {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .proof-strip {
    gap: 1px;
  }

  .proof-strip article {
    min-height: auto;
  }

  .proof-strip span {
    margin-bottom: 14px;
  }

  .how-section,
  .faq-section {
    padding: 62px 0;
  }

  .comparison-cards {
    min-height: 700px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 22px, var(--max));
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-type strong {
    font-size: 0.78rem;
  }

  .header-links a:first-child {
    display: none;
  }

  .review-card {
    padding: 22px;
    border-radius: 26px;
  }

  .review-top {
    display: grid;
  }

  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .submit-button,
  .ghost-button {
    width: 100%;
  }

  .ghost-button {
    min-height: 48px;
  }

  .consent {
    font-size: 0.74rem;
  }

  .difference-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .comparison-card {
    min-height: 315px;
  }

  .simple-card {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


#submit-button {
  margin: 10px 0;
}


.brand-mark svg rect {
  stroke: rgba(6, 69, 42, 0.18);
}

.brand-mark svg path:first-of-type {
  stroke: var(--brass-600);
}

.brand-mark svg path:not(:first-of-type) {
  stroke: var(--forest-800);
}


.brand-mark svg rect {
  stroke: rgba(6, 69, 42, 0.18);
}

.brand-mark svg path:first-of-type {
  stroke: var(--brass-600);
}

.brand-mark svg path:not(:first-of-type),
.brand-mark svg circle {
  stroke: var(--forest-800);
}




/* final board-based logo refresh */
.brand,
.footer-brand {
  gap: 0;
  align-items: center;
}

.brand-lockup {
  display: block;
  width: 360px;
  max-width: 100%;
  height: auto;
}

.footer-lockup {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .brand-lockup {
    width: 320px;
  }
  .footer-lockup {
    width: 250px;
  }
}

@media (max-width: 760px) {
  .brand-lockup {
    width: 260px;
  }
  .footer-lockup {
    width: 220px;
  }
}

@media (max-width: 520px) {
  .brand-lockup {
    width: 220px;
  }
  .footer-lockup {
    width: 195px;
  }
}

/* mobile conversion audit refinements */
.mobile-hero-cta {
  display: none;
}

/* keep desktop untouched, tighten tablet/mobile only */
@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    align-items: center;
    gap: 12px;
    padding: 18px 0 14px;
  }

  .brand-lockup {
    width: 205px;
  }

  .header-links {
    gap: 14px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    color: rgba(48, 56, 50, 0.72);
    font-size: 0.76rem;
  }

  .header-links a:first-child {
    display: none;
  }

  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 20px 0 38px;
  }

  .hero-copy,
  .review-card {
    width: 100%;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    display: grid;
  }

  .hero-copy .kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(6, 69, 42, 0.10);
    border-radius: 999px;
    background: rgba(231, 236, 228, 0.72);
    color: var(--forest-800);
    font-size: 0.68rem;
    letter-spacing: 0.085em;
  }

  h1,
  .review-top h2,
  .section-heading h2,
  .difference-copy h2,
  .faq-section h2,
  .simple-card h1 {
    letter-spacing: -0.025em;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2.75rem, 10vw, 4.45rem);
  }

  .hero-lead {
    max-width: 36rem;
    margin-bottom: 18px;
    color: rgba(48, 56, 50, 0.92);
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .trust-chips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: none;
    margin-bottom: 16px;
  }

  .trust-chips span {
    justify-content: center;
    min-height: 43px;
    padding: 9px 10px;
    font-size: 0.78rem;
    text-align: center;
  }

  .trust-chips span:nth-child(n + 3) {
    display: none;
  }

  .mobile-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin: 2px 0 4px;
    padding: 0 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--forest-800), var(--forest-700));
    color: var(--ivory-50);
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    opacity: 1;
    box-shadow: 0 18px 34px rgba(6, 69, 42, 0.22);
  }

  .mobile-hero-cta::after {
    content: "→";
    margin-left: 10px;
    font-size: 1.22rem;
    line-height: 1;
  }

  .signature-visual {
    display: none;
  }

  .review-card {
    justify-self: center;
    align-self: center;
    scroll-margin-top: 18px;
    padding: 24px;
    border-radius: 28px;
  }

  .review-top {
    margin-bottom: 22px;
  }

  .review-top h2 {
    max-width: 310px;
    font-size: clamp(2rem, 7.7vw, 2.75rem);
  }

  .review-badge {
    padding: 7px 10px;
    font-size: 0.68rem;
  }

  .progress-meta {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .choice-fieldset,
  .choice-fieldset.compact {
    gap: 10px;
  }

  .choice-card span {
    min-height: 50px;
    padding: 11px 13px;
    border-radius: 14px;
    font-size: 0.88rem;
  }

  .field label,
  label {
    font-size: 0.88rem;
  }

  input,
  select,
  textarea {
    min-height: 52px;
    padding: 13px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .submit-button {
    background: linear-gradient(135deg, var(--forest-800), var(--forest-700));
    color: var(--ivory-50);
    opacity: 1;
  }

  .submit-button:disabled {
    background: linear-gradient(135deg, #d8cfc2, #c9c0b4);
    color: rgba(17, 23, 21, 0.55);
    box-shadow: none;
  }

  .proof-strip {
    margin-bottom: 54px;
  }

  .proof-strip article {
    padding: 22px 20px;
  }

  .proof-strip span {
    margin-bottom: 14px;
  }

  .steps-grid article {
    min-height: auto;
    padding: 28px 24px;
  }

  .step-number {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .difference-copy h2,
  .faq-section h2 {
    font-size: clamp(2.35rem, 10vw, 4.05rem);
  }

  .how-section,
  .faq-section {
    padding: 56px 0;
  }

  .difference-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .difference-copy p:not(.kicker) {
    color: rgba(255, 253, 248, 0.76);
  }

  .comparison-cards {
    min-height: auto;
  }

  .comparison-card {
    min-height: 300px;
  }

  .comparison-card h3 {
    letter-spacing: -0.03em;
    line-height: 1.04;
  }
}

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    padding-top: 16px;
  }

  .brand-lockup {
    width: 185px;
  }

  .header-links {
    gap: 12px;
    font-size: 0.72rem;
  }

  .hero-section {
    padding-top: 16px;
    gap: 20px;
  }

  .hero-copy .kicker {
    margin-bottom: 16px;
    font-size: 0.64rem;
    letter-spacing: 0.075em;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.28rem, 9.25vw, 3.02rem);
    letter-spacing: -0.015em;
    line-height: 1.075;
  }

  .hero-lead {
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .trust-chips {
    margin-bottom: 14px;
  }

  .trust-chips span {
    min-height: 42px;
    font-size: 0.74rem;
  }

  .mobile-hero-cta {
    min-height: 56px;
    border-radius: 15px;
  }

  .review-card {
    padding: 20px;
    border-radius: 24px;
  }

  .review-top {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .review-top h2 {
    max-width: 255px;
    font-size: clamp(1.86rem, 7.35vw, 2.28rem);
    letter-spacing: -0.012em;
    line-height: 1.08;
  }

  .choice-fieldset,
  .choice-fieldset.compact {
    grid-template-columns: 1fr;
  }

  .choice-card span,
  .choice-fieldset.compact .choice-card span {
    min-height: 46px;
    padding: 10px 13px;
    border-radius: 13px;
  }

  .safe-note {
    font-size: 0.74rem;
  }

  .section-heading h2,
  .difference-copy h2,
  .faq-section h2 {
    font-size: clamp(2.15rem, 9.5vw, 3.15rem);
    letter-spacing: -0.012em;
    line-height: 1.08;
  }

  .steps-grid article {
    padding: 24px 20px;
  }

  .step-number {
    margin-bottom: 30px;
  }

  .proof-strip article {
    padding: 20px;
  }

  .comparison-card {
    min-height: 285px;
    padding: 22px;
  }

  .site-footer {
    gap: 18px;
  }

  .footer-lockup {
    width: 178px;
  }
}

@media (max-width: 390px) {
  .brand-lockup {
    width: 170px;
  }

  .header-links {
    gap: 9px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.12rem, 8.9vw, 2.62rem);
    letter-spacing: -0.01em;
    line-height: 1.09;
  }

  .review-top h2 {
    font-size: clamp(1.72rem, 7vw, 2.05rem);
    line-height: 1.09;
  }

  .trust-chips {
    grid-template-columns: 1fr;
  }

  .trust-chips span:nth-child(2) {
    display: none;
  }
}

/* stronger mobile serif readability fix */
@media (max-width: 820px) {
  h1,
  .review-top h2,
  .section-heading h2,
  .difference-copy h2,
  .faq-section h2,
  .simple-card h1,
  .comparison-card h3 {
    letter-spacing: 0 !important;
    line-height: 1.10 !important;
    font-kerning: normal;
    text-rendering: optimizeLegibility;
    word-spacing: 0.045em;
  }

  h1 {
    font-size: clamp(2.55rem, 9.25vw, 4.05rem) !important;
  }

  .review-top h2 {
    font-size: clamp(1.9rem, 7.1vw, 2.55rem) !important;
  }
}

@media (max-width: 520px) {
  h1,
  .review-top h2,
  .section-heading h2,
  .difference-copy h2,
  .faq-section h2,
  .simple-card h1,
  .comparison-card h3 {
    letter-spacing: 0.006em !important;
    line-height: 1.12 !important;
    word-spacing: 0.06em;
  }

  h1 {
    font-size: clamp(2.08rem, 8.55vw, 2.72rem) !important;
  }

  .review-top h2 {
    font-size: clamp(1.62rem, 6.75vw, 2.08rem) !important;
  }
}

/* Accessibility and ad-traffic polish */
.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--ivory-50);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(184, 134, 79, 0.75);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.consent input:focus-visible {
  outline: 3px solid rgba(6, 69, 42, 0.42);
  outline-offset: 4px;
  border-radius: 12px;
}

.choice-card input:focus-visible + span {
  outline: 3px solid rgba(6, 69, 42, 0.45);
  outline-offset: 3px;
  border-color: var(--forest-700);
  background: var(--forest-100);
}

.faq-grid {
  align-items: start;
}
