:root {
  --ink: #172532;
  --ink-soft: #40505e;
  --paper: #fafafa;
  --white: #ffffff;
  --line: #dce2e6;
  --lime: #b8ef36;
  --lime-dark: #78a900;
  --court: #e8f3dc;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 37, 50, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 37, 50, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: "Avenir Next", "Century Gothic", Futura, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(23, 37, 50, 0.12);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner,
.page-shell,
.footer-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 750;
}

.brand-link img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
}

.brand-link span {
  font-weight: 450;
}

.brand-link strong {
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

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

.hero {
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(64px, 10vw, 120px) 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 4px;
  content: "";
  background: var(--lime);
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: Rockwell, "Roboto Slab", Georgia, serif;
  font-size: 4.8rem;
  font-weight: 800;
}

h1 span {
  font-family: "Avenir Next", "Century Gothic", Futura, sans-serif;
  font-weight: 400;
}

.hero h1 {
  white-space: nowrap;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: #263a4a;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--white);
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-mark::before {
  position: absolute;
  inset: 7% 2% 8% 8%;
  content: "";
  border: 2px solid var(--ink);
  background: var(--court);
  transform: rotate(-3deg);
}

.hero-mark::after {
  position: absolute;
  right: 5%;
  bottom: 3%;
  width: 34%;
  height: 18px;
  content: "";
  background: var(--lime);
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  mix-blend-mode: multiply;
}

.feature-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  min-height: 230px;
  padding: 40px 32px;
  border-right: 1px solid var(--line);
}

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

.feature-number {
  display: block;
  margin-bottom: 32px;
  color: var(--lime-dark);
  font-family: Rockwell, Georgia, serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.feature h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
}

.status-band {
  padding: 64px 0;
}

.status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 36px;
  border-left: 8px solid var(--lime);
  background: var(--ink);
  color: var(--white);
}

.status-inner h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.status-inner p {
  max-width: 700px;
  margin: 0;
  color: #c8d2da;
}

.status-label {
  flex: 0 0 auto;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.content-page {
  max-width: 820px;
  padding: 72px 0 96px;
}

.content-page h1 {
  margin-bottom: 20px;
  font-size: 4rem;
}

.content-page .lede {
  margin: 0 0 52px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.content-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.content-page h2 {
  margin-bottom: 14px;
  font-size: 1.38rem;
}

.content-page h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.content-page p,
.content-page li {
  color: var(--ink-soft);
}

.content-page ul {
  padding-left: 22px;
}

.contact-strip {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.contact-strip p:last-child {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 760px) {
  .header-inner,
  .page-shell,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .content-page h1 {
    font-size: 2.75rem;
  }

  .hero-mark {
    min-height: 320px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .status-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding: 28px 0;
  }
}
