:root {
    --bg: #fbf8ff;
    --surface: rgba(255, 255, 255, 0.75);
    --surface2: rgba(255, 255, 255, 0.92);
    --card: rgba(255, 255, 255, 0.75);
    --card2: rgba(255, 255, 255, 0.92);
    --text: #1a1027;
    --muted: rgba(26, 16, 39, 0.68);
    --muted2: rgba(26, 16, 39, 0.5);
    --border: rgba(26, 16, 39, 0.12);
    --shadow: 0 18px 60px rgba(19, 7, 38, 0.12);
    --radius: 18px;
    --radius2: 24px;
    --max: 1120px;

    --purple: #6A5AE0;
    --blue: #3DB2FF;
    --gradA: #6a5ae0;
    --gradB: #3db2ff;
    --gradC: #2ef2a6;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
        Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: radial-gradient(1200px 800px at 12% 8%,
            rgba(106, 90, 224, 0.16),
            transparent 55%),
        radial-gradient(900px 700px at 85% 16%,
            rgba(61, 178, 255, 0.16),
            transparent 55%),
        radial-gradient(900px 700px at 55% 95%,
            rgba(46, 242, 166, 0.09),
            transparent 55%),
        var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), 92vw);
    margin: 0 auto;
}



/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
    background: linear-gradient(to bottom,
            rgba(251, 248, 255, 0.9),
            rgba(251, 248, 255, 0.65));
    border-bottom: 1px solid rgba(26, 16, 39, 0.08);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: 0.2px;
}

.logo {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    box-shadow: 0 10px 24px rgba(106, 90, 224, 0.18);
    display: grid;
    place-items: center;
    border: 1px solid rgba(26, 16, 39, 0.12);
}

.logo svg,
.logo img {
    width: 25px;
    height: 25px;
    color: #fff;
    opacity: 0.95;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
}

.nav-links a {
    padding: 10px 10px;
    border-radius: 12px;
    transition: 0.2s ease;
}

.nav-links a:hover {
    background: rgba(106, 90, 224, 0.08);
    color: rgba(26, 16, 39, 0.92);
}

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



.btn:hover {
    transform: translateY(-1px);
    background: white;
    border-color: rgba(26, 16, 39, 0.16);
}



.btn {
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 14px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: 0.2s ease;
    box-shadow: 0 10px 26px rgba(19, 7, 38, 0.08);
}

/* Smooth gradient shift instead of brightness */
.btn-primary {
    border: 0;
    background: linear-gradient(135deg,
            var(--purple),
            var(--blue));
    color: #fff;
    transition: all .25s ease;
}

/* Smooth gradient shift instead of brightness */
.btn-primary:hover {
    background: linear-gradient(135deg,
            #7a6cf0,
            #55c3ff);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(106, 90, 224, 0.35);
}

.btn-icon {
    width: 18px;
    height: 18px;
    opacity: 0.95;
}

.menu-btn {
    display: none;
}

/* HERO */
.hero {
    min-height: calc(100vh - 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: rgba(26, 16, 39, 0.82);
    font-weight: 900;
    font-size: 13px;
    width: fit-content;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff, var(--blue));
    box-shadow: 0 0 0 5px rgba(61, 178, 255, 0.16);
}

h1 {
    margin: 14px 0 12px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.lead {
    margin: 0 0 18px;
    font-size: clamp(16px, 1.4vw, 18px);
    color: var(--muted);
    line-height: 1.6;
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 18px 0 10px;
}

.store-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.store-btn {
    min-width: 200px;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(26, 16, 39, 0.12);
}

.store-btn strong {
    display: block;
    font-size: 14px;
}

.store-btn span {
    display: block;
    font-size: 12px;
    color: var(--muted2);
    font-weight: 700;
}

.shot-card {
    border-radius: 24px;
    /* background: linear-gradient(135deg,
            rgba(106, 90, 224, 0.06),
            rgba(61, 178, 255, 0.06)); */
    padding-top: 20px;
    /* box-shadow: 0 20px 60px rgba(106, 90, 224, 0.12),
        0 8px 24px rgba(61, 178, 255, 0.08); */
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.shot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Mobile adjustments */
@media (max-width: 980px) {
    .shot-card {
        max-width: 100%;
        padding: 16px;
    }
}

/* TRUST */
.strip {
    margin: auto 0 0;
    border-top: 1px solid rgba(26, 16, 39, 0.08);
    border-bottom: 1px solid rgba(26, 16, 39, 0.08);
    background: rgba(255, 255, 255, 0.5);
}

.strip-inner {
    padding: 18px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted2);
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 12px;
}

/* TRUST STRIP - Mobile Enhancement */
@media (max-width: 980px) {
    .strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 20px 0;
    }

    .strip-inner>div:first-child {
        width: 100%;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(26, 16, 39, 0.08);
        margin-bottom: 4px;
    }

    .kpi {
        width: 100%;
        justify-content: flex-start;
        padding: 8px 0;
    }

    .kpi strong {
        font-size: 20px;
        min-width: 120px;
    }

    .kpi span {
        font-size: 13px;
    }
}

.kpi {
    display: flex;
    gap: 12px;
    align-items: baseline;
    letter-spacing: normal;
    text-transform: none;
}

.kpi strong {
    font-size: 18px;
    color: rgba(26, 16, 39, 0.9);
}

/* PAGE */
.page {
    padding: 36px 0 56px;
}

.header {
    display: grid;
    gap: 10px;
    margin: 18px 0 18px;
}

.card {
    margin-top: 18px;
    border-radius: var(--radius2);
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.68));
    box-shadow: var(--shadow);
    padding: 18px;
}

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

.toc a {
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    padding: 10px 12px;
    font-weight: 900;
    font-size: 13px;
    color: rgba(26, 16, 39, 0.82);
    transition: 0.2s ease;
}

.toc a:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.section {
    padding: 14px 0;
    border-top: 1px solid rgba(26, 16, 39, 0.08);
}

.section:first-of-type {
    border-top: 0;
    padding-top: 6px;
}

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

p,
li {
    color: var(--muted);
    line-height: 1.75;
    font-size: 14.5px;
}

ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.notice {
    border: 1px solid rgba(106, 90, 224, 0.18);
    background: linear-gradient(135deg,
            rgba(106, 90, 224, 0.08),
            rgba(61, 178, 255, 0.06));
    border-radius: 18px;
    padding: 12px 14px;
    margin-top: 12px;
    color: rgba(26, 16, 39, 0.78);
    font-weight: 800;
    font-size: 13px;
    line-height: 1.6;
}

/* FEATURES */
section {
    padding: 56px 0;
}

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

.section-title h2 {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 32px);
    letter-spacing: -0.02em;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    max-width: 70ch;
    line-height: 1.6;
}

.feature-shell {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 16px;
    margin-top: 18px;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tab-btn {
    text-align: left;
    width: 100%;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: rgba(255, 255, 255, 0.7);
    color: rgba(26, 16, 39, 0.86);
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

.tab-btn[aria-selected="true"] {
    border-color: rgba(61, 178, 255, 0.35);
    background: linear-gradient(135deg,
            rgba(106, 90, 224, 0.12),
            rgba(61, 178, 255, 0.1));
    box-shadow: 0 14px 40px rgba(61, 178, 255, 0.12);
}

.tab-btn .sub {
    display: block;
    margin-top: 6px;
    font-weight: 700;
    color: var(--muted2);
    font-size: 13px;
    line-height: 1.35;
}

.panel {
    border-radius: 22px;
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.68));
    box-shadow: var(--shadow);
    padding: 18px;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.panel::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle at 30% 30%,
            rgba(61, 178, 255, 0.1),
            transparent 60%);
    top: -260px;
    right: -260px;
    pointer-events: none;
}

.panel h3 {
    margin: 0 0 8px;
    font-size: 20px;
    letter-spacing: -0.01em;
}

.panel p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
}

.bullets {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.bullet {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px 12px;
    border-radius: 16px;
    border: 1px solid rgba(26, 16, 39, 0.1);
    background: rgba(255, 255, 255, 0.5);
}

.check {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gradA), var(--gradB));
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-top: 2px;
    box-shadow: 0 12px 24px rgba(106, 90, 224, 0.16);
}

/* HOW IT WORKS */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.card h4 {
    margin: 8px 0 8px;
    font-size: 16px;
    color: #000;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: linear-gradient(135deg,
            rgba(106, 90, 224, 0.12),
            rgba(61, 178, 255, 0.1));
    display: grid;
    place-items: center;
}

/* CTA */
.cta {
    border-radius: 28px;
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: linear-gradient(135deg,
            rgba(106, 90, 224, 0.14),
            rgba(61, 178, 255, 0.12),
            rgba(46, 242, 166, 0.08));
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.cta h3 {
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.cta p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* FOOTER */
footer {
    padding: 34px 0 44px;
    border-top: 1px solid rgba(26, 16, 39, 0.08);
    background: rgba(255, 255, 255, 0.55);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 16px;
    align-items: start;
}

.newsletter {
    border-radius: 22px;
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: rgba(255, 255, 255, 0.75);
    padding: 16px;
}

.newsletter p {
    margin: 8px 0 14px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

input[type="email"] {
    flex: 1 1 220px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    outline: none;
    font-weight: 700;
}

input[type="email"]::placeholder {
    color: rgba(26, 16, 39, 0.45);
}

.footer-links {
    display: grid;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.footer-links a:hover {
    color: rgba(26, 16, 39, 0.9);
}

.socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(26, 16, 39, 0.12);
    background: rgba(255, 255, 255, 0.75);
    font-weight: 800;
    font-size: 14px;
}

.social:hover {
    background: rgba(255, 255, 255, 0.92);
}

.fineprint {
    margin-top: 18px;
    color: var(--muted2);
    font-size: 12px;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
    }

    .toc {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 20px 0 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: stretch;
    }

    .hero-grid>div {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .shot-card {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .store-row {
        width: 100%;
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
        min-width: auto;
    }

    .strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .kpi {
        width: 100%;
    }

    .feature-shell {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta>div:last-child {
        width: 100%;
    }

    .cta>div:last-child>* {
        flex: 1;
    }
}

/* Adjust phone size based on viewport for desktop only */
@media (min-width: 981px) and (max-height: 900px) {
    .shot-card {
        max-width: 300px;
    }
}

@media (min-width: 981px) and (max-height: 800px) {
    .shot-card {
        max-width: 260px;
    }
}

/* SIMPLE MOBILE MENU */
.mobile-menu {
    display: none;
    border-top: 1px solid rgba(26, 16, 39, 0.08);
    padding: 10px 0 14px;
}

.mobile-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 800;
}

.mobile-menu a:hover {
    background: rgba(106, 90, 224, 0.08);
    color: rgba(26, 16, 39, 0.9);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}