:root {
    --container: 1264px;

    --bg: #000000;
    --bg-alt: #0a0a0a;
    --surface: #121212;
    --surface-2: #1a1a1a;
    --border: rgba(255,255,255,0.08);
    --border-strong: rgba(255,255,255,0.16);

    --text: #f2f2f4;
    --text-muted: #a1a1a8;
    --text-faint: #6f6f78;

    --purple: #7a00c6;
    --purple-soft: rgba(122,0,198,0.16);
    --orange: #f97316;
    --orange-soft: rgba(249,115,22,0.16);
    --yellow: #f9d67a;
    --sage: #a2cca8;
    --cyan: #23ced8;
    --teal: #097c87;

    --gradient-main: linear-gradient(90deg, #7a00c6 0%, #f97316 100%);
    --font-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
  }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
::selection { background: var(--purple); color: #fff; }
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
  }
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
  }
@media (max-width: 640px) {
    .container { padding: 0 20px; }
  }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
  }
.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex: none;
  }
.section-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 16px;
    text-wrap: balance;
    max-width: 640px;
  }
.section-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0;
  }
.section-head {
    margin-bottom: 48px;
  }
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 12px 30px -10px rgba(122,0,198,0.55);
  }
.btn-primary:hover { background: #8f0de0; box-shadow: 0 16px 36px -8px rgba(122,0,198,0.6); }
.btn-ghost {
    background: rgba(255,255,255,0.02);
    color: var(--text);
    border-color: var(--border-strong);
  }
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.btn-light {
    background: #fff;
    color: #000000;
  }
.btn-light:hover { box-shadow: 0 14px 34px -10px rgba(0,0,0,0.4); }
.btn-outline { background: transparent; color: #f97316; border-color: #f97316; }
.btn-outline:hover { background: rgba(249,115,22,0.08); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
    max-width: none;
    padding: 0 40px;
  }
@media (max-width: 640px) {
    .navbar .container { padding: 0 20px; }
  }
.navbar .logo img { height: 38px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.88rem;
    color: var(--text-muted);
  }
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-caret { width: 11px; height: 11px; flex: none; transition: transform 0.15s ease; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    padding: 8px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    transform-origin: top center;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.6);
  }
.nav-dropdown a {
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 0.86rem;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.15s ease, background 0.15s ease;
  }
.nav-dropdown a:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
  }
@media (prefers-reduced-motion: reduce) {
    .nav-dropdown, .nav-caret { transition: none !important; }
  }
.nav-right { display: flex; align-items: center; gap: 18px; flex: none; }
@media (max-width: 900px) {
    .nav-links { display: none; }
  }
.section { padding: 108px 0; position: relative; }
.section.alt { background: var(--bg-alt); }
footer {
    padding: 72px 0 32px;
    background: var(--bg);
    border-top: 1px solid var(--border);
  }
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 48px;
  }
@media (max-width: 860px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
@media (max-width: 560px) {
    .footer-top { grid-template-columns: 1fr; }
  }
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-faint); max-width: 240px; line-height: 1.6; }
.footer-social {
    display: inline-flex;
    margin-top: 18px;
  }
.footer-social img {
    width: 22px;
    height: 22px;
    opacity: 0.7;
    transition: opacity 0.15s ease;
  }
.footer-social:hover img { opacity: 1; }
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-faint);
    margin-bottom: 18px;
  }
.footer-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 13px;
  }
.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 13px;
    transition: color 0.15s ease;
  }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-faint);
  }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--text); }
.footer-powered {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-faint);
  }
.footer-powered span { position: relative; top: -1px; }
.footer-powered img { height: 16px; width: auto; opacity: 0.85; }