:root {
  --ink: #173b36;
  --muted: #5e6f6b;
  --teal: #245b54;
  --teal-soft: #dfece9;
  --coral: #c96c5b;
  --paper: #f7f8f4;
  --white: #ffffff;
  --line: #d7dfdc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 8px; }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 20px; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 13px; }
nav, footer div { display: flex; gap: 28px; }
nav a, footer a { font-size: 15px; font-weight: 700; }
nav a:hover, footer a:hover, .text-link:hover, .legal-content a:hover { color: var(--coral); }
.hero {
  min-height: 620px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: center;
  gap: 72px;
}
.eyebrow { margin: 0 0 10px; color: var(--coral); font-size: 14px; font-weight: 800; text-transform: uppercase; }
h1, h2, h3, p { letter-spacing: 0; }
h1 { margin: 0; max-width: 760px; font-size: clamp(56px, 8vw, 104px); line-height: .98; font-weight: 800; }
h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
h3 { margin: 18px 0 8px; font-size: 24px; line-height: 1.2; }
.lead { max-width: 680px; margin: 28px 0 0; color: var(--muted); font-size: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; padding: 12px 20px; border: 1px solid var(--teal); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.button.primary { color: white; background: var(--teal); }
.button.secondary { background: transparent; }
.button:hover { transform: translateY(-1px); }
.hero-icon { width: min(100%, 360px); height: auto; justify-self: center; border-radius: 22%; box-shadow: 0 28px 80px rgba(23, 59, 54, .18); }
.feature-band { background: var(--white); border-block: 1px solid var(--line); }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 88px 32px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 64px; }
.feature { padding-top: 20px; border-top: 3px solid var(--teal); }
.feature-number { color: var(--coral); font-size: 14px; font-weight: 900; }
.feature p, .privacy-copy p { margin: 0; color: var(--muted); }
.privacy-band { background: var(--teal-soft); }
.privacy-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 96px; }
.privacy-copy { display: grid; gap: 20px; }
.text-link { width: fit-content; margin-top: 8px; padding-bottom: 2px; border-bottom: 2px solid currentColor; font-weight: 800; }
.legal-hero { padding: 72px 32px 50px; background: var(--teal-soft); }
.legal-hero > div, .legal-content { max-width: 860px; margin: 0 auto; }
.legal-hero h1 { font-size: clamp(44px, 7vw, 72px); }
.legal-hero p { max-width: 720px; margin: 20px 0 0; color: var(--muted); font-size: 21px; }
.legal-content { padding: 64px 32px 96px; }
.legal-content section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 12px; font-size: 28px; }
.legal-content h3 { font-size: 20px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul, .legal-content ol { padding-left: 24px; }
footer { max-width: 1180px; margin: 0 auto; padding: 28px 32px 48px; display: flex; justify-content: space-between; gap: 28px; color: var(--muted); font-size: 14px; }
@media (max-width: 760px) {
  body { font-size: 17px; }
  .site-header { align-items: flex-start; padding: 14px 20px; }
  nav { display: none; }
  .hero { min-height: auto; padding: 52px 20px 68px; grid-template-columns: 1fr; gap: 44px; }
  h1 { font-size: 44px; }
  .lead { font-size: 21px; }
  .hero-icon { width: 230px; justify-self: start; }
  .section-inner { padding: 64px 20px; }
  .feature-grid, .privacy-layout { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { margin-top: 42px; }
  .legal-hero { padding: 52px 20px 38px; }
  .legal-content { padding: 40px 20px 72px; }
  footer { padding: 28px 20px 36px; flex-direction: column; }
  footer div { flex-wrap: wrap; gap: 16px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button:hover { transform: none; }
}
