:root {
  color-scheme: light;
  --ink: #20262b;
  --muted: #667071;
  --line: #e7e2a8;
  --paper: #fffdea;
  --surface: #ffffff;
  --lemon: #fbf34a;
  --lemon-strong: #e5dc13;
  --lemon-soft: #fff8a6;
  --graphite: #273037;
  --shadow: 0 18px 48px rgba(51, 54, 20, 0.14);
  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);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 253, 234, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-elevated {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(18, 37, 39, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--graphite);
  white-space: nowrap;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(32, 38, 43, 0.12);
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 760;
  white-space: nowrap;
}

.header-action,
.secondary-button {
  border: 1px solid var(--line);
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.72);
}

.primary-button {
  background: var(--lemon);
  color: var(--ink);
  border: 1px solid rgba(32, 38, 43, 0.12);
  box-shadow: 0 12px 26px rgba(229, 220, 19, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 8vw, 96px) clamp(20px, 5vw, 72px) 44px;
}

.hero h1,
.legal-hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #8b7d00;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 34px;
}

.hero-metrics span {
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 14px;
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.band {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

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

.feature-card .icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--lemon-soft);
  color: var(--graphite);
  font-weight: 850;
}

.feature-card h3,
.privacy-points h3 {
  margin: 22px 0 8px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.feature-card p,
.privacy-points p,
.cta p,
.legal-content p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 72px);
}

.privacy-points {
  display: grid;
  gap: 18px;
}

.privacy-points > div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.privacy-points h3 {
  margin-top: 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--graphite);
  color: #ffffff;
}

.cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.cta .eyebrow {
  color: var(--lemon);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--graphite);
  font-weight: 700;
}

.legal-hero {
  padding: clamp(56px, 9vw, 120px) clamp(20px, 5vw, 72px) 36px;
}

.legal-hero p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px) clamp(60px, 9vw, 120px);
}

.legal-content h2 {
  margin: 36px 0 10px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .header-action {
    display: none;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

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

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    min-height: 64px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: 40px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions a {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
