:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-soft: #0d1b2d;
  --surface: rgba(8, 15, 26, 0.78);
  --surface-border: rgba(255, 255, 255, 0.09);
  --text: #f8fafc;
  --muted: #c7d2e0;
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Avenir", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.12), transparent 30%),
    linear-gradient(160deg, var(--bg) 0%, #0a1628 48%, #111827 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 85%);
}

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

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

.hero-card,
.info-card {
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 40px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.24), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

.brand-mark {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 20px;
}

.brand-mark span {
  display: block;
  width: 14px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.95), rgba(251, 191, 36, 0.55));
}

.brand-mark span:last-child {
  height: 18px;
  align-self: end;
  background: linear-gradient(180deg, rgba(226, 232, 240, 0.95), rgba(148, 163, 184, 0.5));
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.2rem);
}

.lede {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.7;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

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

.button-primary {
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 40px 0 0;
}

.facts div {
  padding: 18px;
  border-radius: 20px;
  background: var(--accent-soft);
  border: 1px solid rgba(245, 158, 11, 0.18);
}

.facts dt {
  margin: 0 0 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248, 250, 252, 0.7);
}

.facts dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

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

.info-card {
  border-radius: 24px;
  padding: 28px;
}

.info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

  .hero-card {
    padding: 24px;
    border-radius: 24px;
  }

  .facts,
  .supporting-grid {
    grid-template-columns: 1fr;
  }
}
