:root {
  --bg: #000;
  --bg2: #0a0a0a;
  --surface: rgba(255,255,255,0.04);
  --surface-strong: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.1);
  --border-bright: rgba(255,255,255,0.18);
  --text: #f5f5f7;
  --muted: #9a9aa0;
  --accent: #6e40c9;
  --accent2: #9b6dff;
  --green: #30d158;
  --yellow: #ffd60a;
  --radius: 22px;
  --font: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-brand: 'Audiowide', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(110,64,201,0.28) 0%, transparent 72%),
    linear-gradient(180deg, #050505 0%, #000 40%, #050505 100%);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: fit-content;
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px 6px 18px;
  border: 1px solid var(--border);
  border-radius: 980px;
  background: rgba(18,18,24,0.82);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.4),
    0 8px 32px rgba(0,0,0,0.5),
    0 0 0 4px rgba(255,255,255,0.02);
  white-space: nowrap;
}

.site-brand {
  margin-right: 12px;
  font-family: var(--font-brand);
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--text);
  flex-shrink: 0;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-links a {
  padding: 7px 14px;
  border-radius: 980px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.site-links a:hover,
.site-links a.active {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.site-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 8px 20px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 20px rgba(110,64,201,0.4);
}

.site-cta:hover {
  background: var(--accent2);
  transform: scale(1.03);
  box-shadow: 0 0 28px rgba(110,64,201,0.6);
}

.page-hero {
  min-height: 20vh;
  padding: 120px 0 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent2);
  border: 1px solid rgba(110,64,201,0.38);
  background: rgba(110,64,201,0.1);
}

.hero-title {
  margin: 20px 0 16px;
  max-width: 720px;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  text-align: center;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 30px rgba(110,64,201,0.22);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: var(--border-bright);
}

.meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.content-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 32px 0 0;
}

.card,
.section-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.card h2,
.section-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.card h3,
.section-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.card p,
.section-card p,
.section-card li,
.card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.card strong,
.section-card strong {
  color: var(--text);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.pill.warn {
  color: #fff7d6;
  background: rgba(255,214,10,0.12);
  border-color: rgba(255,214,10,0.28);
}

.list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.list li + li {
  margin-top: 10px;
}

.section-stack {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.callout {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(110,64,201,0.28);
  background: rgba(110,64,201,0.09);
  color: var(--text);
}

.callout p {
  margin: 0;
}

.table-like {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.table-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 160px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.table-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.table-row .label {
  color: var(--text);
  font-weight: 700;
}

.legal-section {
  margin-top: 18px;
}

.legal-section p + p,
.legal-section p + ul,
.legal-section ul + p {
  margin-top: 12px;
}

.footer-note {
  margin: 40px 0 56px;
  padding: 20px 0 12px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-note a {
  color: var(--text);
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-nav {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
    gap: 12px;
  }

  .site-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .page-hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 36px;
  }

  .hero-title {
    font-size: clamp(24px, 9vw, 36px);
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}
