:root {
  color-scheme: light;
  --ink: #17171b;
  --muted: #65656f;
  --line: #dedee5;
  --paper: #fbfaf8;
  --card: #ffffff;
  --accent: #6541f5;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-underline-offset: 0.2em; }

.site-header,
footer,
main {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
}

nav,
footer div {
  display: flex;
  gap: 22px;
  align-items: center;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.hero {
  padding: clamp(88px, 15vw, 168px) 0 clamp(80px, 13vw, 148px);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 { max-width: 820px; font-size: clamp(3rem, 8vw, 6.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.product,
.identity {
  padding: clamp(64px, 10vw, 112px) 0;
  border-bottom: 1px solid var(--line);
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: end;
}

.product p:not(.eyebrow),
.identity p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.button:hover { background: var(--accent); border-color: var(--accent); }

.identity > a { display: inline-block; margin-top: 24px; }

.legal {
  max-width: 780px;
  padding: 80px 0 120px;
}

.legal h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
.legal h2 { margin-top: 48px; font-size: 1.55rem; letter-spacing: -0.025em; }
.legal p, .legal li { color: #36363e; }
.legal .updated { margin: 18px 0 48px; color: var(--muted); }
.legal strong { color: var(--ink); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

footer p { margin: 0; }

@media (max-width: 700px) {
  .site-header { align-items: flex-start; padding: 20px 0; }
  nav { gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  nav a { font-size: 0.83rem; }
  .product { grid-template-columns: 1fr; align-items: start; }
  .button { width: 100%; }
  footer { flex-direction: column; }
}

/* Consent form reproduction (/sms-consent/) */
.legal blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}
.legal blockquote p:first-child { margin-top: 0; }
.legal blockquote p:last-child { margin-bottom: 0; }
