:root {
  --font: "Barlow", "Segoe UI", sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}
body {
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(41, 119, 255, 0.16), transparent 55%),
    var(--bg);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding: 10px var(--pad);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand img { height: 46px; width: auto; }
.site-header nav { display: flex; align-items: center; gap: 18px; }
.site-header nav a { text-decoration: none; color: var(--silver); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-header nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -2px 0 var(--blue); }
.hero {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px var(--pad) 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 2px, rgba(255,255,255,0.018) 2px 3px);
  pointer-events: none;
}
.hero .wrap { position: relative; width: min(1100px, 100%); margin: 0; }
.hero-logo { width: min(860px, 100%); margin-bottom: 22px; }
.hero h1 { font-size: clamp(46px, 7vw, 92px); max-width: 14ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.service-link { text-decoration: none; color: inherit; display: block; }
.service-link:hover { border-color: var(--blue); }
.band-alt { background: #101114; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .site-header { flex-wrap: wrap; }
  .hero { min-height: 0; justify-content: flex-start; padding-top: 28px; }
  .site-header nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0 16px;
  }
  .site-header nav.is-open { display: flex; }
}
.site-header nav a.btn,
.site-header nav a.btn:hover { color: #0a0a0a; text-decoration: none; }
