﻿:root {
    /* Brand */
    --blue: #023bb6; /* your brand blue */
    --blue2: #0a2a7a; /* deeper */
    --ink: #0b1020; /* near-black */
    --white: rgba(255,255,255,0.92);
    --muted: rgba(255,255,255,0.72);
    /* Surfaces */
    --bg: #070b18;
    --card: rgba(255,255,255,0.06);
    --border: rgba(255,255,255,0.12);
    /* Links/buttons */
    --accent: var(--blue);
    --accentGlow: rgba(2,59,182,0.35);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--white);
    line-height: 1.55;
    /* Brand-y blue background */
    background: radial-gradient(900px 520px at 15% 0%, rgba(2,59,182,0.45), transparent 60%), radial-gradient(900px 520px at 85% 10%, rgba(255,255,255,0.08), transparent 55%), radial-gradient(900px 520px at 60% 90%, rgba(2,59,182,0.18), transparent 65%), var(--bg);
}

a {
    color: var(--white);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 18px 60px;
}

/* Top nav */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.18));
    backdrop-filter: blur(12px);
    position: sticky;
    top: 12px;
}

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

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

.logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    object-fit: contain;
}

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

/* Badge */
.badge {
    font-size: 12px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .nav-links a {
        padding: 8px 10px;
        border-radius: 12px;
        border: 1px solid transparent;
        color: var(--muted);
    }

        .nav-links a.active,
        .nav-links a:hover {
            color: var(--white);
            border-color: rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.06);
            text-decoration: none;
        }

/* Hero */
.hero {
    margin-top: 22px;
    padding: 26px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    box-shadow: 0 0 0 1px rgba(2,59,182,0.12), 0 12px 40px rgba(0,0,0,0.35);
}

h1 {
    margin: 0 0 8px;
    font-size: 32px;
}

p {
    margin: 10px 0;
    color: var(--muted);
}

.grid {
    margin-top: 18px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
}

    .card h2 {
        margin: 0 0 8px;
        font-size: 18px;
    }

.small {
    font-size: 13px;
    color: var(--muted);
}

.btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: var(--white);
}

    .btn.primary {
        background: linear-gradient(180deg, rgba(2,59,182,0.95), rgba(10,42,122,0.85));
        border-color: rgba(2,59,182,0.9);
        box-shadow: 0 10px 30px var(--accentGlow);
    }

    .btn:hover {
        text-decoration: none;
        filter: brightness(1.05);
    }

.footer {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.14);
    color: var(--muted);
    font-size: 13px;
}

.prose h2 {
    margin-top: 22px;
}

.prose h3 {
    margin-top: 16px;
    color: rgba(255,255,255,0.86);
}

.prose ul {
    margin: 10px 0 10px 20px;
    color: var(--muted);
}

.prose code {
    background: rgba(255,255,255,0.10);
    padding: 2px 6px;
    border-radius: 8px;
}

.screenshot-grid {
    margin-top: 30px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-items: center;
}

.screenshot-card {
    text-align: center;
}

    .screenshot-card img {
        width: 260px;
        border-radius: 28px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.45);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .screenshot-card p {
        margin-top: 10px;
        font-weight: 600;
        color: rgba(255,255,255,0.85);
    }

/* ===== Startup landing additions ===== */

.kicker {
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
    margin-bottom: 10px;
}

.lead {
    font-size: 18px;
    color: rgba(255,255,255,0.78);
    max-width: 52ch;
}

.pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.74);
    background: rgba(255,255,255,0.05);
}

/* hero v2 */
.hero2 {
    margin-top: 22px;
    padding: 28px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    box-shadow: 0 0 0 1px rgba(2,59,182,0.12), 0 12px 50px rgba(0,0,0,0.40);
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .hero2 {
        grid-template-columns: 1fr;
    }
}

.hero-left {
    padding: 4px 4px 10px;
}

.hero-right {
    position: relative;
    min-height: 340px;
}

.cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

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

.hero-stats {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

@media (max-width: 700px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

.stat {
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.18);
}

.stat-top {
    font-weight: 800;
}

.stat-bottom {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    margin-top: 4px;
}

.phone-stack {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    left: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone {
    width: 240px;
    max-width: 60%;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 22px 60px rgba(0,0,0,0.55);
    transform: rotate(-2deg);
}

.phone2 {
    position: absolute;
    width: 220px;
    max-width: 55%;
    transform: translate(90px, 40px) rotate(3deg);
    opacity: 0.95;
}

@media (max-width: 900px) {
    .hero-right {
        min-height: 300px;
    }

    .phone2 {
        transform: translate(70px, 40px) rotate(3deg);
    }
}

.glow {
    position: absolute;
    inset: -80px;
    background: radial-gradient(circle at 70% 30%, rgba(2,59,182,0.45), transparent 55%), radial-gradient(circle at 30% 80%, rgba(255,255,255,0.08), transparent 55%);
    filter: blur(10px);
    opacity: 0.9;
    pointer-events: none;
}

/* strip */
.strip {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

@media (max-width: 900px) {
    .strip {
        grid-template-columns: 1fr;
    }
}

.strip-card {
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
}

.strip-title {
    font-weight: 800;
}

.strip-text {
    margin-top: 6px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}

/* sections */
.section {
    margin-top: 32px;
}

.section-head h2 {
    margin: 0;
    font-size: 26px;
}

.section-head p {
    margin-top: 8px;
    max-width: 70ch;
}

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

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

.feature {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
}

    .feature .icon {
        font-size: 20px;
    }

    .feature h3 {
        margin: 10px 0 6px;
    }

    .feature p {
        margin: 0;
        color: rgba(255,255,255,0.72);
    }

/* screenshots */
.shot-grid {
    margin-top: 14px;
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .shot-grid {
        grid-template-columns: 1fr;
    }
}

.shot {
    margin: 0;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
}

    .shot img {
        width: 100%;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 22px 60px rgba(0,0,0,0.45);
    }

    .shot figcaption {
        margin-top: 10px;
        color: rgba(255,255,255,0.76);
        font-weight: 700;
        font-size: 13px;
    }

/* roadmap */
.timeline {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.milestone {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 6px;
    background: rgba(2,59,182,0.95);
    box-shadow: 0 0 0 6px rgba(2,59,182,0.18);
}

.milestone h3 {
    margin: 0 0 6px;
}

.milestone p {
    margin: 0;
    color: rgba(255,255,255,0.72);
}

/* CTA */
.cta {
    margin-top: 34px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(180deg, rgba(2,59,182,0.28), rgba(255,255,255,0.05));
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}

.cta-inner {
    padding: 10px 8px;
}

.tiny {
    font-size: 13px;
    color: rgba(255,255,255,0.70);
}

/* footer */
.footer2 {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

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

.logo-mini {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    object-fit: cover;
}

.footer-right {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-right a {
        color: rgba(255,255,255,0.78);
    }

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

@media (max-width: 900px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
}

.tour {
    margin: 0;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    transition: transform .15s ease, filter .15s ease;
}

    .tour:hover {
        transform: translateY(-3px);
        filter: brightness(1.03);
    }

    .tour img {
        width: 100%;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 22px 60px rgba(0,0,0,0.45);
    }

    .tour figcaption {
        margin-top: 10px;
        color: rgba(255,255,255,0.78);
        font-weight: 700;
        font-size: 13px;
    }