:root {
  color-scheme: light;
  --background: #f7faff;
  --surface: #ffffff;
  --text: #102033;
  --muted: #617187;
  --border: #d7e8fa;
  --brand: #2196f3;
  --brand-dark: #1565c0;
  --brand-soft: #e3f2fd;
  --accent: #ff8a3d;
  --shadow: rgba(13, 42, 69, 0.1);
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px var(--shadow);
}

.nav {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
}

.brand-logo {
  display: block;
  width: 250px;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
}

.hero {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 34px;
}

.hero p,
.legal-note {
  color: var(--muted);
  max-width: 760px;
}

.eyebrow {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 10px 0 16px;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

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

.content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 64px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 45px var(--shadow);
}

.home-grid {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 35px var(--shadow);
}

.card h2 {
  margin-top: 0;
  color: var(--brand-dark);
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

.site-footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 44px;
  }

  .content {
    padding: 24px;
  }

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