:root {
  --bg: #050508;
  --bg-elevated: #0c0c10;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --silver: #e4e4e7;
  --purple: #a855f7;
  --purple-bright: #c084fc;
  --purple-glow: rgba(168, 85, 247, 0.35);
  --purple-dim: rgba(168, 85, 247, 0.12);
  --indigo: #6366f1;
  --max-width: 1120px;
  --radius: 0;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--purple-bright);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #e9d5ff;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-glow::before,
.bg-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.bg-glow::before {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: rgba(168, 85, 247, 0.18);
}

.bg-glow::after {
  width: 420px;
  height: 420px;
  bottom: 10%;
  left: -120px;
  background: rgba(99, 102, 241, 0.12);
}

.vector-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
}

.vector-lines svg {
  width: 100%;
  height: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 8, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand span {
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: white;
  box-shadow: 0 12px 40px var(--purple-glow);
}

.btn-primary:hover {
  color: white;
  box-shadow: 0 16px 48px rgba(168, 85, 247, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(168, 85, 247, 0.35);
  background: var(--purple-dim);
  color: var(--purple-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #fafafa, #c084fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--text-secondary);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  box-shadow: 0 0 12px var(--purple-glow);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.hero-logo-wrap {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), transparent 45%, rgba(99, 102, 241, 0.35));
  z-index: -1;
  opacity: 0.45;
}

.hero-logo-wrap img {
  width: min(100%, 280px);
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(168, 85, 247, 0.25));
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-secondary);
}

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

.card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(168, 85, 247, 0.25);
  background: var(--purple-dim);
  color: var(--purple-bright);
  font-weight: 700;
}

.steps-grid .card {
  counter-increment: step;
}

.step-number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
}

.cta-band {
  margin: 1rem 0 4rem;
  padding: 2.5rem;
  border: 1px solid rgba(168, 85, 247, 0.25);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(99, 102, 241, 0.08));
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--text-secondary);
}

.legal-page {
  padding: 3.5rem 0 5rem;
}

.legal-page h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
}

.legal-meta {
  margin: 0 0 2rem;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 46rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
}

.legal-content ul {
  padding-left: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-card {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(168, 85, 247, 0.25);
  background: var(--purple-dim);
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 8, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-copy {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

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

  .hero {
    padding-top: 3rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .site-nav {
    display: none;
  }
}
