:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #334155;
  --line: #dbe5f0;
  --brand: #2563eb;
}

* {
  box-sizing: border-box;
}

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

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

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

.brand {
  font-weight: 700;
}

.hero {
  background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  padding: 2rem 0 3rem;
}

.eyebrow {
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 16ch;
}

.lead {
  color: var(--muted);
  max-width: 65ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.cta,
.secondary {
  display: inline-block;
  text-decoration: none;
  border-radius: 0.6rem;
  padding: 0.7rem 1rem;
  font-weight: 600;
}

.cta {
  background: var(--brand);
  color: #fff;
}

.cta.small {
  padding: 0.55rem 0.8rem;
}

.secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.section {
  padding: 3rem 0;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem;
}

.highlight {
  background: #eaf2ff;
  border: 1px solid #c8dcff;
  border-radius: 0.8rem;
  padding: 2rem;
}

.contact a,
.footer a {
  color: var(--brand);
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding: 1.5rem 0 2.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .nav {
    gap: 0.8rem;
    flex-wrap: wrap;
  }
}
