:root {
    --bg: #f7f8fc;
    --surface: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --border: #e5e7eb;
    --primary: #6c4dff;
    --primary-2: #2563ff;
    --aqua: #00d4e6;
    --soft: #eef0ff;
    --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    padding: 28px clamp(20px, 5vw, 72px) 80px;
    background:
        radial-gradient(circle at top left, rgba(108, 77, 255, 0.16), transparent 32%),
        radial-gradient(circle at 80% 12%, rgba(0, 212, 230, 0.18), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.navbar {
    max-width: 1180px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2), var(--aqua));
    box-shadow: 0 12px 28px rgba(108, 77, 255, 0.28);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.nav-cta {
    color: #fff;
    background: var(--text);
    padding: 11px 16px;
    border-radius: 999px;
}

.hero-grid {
    max-width: 1180px;
    margin: 76px auto 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(108, 77, 255, 0.10);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

h1, h2, h3, p {
    margin-top: 0;
}

.hero-content h1 {
    margin: 22px 0 20px;
    font-size: clamp(48px, 7vw, 86px);
    line-height: .94;
    letter-spacing: -0.07em;
}

.hero-text {
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 18px 40px rgba(108, 77, 255, .28);
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--border);
}

.trust-line {
    margin-top: 24px;
    color: var(--muted);
    font-size: 14px;
}

.phone-preview {
    display: flex;
    justify-content: center;
}

.phone {
    width: min(360px, 90vw);
    min-height: 640px;
    border-radius: 44px;
    padding: 22px;
    background: #101827;
    box-shadow: var(--shadow);
    position: relative;
    transform: rotate(2deg);
}

.phone::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 36px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    z-index: 0;
}

.phone > * {
    position: relative;
    z-index: 1;
}

.phone-header {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.phone-header span {
    width: 86px;
    height: 8px;
    border-radius: 999px;
    background: #cbd5e1;
}

.app-card {
    margin-bottom: 14px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(226, 232, 240, .9);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
}

.gradient-card {
    color: #fff;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(108,77,255,.95), rgba(37,99,255,.9), rgba(0,212,230,.85)),
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.4), transparent 30%);
}

.gradient-card p,
.gradient-card small {
    opacity: .85;
}

.gradient-card h3 {
    margin-bottom: 4px;
    font-size: 26px;
}

.row-between {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.muted {
    color: var(--muted);
    margin-bottom: 0;
}

.search-pill {
    margin-top: 22px;
    padding: 15px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
}

.section {
    padding: 96px clamp(20px, 5vw, 72px);
}

.section.alt {
    background: #fff;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading h2,
.waitlist h2 {
    margin: 18px 0 0;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.steps,
.features-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.steps {
    grid-template-columns: repeat(3, 1fr);
}

.features-grid {
    grid-template-columns: repeat(4, 1fr);
}

.step-card,
.feature-card {
    padding: 28px;
    border-radius: 30px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 18px 44px rgba(17, 24, 39, .06);
}

.section.alt .feature-card {
    background: #f8fafc;
}

.step-card span {
    color: var(--primary);
    font-weight: 900;
}

.step-card h3,
.feature-card h3 {
    margin: 18px 0 10px;
    font-size: 22px;
}

.step-card p,
.feature-card p,
.waitlist p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.waitlist {
    max-width: 1180px;
    margin: 96px auto;
    padding: clamp(28px, 5vw, 54px);
    border-radius: 40px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,255,255,.24), transparent 28%),
        linear-gradient(135deg, #111827, #34218f 55%, #2563ff);
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 34px;
    align-items: center;
    box-shadow: var(--shadow);
}

.waitlist .eyebrow {
    color: #fff;
    background: rgba(255,255,255,.14);
}

.waitlist p {
    color: rgba(255,255,255,.76);
    margin-top: 16px;
}

.waitlist-form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 999px;
    background: #fff;
}

.waitlist-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 14px;
    font-size: 15px;
}

.waitlist-form button {
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    color: #fff;
    background: var(--text);
    font-weight: 800;
    cursor: pointer;
}

.footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px clamp(20px, 5vw, 72px) 48px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--border);
}

.footer div {
    display: flex;
    gap: 18px;
}

@media (max-width: 920px) {
    .hero-grid,
    .waitlist {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        margin-top: 48px;
    }

    .phone {
        transform: none;
    }

    .steps,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-links a:not(.nav-cta):not(:first-child) {
        display: none;
    }
}

@media (max-width: 620px) {
    .hero {
        padding-top: 18px;
    }

    .navbar {
        height: auto;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-cta {
        padding: 10px 12px;
    }

    .hero-content h1 {
        letter-spacing: -0.055em;
    }

    .waitlist-form {
        border-radius: 24px;
        flex-direction: column;
    }

    .waitlist-form input {
        min-height: 48px;
    }

    .footer {
        flex-direction: column;
    }
}









.legal-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(108, 77, 255, .14), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.legal-nav {
    padding: 24px clamp(20px, 5vw, 72px);
}

.legal-hero {
    max-width: 1180px;
    margin: 56px auto 34px;
    padding: 0 clamp(20px, 5vw, 72px);
}

.legal-hero h1 {
    margin: 20px 0 16px;
    max-width: 760px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .95;
    letter-spacing: -0.06em;
}

.legal-hero p {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.legal-layout {
    max-width: 1180px;
    margin: 0 auto 96px;
    padding: 0 clamp(20px, 5vw, 72px);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.legal-sidebar,
.legal-card {
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(17, 24, 39, .08);
    backdrop-filter: blur(14px);
}

.legal-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    padding: 20px;
    border-radius: 28px;
}

.legal-sidebar h3 {
    margin: 0 0 14px;
    font-size: 16px;
}

.legal-sidebar a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.legal-sidebar a:hover {
    color: var(--primary);
    background: rgba(108, 77, 255, .08);
}

.legal-security-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #f5f3ff, #ffffff);
    border: 1px solid #ede9fe;
}

.legal-security-box strong {
    display: block;
    margin-bottom: 8px;
}

.legal-security-box p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 14px;
}

.legal-card {
    padding: clamp(24px, 4vw, 44px);
    border-radius: 32px;
}

.legal-section {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 0 0 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.legal-number {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 12px 28px rgba(108, 77, 255, .28);
}

.legal-section h2 {
    margin: 2px 0 10px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
    color: var(--muted);
    line-height: 1.7;
}

.legal-section ul {
    padding-left: 18px;
    margin: 12px 0 0;
}

.legal-alert {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--border);
    color: var(--muted);
}

.legal-contact-link {
    display: inline-flex;
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(108, 77, 255, .10);
    font-weight: 800;
}

@media (max-width: 920px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }
}

.form-message {
    margin-bottom: 14px;
    padding: 14px 16px;
    border-radius: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.form-message.success {
    color: #064e3b;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    color: #7f1d1d;
    background: #fee2e2;
    border: 1px solid #fecaca;
}





/* ==============================
   Home V2 - Premium startup look
============================== */

.home-v2 {
    background: #050816;
    color: #ffffff;
}

.hero-v2 {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 12%, rgba(108, 77, 255, .38), transparent 28%),
        radial-gradient(circle at 85% 16%, rgba(0, 212, 230, .25), transparent 26%),
        radial-gradient(circle at 50% 95%, rgba(37, 99, 255, .24), transparent 34%),
        linear-gradient(180deg, #070a1c 0%, #111827 48%, #f7f8fc 100%);
}

.hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(44px);
    opacity: .75;
    pointer-events: none;
}

.hero-glow-one {
    width: 260px;
    height: 260px;
    left: 8%;
    top: 18%;
    background: rgba(108, 77, 255, .42);
}

.hero-glow-two {
    width: 320px;
    height: 320px;
    right: 8%;
    top: 12%;
    background: rgba(0, 212, 230, .26);
}

.navbar-glass {
    position: relative;
    z-index: 5;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.home-v2 .brand,
.home-v2 .nav-links a {
    color: #ffffff;
}

.home-v2 .nav-links {
    color: rgba(255,255,255,.76);
}

.home-v2 .nav-cta {
    background: #ffffff;
    color: #111827 !important;
}

.hero-grid-v2 {
    position: relative;
    z-index: 2;
    margin-top: 86px;
}

.hero-content-v2 h1 {
    margin: 22px 0 22px;
    max-width: 820px;
    font-size: clamp(56px, 7.6vw, 104px);
    line-height: .88;
    letter-spacing: -0.08em;
    color: #ffffff;
}

.hero-content-v2 h1 span {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 40%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content-v2 .hero-text {
    max-width: 680px;
    color: rgba(255,255,255,.74);
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(16px);
    font-size: 14px;
    font-weight: 800;
}

.launch-badge span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, .16);
}

.hero-v2 .btn-secondary {
    color: #ffffff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin-top: 38px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
}

.hero-stats strong {
    display: block;
    margin-bottom: 6px;
    font-size: 24px;
    letter-spacing: -0.04em;
}

.hero-stats span {
    color: rgba(255,255,255,.62);
    font-size: 13px;
    font-weight: 700;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 690px;
}

.phone-v2 {
    width: min(380px, 92vw);
    min-height: 680px;
    background: #020617;
    border: 1px solid rgba(255,255,255,.14);
    transform: rotate(0deg);
    box-shadow:
        0 40px 90px rgba(0,0,0,.42),
        0 0 0 10px rgba(255,255,255,.06);
}

.phone-v2::before {
    background:
        radial-gradient(circle at top, rgba(108,77,255,.20), transparent 32%),
        linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.app-topbar small {
    display: block;
    color: #64748b;
    font-weight: 800;
}

.app-topbar strong {
    display: block;
    color: #111827;
    font-size: 22px;
    letter-spacing: -0.04em;
}

.avatar-dot {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.object-photo {
    position: relative;
    height: 190px;
    margin-bottom: 14px;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.70), transparent 22%),
        linear-gradient(135deg, #ddd6fe, #dbeafe 45%, #cffafe);
    border: 1px solid rgba(255,255,255,.7);
}

.object-icon {
    width: 98px;
    height: 98px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    font-size: 48px;
    background: rgba(255,255,255,.76);
    box-shadow: 0 24px 55px rgba(15,23,42,.16);
}

.scan-line {
    position: absolute;
    left: 18px;
    right: 18px;
    height: 2px;
    top: 28%;
    background: linear-gradient(90deg, transparent, rgba(37,99,255,.95), transparent);
    box-shadow: 0 0 22px rgba(37,99,255,.9);
    animation: scanMove 3s ease-in-out infinite;
}

@keyframes scanMove {
    0%, 100% { transform: translateY(0); opacity: .3; }
    50% { transform: translateY(112px); opacity: 1; }
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-card {
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 30px rgba(15,23,42,.06);
}

.mini-card span {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.mini-card strong {
    display: block;
    color: #111827;
    font-size: 14px;
}

.mini-card small {
    color: #64748b;
    font-weight: 700;
}

.search-pill-v2 {
    color: #111827;
    font-weight: 800;
}

.orbit-card {
    position: absolute;
    z-index: 4;
    width: 220px;
    padding: 16px;
    border-radius: 24px;
    color: #111827;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
    backdrop-filter: blur(18px);
}

.orbit-card strong {
    display: block;
    margin-bottom: 6px;
}

.orbit-card span {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

.orbit-one {
    top: 72px;
    right: 12px;
    animation: floatCard 5s ease-in-out infinite;
}

.orbit-two {
    left: 0;
    bottom: 145px;
    animation: floatCard 6s ease-in-out infinite reverse;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.problem-strip {
    margin-top: -56px;
    padding: 0 clamp(20px, 5vw, 72px) 72px;
    position: relative;
    z-index: 4;
}

.problem-strip div {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 22px 60px rgba(17,24,39,.12);
    backdrop-filter: blur(18px);
}

.problem-strip span {
    padding: 10px 14px;
    border-radius: 999px;
    color: #334155;
    background: #f8fafc;
    font-weight: 800;
    font-size: 14px;
}

.section-v2 .section-heading p {
    max-width: 680px;
    margin: 14px auto 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 17px;
}

.steps-v2 .step-card {
    position: relative;
    overflow: hidden;
}

.featured-step {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 26%),
        linear-gradient(135deg, var(--primary), var(--primary-2));
}

.featured-step span,
.featured-step p {
    color: rgba(255,255,255,.76);
}

.feature-showcase {
    padding-top: 110px;
    padding-bottom: 110px;
}

.feature-showcase-grid {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 54px;
    align-items: start;
}

.feature-showcase-grid h2 {
    margin: 20px 0 16px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: .96;
    letter-spacing: -0.06em;
}

.feature-showcase-grid > div > p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.features-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
}

.features-grid-v2 .feature-card {
    min-height: 190px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.features-grid-v2 .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 70px rgba(17,24,39,.12);
}

.waitlist-v2 {
    margin-top: 0;
}

@media (max-width: 1080px) {
    .hero-grid-v2,
    .feature-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .orbit-card {
        display: none;
    }
}

@media (max-width: 720px) {
    .navbar-glass {
        border-radius: 28px;
    }

    .hero-content-v2 h1 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .problem-strip {
        margin-top: -34px;
    }

    .problem-strip div {
        border-radius: 30px;
    }

    .features-grid-v2 {
        grid-template-columns: 1fr;
    }
}





/* Fix Home V2 contrast on light sections */
.home-v2 .section,
.home-v2 .section.alt,
.home-v2 .feature-showcase,
.home-v2 .problem-strip,
.home-v2 .footer {
    color: var(--text);
}

.home-v2 .step-card,
.home-v2 .feature-card {
    color: var(--text);
}

.home-v2 .step-card h3,
.home-v2 .feature-card h3,
.home-v2 .feature-showcase-grid h2,
.home-v2 .section-heading h2 {
    color: var(--text);
}

.home-v2 .featured-step,
.home-v2 .featured-step h3 {
    color: #ffffff;
}

.home-v2 .featured-step p {
    color: rgba(255,255,255,.78);
}



/* Fix How it works section on dark background */
.home-v2 .section-v2 {
    background: #050816;
    color: #ffffff;
}

.home-v2 .section-v2 .section-heading h2 {
    color: #ffffff;
}

.home-v2 .section-v2 .section-heading p {
    color: rgba(255,255,255,.68);
}

.home-v2 .section-v2 .step-card:not(.featured-step) {
    background: #ffffff;
    color: var(--text);
}

.home-v2 .section-v2 .step-card:not(.featured-step) h3 {
    color: var(--text);
}

.home-v2 .section-v2 .step-card:not(.featured-step) p {
    color: var(--muted);
}

/* Fix footer visibility */
.home-v2 .footer {
    background: #f7f8fc;
    color: var(--muted);
}

.home-v2 .footer a {
    color: var(--muted);
}



/* Premium footer for Home V2 */
.home-v2 .footer {
    max-width: 1180px;
    margin: 0 auto 48px;
    padding: 22px 28px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.70);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.home-v2 .footer p {
    margin: 0;
}

.home-v2 .footer a {
    color: rgba(255,255,255,.72);
    font-weight: 700;
}

.home-v2 .footer a:hover {
    color: #ffffff;
}








/* Demo flow section */
.home-v2 .demo-flow-section {
    position: relative;
    background: #050816;
    color: #ffffff;
    padding-top: 120px;
    padding-bottom: 150px;
}

.home-v2 .demo-flow-section .section-heading h2 {
    color: #ffffff;
}

.home-v2 .demo-flow-section .section-heading p {
    color: rgba(255,255,255,.68);
}

.demo-flow-grid {
    max-width: 1180px;
    margin: 46px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.demo-step {
    position: relative;
    min-height: 260px;
    padding: 24px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.demo-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(108,77,255,.28), transparent 36%);
    pointer-events: none;
}

.demo-step > * {
    position: relative;
    z-index: 1;
}

.demo-number {
    color: rgba(255,255,255,.45);
    font-weight: 900;
}

.demo-icon {
    width: 64px;
    height: 64px;
    margin: 26px 0 22px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 30px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
}

.demo-step h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 22px;
}

.demo-step p {
    color: rgba(255,255,255,.66);
    line-height: 1.65;
}

@media (max-width: 1080px) {
    .demo-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .demo-flow-grid {
        grid-template-columns: 1fr;
    }

    .home-v2 .demo-flow-section {
        padding-top: 90px;
        padding-bottom: 110px;
    }
}




/* Clean section cut between features and demo flow */
.home-v2 .feature-showcase {
    background: #ffffff;
    padding-bottom: 120px;
}

.home-v2 .demo-flow-section {
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,.08);
}






.brand-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-navbar {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Navbar logo alignment fix */
.navbar-glass {
    justify-content: space-between;
}

.navbar-glass .brand-logo {
    margin-right: auto;
    flex: 0 0 auto;
}

.navbar-glass .nav-links {
    margin-left: auto;
}

.logo-navbar {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}





.avatar-logo {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}