:root {
    --bg: #05030a;
    --bg-alt: #0b0618;
    --accent: #7f5dff;
    --accent-soft: #3fd0ff;
    --text: #f5f5ff;
    --muted: #b3adc9;
    --card: #120b24;
    --border-subtle: rgba(255,255,255,0.06);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-pill: 999px;
    --shadow-soft: 0 22px 45px rgba(0,0,0,0.55);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, system-ui, -system-ui,
        "SF Pro Text", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #160a33 0, #05030a 52%, #020107 100%);
    color: var(--text);
    min-height: 100vh;
}

.page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 16px 40px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, rgba(10,7,24,0.9), rgba(9,12,32,0.9));
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 12px;
    z-index: 20;
    backdrop-filter: blur(18px);
}

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

.logo-orb {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 20% 0, #ffffff 0, #ffffff 12%, transparent 40%),
        conic-gradient(from 210deg, #3fd0ff, #7f5dff, #f75af8, #3fd0ff);
    box-shadow:
        0 0 20px rgba(127,93,255,0.8),
        0 0 40px rgba(63,208,255,0.5);
}

.logo-text {
    font-weight: 650;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: #fdfdff;
}

.nav-links {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    padding: 4px 0;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    font-size: 0.78rem;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: #05030a;
    background: linear-gradient(135deg, #7f5dff, #3fd0ff);
    font-weight: 600;
    box-shadow:
        0 0 14px rgba(127,93,255,0.7),
        0 0 24px rgba(63,208,255,0.4);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 26px;
    margin-top: 28px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    line-height: 1.08;
    margin-bottom: 10px;
}

.eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent-soft);
    margin-bottom: 8px;
}

.hero-sub {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 34rem;
    line-height: 1.55;
    margin-bottom: 18px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: var(--radius-pill);
    padding: 9px 16px;
    border: 1px solid transparent;
    font-size: 0.82rem;
    font-weight: 550;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn.primary {
    background: linear-gradient(135deg, #7f5dff, #3fd0ff);
    color: #05030a;
    box-shadow:
        0 0 16px rgba(127,93,255,0.7),
        0 0 30px rgba(63,208,255,0.55);
}

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

.btn.ghost:hover {
    border-color: var(--accent-soft);
    color: var(--text);
}

.btn.small {
    font-size: 0.78rem;
    padding: 8px 14px;
    margin-top: 6px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--muted);
}

.hero-tags span {
    padding: 4px 9px;
    border-radius: var(--radius-pill);
    background: rgba(16, 11, 40, 0.9);
    border: 1px solid var(--border-subtle);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 340px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow:
        0 25px 60px rgba(0,0,0,0.85),
        0 0 40px rgba(127,93,255,0.7);
    object-fit: cover;
}

.hero-glow {
    position: absolute;
    inset: 12% 12% auto auto;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle at 20% 0, rgba(63,208,255,0.65), transparent 60%);
    filter: blur(18px);
    opacity: 0.9;
    pointer-events: none;
}

.section {
    margin-top: 40px;
    padding: 24px 18px 26px;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, rgba(127,93,255,0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(63,208,255,0.12), transparent 60%),
                linear-gradient(135deg, rgba(5,3,18,0.96), rgba(10,8,28,0.98));
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: 1.3rem;
}

.section-header p {
    font-size: 0.86rem;
    color: var(--muted);
}

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

.card {
    background: rgba(8,5,25,0.96);
    border-radius: var(--radius-md);
    padding: 14px 14px 16px;
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.badge-lead {
    background: rgba(63,208,255,0.12);
    color: #a5e9ff;
}

.badge-core {
    background: rgba(127,93,255,0.15);
    color: #d3c7ff;
}

.badge-elite {
    background: rgba(247,90,248,0.12);
    color: #ffd0ff;
}

.card h3 {
    font-size: 0.98rem;
}

.card-body {
    font-size: 0.82rem;
    color: var(--muted);
}

.card-list {
    list-style: none;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
}

.card-list li::before {
    content: "•";
    color: var(--accent-soft);
    margin-right: 6px;
}

.strip {
    margin-top: 30px;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(127,93,255,0.7);
    background: radial-gradient(circle at 0 0, rgba(127,93,255,0.25), transparent 55%),
                radial-gradient(circle at 100% 100%, rgba(63,208,255,0.22), transparent 55%),
                rgba(4,4,16,0.96);
    font-size: 0.86rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.strip-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.76rem;
}

.strip-pills span {
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(10,7,30,0.98);
    border: 1px solid rgba(127,93,255,0.5);
}

.founder {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
    gap: 22px;
    align-items: center;
}

.founder-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 22px 55px rgba(0,0,0,0.9),
        0 0 40px rgba(127,93,255,0.65);
    object-fit: cover;
}

.founder-glow {
    position: absolute;
    inset: auto 8% 10% 8%;
    background: radial-gradient(circle at 50% 120%, rgba(127,93,255,0.7), transparent 65%);
    filter: blur(16px);
    pointer-events: none;
}

.founder-text h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.founder-text p {
    font-size: 0.86rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 10px 0 14px;
    font-size: 0.82rem;
}

.founder-grid h4 {
    font-size: 0.86rem;
    margin-bottom: 2px;
}

.footer {
    margin-top: 32px;
    padding: 16px 8px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.76rem;
    color: var(--muted);
    text-align: center;
}

.footer-sub {
    margin-top: 4px;
    font-size: 0.74rem;
    color: rgba(179,173,201,0.8);
}

@media (max-width: 880px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image {
        order: -1;
        margin-bottom: 4px;
    }

    .cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .founder {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .nav {
        padding-inline: 10px;
    }

    .nav-links {
        display: none;
    }

    .page {
        padding-inline: 12px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-image img,
    .founder-image img {
        max-width: 260px;
    }
}
