:root {
  color-scheme: dark;
  --bg: #09090b;
  --panel: #111113;
  --panel-soft: #151518;
  --line: #27272a;
  --muted: #a1a1aa;
  --quiet: #71717a;
  --text: #fafafa;
  --primary: #a3e635;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  transform: translateY(-160%);
  background: var(--primary);
  color: #09090b;
  padding: 10px 14px;
  font-weight: 800;
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer {
  border-color: var(--line);
  border-style: solid;
}

.site-header {
  border-width: 0 0 1px;
}

.site-footer {
  border-width: 1px 0 0;
  margin-top: 64px;
}

.wrap {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--primary);
  font-size: 0.72rem;
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--primary);
}

.hero {
  padding: clamp(64px, 12vw, 128px) 0 56px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 0;
}

h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(2.5rem, 9vw, 6.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #09090b;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 72px);
}

.box {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px;
}

.box p,
.box li {
  color: var(--muted);
  font-size: 0.95rem;
}

.meta-list,
.plain-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.meta-list li,
.plain-list li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.meta-list strong {
  color: var(--text);
}

.quote {
  border-left: 4px solid var(--primary);
  background: var(--panel-soft);
  padding: 18px 20px;
  color: var(--text);
  margin-top: 24px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
}

.faq p {
  margin-top: 12px;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.service-links a {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 8px 12px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-links a:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.site-footer .wrap {
  padding: 32px 0;
}

.site-footer p {
  font-size: 0.82rem;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }
}
