:root {
  --bg: #050505;
  --surface: #121416;
  --surface-2: #1a1d21;
  --fg: #eceae4;
  --muted: #9aa0a8;
  --steel: #7a96b8;
  --accent: #6186ad;
  --accent-hover: #4e6499;
  --on-accent: #f4f2ec;
  --line: rgb(236 234 228 / 0.12);
  --line-strong: rgb(236 234 228 / 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-weight: 400;
  color: var(--fg);
  text-transform: uppercase;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgb(5 5 5 / 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.brand img {
  height: 56px;
  width: auto;
  filter: invert(1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--accent); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--fg);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 22px;
  border-radius: 4px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { border-color: var(--line-strong); color: var(--fg); background: transparent; }
.btn-ghost:hover { background: var(--surface); }

.kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero { padding: 72px 0 88px; }
.hero h1 { font-size: clamp(3.1rem, 8vw, 6.4rem); margin: 0 0 22px; }
.lede { font-size: 1.12rem; max-width: 36rem; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

section { padding: 64px 0; }
.band { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { font-size: clamp(2rem, 4vw, 3.4rem); margin: 0 0 12px; }
.sub { color: var(--muted); max-width: 38rem; }

.grid-3, .grid-2 {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 8px;
}
.card h3 { font-size: 1.55rem; margin: 8px 0 10px; }
.step {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  font-weight: 700;
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.process article {
  border-top: 3px solid var(--accent);
  padding-top: 16px;
}

form {
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 8px;
}
label {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
input, select, textarea {
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  padding: 12px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--fg);
}
textarea { min-height: 140px; resize: vertical; }
.hidden { display: none; }
.form-note { color: var(--muted); font-size: 0.92rem; }

.page-hero { padding: 56px 0 20px; }
.prose { max-width: 44rem; }
.prose p { color: var(--muted); }

.site-footer {
  background: var(--bg);
  color: var(--muted);
  padding: 42px 0 28px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}
.site-footer a:hover { color: var(--fg); }
.tiny {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .grid-3, .grid-2, .process, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 78px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}
