:root {
  color-scheme: light;
  --paper: #f5f5f1;
  --surface: #ffffff;
  --canvas: #e9e9e4;
  --ink: #191b18;
  --muted: #62685f;
  --line: #d9dcd3;
  --primary: #59663f;
  --primary-pressed: #46512f;
  --primary-soft: #e7ecd2;
  --focus: #9caa55;
  --warning: #9c5f1c;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(156, 170, 85, 0.22), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: var(--primary-pressed);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--primary);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 4px;
}

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

.site-header {
  padding: 24px 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 720;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(89, 102, 63, 0.28);
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary-pressed);
  font-size: 20px;
  line-height: 1;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  min-height: 640px;
  padding: 72px 0 96px;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(89, 102, 63, 0.28);
  border-radius: 999px;
  background: rgba(231, 236, 210, 0.78);
  color: var(--primary-pressed);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.055em;
  padding: 7px 12px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin: 22px 0 24px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.65rem);
  font-weight: 730;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.lede {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 720;
  padding: 11px 20px;
  text-decoration: none;
}

.button:hover {
  background: var(--primary-pressed);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--primary-pressed);
}

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

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(89, 102, 63, 0.26);
  border-radius: 34px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(25, 27, 24, 0.12);
  padding: 30px;
}

.review-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(231, 236, 210, 0.68), transparent 54%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(25, 27, 24, 0.035) 28px 29px);
  content: "";
}

.review-card > * {
  position: relative;
}

.scan-title {
  margin: 28px 0 44px;
  font-size: 1.4rem;
  font-weight: 740;
}

.finding {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}

.finding-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: var(--primary-soft);
}

.finding-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.finding-value {
  font-size: 0.82rem;
  font-weight: 720;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 40px;
}

.section-heading p,
.copy p,
.copy li {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  padding: 26px;
}

.card-index {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.card h3 {
  margin-top: 54px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.notice {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  border: 1px solid rgba(156, 95, 28, 0.28);
  border-radius: 24px;
  background: #fbf4e9;
  padding: 30px;
}

.notice strong {
  color: var(--warning);
}

.notice p {
  margin: 0;
  color: #5c4a34;
}

.page-main {
  padding: 70px 0 112px;
}

.page-title {
  max-width: 860px;
  margin-bottom: 64px;
}

.page-title h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.copy {
  max-width: 800px;
}

.copy section {
  border-top: 1px solid var(--line);
  padding: 34px 0 22px;
}

.copy h2 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

.copy ul,
.copy ol {
  padding-left: 1.25rem;
}

.meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.support-callout {
  border: 1px solid rgba(89, 102, 63, 0.3);
  border-radius: 24px;
  background: var(--primary-soft);
  padding: 28px;
}

.support-callout p {
  max-width: 640px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 44px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 20px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

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

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .review-card {
    min-height: 360px;
  }

  .notice {
    gap: 10px;
  }
}

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

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

  .site-nav {
    gap: 14px;
  }

  .site-footer {
    padding-bottom: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
