:root {
  color-scheme: dark;
  --bg: #111312;
  --panel: #171a18;
  --panel-hover: #1d221f;
  --text: #f6f7f6;
  --muted: #a7aba8;
  --quiet: #727873;
  --green: #36b578;
  --line: #2a2e2b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

::selection {
  background: var(--green);
  color: #07100c;
}

.page-shell {
  width: min(100%, 1500px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 24px clamp(24px, 4.5vw, 64px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: 62px;
  height: 62px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  color: #d7dad8;
  font-size: 1rem;
  font-weight: 650;
}

.nav-links a,
.primary-link {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(340px, 0.64fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(20px, 5vh, 48px) 0 18px;
}

.intro-copy {
  max-width: 860px;
  min-width: 0;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  margin: 18px 0 20px;
  color: var(--text);
  font-size: clamp(3.8rem, 6.2vw, 6.45rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.95;
}

.intro-copy p {
  max-width: 820px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  font-style: italic;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.primary-link {
  display: inline-flex;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 6px;
  background: var(--green);
  color: #07100c;
  padding: 12px 22px;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: #4dd38f;
  transform: translateY(-1px);
}

.intro-copy .contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.4;
}

.intro-copy .contact-line a,
footer a {
  color: var(--green);
  font-weight: 760;
  text-decoration: none;
}

.intro-copy .contact-line a:hover,
.intro-copy .contact-line a:focus-visible,
footer a:hover,
footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.coverage {
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 54px);
}

.coverage-head {
  margin-bottom: 18px;
}

.coverage h2 {
  max-width: 320px;
  margin: 0;
  font-size: clamp(1.65rem, 2.25vw, 2.1rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.05;
}

.coverage-list {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.coverage-list a {
  display: grid;
  gap: 4px;
  min-height: 56px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--panel);
  padding: 10px 13px;
  text-decoration: none;
  min-width: 0;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.coverage-list a:hover,
.coverage-list a:focus-visible {
  border-color: var(--green);
  background: var(--panel-hover);
  transform: translateX(2px);
}

.coverage-list span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 760;
}

.coverage-list strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 560;
  line-height: 1.32;
  overflow-wrap: break-word;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--quiet);
  font-size: 0.88rem;
}

@media (min-width: 901px) {
  body {
    overflow: hidden;
  }

  .page-shell {
    display: grid;
    height: 100svh;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .intro {
    min-height: 0;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .page-shell {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .brand {
    width: 56px;
    height: 56px;
  }

  .intro {
    padding-top: 20px;
    padding-bottom: 16px;
  }

  h1 {
    margin: 18px 0 18px;
    font-size: clamp(3.5rem, 6.8vw, 5.8rem);
  }

  .intro-copy p {
    margin-bottom: 12px;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .primary-link {
    margin-top: 10px;
    min-height: 44px;
  }

  .intro-copy .contact-line {
    margin-top: 10px;
    font-size: 0.92rem;
  }

  .coverage-list a {
    min-height: 52px;
    padding: 9px 13px;
  }

  .coverage-list strong {
    font-size: 0.9rem;
  }

  .coverage-list {
    gap: 8px;
  }

  footer {
    padding-top: 12px;
  }
}

@media (max-width: 900px) {
  .page-shell {
    padding: 26px 24px 34px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 0 34px;
  }

  .coverage {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 34px;
  }

  .coverage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand {
    width: 58px;
    height: 58px;
  }

  .nav-links {
    gap: 18px;
    font-size: 0.95rem;
  }

  h1 {
    font-size: 3.8rem;
  }

  .primary-link {
    width: 100%;
  }

  .coverage-head,
  footer {
    display: block;
  }

  .coverage-list {
    grid-template-columns: 1fr;
  }

  footer span {
    display: block;
    margin-top: 8px;
  }
}
