:root {
    --bg: #070b16;
    --fg: #eef2ff;
    --muted: rgba(238, 242, 255, 0.68);
    --line: rgba(255, 255, 255, 0.12);
    --card: rgba(255, 255, 255, 0.05);
    --card2: rgba(255, 255, 255, 0.035);
    --accent: #7aa2ff;
    --accent2: #9ef0c8;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --radius: 18px;
    --wrap: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--fg);
    background-color: var(--bg); /* Fallback color */
    line-height: 1.55;
    position: relative;
    z-index: 0;
}

/* THE FIX: This creates a locked "Wallpaper" layer behind your content. 
   The background stays 100% still (The Canvass), and the text rolls over it. */
body::before {
    content: "";
    position: fixed; /* Locks it to the screen */
    inset: 0;        /* Stretches to all 4 corners */
    z-index: -1;     /* Puts it behind the text */
    
    /* Your Gradients */
    background-image: 
        radial-gradient(circle at 15% 0%, rgba(122,162,255,0.08), transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(158,240,200,0.05), transparent 40%);
        
    pointer-events: none;
}

a {
    color: inherit;
}

.wrap {
    width: min(var(--wrap), calc(100% - 40px));
    margin: 0 auto;
}

/* A11y */
.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    color: #000;
    padding: 10px 12px;
    border-radius: 12px;
    z-index: 9999;
}

.skip:focus {
    left: 12px;
    top: 12px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(7, 11, 22, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0;
}

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

.brand__logo {
    width: 28px;
    height: 28px;
}

.brand__name {
    font-weight: 800;
    letter-spacing: 0.2px;
}

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

.nav a {
    text-decoration: none;
    color: rgba(238, 242, 255, 0.78);
    padding: 8px 10px;
    border-radius: 12px;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--fg);
}

.nav .cta {
    border: 1px solid rgba(122, 162, 255, 0.45);
    background: linear-gradient(180deg, rgba(122, 162, 255, 0.20), rgba(122, 162, 255, 0.08));
    box-shadow: var(--shadow);
}

.navBtn {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--fg);
    border-radius: 14px;
    padding: 10px 12px;
    cursor: pointer;
}

.navBtn__bars {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--fg);
    position: relative;
}

.navBtn__bars::before,
.navBtn__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--fg);
}

.navBtn__bars::before {
    top: -6px;
}

.navBtn__bars::after {
    top: 6px;
}

/* Hero */
.hero {
    padding: 56px 0 72px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 18px;
    align-items: start;
}

.pill {
    display: inline-flex;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(238, 242, 255, 0.76);
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.sub {
    margin: 0 0 18px;
    color: var(--muted);
    max-width: 62ch;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

/* Micro links under buttons */
.microLinks {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(238, 242, 255, 0.70);
}

.microLinks__a {
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    padding-bottom: 2px;
}

.microLinks__a:hover {
    color: var(--fg);
    border-bottom-color: rgba(122, 162, 255, 0.55);
}

.microLinks__dot {
    opacity: 0.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(122, 162, 255, 0.45);
    background: linear-gradient(180deg, rgba(122, 162, 255, 0.22), rgba(122, 162, 255, 0.08));
    color: var(--fg);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

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

.btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.btn--primary {
    border-color: rgba(122, 162, 255, 0.60);
    background: linear-gradient(180deg, rgba(122, 162, 255, 0.28), rgba(122, 162, 255, 0.10));
}

/* Facts */
.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.fact {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.fact__k {
    font-weight: 750;
}

.fact__v {
    color: rgba(238, 242, 255, 0.70);
    font-size: 0.95rem;
}

/* Focus panel */
.panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    padding: 18px;
    box-shadow: var(--shadow);
}

.panel h2 {
    margin: 0 0 12px;
    font-size: 18px;
}

.list {
    margin: 0;
    padding: 0 0 0 18px;
    display: grid;
    gap: 8px;
    color: rgba(238, 242, 255, 0.75);
}

/* Sections */
.section {
    padding: 64px 0;
}

.section.alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.head {
    margin-bottom: 18px;
}

.head h2 {
    margin: 0 0 8px;
    font-size: 30px;
    letter-spacing: -0.01em;
}

.head p {
    margin: 0;
    color: rgba(238, 242, 255, 0.70);
    max-width: 85ch;
}

.head--products {
    margin-bottom: 22px;
}

/* Generic cards */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.cards.two {
    grid-template-columns: repeat(2, 1fr);
}

.card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.card.soft {
    background: linear-gradient(180deg, rgba(122, 162, 255, 0.11), rgba(255, 255, 255, 0.02));
}

.card h3 {
    margin: 0 0 10px;
}

.card p {
    margin: 0 0 12px;
    color: rgba(238, 242, 255, 0.68);
}

/* Tags */
.tags {
    display: flex;
    gap: 8px;
    flex-wrap