:root {
  --bg-top: #08111f;
  --bg-bottom: #13233f;
  --surface: rgba(10, 18, 34, 0.78);
  --surface-border: rgba(148, 163, 184, 0.2);
  --text: #edf4ff;
  --muted: #afc3df;
  --accent: #6ee7c8;
  --accent-strong: #38bdf8;
}

html {
  font-size: 16px;
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 28%),
    radial-gradient(circle at bottom right, rgba(110, 231, 200, 0.2), transparent 22%),
    linear-gradient(160deg, var(--bg-top), var(--bg-bottom));
}

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

.site-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header .site-shell,
.site-footer .site-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.site-brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
}

main {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: 2rem 0 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.content-card {
  border: 1px solid var(--surface-border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.hero__content {
  padding: 3rem;
}

.hero__eyebrow {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero h1,
.content-card h1 {
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 0.95;
}

.hero__lead,
.content-card p {
  max-width: 44rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

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

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.hero__button--primary {
  color: #04111d;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.hero__button--secondary {
  border-color: var(--surface-border);
  background: rgba(255, 255, 255, 0.03);
}

.hero__panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}

.status-card {
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.status-card__label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.status-card__value {
  margin-top: 0.6rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.status-card__meta {
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.6;
}

.content-card {
  padding: 2.25rem;
}

.site-footer {
  padding-bottom: 1rem;
}

.site-footer .site-shell {
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero__content,
  .hero__panel {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .site-header .site-shell,
  .site-footer .site-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero h1,
  .content-card h1 {
    font-size: 2.5rem;
  }
}
