:root {
  --ink: #10201b;
  --muted: #52645d;
  --paper: #f6f3eb;
  --surface: #fffdf8;
  --line: #d9ded8;
  --accent: #e8602d;
  --accent-dark: #b84018;
  --green: #183e32;
  --mint: #d9ebe2;
  --shadow: 0 18px 45px rgba(16, 32, 27, .09);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  padding: .7rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: none; }

.site-header {
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(217, 222, 216, .85);
  border-radius: 16px;
  position: sticky;
  top: .7rem;
  z-index: 20;
  backdrop-filter: blur(12px);
}
.brand img { width: 152px; height: auto; }
nav { display: flex; gap: 1.25rem; }
nav a { font-size: .9rem; font-weight: 750; text-decoration: none; }
nav a:hover, nav a:focus-visible { color: var(--accent-dark); }

main, footer { overflow: hidden; }
.hero, .family, .section-intro, .comparison, .truth-note, footer {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  min-height: 680px;
  padding: 6.5rem 0 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 4rem;
  align-items: center;
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--accent-dark);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .15em;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.05; }
h1 { max-width: 820px; margin: 0; font-size: clamp(3.4rem, 7vw, 6.8rem); letter-spacing: -.055em; }
h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4.2rem); letter-spacing: -.04em; }
h3 { margin: 0; font-size: 1.75rem; letter-spacing: -.025em; }
.hero-text { max-width: 670px; margin: 1.6rem 0 2rem; color: var(--muted); font-size: 1.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--green); }
.button-primary:hover { background: var(--ink); }
.button-secondary { border: 1px solid var(--ink); }
.button-secondary:hover { color: white; background: var(--ink); }
.hero-panel {
  padding: 2rem;
  color: white;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.panel-label { margin: 0 0 1.25rem; color: #b7d6c8; font-size: .72rem; font-weight: 850; letter-spacing: .13em; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { padding: .95rem 0 .95rem 2rem; border-top: 1px solid rgba(255,255,255,.17); position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: .2rem; color: #ffad80; font-weight: 900; }

.section-intro { padding: 7rem 0 3rem; text-align: center; }
.section-intro p:last-child { max-width: 680px; margin: 1.2rem auto 0; color: var(--muted); font-size: 1.08rem; }
.family { padding: 4rem 0 7rem; }
.family-alt { position: relative; }
.family-alt::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 -50vw;
  background: #e8eee9;
}
.family-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: end; margin-bottom: 2.5rem; }
.family-heading > p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; }
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.product-card > img { width: 100%; height: auto; background: #e4e6e0; border-bottom: 1px solid var(--line); }
.product-content { padding: 1.65rem; }
.tier-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.tier { padding: .28rem .58rem; color: var(--green); background: var(--mint); border-radius: 999px; font-size: .72rem; font-weight: 900; letter-spacing: .11em; }
.price { font-size: 1.05rem; font-weight: 850; }
.product-content > p { min-height: 5.2rem; color: var(--muted); }
.product-content ul { min-height: 8rem; padding-left: 1.2rem; }
.product-content li { margin: .38rem 0; }
.button-card { width: 100%; margin-top: .4rem; color: white; background: var(--green); }
.button-card:hover { background: var(--accent-dark); }
.featured { border-color: #8ca99b; }
.card-flag { position: absolute; z-index: 2; top: 1rem; right: 1rem; padding: .4rem .7rem; color: white; background: var(--accent-dark); border-radius: 999px; font-size: .68rem; font-weight: 900; letter-spacing: .1em; }

.comparison { padding: 8rem 0; display: grid; grid-template-columns: .72fr 1.28fr; gap: 4rem; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.comparison-card { padding: 1.6rem; background: var(--surface); border: 1px solid var(--line); border-radius: 18px; }
.comparison-card p { margin-bottom: 0; color: var(--muted); }
.comparison-number { display: block; margin-bottom: 2.5rem; color: var(--accent); font-weight: 900; }

.truth-note { margin-bottom: 7rem; padding: 3.5rem; color: white; background: var(--ink); border-radius: var(--radius); }
.truth-note .eyebrow { color: #ffad80; }
.truth-note p:last-child { max-width: 820px; margin: 1.4rem 0 0; color: #c6d1cc; font-size: 1.08rem; }

footer { margin-bottom: 1rem; padding: 3rem; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
footer img { width: 150px; margin: 0 auto 1rem; }
footer p { margin: .4rem auto; }
.footer-small { max-width: 680px; color: var(--muted); font-size: .82rem; }

@media (max-width: 820px) {
  .site-header { position: static; }
  nav { display: none; }
  .hero { min-height: auto; padding: 4.5rem 0; grid-template-columns: 1fr; gap: 2rem; }
  h1 { font-size: clamp(3rem, 14vw, 5.4rem); }
  .hero-panel { transform: none; }
  .family-heading, .comparison { grid-template-columns: 1fr; gap: 1.5rem; }
  .product-grid { grid-template-columns: 1fr; }
  .product-content > p, .product-content ul { min-height: auto; }
  .comparison { padding: 5rem 0; }
}

@media (max-width: 520px) {
  .site-header, .hero, .family, .section-intro, .comparison, .truth-note, footer { width: min(100% - 1rem, 1180px); }
  .site-header { margin-top: .5rem; }
  .brand img { width: 130px; }
  .hero { padding-top: 3.2rem; }
  .hero-actions .button { width: 100%; }
  .family { padding-bottom: 5rem; }
  .comparison-grid { grid-template-columns: 1fr; }
  .truth-note, footer { padding: 2rem 1.35rem; }
}

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

.not-found {
  width: min(760px, calc(100% - 2rem));
  min-height: 100vh;
  margin-inline: auto;
  padding: 12vh 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.not-found h1 { margin: 0; }
.not-found > p:not(.eyebrow) { max-width: 560px; margin: 1.5rem 0 2rem; color: var(--muted); font-size: 1.1rem; }
