@import url("https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@92,400;92,520;100,650;100,760;100,860&family=Newsreader:opsz,wght@18,520;36,650&display=swap");

:root {
  --bg: #f5f1e8;
  --paper: #fffdf8;
  --paper-2: #ebe0d0;
  --ink: #181716;
  --muted: #5b564f;
  --soft: #8b8174;
  --line: #d4c5b2;
  --line-strong: #a99379;
  --accent: #8f2823;
  --accent-dark: #641916;
  --charcoal: #211f1d;
  --charcoal-2: #302b27;
  --ok: #3f5d45;
  --radius-sm: 7px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 28px 80px rgba(44, 32, 20, 0.16);
  --shadow-tight: 0 14px 30px rgba(44, 32, 20, 0.12);
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(24, 23, 22, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 23, 22, 0.03) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: "Archivo", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 38%),
    repeating-linear-gradient(0deg, rgba(33, 31, 29, 0.03) 0, rgba(33, 31, 29, 0.03) 1px, transparent 1px, transparent 7px);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(245, 241, 232, 0.9);
  border-bottom: 1px solid rgba(132, 112, 90, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 860;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--charcoal);
  color: #fff;
  border-radius: 9px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

nav a,
.nav-cta {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 520;
  text-decoration: none;
}

nav a {
  padding: 10px 13px;
}

nav a:hover,
.nav-cta:hover {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
}

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  font-weight: 760;
}

main {
  overflow: hidden;
}

.hero,
.audit-section,
.offers,
.faq,
.decision-panel {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.8fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 5vw, 72px) 0 clamp(42px, 5vw, 68px);
}

.hero-copy {
  max-width: 700px;
}

.kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

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

h1,
h2 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.1vw, 72px);
  line-height: 0.96;
}

h2 {
  max-width: 770px;
  margin-bottom: 0;
  font-size: clamp(36px, 4.4vw, 66px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 860;
  line-height: 1.02;
  text-wrap: balance;
}

.lead {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 19px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 860;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(143, 40, 35, 0.34);
  outline-offset: 3px;
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 14px 28px rgba(143, 40, 35, 0.22);
}

.button.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.68);
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--paper);
}

.button.full {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.trust-row li {
  padding: 8px 10px;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(169, 147, 121, 0.5);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.route-board {
  position: relative;
  padding: clamp(18px, 2vw, 26px);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(234, 224, 208, 0.95)),
    var(--paper);
  border: 1px solid rgba(169, 147, 121, 0.75);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.route-board::before {
  position: absolute;
  inset: 14px;
  z-index: -1;
  content: "";
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  transform: rotate(-2deg);
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.board-top span {
  color: var(--soft);
  font-size: 14px;
  font-weight: 650;
}

.board-top strong {
  color: var(--ink);
  font-size: 17px;
}

.route-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 26px 0 20px;
}

.route-step {
  min-height: 118px;
  padding: 14px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.route-step.active {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.route-step span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 860;
  font-variant-numeric: tabular-nums;
}

.route-step.active span {
  color: #e9c0b8;
}

.route-step strong {
  display: block;
  font-size: 18px;
  line-height: 1.06;
}

.route-step small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.2;
}

.route-step.active small {
  color: rgba(255, 255, 255, 0.72);
}

.route-line {
  display: none;
}

.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.board-card {
  min-height: 132px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.board-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
}

.board-card strong {
  display: block;
  font-size: 20px;
  line-height: 1.12;
}

.board-note {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  padding: 16px;
  background: rgba(33, 31, 29, 0.06);
  border-radius: var(--radius-md);
}

.board-note span {
  width: 10px;
  height: 100%;
  min-height: 48px;
  background: var(--accent);
  border-radius: 999px;
}

.board-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.problem-strip {
  padding: 22px 0;
  background: var(--charcoal);
  color: #fff;
}

.problem-strip div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.problem-strip p {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 35px);
  font-weight: 760;
  line-height: 1.08;
  text-wrap: balance;
}

.problem-strip a {
  padding: 13px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-weight: 860;
  text-decoration: none;
  white-space: nowrap;
}

.audit-section,
.faq {
  padding: clamp(58px, 7vw, 92px) 0;
}

.offers {
  padding: clamp(46px, 5vw, 70px) 0 clamp(58px, 7vw, 92px);
}

.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-copy .kicker {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.audit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.audit-list article {
  min-height: 248px;
  padding: 22px;
  background: rgba(255, 253, 248, 0.82);
}

.audit-list span {
  display: block;
  margin-bottom: 54px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 860;
}

.audit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.42;
}

.offers {
  border-top: 1px solid rgba(169, 147, 121, 0.45);
}

.offer-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(270px, 0.7fr) minmax(220px, 0.42fr);
  gap: 28px;
  align-items: end;
  padding: clamp(22px, 3vw, 34px);
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  color: #fff;
  box-shadow: var(--shadow-tight);
}

.label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 9px;
  background: rgba(143, 40, 35, 0.12);
  border: 1px solid rgba(143, 40, 35, 0.24);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 860;
  line-height: 1;
}

.offer-feature .label {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f2c9c0;
}

.offer-feature h3 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: clamp(31px, 3.4vw, 50px);
}

.offer-feature p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.5;
}

.offer-feature ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.84);
  list-style: none;
}

.offer-feature li {
  position: relative;
  padding-left: 24px;
  line-height: 1.35;
}

.offer-feature li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--accent);
  border-radius: 3px;
  content: "";
}

.buy-box {
  display: grid;
  gap: 14px;
}

.buy-box strong,
.offer-card strong {
  display: block;
  font-size: 34px;
  font-weight: 860;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.offer-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 21px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.offer-card h3 {
  margin-bottom: 12px;
  font-size: 27px;
}

.offer-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.5;
}

.offer-card strong {
  margin-top: auto;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 28px;
}

.offer-card.compact {
  background: rgba(235, 224, 208, 0.62);
}

.text-link {
  width: fit-content;
  color: var(--accent);
  font-weight: 860;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-tight);
}

.decision-panel h2 {
  font-size: clamp(36px, 4vw, 56px);
}

.decision-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 48px;
}

.faq .section-copy {
  display: block;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 760;
}

details p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1080px) {
  .hero,
  .section-copy,
  .offer-feature,
  .decision-panel,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
  }

  .offer-grid,
  .audit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-panel {
    align-items: start;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding-inline: 16px;
  }

  nav {
    display: none;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 13px;
  }

  .hero,
  .audit-section,
  .offers,
  .faq,
  .decision-panel {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(36px, 10vw, 50px);
    line-height: 1;
  }

  .route-board::before {
    display: none;
  }

  .route-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-line {
    display: none;
  }

  .route-step {
    min-height: auto;
    padding: 12px;
  }

  .route-step span {
    margin-bottom: 8px;
  }

  .route-step strong {
    font-size: 17px;
  }

  .route-step small {
    margin-top: 5px;
  }

  .board-grid,
  .offer-grid,
  .audit-list,
  .problem-strip div {
    grid-template-columns: 1fr;
  }

  .problem-strip a {
    width: fit-content;
    white-space: normal;
  }

  .audit-list article,
  .offer-card {
    min-height: auto;
  }

  .board-card {
    min-height: auto;
  }

  .board-card strong {
    font-size: 18px;
  }

  .board-note {
    padding: 13px;
  }

  .audit-list span {
    margin-bottom: 18px;
  }

  .offer-feature {
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-row li {
    width: 100%;
  }

  .board-top {
    display: grid;
  }

  .offer-feature,
  .decision-panel,
  .route-board {
    padding: 18px;
  }

  footer {
    display: grid;
  }
}

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