:root {
  --bg: #0b1020;
  --bg-2: #0f1530;
  --panel: #131a36;
  --ink: #eef1fb;
  --muted: #9aa3c7;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #6c8cff;
  --accent-2: #57e0c5;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap { width: min(1080px, 90%); margin: 0 auto; }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11, 16, 32, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 800; font-size: 1.1rem; text-decoration: none; letter-spacing: -0.01em;
}
.brand.small { font-size: 0.98rem; }
.logo {
  width: 18px; height: 18px; border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(108, 140, 255, 0.5);
}
.nav nav a { margin-left: 1.7rem; text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.95rem; transition: color 0.15s; }
.nav nav a:hover { color: var(--ink); }

/* hero */
.hero {
  position: relative;
  padding: 7rem 0 5.5rem;
  background:
    radial-gradient(900px 460px at 78% -8%, rgba(108, 140, 255, 0.28), transparent 70%),
    radial-gradient(760px 420px at 4% 16%, rgba(87, 224, 197, 0.18), transparent 70%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.eyebrow {
  color: var(--accent-2); font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.78rem; margin-bottom: 1.1rem;
}
.hero h1 {
  font-size: clamp(2.3rem, 6.2vw, 4.2rem);
  line-height: 1.04; letter-spacing: -0.03em; font-weight: 800;
}
.grad {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { margin-top: 1.3rem; font-size: 1.18rem; color: var(--muted); max-width: 52ch; }
.cta-row { margin-top: 2.2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }
.cta {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 0.85rem 1.6rem; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #8aa0ff); color: #0a0f1f;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 28px rgba(108, 140, 255, 0.35);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(108, 140, 255, 0.5); }
.cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.cta.ghost:hover { border-color: var(--accent); }
.cta.big { font-size: 1.15rem; padding: 1rem 2rem; margin-top: 0.6rem; }

/* stat strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-2); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1.8rem 0; }
.stats div { display: flex; flex-direction: column; }
.stats strong { font-size: 1.05rem; }
.stats span { color: var(--muted); font-size: 0.9rem; }

/* sections */
.section { padding: 5rem 0; }
.section.alt { background: var(--bg-2); }
.section h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: -0.02em; font-weight: 800; }
.sub { color: var(--muted); margin-top: 0.7rem; font-size: 1.08rem; max-width: 58ch; }
.body { color: var(--muted); font-size: 1.06rem; max-width: 62ch; margin-top: 1rem; }

/* cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.1rem; margin-top: 2.2rem; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 1.6rem;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(108, 140, 255, 0.5); }
.icn {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  font-size: 1.1rem; margin-bottom: 1rem; color: var(--accent-2);
  background: rgba(108, 140, 255, 0.12); border: 1px solid var(--line);
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* two column */
.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: start; }
.facts { list-style: none; margin-top: 0.5rem; }
.facts li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.facts span { color: var(--muted); }
.facts strong { text-align: right; }
.facts a { color: var(--accent-2); text-decoration: none; }
.facts a:hover { text-decoration: underline; }

/* contact */
.contact { text-align: center; }
.contact .sub { margin: 0.7rem auto 1.4rem; }
.muted { color: var(--muted); font-size: 0.95rem; }
.contact .muted { margin-top: 1rem; }

/* footer */
footer { border-top: 1px solid var(--line); padding: 2.6rem 0; background: var(--bg); }
.foot { display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.foot .muted { margin-top: 0.4rem; }
.foot-links { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; font-size: 0.92rem; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--ink); }

/* legal pages */
.legal { padding: 4rem 0 5rem; }
.legal h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.legal p, .legal li { color: var(--muted); margin-top: 0.9rem; max-width: 70ch; }
.legal h2 { margin-top: 2rem; font-size: 1.25rem; }
.legal ul { margin-top: 0.6rem; padding-left: 1.2rem; }
.legal a { color: var(--accent-2); }
.legal .back { display: inline-block; margin-top: 2.5rem; color: var(--muted); text-decoration: none; }
.legal .back:hover { color: var(--ink); }

@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; gap: 1.6rem; }
  .stats { grid-template-columns: 1fr; gap: 0.6rem; }
  .nav nav a { margin-left: 1.1rem; }
}
