:root {
  --ink: #16181c;
  --ink-soft: #4a4f57;
  --line: #e4e6ea;
  --bg: #ffffff;
  --bg-alt: #f6f7f9;
  --accent: #1f5f8b;
  --accent-dark: #17475f;
  --max: 1080px;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 48px; width: auto; display: block; }
.nav a { color: var(--ink-soft); margin-left: 26px; font-size: 0.95rem; }
.nav a:hover { color: var(--ink); text-decoration: none; }
.nav a.btn { color: #fff; }
.nav a.btn:hover { color: #fff; }

@media (max-width: 640px) {
  .nav a:not(.btn) { display: none; }
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; }

/* Hero */
.hero {
  padding: 96px 0 84px;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-bottom: 1px solid var(--line);
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 16ch; }
.hero p { margin-top: 22px; font-size: 1.18rem; color: var(--ink-soft); max-width: 52ch; }
.hero .actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-block;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
}
.btn-ghost:hover { border-color: var(--ink-soft); text-decoration: none; }

/* Sections */
section { padding: 80px 0; }
section.alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--accent); }
section h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-top: 12px; max-width: 20ch; }
.lead { margin-top: 18px; color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; }

.grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
section.alt .card { background: #fff; }
.card h3 { font-size: 1.15rem; }
.card p { margin-top: 10px; color: var(--ink-soft); font-size: 0.98rem; }
.card .num { font-family: "Space Grotesk", sans-serif; color: var(--accent); font-weight: 600; font-size: 0.9rem; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split ul { margin-top: 22px; list-style: none; }
.split li { padding: 10px 0 10px 26px; position: relative; color: var(--ink-soft); border-top: 1px solid var(--line); }
.split li:first-child { border-top: none; }
.split li::before { content: "→"; position: absolute; left: 0; color: var(--accent); }

/* Contact */
.contact-box {
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  background: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-box .big { font-family: "Space Grotesk", sans-serif; font-size: 1.3rem; font-weight: 600; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.site-footer a { color: var(--ink-soft); }
