:root {
  --ink: #102033;
  --muted: #526173;
  --paper: #f7f9fb;
  --white: #ffffff;
  --primary: #116333;
  --secondary: #5eabe3;
  --accent: #feb630;
  --neutral: #dddddd;
  --line: rgba(16, 32, 51, 0.14);
  --shadow: 0 24px 70px rgba(17, 99, 51, 0.2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px) 54px;
  color: var(--white);
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(94, 171, 227, 0.32), transparent 34%),
    linear-gradient(135deg, #0b4223 0%, var(--primary) 52%, #164b72 100%);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: var(--accent);
  color: #173311;
  font-weight: 800;
  font-size: 1.25rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero__content {
  width: min(690px, 100%);
  padding-top: 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.info-band article {
  min-height: 210px;
  padding: 34px clamp(22px, 4vw, 54px);
  background: var(--white);
}

.info-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(94, 171, 227, 0.18);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.info-band h2,
.site-footer p {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.14;
}

.info-band p,
.site-footer span {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--paper);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

@media (max-width: 860px) {
  .hero {
    min-height: 72vh;
  }

  .info-band {
    grid-template-columns: 1fr;
  }

  .info-band article {
    min-height: auto;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 20px 18px 38px;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .hero__content {
    padding-top: 74px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 17vw, 4.6rem);
  }

}
