:root {
  --bg: #f4f1e8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --text: #102333;
  --text-muted: #4b5d6d;
  --line: rgba(16, 35, 51, 0.12);
  --accent: #1d98d5;
  --accent-deep: #0f6fa9;
  --hero: #1d3442;
  --shadow: 0 24px 60px rgba(16, 35, 51, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(29, 152, 213, 0.1), transparent 30%),
    linear-gradient(180deg, #f7f3ea 0%, #eef2f4 100%);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 0;
  min-height: 720px;
  background: rgba(14, 34, 48, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  min-height: 100%;
  background: var(--hero);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 31, 0.26);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 56px 52px;
  background:
    linear-gradient(180deg, rgba(244, 241, 232, 0.92) 0%, rgba(244, 241, 232, 0.98) 100%);
}

.hero-logo {
  display: block;
  width: min(100%, 430px);
  height: auto;
  margin: 0;
  align-self: flex-start;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  align-self: flex-start;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.lede {
  margin: 0;
  max-width: 32rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.status-card {
  margin-top: 10px;
  width: min(100%, 500px);
  padding: 24px 24px 22px;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid rgba(29, 152, 213, 0.16);
  box-shadow: 0 18px 40px rgba(16, 35, 51, 0.08);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(29, 152, 213, 0.12);
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

.status-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
}

.status-links a,
.footer-links a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: none;
}

.status-links a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.details-card {
  padding: 28px 28px 26px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 40px rgba(16, 35, 51, 0.08);
  backdrop-filter: blur(14px);
}

.details-card h2 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.details-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
}

.details-card li + li {
  margin-top: 8px;
}

.site-footer {
  padding: 0 16px 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 10px;
}

@media (min-width: 981px) {
  .page-shell {
    width: min(1080px, calc(100% - 48px));
    padding-top: 18px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-content {
    padding: 44px 40px;
    gap: 16px;
  }

  .hero-logo {
    width: min(100%, 350px);
  }

  .eyebrow {
    font-size: 0.76rem;
  }

  h1 {
    font-size: clamp(2.15rem, 3.7vw, 3.55rem);
  }

  .lede {
    max-width: 28rem;
    font-size: 1rem;
  }

  .status-card {
    width: min(100%, 430px);
    padding: 20px 20px 18px;
  }

  .status-card p {
    font-size: 0.94rem;
  }

  .details {
    gap: 14px;
    margin-top: 14px;
  }

  .details-card {
    padding: 22px 22px 20px;
  }

  .details-card h2 {
    font-size: 1.08rem;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-content {
    padding: 40px 28px 36px;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100%, calc(100% - 20px));
    padding-top: 10px;
  }

  .hero {
    border-radius: 28px;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-content {
    padding: 28px 20px 24px;
  }

  .hero-logo {
    width: min(100%, 320px);
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .lede {
    font-size: 1rem;
  }

  .details-card {
    padding: 22px 20px;
    border-radius: 24px;
  }
}
