@font-face {
  font-family: 'Outfit';
  src: url('../assets/fonts/Outfit-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../assets/fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../assets/fonts/Outfit-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../assets/fonts/Outfit-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

:root {
  --bg: #020108;
  --panel: rgba(15, 11, 30, 0.88);
  --panel-border: rgba(0, 245, 212, 0.18);
  --text: #e8e0f0;
  --muted: rgba(232, 224, 240, 0.72);
  --cyan: #00f5d4;
  --magenta: #f72585;
  --orange: #ff6b35;
  --violet: #b429f9;
  --gradient: linear-gradient(135deg, #00f5d4 0%, #b429f9 35%, #f72585 68%, #ff6b35 100%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(180, 41, 249, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0, 245, 212, 0.12), transparent 28%),
    var(--bg);
  line-height: 1.7;
}

a {
  color: inherit;
}

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

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

.brand {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.top-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.top-links a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.top-links a:hover,
.footer-links a:hover,
.inline-links a:hover,
.text-link:hover {
  color: #ffffff;
}

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

.page-hero,
.content-card,
.note-card {
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.1;
}

h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.lead,
.muted {
  color: var(--muted);
}

.lead {
  max-width: 46rem;
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.inline-links,
.download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  color: #020108;
  background: var(--gradient);
}

.button-secondary {
  border: 1px solid rgba(0, 245, 212, 0.28);
  background: rgba(0, 0, 0, 0.24);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.content-card,
.note-card {
  padding: 1.5rem;
}

.content-card ul,
.note-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.content-card li + li,
.note-card li + li {
  margin-top: 0.45rem;
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 37, 133, 0.25);
  background: rgba(0, 0, 0, 0.24);
  color: var(--muted);
}

.section-stack {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.footer-card {
  padding: 1.25rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 10, 22, 0.82);
}

.footer-meta {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-copy p:last-child,
.legal-copy li:last-child {
  margin-bottom: 0;
}

.text-link {
  color: var(--cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 245, 212, 0.35);
  text-underline-offset: 0.18em;
}

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

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

  .page-hero,
  .content-card,
  .note-card {
    padding: 1.25rem;
  }
}
