:root {
  --ink: #172326;
  --muted: #5d6f73;
  --paper: #f7fbfa;
  --surface: #ffffff;
  --teal: #007c83;
  --teal-dark: #045961;
  --coral: #dc4f4d;
  --gold: #d89b3d;
  --line: rgba(23, 35, 38, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 124, 131, 0.13), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, var(--paper) 52%, #eef7f5 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  align-content: center;
  gap: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
}

.eyebrow {
  margin: 64px 0 18px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.summary {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.status {
  width: fit-content;
  margin-top: 34px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 16px 48px rgba(0, 63, 68, 0.08);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(220, 79, 77, 0.45);
  animation: pulse 1.8s infinite;
}

.hero-visual {
  min-width: 0;
}

.hero-visual img {
  width: 100%;
  max-height: 560px;
  display: block;
  filter: drop-shadow(0 34px 48px rgba(0, 63, 68, 0.16));
}

.info-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-band > div {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.info-band a,
.info-band span:last-child {
  overflow-wrap: anywhere;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(220, 79, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(220, 79, 77, 0);
  }
}

@media (max-width: 820px) {
  .page-shell {
    min-height: auto;
    padding: 22px 0;
    align-content: start;
  }

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

  .eyebrow {
    margin-top: 54px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4.4rem);
  }

  .hero-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

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

@media (max-width: 460px) {
  .page-shell {
    width: min(100% - 24px, 1120px);
  }

  .brand span {
    font-size: 0.95rem;
  }

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