:root {
  color-scheme: dark;
  --bg: #07100f;
  --panel: rgba(9, 20, 22, 0.74);
  --panel-border: rgba(166, 227, 214, 0.18);
  --text: #edf7f4;
  --muted: #a9b9b5;
  --accent: #65d6c5;
  --accent-strong: #c7f4e5;
  --warm: #e6b36d;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  background: #07100f;
}

.hero {
  position: relative;
  min-height: min(760px, 78vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  z-index: -2;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 10, 10, 0.94) 0%, rgba(4, 10, 10, 0.76) 42%, rgba(4, 10, 10, 0.34) 78%),
    linear-gradient(0deg, #07100f 0%, rgba(7, 16, 15, 0) 35%);
  z-index: -1;
}

.hero__content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 120px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
}

.lede {
  max-width: 590px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(237, 247, 244, 0.22);
  border-radius: 6px;
  background: rgba(7, 16, 15, 0.52);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 244, 229, 0.58);
  background: rgba(14, 36, 36, 0.7);
}

.button--primary {
  border-color: rgba(101, 214, 197, 0.58);
  background: rgba(52, 146, 132, 0.22);
  color: var(--accent-strong);
}

.status {
  width: min(1120px, calc(100% - 40px));
  margin: -78px auto 0;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  z-index: 2;
}

.status-card {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.status-card__label {
  margin-bottom: 8px;
  color: var(--warm);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-card h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.status-card p:not(.status-card__label) {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.status-card__meta {
  color: var(--accent-strong);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .hero {
    min-height: 720px;
    align-items: flex-start;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(4, 10, 10, 0.9) 0%, rgba(4, 10, 10, 0.7) 62%, #07100f 100%),
      linear-gradient(90deg, rgba(4, 10, 10, 0.9), rgba(4, 10, 10, 0.3));
  }

  .hero__content {
    padding-top: 88px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .status {
    grid-template-columns: 1fr;
    margin-top: -96px;
  }

  .button {
    flex: 1 1 180px;
  }
}
