:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #52606d;
  --line: #d7dee7;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --accent: #0f766e;
  --accent-strong: #0b4f4a;
  --warm: #f7b267;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

main {
  min-height: 100vh;
}

.hero {
  display: grid;
  min-height: 72vh;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(15, 118, 110, 0.94), rgba(23, 32, 42, 0.9)),
    url("data:image/svg+xml,%3Csvg width='1400' height='900' viewBox='0 0 1400 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.18'%3E%3Cpath d='M-100 520C140 390 260 700 500 560S820 220 1080 340 1330 620 1500 450'/%3E%3Cpath d='M-80 320C190 210 350 470 560 360S870 80 1140 210 1350 380 1490 270'/%3E%3Cpath d='M80 760C270 650 430 790 620 690S870 490 1100 570 1320 740 1440 650'/%3E%3C/g%3E%3Cg fill='%23ffffff' fill-opacity='.28'%3E%3Ccircle cx='258' cy='252' r='5'/%3E%3Ccircle cx='560' cy='360' r='5'/%3E%3Ccircle cx='873' cy='82' r='5'/%3E%3Ccircle cx='1082' cy='340' r='5'/%3E%3Ccircle cx='621' cy='690' r='5'/%3E%3Ccircle cx='1101' cy='570' r='5'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  padding: 80px 24px 64px;
}

.hero__content,
.summary__content {
  width: min(880px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--warm);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 10vw, 7.25rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.subtitle {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 26px;
  margin-left: auto;
  font-size: clamp(1.2rem, 2.5vw, 1.95rem);
  font-weight: 700;
  line-height: 1.28;
}

.lede {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.status {
  display: inline-block;
  margin: 26px 0 0;
  border-top: 3px solid var(--warm);
  padding: 16px 2px 0;
  color: #ffffff;
  font-weight: 700;
}

.summary,
.site-footer {
  padding: 72px 24px;
}

.summary {
  background: var(--soft);
}

.summary p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.site-footer p {
  width: min(1080px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  text-align: center;
}

@media (max-width: 760px) {
  .hero {
    min-height: 78vh;
    padding-top: 56px;
  }

  .summary,
  .site-footer {
    padding: 52px 20px;
  }
}
