:root {
  color-scheme: light;
  --ink: #17313b;
  --muted: #52666f;
  --river: #2f7f8f;
  --river-soft: rgba(47, 127, 143, 0.16);
  --surface: rgba(255, 255, 255, 0.78);
  --line: rgba(23, 49, 59, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(232, 242, 240, 0.96), rgba(247, 250, 248, 0.98)),
    #f7faf8;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 56px 24px 42px;
}

.river-lines {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.48;
  pointer-events: none;
}

.river-lines svg {
  width: 100%;
  height: 100%;
}

.river-lines path {
  fill: none;
  stroke: var(--river);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.42;
}

.hero,
.info-grid {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin-inline: auto;
}

.hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 36px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #38616c;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  width: min(720px, 100%);
  margin: 26px 0 0;
  font-size: clamp(1.18rem, 2.3vw, 1.72rem);
  line-height: 1.42;
  color: var(--muted);
}

.status-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(38, 72, 82, 0.08);
}

.status-panel strong {
  font-size: 1rem;
}

.status-panel span:last-child {
  color: var(--muted);
}

.pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2f9a78;
  box-shadow: 0 0 0 8px rgba(47, 154, 120, 0.16);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 28px;
}

.info-grid article {
  min-height: 168px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.info-grid h2 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.info-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 36px 18px 28px;
  }

  .hero {
    min-height: 62vh;
    padding-block: 24px;
  }

  .status-panel {
    width: 100%;
  }

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

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