:root {
  color-scheme: light dark;
  --bg: #f7f7f8;
  --surface: #ffffff;
  --text: #0a0a0a;
  --muted: #5b5b5f;
  --border: #e5e5ea;
  --accent: #1e6cff;
  --accent-strong: #0b5fff;
  --shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b0b0f;
    --surface: #15151b;
    --text: #f3f3f5;
    --muted: #a1a1aa;
    --border: #26262c;
    --accent: #4c8dff;
    --accent-strong: #6ba0ff;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px);
  z-index: 10;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  margin: 0.8rem 0 1.2rem;
  line-height: 1.1;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.95rem;
}

.button.primary {
  background: var(--accent);
  border-color: transparent;
  color: white;
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  color: var(--text);
  background: transparent;
}

section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  font-size: 1.1rem;
}

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

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.small {
  font-size: 0.9rem;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.policy-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.list-clean {
  padding-left: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-visual .card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-visual span {
  font-weight: 600;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}
