:root {
  --bg: #f7fbf9;
  --ink: #102a2a;
  --muted: #5e7370;
  --teal: #075f17;
  --green: #4d8f25;
  --red: #c90b22;
  --blue: #326aa8;
  --mint: #d9f0e9;
  --white: #ffffff;
  --line: rgba(16, 42, 42, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(217, 240, 233, 0.88), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 85% 15%, rgba(50, 106, 168, 0.15), transparent 30rem),
    var(--bg);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
}

.announcement {
  width: min(1120px, 100%);
  min-height: min(760px, calc(100vh - 2rem));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(1.25rem, 4vw, 3.25rem);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand-logo-small {
  width: clamp(8rem, 16vw, 12rem);
  height: auto;
  flex: 0 0 auto;
  mix-blend-mode: multiply;
  object-fit: contain;
  filter: drop-shadow(0 0.45rem 0.7rem rgba(16, 42, 42, 0.08));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(20rem, 0.8fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 9.5ch;
  margin: 0;
  font-size: clamp(3rem, 6.3vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.intro {
  max-width: 37rem;
  margin: 1.55rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.65;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.contact-list a,
.site-footer a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.contact-list a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.68rem 0.9rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0.85rem 2rem rgba(15, 118, 110, 0.07);
}

.contact-list a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  padding: 0.78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 1rem 2.5rem rgba(15, 118, 110, 0.08);
}

.pulse {
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 999px;
  background: #23a170;
  box-shadow: 0 0 0 0 rgba(35, 161, 112, 0.42);
  animation: pulse 2s infinite;
}

.visual-panel {
  position: relative;
  min-height: clamp(22rem, 44vw, 34rem);
  display: grid;
  place-items: center;
}

.visual-panel::before {
  position: absolute;
  inset: 7% 0 3% 6%;
  content: "";
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 42, 42, 0.08);
  box-shadow: 0 1.5rem 4rem rgba(16, 42, 42, 0.1);
}

.wave-visual {
  position: relative;
  width: min(100%, 31rem);
  height: auto;
  mix-blend-mode: multiply;
  object-fit: contain;
  filter: drop-shadow(0 1.7rem 1.8rem rgba(15, 118, 110, 0.14));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer span:last-child {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem 1rem;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.65rem rgba(35, 161, 112, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(35, 161, 112, 0);
  }
}

@media (max-width: 820px) {
  .page-shell {
    align-items: start;
  }

  .announcement {
    min-height: 100vh;
  }

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

  h1 {
    max-width: 10ch;
  }

  .visual-panel {
    min-height: 17rem;
    order: -1;
  }

  .wave-visual {
    width: min(85%, 22rem);
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer span:last-child {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .announcement {
    padding-inline: 0.35rem;
  }

  .brand-logo-small {
    width: min(48vw, 10rem);
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  .intro {
    font-size: 1rem;
  }

  .status-row {
    width: 100%;
    justify-content: center;
  }
}
