:root {
  color-scheme: light;
  --paper: #f7f2e8;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --ink: #15110d;
  --muted: #5f5950;
  --line: #ddd2bf;
  --vermilion: #d94b2b;
  --vermilion-dark: #a93722;
  --green: #2f7f65;
  --gold: #b57a12;
  --nav-height: 72px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: var(--nav-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(21, 17, 13, 0.12);
  background: rgba(247, 242, 232, 0.92);
  padding: 14px clamp(18px, 5vw, 64px);
  backdrop-filter: blur(18px);
}

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

.brand img,
.hero-icon {
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(21, 17, 13, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: calc(76svh - var(--nav-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(56px, 9vw, 96px) clamp(18px, 5vw, 64px);
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(21, 17, 13, 0.82), rgba(21, 17, 13, 0.5) 46%, rgba(247, 242, 232, 0.22)),
    url("/assets/feature-graphic.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  background: linear-gradient(180deg, rgba(247, 242, 232, 0), var(--paper));
  content: "";
}

.hero-content {
  max-width: 720px;
  color: #fffaf0;
}

.hero-icon {
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--vermilion);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb09c;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: #fff3df;
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--vermilion);
  color: white;
}

.button.secondary {
  border-color: rgba(255, 250, 240, 0.72);
  color: #fffaf0;
}

.summary-band {
  padding: 0 clamp(18px, 5vw, 64px) clamp(48px, 7vw, 82px);
}

.summary-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: var(--surface);
}

.summary-grid div {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.summary-grid div + div {
  border-left: 1px solid var(--line);
}

.summary-grid strong {
  font-size: 1rem;
}

.summary-grid span {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 9vw, 108px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 36px;
}

.feature-grid {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 244px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--vermilion);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 24px;
}

.feature-card.accent-green {
  border-top-color: var(--green);
}

.feature-card.accent-gold {
  border-top-color: var(--gold);
}

.feature-card.accent-ink {
  border-top-color: var(--ink);
}

.feature-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-card p,
.privacy-copy p,
.policy-article p {
  color: var(--muted);
}

.privacy-band {
  display: grid;
  min-height: 480px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.97), rgba(247, 242, 232, 0.84) 58%, rgba(247, 242, 232, 0.2)),
    url("/assets/feature-graphic.png");
  background-position: center;
  background-size: cover;
  padding: clamp(56px, 9vw, 108px) clamp(18px, 5vw, 64px);
}

.privacy-copy {
  max-width: 760px;
}

.text-link {
  color: var(--vermilion-dark);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  min-height: 92px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px clamp(18px, 5vw, 64px);
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer a {
  text-decoration: none;
}

.policy-shell {
  padding: clamp(48px, 8vw, 88px) clamp(18px, 5vw, 64px);
}

.policy-article {
  max-width: 840px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(26px, 6vw, 64px);
}

.policy-article h1 {
  color: var(--ink);
  font-size: clamp(2.45rem, 6vw, 4.6rem);
}

.policy-article h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-article .lead {
  color: var(--ink);
  font-size: 1.18rem;
}

.policy-article a {
  color: var(--vermilion-dark);
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: calc(70svh - var(--nav-height));
  }

  .summary-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .summary-grid div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

@media (max-width: 560px) {
  .site-nav {
    gap: 10px;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-icon {
    width: 72px;
    height: 72px;
  }

  .button {
    width: 100%;
  }

  .policy-article {
    padding: 22px;
  }
}
