:root {
    --bg-color: #070b14;
    --surface-color: #101827;
    --surface-elevated: #162235;
    --border-color: rgba(147, 197, 253, 0.2);
    --text-primary: #f8fbff;
    --text-secondary: #b8c4d9;
    --accent: #44c4ff;
    --accent-2: #36d399;
    --danger: #f43f5e;
    --heading-font: 'Sora', sans-serif;
    --body-font: 'Manrope', sans-serif;

    /* Legacy token compatibility (used by auth modal inline styles) */
    --font-heading: var(--heading-font);
    --font-body: var(--body-font);
    --surface-color-elevated: var(--surface-elevated);
    --card-border: var(--border-color);
    --card-border-hover: rgba(147, 197, 253, 0.42);
    --text-muted: #8da0bb;
    --accent-color: #4f8cff;
    --accent-gradient: linear-gradient(110deg, #3b82f6, #14b8a6);
    --accent-gradient-glow: 0 0 28px rgba(59, 130, 246, 0.38);
    --success-color: #10b981;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 999px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --transition: 0.2s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--body-font);
    line-height: 1.55;
    max-width: 100%;
    overflow-x: hidden;
}

.mesh-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.mesh-blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(120px);
    opacity: 0.48;
    animation: drift 26s ease-in-out infinite alternate;
}

.blob-1 {
    width: 52vw;
    height: 52vw;
    top: -14vw;
    left: -9vw;
    background: rgba(68, 196, 255, 0.22);
}

.blob-2 {
    width: 44vw;
    height: 44vw;
    bottom: -13vw;
    right: -10vw;
    background: rgba(54, 211, 153, 0.22);
    animation-delay: -7s;
}

.blob-3 {
    width: 36vw;
    height: 36vw;
    top: 30vh;
    left: 35vw;
    background: rgba(148, 163, 184, 0.14);
    animation-delay: -13s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-3vw, 5vh) scale(1.06); }
    100% { transform: translate(3vw, -4vh) scale(0.96); }
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px 70px;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    backdrop-filter: blur(10px);
    background: transparent;
}

.landing-header::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 100dvw;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(7, 11, 20, 0.94), rgba(7, 11, 20, 0.52));
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.44rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
}

.logo span {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
}

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

.btn-primary,
.btn-secondary,
.btn-ghost {
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(110deg, #3b82f6, #14b8a6);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.4rem;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 28px rgba(59, 130, 246, 0.45);
}

.btn-secondary {
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--border-color);
    padding: 0.78rem 1.35rem;
}

.btn-secondary:hover {
    border-color: rgba(147, 197, 253, 0.55);
}

.btn-ghost {
    color: var(--text-secondary);
    background: transparent;
    border-color: rgba(148, 163, 184, 0.25);
    padding: 0.72rem 1.2rem;
}

.hero {
    text-align: center;
    padding: 80px 0 46px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #e2f5ff;
    border: 1px solid rgba(68, 196, 255, 0.42);
    background: rgba(11, 36, 58, 0.8);
    border-radius: 999px;
    padding: 8px 14px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.06;
    margin: 0 auto 14px;
    max-width: 900px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: #82f3d0;
}

.hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: clamp(1.02rem, 2.5vw, 1.24rem);
}

.hero-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-row {
    margin-top: 28px;
    color: #d7e4f5;
    font-size: 0.92rem;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-pill {
    border: 1px solid rgba(125, 211, 252, 0.3);
    background: rgba(15, 23, 42, 0.76);
    border-radius: 999px;
    padding: 7px 12px;
}

.section {
    padding: 65px 0;
}

.section-title {
    font-family: var(--heading-font);
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.55rem);
    margin: 0 0 10px;
}

.section-subtitle {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 34px;
    color: var(--text-secondary);
}

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

.feature-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(16, 24, 39, 0.92), rgba(12, 20, 33, 0.84));
    text-decoration: none;
    color: inherit;
}

.feature-card h3 {
    margin: 2px 0 8px;
    font-size: 1.12rem;
}

.feature-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.94rem;
}

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

.shot {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(11, 18, 30, 0.88);
}

.shot-top {
    background: linear-gradient(120deg, rgba(59, 130, 246, 0.2), rgba(45, 212, 191, 0.2));
    padding: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.shot-title {
    font-family: var(--heading-font);
    font-size: 0.96rem;
}

.shot-body {
    padding: 14px;
    min-height: 150px;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.shot-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    margin: 10px 0;
    overflow: hidden;
}

.shot-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, #38bdf8, #34d399);
}

.pricing-box {
    max-width: 840px;
    margin: 0 auto;
    border: 1px solid rgba(16, 185, 129, 0.45);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(9, 30, 26, 0.88), rgba(9, 20, 18, 0.84));
    padding: 26px;
}

.pricing-eyebrow {
    color: #84f7d0;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.pricing-value {
    margin: 6px 0;
    font-family: var(--heading-font);
    font-size: clamp(2rem, 6vw, 3.2rem);
}

.pricing-list {
    margin: 14px 0 0;
    padding-left: 18px;
    color: var(--text-secondary);
}

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

.urgency-card {
    border: 1px solid rgba(244, 63, 94, 0.28);
    background: rgba(33, 13, 25, 0.8);
    border-radius: 16px;
    padding: 16px;
}

.faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: rgba(10, 17, 30, 0.86);
    padding: 15px 16px;
}

.faq-item h3 {
    margin: 0 0 6px;
    font-size: 1.03rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
}

.footer {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    margin-top: 34px;
    padding: 22px 0 16px;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer a {
    color: #94c7ff;
    text-decoration: none;
}

.footer a:hover {
    color: #c7e5ff;
}

@media (max-width: 1024px) {
    .feature-grid,
    .shot-grid,
    .urgency-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .landing-header {
        position: static;
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .feature-grid,
    .shot-grid,
    .urgency-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 52px;
    }

    .section {
        padding: 50px 0;
    }
}
