@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/static/fonts/Manrope-Variable.woff2") format("woff2");
}

:root {
  --bg-cream: #f8f6f3;
  --bg-warm: #f6f4ef;
  --bg-dark: #333333;
  --bg-page: #fcfbf9;
  --text-dark: #333333;
  --text-muted: #5c5c5c;
  --accent: #c6953a;
  --brand: #434c60;
  --cta: #c4682f;
  --cta-hover: #b35d27;
  --cta-text: #ffffff;
  --white: #ffffff;
  --bg-footer: #0f1115;
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 10px 24px rgba(0, 0, 0, 0.06);
  --radius: 8px;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0 0 0.6em; line-height: 1.2; }
p { margin: 0 0 0.9em; }
ul { margin: 0 0 1em; padding-left: 1.2rem; }
img { max-width: 100%; display: block; }

a {
  color: var(--brand);
  text-decoration: none;
  text-decoration-color: rgba(67, 76, 96, 0.4);
}

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

a:focus-visible, button:focus-visible {
  outline: 2px solid rgba(198, 149, 58, 0.6);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  z-index: 100;
}

.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(var(--max-width), 92vw); margin: 0 auto; }
.container.narrow { width: min(1000px, 92vw); }
.center { text-align: center; }
.muted { color: var(--text-muted); font-size: 0.92rem; }

.section-header > *:last-child,
.card > *:last-child { margin-bottom: 0; }

.site-header-simple {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.85rem 0;
}

.header-simple-inner { display: flex; align-items: center; }

.brand-wordmark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.brand-wordmark strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.brand-wordmark span {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.section { padding: 4.75rem 0; }
.section[id] { scroll-margin-top: 96px; }

.section-light {
  background: #fbfaf7;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section-trust {
  background: linear-gradient(180deg, #e7ebf1 0%, #f2f4f8 100%);
  border-top: 1px solid rgba(67, 76, 96, 0.12);
  padding: clamp(2.75rem, 5vw, 3.5rem) 0;
}

.section-header { text-align: center; margin-bottom: 2.25rem; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.4rem);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.lead {
  font-size: 1.05rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

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

.button-primary {
  background: var(--cta);
  color: var(--cta-text);
  box-shadow: 0 10px 22px rgba(196, 104, 47, 0.25);
}

.button-primary:hover {
  background: var(--cta-hover);
  color: var(--cta-text);
  text-decoration: none;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.card-grid { display: grid; gap: 1.4rem; }
.card-grid.three-up { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.section-trust .card.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 1rem;
}

.section-trust .card.center h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--brand);
}

.section-trust .card.center p {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(67, 76, 96, 0.72);
}

.reset-page { scroll-behavior: smooth; }
.reset-page .reset-section { padding: 2rem 0; }
.reset-page main > .reset-section:first-child {
  padding-top: clamp(2rem, 4.5vw, 3.25rem);
  padding-bottom: 2.25rem;
}
.reset-page .reset-section + .reset-section { padding-top: 1.75rem; }
.reset-page .button.button-primary::after { content: none; }
.reset-hero-header.section-header { margin-bottom: 0; }
.reset-hero-header h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  letter-spacing: -0.02em;
  max-width: min(36rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.reset-hero-header .lead { margin-top: 0; }
.reset-hero-price {
  margin: 1.25rem auto 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cta);
}
.reset-hero-price s { color: var(--text-muted); font-weight: 500; }
.reset-vsl-cta { margin: 1.35rem 0 0; }
.reset-hero-sub {
  margin: 0.2rem auto 1.4rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--cta);
  text-align: center;
}
.reset-hero-actions { margin: 1.75rem auto 2rem; max-width: 34rem; }
.reset-vsl { margin: 0 0 2rem; }
.reset-vsl-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.reset-vsl-video { width: 100%; height: auto; display: block; }
.reset-offer-fine-print {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.55;
  text-align: center;
}
.reset-how-it-works {
  margin: 1.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  text-align: left;
}
.reset-how-it-works-title { margin: 0 0 0.85rem; font-size: 1rem; font-weight: 600; }
.reset-how-it-works-steps {
  margin: 0;
  padding: 0 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.q-textarea { min-height: 100px; resize: vertical; }
.reset-offer-stack { margin: 2rem 0 0; padding: 1.5rem 1.6rem; text-align: left; }
.reset-offer-stack-title { margin: 0 0 0.45rem; font-size: 1.125rem; }
.reset-offer-stack-sub { margin: 0 0 1rem; font-size: 0.9rem; color: var(--text-muted); }
.reset-offer-stack-list { margin: 0; padding: 0 0 0 1.15rem; font-size: 0.9375rem; line-height: 1.55; }
.reset-offer-stack-list li + li { margin-top: 0.75rem; }
.reset-offer-stack-value {
  margin: 1.15rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  font-weight: 600;
  font-size: 0.9375rem;
}
.reset-bonus-row {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--bg-cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 0.9rem;
}
.reset-guarantee-stack {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: #faf7f2;
  border-radius: var(--radius);
  border: 1px solid rgba(196, 149, 58, 0.2);
}
.reset-guarantee-stack h3 { font-size: 1rem; margin-bottom: 0.75rem; }
.reset-guarantee-stack ol { margin: 0; padding-left: 1.2rem; font-size: 0.9rem; }
.reset-guarantee-stack li + li { margin-top: 0.5rem; }
.reset-money-model { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .reset-money-model { grid-template-columns: repeat(3, 1fr); } }
.money-step {
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  text-align: center;
}
.money-step strong { display: block; font-size: 1.25rem; color: var(--brand); }
.money-step span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.reset-proof-quote {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid var(--cta);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 0.35rem;
  font-size: 0.9rem;
}
.reset-proof-quote footer { margin-top: 0.65rem; font-size: 0.8125rem; font-weight: 600; }

.q-form { max-width: 680px; margin: 0 auto; }
.q-field { margin-bottom: 1.25rem; }
.q-label { display: block; font-weight: 600; font-size: 1.05rem; margin-bottom: 0.35rem; }
.q-input, .q-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  font: inherit;
  font-size: 16px;
  background: var(--white);
}
.q-input:focus, .q-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(67, 76, 96, 0.1);
}
.q-submit-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; padding-top: 0.5rem; }
.q-submit-note { flex: 1 1 100%; font-size: 0.9rem; margin: 0; }
.q-submit-note.err { color: #9a3b1f; }
.reset-form-card { padding: 1.5rem; }
.reset-page #apply.section-light { background: var(--bg-cream); }

.desk-intake {
  --intake-step-ms: 200ms;
  --intake-accent: var(--cta);
  --intake-accent-hover: var(--cta-hover);
  --intake-accent-glow: rgba(196, 104, 47, 0.22);
  --intake-accent-tint: rgba(196, 104, 47, 0.08);
  --intake-panel: #f3ede4;
}
.desk-intake-progress {
  display: table;
  margin: 0 auto 1.25rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cta);
  background: var(--intake-accent-tint);
  border: 1px solid rgba(196, 104, 47, 0.18);
}
.desk-intake-question { font-size: 1.2rem; text-align: center; margin: 0 0 1rem; text-wrap: balance; }
.desk-intake-step-note { margin: 1rem 0 0; font-size: 0.875rem; text-align: center; color: var(--text-muted); }
.desk-intake-steps-viewport {
  position: relative;
  padding: 1.15rem 1rem 0.5rem;
  border-radius: 10px;
  background: var(--intake-panel);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.desk-intake-step {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0; right: 0; top: 0;
  transition: opacity 200ms, transform 200ms, visibility 0s linear 200ms;
}
.desk-intake-step.is-active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  position: relative;
  transition: opacity 200ms, transform 200ms, visibility 0s;
}
.desk-intake-step[hidden] { display: none !important; }
.desk-intake-choices { display: flex; flex-direction: column; gap: 0.65rem; }
.desk-intake-choice {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.05);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.desk-intake-choice:hover { border-color: rgba(0, 0, 0, 0.28); transform: translateY(-1px); }
.desk-intake-choice.is-selected {
  border-color: var(--intake-accent);
  background: #fff9f4;
  box-shadow: 0 0 0 1px rgba(196, 104, 47, 0.25), 0 4px 12px rgba(196, 104, 47, 0.12);
}
.desk-intake-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1rem; }
.desk-intake-back { background: none; border: 0; color: var(--brand); font: inherit; cursor: pointer; padding: 0; }
.desk-intake-back[hidden] { display: none; }
.desk-intake .q-form { max-width: none; margin: 0; width: 100%; }
.desk-intake .q-submit-row.desk-intake-nav .button-primary { margin-left: auto; }
.desk-intake .button-primary::after { content: none; }
.desk-intake-commitment { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.9rem; cursor: pointer; }
.desk-intake-commitment-input { margin-top: 0.2rem; flex-shrink: 0; }

.site-footer {
  background: var(--bg-footer);
  color: rgba(255, 255, 255, 0.72);
  padding: 2rem 0;
  font-size: 0.85rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.85); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; }
.thanks-page { padding: 3rem 0 4rem; text-align: center; }
.thanks-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-band {
  background: linear-gradient(180deg, #f3ede4 0%, var(--bg-page) 42%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.identify-list {
  max-width: 34rem;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.65;
}

.identify-list li {
  margin: 0.65rem 0;
  padding-left: 0.25rem;
}

.filter-grid.two-up {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .filter-grid.two-up {
    grid-template-columns: 1fr 1fr;
  }
}

.filter-grid h3 {
  margin-top: 0;
  font-size: 1.05rem;
  color: var(--brand);
}

.filter-grid ul {
  margin-bottom: 0;
  font-size: 0.95rem;
}
