:root {
  color-scheme: dark;
  --bg: #0f1115;
  --panel: rgba(19, 22, 29, 0.76);
  --panel-strong: rgba(26, 30, 40, 0.94);
  --line: rgba(255, 255, 255, 0.10);
  --text: #f2efe8;
  --muted: #a6adbb;
  --accent: #d4a64d;
  --accent-strong: #f0c96e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 166, 77, 0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(90, 124, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #090a0d 0%, var(--bg) 100%);
  font-family: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

.backdrop {
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(72px);
  opacity: 0.8;
}

.backdrop-a {
  top: -120px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(212, 166, 77, 0.22);
}

.backdrop-b {
  right: -100px;
  top: 20%;
  width: 340px;
  height: 340px;
  background: rgba(88, 120, 255, 0.16);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.kicker,
.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 0.96;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.toplink,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.toplink:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

.layout {
  display: grid;
  gap: 18px;
}

.panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel) 0%, rgba(10, 12, 16, 0.64) 100%);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 28px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.lede {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.button.primary {
  color: #14110c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  border-color: transparent;
  font-weight: 700;
}

.button.secondary {
  color: var(--text);
}

.stats {
  display: grid;
  gap: 12px;
}

.stat {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel-strong);
}

.stat span {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat strong {
  font-size: 1.08rem;
  font-weight: 650;
}

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

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

.card p,
.notes li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.notes ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 12px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: space-between;
  padding: 16px 2px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

  .topbar {
    flex-direction: column;
  }
}
