:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #637083;
  --line: #d8e0e8;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --gold: #d99621;
  --teal: #0f766e;
  --red: #9f2d34;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
}

a {
  color: var(--teal);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

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

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 64px) 40px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #415061;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.52;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  border-color: var(--teal);
  color: #ffffff;
  background: var(--teal);
}

.summary-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(25, 36, 48, 0.10);
}

.summary-panel h2 {
  font-size: 28px;
}

.summary-panel p,
.summary-panel li {
  color: #4b596a;
  line-height: 1.62;
}

.summary-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px clamp(18px, 5vw, 64px);
}

.section.alt {
  max-width: none;
  background: #ffffff;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
}

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

.feature {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature p,
.legal p,
.legal li {
  color: #4b596a;
  line-height: 1.62;
}

.notice {
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  background: #fff8e8;
  color: #4d3b13;
  line-height: 1.6;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  padding: 54px clamp(18px, 5vw, 64px);
  background: var(--paper);
}

.legal h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
}

.legal h2 {
  margin-top: 34px;
  font-size: 24px;
}

.muted {
  color: var(--muted);
}

.site-footer {
  padding: 30px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

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

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