:root {
  color-scheme: dark;
  --bg: #070b0d;
  --ink: #f4f1ea;
  --muted: #aeb7b2;
  --line: rgba(244, 241, 234, 0.16);
  --accent: #55d6a6;
  --accent-ink: #05100c;
  --panel: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  background: linear-gradient(to bottom, rgba(7, 11, 13, 0.78), rgba(7, 11, 13, 0));
}

.brand {
  font-weight: 760;
  text-decoration: none;
  letter-spacing: 0;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px clamp(20px, 5vw, 72px) 64px;
}

#permit-map,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-scrim {
  background:
    radial-gradient(circle at 75% 30%, rgba(85, 214, 166, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(7, 11, 13, 0.94) 0%, rgba(7, 11, 13, 0.68) 43%, rgba(7, 11, 13, 0.2) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  opacity: 0;
  transform: translateY(18px);
  animation: rise 700ms ease forwards;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(64px, 13vw, 156px);
  line-height: 0.88;
  letter-spacing: 0;
}

.lede {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.35;
}

.hero-actions,
.intake-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.plan a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 760;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.plan a:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.secondary {
  background: rgba(255, 255, 255, 0.07);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 30px clamp(20px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.proof-strip span,
.plan p,
.intake p {
  color: var(--muted);
  line-height: 1.55;
}

.plans,
.coverage,
.intake {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

h2 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.plan-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.plan {
  min-height: 340px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.plan:last-child {
  border-right: 0;
}

.plan.featured {
  background: var(--panel);
}

.plan-kicker {
  color: var(--accent);
  font-weight: 760;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.plan a {
  margin-top: 32px;
}

.trade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
}

.trade-grid li {
  min-height: 112px;
  display: flex;
  align-items: end;
  padding: 20px;
  background: var(--bg);
  color: var(--ink);
  font-size: 20px;
  font-weight: 720;
  transition: background 180ms ease;
}

.trade-grid li:hover {
  background: rgba(85, 214, 166, 0.1);
}

.intake {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  border-top: 1px solid var(--line);
}

.intake p {
  max-width: 620px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .proof-strip,
  .plan-list,
  .trade-grid,
  .intake {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .plan {
    border-right: 0;
  }

  .intake-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }
}
