:root {
  color-scheme: light;
  --ink: #10212b;
  --muted: #4d6470;
  --line: rgba(255, 255, 255, 0.28);
  --ocean: #0b6f91;
  --teal: #0e9f9a;
  --amber: #f0a43a;
  --paper: #f7fbfc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: calc(100vh - 58px);
}

.hero {
  position: relative;
  min-height: calc(100vh - 58px);
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-art,
.hero-art img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 251, 252, 0.96) 0%, rgba(247, 251, 252, 0.88) 39%, rgba(247, 251, 252, 0.5) 67%, rgba(12, 33, 43, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(16, 33, 43, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 120px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(11, 111, 145, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #0a5c79;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.content-panel {
  max-width: 680px;
}

.content-panel h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--ink);
}

.content-panel h2 {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0;
  color: #0a526c;
}

.content-panel h3 {
  margin: 30px 0 10px;
  font-size: 1.08rem;
}

.content-panel p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.content-panel p:first-of-type {
  max-width: 610px;
  color: #243d49;
  font-size: 1.2rem;
  line-height: 1.62;
}

.content-panel a {
  color: #075d7b;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.primary-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--ocean);
  color: var(--white);
  padding: 0 18px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(11, 111, 145, 0.22);
}

.primary-action:hover {
  background: #075d7b;
}

.status-pill {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(16, 33, 43, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0 14px;
  color: #324b56;
  font-size: 0.94rem;
  font-weight: 800;
}

.focus-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid var(--line);
  background: rgba(16, 33, 43, 0.76);
  backdrop-filter: blur(12px);
}

.focus-band div {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.focus-band span {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--line);
  color: #f4fbfd;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.focus-band span:last-child {
  border-right: 1px solid var(--line);
}

footer {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: #10212b;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .hero {
    min-height: calc(100vh - 86px);
    align-items: start;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 251, 252, 0.98) 0%, rgba(247, 251, 252, 0.92) 56%, rgba(247, 251, 252, 0.54) 100%),
      linear-gradient(90deg, rgba(247, 251, 252, 0.92), rgba(247, 251, 252, 0.35));
  }

  .hero-art img {
    object-position: 58% center;
  }

  .hero-content {
    width: min(100% - 28px, 620px);
    padding: 34px 0 230px;
  }

  .content-panel h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .content-panel p,
  .content-panel p:first-of-type {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: stretch;
  }

  .primary-action,
  .status-pill {
    width: 100%;
  }

  .focus-band div {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .focus-band span {
    min-height: 44px;
    padding: 0 8px;
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
  }
}
