:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --panel: #ffffff;
  --text: #111827;
  --muted: #5b6472;
  --line: #d8e0ea;
  --accent: #0f766e;
  --accent-strong: #0b5f59;
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  --screen: #121826;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(15, 118, 110, 0.08), transparent 22%),
    var(--bg);
}

a {
  color: inherit;
}

main,
.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 40px 0 24px;
}

.hero__brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.hero__logo {
  flex: none;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3,
p,
dl {
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 0.95;
  max-width: 9ch;
}

.lede {
  max-width: 60ch;
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--panel);
}

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

.button--secondary {
  color: var(--accent-strong);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero__facts div,
.state,
.cta-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__facts div {
  padding: 16px;
}

.hero__facts dt {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.hero__facts dd {
  font-size: 1rem;
  font-weight: 600;
}

.section {
  padding: 26px 0;
}

.section--tight {
  padding-top: 12px;
}

.section--compact {
  padding-bottom: 56px;
}

.section__copy,
.section__header {
  max-width: 64ch;
}

.section__header h2,
.section__copy h2,
.cta-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.05;
  margin-bottom: 10px;
}

.section__copy p,
.section__header p,
.cta-panel p,
.state p {
  color: var(--muted);
  line-height: 1.6;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.state {
  padding: 18px;
  min-height: 146px;
}

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

.shot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.shot {
  margin: 0;
  padding: 10px;
  background: var(--screen);
  border: 1px solid rgba(17, 24, 39, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 2670;
  object-fit: cover;
  border-radius: 6px;
  background: #0f172a;
}

.shot figcaption {
  padding: 10px 2px 2px;
  color: #eef6f5;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
}

.cta-panel__links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.cta-panel__links a {
  text-decoration: none;
  color: var(--accent-strong);
}

.legal {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

.legal h1 {
  max-width: none;
  margin: 18px 0 12px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.legal h2 {
  margin: 30px 0 10px;
  font-size: 1.35rem;
}

.legal p,
.legal li {
  color: var(--muted);
  line-height: 1.65;
}

.legal p,
.legal ul {
  margin: 0 0 14px;
}

.legal__back {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 760px) {
  .hero,
  main {
    width: min(100% - 20px, 1120px);
  }

  .hero__brand {
    align-items: flex-start;
  }

  .hero__facts,
  .state-grid,
  .cta-panel {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .cta-panel {
    gap: 16px;
  }

  .hero {
    padding-top: 24px;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 460px) {
  .shot-grid {
    grid-template-columns: 1fr;
  }
}
