:root {
  color-scheme: dark;
  --bg: #08070d;
  --bg-2: #0d0c14;
  --panel: #12111c;
  --panel-2: #181725;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --muted: #8e93a6;
  --text: #f3f3f9;
  --dim: #c7c9d6;
  --brand-1: #7c3aed;
  --brand-2: #22d3ee;
  --brand-3: #f97316;
  --brand-grad: linear-gradient(120deg, #7c3aed 0%, #6366f1 45%, #22d3ee 100%);
  --brand-grad-soft: linear-gradient(120deg, rgba(124, 58, 237, 0.22), rgba(34, 211, 238, 0.18));
  --green: #4dd8ba;
  --amber: #f4a261;
  --max: 1180px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 18%, rgba(124, 58, 237, 0.18), transparent 36rem),
    radial-gradient(circle at 86% 12%, rgba(34, 211, 238, 0.14), transparent 40rem),
    radial-gradient(circle at 50% 110%, rgba(99, 102, 241, 0.12), transparent 50rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.3;
}

p { margin: 0 0 1em; color: var(--dim); }

em { font-style: normal; color: var(--text); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.9em;
}

.eyebrow.centered { text-align: center; }
.centered { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(8, 7, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  font-size: 0.93rem;
}

.nav-links a {
  color: var(--dim);
  transition: color 160ms ease;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brand-grad);
  color: #fff !important;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.32);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(124, 58, 237, 0.4);
}

main { display: block; }

section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) clamp(20px, 4vw, 48px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(50px, 8vw, 90px);
  padding-bottom: clamp(50px, 8vw, 90px);
}

.hero-copy h1 {
  background: linear-gradient(120deg, #ffffff 0%, #d6ccff 55%, #a3e9f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text);
  margin-bottom: 1.2em;
}

.hero-note {
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.32);
}

.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.42);
}

.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.button.secondary:hover {
  background: var(--panel);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-card {
  position: relative;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-grad-soft);
  opacity: 0.6;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 70%);
}

.hero-card > * { position: relative; z-index: 1; }

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(77, 216, 186, 0.18);
  margin-top: 6px;
  flex-shrink: 0;
}

.card-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 4px;
}

.card-title {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}

.card-body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--dim);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.intro p { color: var(--dim); }

.pillars {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.pillar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.16);
}

.pillar-num {
  font-family: "JetBrains Mono", "Fira Code", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: transparent;
  background: var(--brand-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}

.pillar h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.pillar p {
  margin: 0;
  font-size: 0.95rem;
}

.pillars-note {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.killer {
  position: relative;
  padding-top: clamp(70px, 10vw, 120px);
  padding-bottom: clamp(70px, 10vw, 120px);
}

.killer::before {
  content: "";
  position: absolute;
  inset: 20% 10% 20% 10%;
  background: var(--brand-grad-soft);
  filter: blur(60px);
  z-index: -1;
  border-radius: 50%;
}

.killer h2 {
  background: linear-gradient(120deg, #ffffff 0%, #c7b8ff 50%, #9ae6f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.killer .lead {
  font-style: italic;
  max-width: 50ch;
}

.audience {
  border-top: 1px solid var(--line);
}

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

.audience article {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.audience h3 {
  color: var(--text);
  margin-bottom: 8px;
}

.audience p {
  margin: 0;
  font-size: 0.93rem;
}

.invite {
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.14), transparent 45%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: clamp(40px, 6vw, 80px) auto;
  padding: clamp(40px, 6vw, 70px);
  max-width: calc(var(--max) - 40px);
}

.invite h2 {
  max-width: 22ch;
}

.invite-cta {
  margin-top: 28px;
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px clamp(20px, 4vw, 48px);
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 24px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  transition: color 160ms ease;
}

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

.footer-meta {
  margin: 20px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.subpage {
  background:
    radial-gradient(circle at 14% 0%, rgba(124, 58, 237, 0.12), transparent 40rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) clamp(20px, 4vw, 40px);
}

.legal-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.legal-page h2 {
  margin-top: 2em;
  font-size: 1.15rem;
}

.legal-page section {
  padding: 0;
  margin: 0 0 1.6em;
  max-width: none;
}

.legal-meta {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2em;
}

.legal-page p, .legal-page li {
  color: var(--dim);
  font-size: 0.96rem;
}

.legal-page a {
  color: var(--brand-2);
  border-bottom: 1px solid rgba(34, 211, 238, 0.4);
}

.legal-page a:hover { color: var(--text); border-color: var(--text); }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; }
  .hero-card { order: 2; }
  .intro { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
}
