:root {
    --bg: #03060d;
    --bg-soft: #08111f;
    --surface: rgba(13, 22, 38, 0.78);
    --surface-strong: rgba(20, 31, 53, 0.9);
    --border: rgba(170, 222, 255, 0.18);
    --border-strong: rgba(214, 239, 255, 0.34);
    --text: #f4f8ff;
    --muted: #a9b8ca;
    --quiet: #718196;
    --cyan: #57e6ff;
    --rose: #ff5fc8;
    --lime: #c6f36a;
    --violet: #9a7cff;
    --shadow: rgba(0, 0, 0, 0.38);
}

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

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 18% 6%, rgba(255, 95, 200, 0.14), transparent 28rem),
        radial-gradient(circle at 82% 14%, rgba(87, 230, 255, 0.13), transparent 30rem),
        linear-gradient(145deg, var(--bg), var(--bg-soft) 52%, #02040a);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

.ambient {
    position: fixed;
    inset: auto;
    pointer-events: none;
    filter: blur(26px);
    opacity: 0.44;
}

.ambient-one {
    width: 18rem;
    height: 18rem;
    left: -8rem;
    top: 18rem;
    background: radial-gradient(circle, rgba(255, 95, 200, 0.2), transparent 70%);
}

.ambient-two {
    width: 20rem;
    height: 20rem;
    right: -9rem;
    bottom: 8rem;
    background: radial-gradient(circle, rgba(87, 230, 255, 0.18), transparent 70%);
}

.container {
    position: relative;
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 44px;
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 17px;
    font-weight: 760;
    text-decoration: none;
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(87, 230, 255, 0.18);
}

.top-nav,
footer nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

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

a:hover {
    color: var(--lime);
}

.top-nav a,
footer a {
    color: var(--muted);
    font-size: 14px;
}

.hero {
    min-height: 68vh;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.76fr);
    align-items: center;
    gap: 54px;
    padding: 42px 0 68px;
}

.eyebrow {
    color: var(--lime);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

h1 {
    max-width: 760px;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: 0;
}

.lede {
    max-width: 660px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
    margin-top: 24px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.store-badge {
    display: inline-flex;
    height: 56px;
    overflow: hidden;
    border-radius: 13px;
}

.store-badge img {
    display: block;
    width: auto;
    height: 56px;
}

.google-play-badge {
    border-radius: 8px;
    width: 188px;
}

.google-play-badge img {
    height: 74px;
    max-width: none;
}

.small-note {
    color: var(--quiet);
    font-size: 14px;
    margin-top: 14px;
}

.orb-stage {
    display: grid;
    place-items: center;
    gap: 24px;
    min-height: 380px;
}

.orb {
    position: relative;
    width: min(320px, 70vw);
    aspect-ratio: 1;
    border-radius: 999px;
    background:
        conic-gradient(from 35deg, var(--cyan), var(--rose), var(--violet), var(--lime), var(--cyan));
    box-shadow:
        0 0 60px rgba(87, 230, 255, 0.28),
        0 0 130px rgba(255, 95, 200, 0.18),
        inset 0 0 32px rgba(255, 255, 255, 0.28);
}

.orb::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.72), transparent 0 18%, rgba(255, 255, 255, 0) 34%),
        radial-gradient(circle at 58% 56%, rgba(3, 6, 13, 0.2), rgba(3, 6, 13, 0.7));
}

.orb span {
    position: absolute;
    inset: 29%;
    border-radius: inherit;
    background: rgba(5, 9, 18, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.12);
}

.caption-pill {
    padding: 9px 16px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
}

.grid {
    display: grid;
    gap: 18px;
}

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

.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 22px 60px var(--shadow);
    padding: 26px;
    margin-bottom: 18px;
    backdrop-filter: blur(18px);
}

.panel h2 {
    color: var(--text);
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.panel p {
    color: var(--muted);
    margin-bottom: 12px;
}

.panel p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--text);
}

.steps {
    list-style: none;
    counter-reset: step;
}

.steps li {
    counter-increment: step;
    position: relative;
    color: var(--muted);
    padding: 8px 0 8px 38px;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 8px;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: #031018;
    background: linear-gradient(135deg, var(--cyan), var(--lime));
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 0;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.feature-name {
    color: var(--text);
    font-weight: 780;
}

.comparison-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 14px;
    color: var(--muted);
    text-align: left;
    vertical-align: top;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    color: var(--text);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comparison-table td:first-child {
    color: var(--text);
    font-weight: 760;
}

.contact-panel {
    text-align: center;
}

.legal-page .container {
    width: min(820px, calc(100% - 32px));
}

.legal-page .site-header {
    padding-bottom: 22px;
}

.page-title {
    padding: 28px 0 20px;
    text-align: center;
}

.page-title h1 {
    margin: 0 auto;
    font-size: clamp(36px, 7vw, 64px);
}

.page-title p {
    color: var(--muted);
    margin-top: 12px;
}

footer {
    padding-top: 26px;
    margin-top: 34px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.sep {
    color: var(--quiet);
}

.copyright {
    color: var(--quiet);
    font-size: 12px;
    margin-top: 12px;
}

@media (max-width: 760px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .top-nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 18px;
    }

    .orb-stage {
        min-height: 290px;
    }

    .two-col,
    .feature-list li {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: clamp(40px, 14vw, 58px);
    }

    .lede {
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 24px, 1080px);
        padding-top: 18px;
    }

    .panel {
        padding: 20px;
    }

    footer nav {
        gap: 8px 10px;
    }
}
