:root {
  --javey-blue: #16385f;
  --javey-blue-deep: #0d2340;
  --javey-red: #c63a3a;
  --javey-sand: #f2ede6;
  --javey-ink: #1c2530;
  --javey-muted: #5e6876;
  --javey-line: rgba(22, 56, 95, 0.14);
  --javey-white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(13, 35, 64, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--javey-ink);
  background: #f9f9f9;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.brand img {
  width: clamp(132px, 18vw, 190px);
  height: auto;
  display: block;
}

.topbar-note {
  max-width: none;
  color: #c63a3a;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: right;
  white-space: nowrap;
}

.topbar-note p {
  margin: 0;
}

.topbar-note p + p {
  margin-top: 0.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.status-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--javey-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-copy {
  padding: clamp(2rem, 4vw, 4rem);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--javey-red), var(--javey-blue));
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--javey-red);
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--javey-blue-deep);
}

.lead {
  margin: 1.5rem 0 0;
  max-width: 40rem;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.65;
  color: var(--javey-ink);
}

.message {
  margin: 1.25rem 0 0;
  max-width: 42rem;
  line-height: 1.75;
  color: var(--javey-muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--javey-red), #dd5757);
  color: var(--javey-white);
  box-shadow: 0 14px 28px rgba(198, 58, 58, 0.24);
}

.button-secondary {
  border: 1px solid rgba(22, 56, 95, 0.18);
  background: var(--javey-white);
  color: var(--javey-blue);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.highlights li {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(22, 56, 95, 0.06), rgba(22, 56, 95, 0.02));
  border: 1px solid rgba(22, 56, 95, 0.08);
  font-size: 0.96rem;
  line-height: 1.5;
}

.status-card {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(13, 35, 64, 0.96), rgba(22, 56, 95, 0.94)),
    var(--javey-blue-deep);
  color: var(--javey-white);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f8d6d6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  margin: 1.25rem 0 0;
  font-size: 1.8rem;
  line-height: 1.15;
}

.status-card p {
  margin: 1rem 0 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.contact-list {
  margin: 2rem 0 0;
}

.contact-list div + div {
  margin-top: 1.2rem;
}

.contact-list dt {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.contact-list dd {
  margin: 0.4rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-list a {
  text-decoration: none;
}

@media (max-width: 960px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .topbar-note {
    max-width: none;
    text-align: left;
    white-space: normal;
  }

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

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 1.25rem, 100%);
    padding: 1rem 0 2rem;
  }

  .hero-copy,
  .status-card {
    border-radius: 22px;
  }

  .hero-copy {
    padding: 1.4rem;
  }

  .status-card {
    padding: 1.4rem;
  }

  h1 {
    max-width: none;
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
