:root {
  --bg: #07071A;
  --bg-2: #0C0C24;
  --surface: rgba(255, 255, 255, 0.025);
  --surface-2: rgba(255, 255, 255, 0.04);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --ink: #F2F3F8;
  --ink-2: #C9CBD8;
  --muted: #8B8FA8;
  --muted-2: #5E627A;
  --blue: #4F8EF7;
  --blue-soft: #6BA0FF;
  --purple: #A78BFA;
  --purple-soft: #B79BFF;
  --indigo: #7C6BFF;
  --grad: linear-gradient(135deg, #A78BFA 0%, #7C6BFF 45%, #4F8EF7 100%);
  --grad-soft: linear-gradient(135deg, rgba(167, 139, 250, 0.18) 0%, rgba(79, 142, 247, 0.18) 100%);
  --grad-border: linear-gradient(135deg, rgba(167, 139, 250, 0.5) 0%, rgba(79, 142, 247, 0.5) 100%);
  --glow-purple: 0 0 60px rgba(167, 139, 250, 0.25);
  --glow-blue: 0 0 60px rgba(79, 142, 247, 0.22);
  --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.2), 0 12px 32px -8px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 8px 32px rgba(124, 107, 255, 0.35), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 60% 50% at 20% -5%, rgba(124, 107, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 8%, rgba(79, 142, 247, 0.14) 0%, transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

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

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 7, 26, 0.7);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-mark {
  width: 26px;
  height: 26px;
  color: var(--purple);
  filter: drop-shadow(0 0 8px rgba(167, 139, 250, 0.45));
}
.brand-text {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 9px 14px;
  border-radius: 999px;
  transition: all 0.18s ease;
}
.nav-cta svg { width: 14px; height: 14px; }
.nav-cta:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  color: var(--ink);
}

/* ============== HERO ============== */
.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero .container { position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  backdrop-filter: blur(8px);
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.9);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}
.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(42px, 6.8vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--ink);
  max-width: 980px;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 0 40px;
  font-weight: 400;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
}
.hero-cta-note {
  font-size: 13px;
  color: var(--muted);
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  text-decoration: none;
  position: relative;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 50%);
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(124, 107, 255, 0.5), 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}
.btn-lg {
  font-size: 16px;
  padding: 17px 30px;
}

/* ============== SECTIONS ============== */
.section {
  padding: 112px 0;
  position: relative;
}
.section-tight {
  padding: 64px 0;
}
.section-muted {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 107, 255, 0.08) 0%, transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.kicker {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 16px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.kicker.centered {
  display: block;
  text-align: center;
}
.section-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 720px;
  color: var(--ink);
}
.section-title.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 64px;
}
.section-body {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 540px;
}

/* ============== PILLARS ============== */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.3), transparent 40%, transparent 60%, rgba(79, 142, 247, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.pillar:hover {
  background: var(--surface-2);
  transform: translateY(-3px);
}
.pillar:hover::before {
  opacity: 1;
}
.pillar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.pillar-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--ink);
}
.pillar-body {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ============== SPLIT ============== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-text { max-width: 520px; }

/* ============== COA CARD ============== */
.coa-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 28px 20px;
  box-shadow: var(--shadow-card), var(--glow-purple);
  position: relative;
  overflow: hidden;
}
.coa-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--grad);
  opacity: 0.7;
}
.coa-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.coa-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.coa-lot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--purple-soft);
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  padding: 3px 10px;
  border-radius: 4px;
}
.coa-rows {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.coa-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px dashed var(--border);
}
.coa-row:last-child { border-bottom: none; }
.coa-row dt {
  font-size: 14px;
  color: var(--ink-2);
}
.coa-row dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: var(--blue-soft);
}
.pass {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #B79BFF;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  padding: 3px 11px;
  border-radius: 999px;
}
.pass::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-soft);
  box-shadow: 0 0 6px rgba(167, 139, 250, 0.8);
}
.coa-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--muted-2);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============== STEPS ============== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.2s ease;
}
.step:hover {
  background: var(--surface-2);
  border-color: var(--border-strong);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(124, 107, 255, 0.35);
}
.step-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ============== COMPLIANCE ============== */
.compliance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.comp-item {
  padding: 26px 26px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comp-item:last-child { border-right: none; }
.comp-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}
.comp-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

/* ============== FINAL CTA ============== */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(124, 107, 255, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.final-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--ink);
}
.final-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.final-note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 56px 0 48px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.footer-brand .brand-mark { color: var(--purple); }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.footer-meta a { color: var(--ink-2); transition: color 0.15s ease; }
.footer-meta a:hover { color: var(--purple-soft); }
.dot-sep { color: var(--muted-2); }
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted-2);
  max-width: 760px;
  margin: 12px 0 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .compliance { grid-template-columns: 1fr 1fr; }
  .comp-item:nth-child(2) { border-right: none; }
  .comp-item:nth-child(1), .comp-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .hero { padding: 80px 0 64px; }
  .section { padding: 80px 0; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-cta span { display: none; }
  .nav-cta { padding: 9px 12px; }
  .steps { grid-template-columns: 1fr; }
  .compliance { grid-template-columns: 1fr; }
  .comp-item { border-right: none; border-bottom: 1px solid var(--border); }
  .comp-item:last-child { border-bottom: none; }
  .hero-cta-note { width: 100%; }
}
