:root {
  --bg: #ffffff;
  --panel: #f4f8fd;
  --text: #1b2430;
  --muted: #5a6573;
  --accent: #0f5fa8;
  --accent-hover: #0b4e8a;
  --line: #d9e4f2;
}

* {
  box-sizing: border-box;
}

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  height: 42px;
  width: auto;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.25rem;
  font-weight: 600;
}

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

.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(140deg, rgba(15, 95, 168, 0.1), transparent 42%),
    radial-gradient(circle at 80% 30%, rgba(15, 95, 168, 0.16), transparent 34%);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  padding: 5rem 0;
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.8rem);
  line-height: 1.06;
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin: 1rem 0 1.8rem;
  max-width: 56ch;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.82rem 1.15rem;
  border-radius: 0.55rem;
  font-weight: 700;
}

.btn:hover {
  background: var(--accent-hover);
}

.panel {
  padding: 4rem 0;
}

.panel h2 {
  margin-top: 0;
}

.panel p {
  color: var(--muted);
  max-width: 70ch;
}

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