:root {
  --bg: #f6f6f1;
  --surface: #ffffff;
  --surface-soft: #eef4db;
  --text: #1e1f1a;
  --muted: #5d6158;
  --line: #dde3d2;
  --accent: #96b95b;
  --accent-dark: #6d8e34;
  --shadow: 0 12px 30px rgba(29, 31, 26, 0.08);
  --radius: 20px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fafaf6 0%, #f2f4ec 100%);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

.disclosure-bar {
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #2d3c1a;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(221, 227, 210, 0.9);
  background: rgba(250, 250, 246, 0.94);
  backdrop-filter: blur(12px);
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-shell {
  min-height: 72px;
}

.brand {
  font-size: 28px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.header-nav,
.footer-links,
.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.header-nav a,
.footer-links a,
.policy-links a {
  color: var(--muted);
  text-decoration: none;
}

.header-nav a:hover,
.footer-links a:hover,
.policy-links a:hover {
  color: var(--text);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 32px 0 56px;
}

.content-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-column {
  display: block;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.hero-copy,
.intro,
.feature,
.highlight,
.comparison,
.faq,
.policy-callout,
.legal-card,
.product-card {
  padding: 28px;
}

.hero-media {
  overflow: hidden;
  padding: 0;
}

.hero-media img,
.feature img,
.highlight img,
.offer-image {
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(36px, 4vw, 58px);
}

h2 {
  font-size: clamp(26px, 2.5vw, 38px);
}

h3 {
  font-size: 20px;
}

p,
ul,
ol {
  margin: 0 0 14px;
}

.lead {
  max-width: 62ch;
  color: var(--muted);
  font-size: 18px;
}

.hero-note,
.micro-note,
.fine-print {
  color: var(--muted);
  font-size: 14px;
}

.hero-note {
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 12px;
  background: #f1f5e3;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.split.reversed img {
  order: 2;
}

.split.reversed > div {
  order: 1;
}

.check-list,
.mini-list {
  padding-left: 20px;
}

.check-list li,
.mini-list li {
  margin-bottom: 8px;
}

.highlight {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 24px;
  background: linear-gradient(180deg, #f5f8eb 0%, #eef4db 100%);
}

.highlight-media img {
  border-radius: 16px;
}

.icon-points {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

.icon-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-point img {
  width: 48px;
  height: 48px;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.step-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.step-number {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-dark);
  font-weight: 800;
  background: #fff;
}

.comparison img {
  margin-top: 18px;
  border-radius: 16px;
}

.comparison-mobile {
  display: none;
}

.faq-item + .faq-item {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.sticky-card {
  position: sticky;
  top: 100px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--accent) 0%, #84aa49 100%);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.button:hover {
  background: linear-gradient(180deg, #89ae50 0%, #73943a 100%);
}

.policy-callout {
  background: linear-gradient(180deg, #fafcf3 0%, #eef4db 100%);
}

.legal-shell {
  padding: 32px 0 56px;
  max-width: 860px;
}

.legal-shell .card + .card {
  margin-top: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f8f8f3;
}

.footer-shell {
  padding: 28px 0 34px;
  align-items: flex-start;
}

@media (max-width: 1080px) {
  .page-grid,
  .hero,
  .highlight {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .header-shell,
  .footer-shell,
  .split,
  .highlight {
    grid-template-columns: 1fr;
    display: grid;
  }

  .header-shell {
    padding: 14px 0;
  }

  .header-nav,
  .footer-links,
  .policy-links {
    gap: 12px;
  }

  .hero-copy,
  .intro,
  .feature,
  .highlight,
  .comparison,
  .faq,
  .policy-callout,
  .legal-card,
  .product-card {
    padding: 22px;
  }

  .comparison-desktop {
    display: none;
  }

  .comparison-mobile {
    display: block;
  }
}
