:root {
  --text: #111;
  --muted: #666;
  --line: #e5e5e5;
  --accent: #0a5cff;
  --bg: #fff;
  --bg-soft: #f7f8fa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

header {
  border-bottom: 1px solid var(--line);
}

header .inner,
main,
footer .inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

header .inner {
  height: 72px;
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.logo span { color: var(--accent); }

main { flex: 1; }

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  padding: 80px 0;
}

.eyebrow {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 24px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 span { color: var(--accent); }

.hero p {
  max-width: 560px;
  margin: 0;
  font-size: 1.15rem;
  color: var(--muted);
}

.bar {
  width: 64px;
  height: 4px;
  margin-top: 40px;
  border-radius: 2px;
  background: var(--accent);
}

/* Legal pages */
.legal {
  max-width: 720px;
  padding-top: 56px;
  padding-bottom: 80px;
}

.legal h1 {
  margin: 0 0 32px;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
}

.legal h2 {
  margin: 36px 0 8px;
  font-size: 1.1rem;
}

.legal p { margin: 0 0 12px; }

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

.back {
  display: inline-block;
  margin-top: 32px;
  text-decoration: none;
  font-weight: 500;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 0.9rem;
  color: var(--muted);
}

footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  padding-bottom: 24px;
}

footer nav a {
  margin-left: 20px;
  color: var(--muted);
  text-decoration: none;
}

footer nav a:first-child { margin-left: 0; }
footer nav a:hover { color: var(--text); }

.credit {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

.credit a { color: inherit; }
.credit a:hover { color: var(--text); }
