
        /* Design System */
        :root {
            --color-white: rgba(255, 255, 255, 1);
            --color-black: rgba(0, 0, 0, 1);
            --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --font-size-base: 14px;
            --font-weight-normal: 400;
            --font-weight-medium: 500;
            --font-weight-semibold: 550;
            --font-weight-bold: 600;
            --space-8: 8px;
            --space-12: 12px;
            --space-16: 16px;
            --space-24: 24px;
            --space-32: 32px;
            --radius-base: 8px;
            --radius-lg: 12px;
            --radius-full: 9999px;
            --duration-normal: 250ms;
            --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

            /* DiracLinks Brand Colors */
            --primary-purple-navy: #110863;
            --primary-purple-dark: #0d085c;
            --primary-blue-electric: #0117ff;
            --primary-blue-vivid: #0015ff;
            --primary-blue-navy: #000d8d;
            --accent-cyan: #28f9fe;
            --accent-magenta: #c00ffd;
            --accent-pink: #d108a6;
            --neutral-light: #eceeed;
            --neutral-white: #ffffff;
            --neutral-black: #010101;

            /* Gradients */
            --gradient-hero: linear-gradient(180deg, #0d085c 0%, #0117ff 50%, #c00ffd 100%);
            --gradient-section: linear-gradient(135deg, #110863 0%, #0015ff 100%);
            --gradient-accent: linear-gradient(90deg, #28f9fe 0%, #0117ff 100%);
            --gradient-alt: linear-gradient(45deg, #0d085c 0%, #c00ffd 100%);
        }

        @font-face {
            font-family: 'FKGroteskNeue';
            src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2') format('woff2');
        }

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

        body {
            font-family: var(--font-family-base);
            font-size: 16px;
            line-height: 1.6;
            color: var(--dream-dark);
            background-color: var(--color-white);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(13, 8, 92, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 16px 0;
            box-shadow: 0 2px 10px rgba(193, 15, 253, 0.3);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: var(--font-weight-bold);
            color: var(--neutral-white);
            text-decoration: none;
        }

        .logo-image {
            height: 50px;
            width: auto;
            transition: transform var(--duration-normal) var(--ease-standard);
        }

        .logo:hover .logo-image {
            transform: scale(1.05);
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1.1);
            }

            50% {
                transform: scale(1.15);
            }
        }

        .logo-tagline {
            font-size: 12px;
            color: var(--accent-cyan);
            font-weight: var(--font-weight-normal);
            display: block;
        }

        .header-cta {
            background: var(--accent-cyan);
            color: var(--primary-purple-navy);
            padding: 12px 24px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: var(--font-weight-semibold);
            transition: all var(--duration-normal) var(--ease-standard);
        }

        .header-cta:hover {
            background: var(--accent-magenta);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(193, 15, 253, 0.5);
        }

        /* Hero Section */
    /* ================= HERO SECTION ================= */

    .hero {
    margin-top: 80px;
    padding: 90px 24px 60px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 40%, rgba(0, 162, 255, 0.30), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.35), transparent 35%),
        linear-gradient(135deg, #020617 0%, #050824 45%, #061a48 100%);
    }

    /* glowing circle */
    .hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 3px solid rgba(44, 172, 255, 0.9);
    right: 5%;
    top: 3%;
    box-shadow:
        0 0 30px rgba(0, 174, 255, 0.8),
        inset 0 0 30px rgba(168, 85, 247, 0.4);
    opacity: 0.8;
    }

    /* bottom glow */
    .hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 100px;
    background: radial-gradient(ellipse, rgba(0, 183, 255, 0.6), transparent 70%);
    right: 12%;
    bottom: 70px;
    filter: blur(12px);
    }

    /* ================= HERO CONTENT ================= */

    .hero-content {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    }

    .hero-text {
    text-align: left;
    }

    /* quote badge */

    .hero-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(0, 174, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    }

    /* heading */

    .hero h1 {
    font-size: 76px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -3px;
    }

    .hero h1 span {
    background: linear-gradient(90deg, #00c2ff, #b05cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    /* subtitle */

    .hero-subtitle {
    font-size: 21px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    margin-bottom: 35px;
    }

    /* buttons */

    .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 40px;
    }

    .btn {
    padding: 17px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    }

    .btn-primary {
    background: linear-gradient(90deg, #0099ff, #c056ff);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.35);
    }

    .btn-primary:hover {
    transform: translateY(-3px);
    }

    .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    }

    .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    }

    /* ================= STATS ================= */

    .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 15px;
    }

    .stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    }

    .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    backdrop-filter: blur(12px);
    }

    .stat-item h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 4px;
    }

    .stat-item p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    }

    /* ================= HERO IMAGE ================= */
    .hero-image-wrapper {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    /* smaller round circle */
    .hero-image-wrapper::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 3px solid rgba(0, 195, 255, 0.9);
    background: radial-gradient(circle, rgba(0, 153, 255, 0.16), transparent 62%);
    box-shadow:
        0 0 35px rgba(0, 195, 255, 0.9),
        inset 0 0 45px rgba(0, 195, 255, 0.35),
        0 0 100px rgba(168, 85, 247, 0.45);
    z-index: 1;
    }

    /* bottom blue light */
    .hero-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: 40px;
    width: 430px;
    height: 95px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 195, 255, 0.85), transparent 68%);
    filter: blur(14px);
    z-index: 1;
    }

    .hero-image {
    position: relative;
    z-index: 5;
    }

    /* watch glow */
    .hero-image::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(0, 195, 255, 0.45),
            rgba(140, 82, 255, 0.35),
            transparent 72%);
    filter: blur(35px);
    z-index: -1;
    animation: pulseGlow 3.5s ease-in-out infinite;
    }

    .hero-image img {
    width: 100%;
    max-width: 610px; /* increased watch size */
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter:
        drop-shadow(0 50px 75px rgba(0, 0, 0, 0.75))
        drop-shadow(0 0 28px rgba(0, 195, 255, 0.55))
        drop-shadow(0 0 65px rgba(168, 85, 247, 0.35));
    animation:
        floatWatch 4s ease-in-out infinite,
        watchGlow 3s ease-in-out infinite alternate;
    }

    /* extra rings on floor */
    .watch-platform {
    position: absolute;
    bottom: 35px;
    width: 430px;
    height: 105px;
    border-radius: 50%;
    background:
        repeating-radial-gradient(
            ellipse at center,
            rgba(0, 195, 255, 0.55) 0px,
            rgba(0, 195, 255, 0.55) 2px,
            transparent 4px,
            transparent 18px
        );
    filter: blur(1px);
    opacity: 0.75;
    z-index: 2;
    animation: platformPulse 3s ease-in-out infinite;
    }


    /* ================= EXTRA LIGHTING ================= */

    /* moving blue light behind watch */
    .watch-light {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(0, 195, 255, 0.28),
            rgba(140, 82, 255, 0.18),
            transparent 70%);
    filter: blur(45px);
    z-index: 0;

    animation: moveLight 7s ease-in-out infinite;
    }

    /* glossy reflection */
    .watch-shine {
    position: absolute;
    width: 220px;
    height: 600px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.18),
            transparent
        );

    top: -40px;
    left: 50%;

    transform: rotate(18deg);

    filter: blur(10px);

    z-index: 6;

    animation: shineMove 5s linear infinite;
    }

    /* particles */
    .watch-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    }

    .watch-particles::before,
    .watch-particles::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;

    background-image:
        radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px),
        radial-gradient(circle, rgba(0,195,255,0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(168,85,247,0.8) 1px, transparent 1px);

    background-size:
        120px 120px,
        180px 180px,
        220px 220px;

    opacity: 0.5;
    }

    .watch-particles::before {
    animation: particlesMove 18s linear infinite;
    }

    .watch-particles::after {
    animation: particlesMoveReverse 25s linear infinite;
    }

    /* outer animated neon ring */
    .hero-image-wrapper .neon-ring {
    position: absolute;
    width: 570px;
    height: 570px;
    border-radius: 50%;
    border: 2px solid rgba(0,195,255,0.35);

    box-shadow:
        0 0 25px rgba(0,195,255,0.6),
        inset 0 0 25px rgba(168,85,247,0.25);

    z-index: 0;

    animation:
        ringRotate 20s linear infinite,
        ringPulse 4s ease-in-out infinite;
    }

    /* ================= ANIMATIONS ================= */

    @keyframes moveLight {
    0%, 100% {
        transform: translate(0px, 0px) scale(1);
    }

    25% {
        transform: translate(20px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 10px) scale(1.08);
    }

    75% {
        transform: translate(15px, 20px) scale(1.04);
    }
    }

    @keyframes shineMove {
    0% {
        left: -30%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
    }

    @keyframes particlesMove {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-80px);
    }
    }

    @keyframes particlesMoveReverse {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(80px);
    }
    }

    @keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
    }

    @keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
    }
    }
    /* floating cards adjust with bigger watch */
    .card-1 {
    top: 28%;
    right: -15px;
    }

    .card-2 {
    top: 46%;
    right: -35px;
    }

    .card-3 {
    top: 64%;
    right: -10px;
    }

    @keyframes floatWatch {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.03);
    }
    }

    @keyframes pulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.75;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    }

    @keyframes watchGlow {
    from {
        filter:
            drop-shadow(0 50px 75px rgba(0, 0, 0, 0.75))
            drop-shadow(0 0 25px rgba(0, 195, 255, 0.45))
            drop-shadow(0 0 55px rgba(168, 85, 247, 0.28));
    }

    to {
        filter:
            drop-shadow(0 55px 85px rgba(0, 0, 0, 0.85))
            drop-shadow(0 0 38px rgba(0, 195, 255, 0.75))
            drop-shadow(0 0 80px rgba(168, 85, 247, 0.5));
    }
    }

    @keyframes platformPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
    }

    /* platform pulse */
    /* @keyframes platformPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
    } */

    /* cards should come outside/right like reference */
    .floating-card {
    position: absolute;
    width: 255px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(8, 25, 60, 0.72);
    border: 1px solid rgba(0, 174, 255, 0.35);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 6;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 174, 255, 0.08);
    }

    .card-1 {
    top: 34%;
    right: 0;
    }

    .card-2 {
    top: 51%;
    right: -5px;
    }

    .card-3 {
    top: 68%;
    right: 0;
    }

    .floating-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: rgba(0, 153, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    }

    .floating-card h4 {
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 5px;
    }

    .floating-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    margin: 0;
    }

    /* optional: make whole hero right image bigger */
    .hero-content {
    grid-template-columns: 0.95fr 1.05fr;
    }

    @keyframes floatWatch {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
    }
    .hero::before {
    display: none;
    }
    /* ================= FLOATING CARDS ================= */

    .floating-card {
    position: absolute;
    width: 250px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(12, 25, 60, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    .floating-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(0, 153, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    }


    .floating-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    }

    /* positions */

    .card-1 {
    top: 22%;
    right: -40px;
    }

    .card-2 {
    top: 45%;
    right: -70px;
    }

    .card-3 {
    /* bottom: 10%; */
    right: -30px;
    }

    /* ================= BOTTOM FEATURES ================= */

    .hero-bottom-features {
    margin-top: 20px;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
    border-radius: 30px;
    background: rgba(10, 18, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    }

    .bottom-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    }

    .bottom-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.2), rgba(192, 86, 255, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    }

    .bottom-feature h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
    }

    .bottom-feature p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    }

    /* ================= RESPONSIVE ================= */

    @media (max-width: 1200px) {

    .hero h1 {
        font-size: 60px;
    }

    .floating-card {
        width: 220px;
    }
    }

    @media (max-width: 991px) {

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }

    .floating-card {
        display: none;
    }

    .hero-bottom-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero::before {
        width: 500px;
        height: 500px;
        right: -100px;
    }
    }

    @media (max-width: 576px) {

    .hero {
        padding: 70px 18px 50px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-bottom-features {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    }

    /* hero-section-end */

        /* Section Styles */
        section {
            padding: 80px 24px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s var(--ease-standard);
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 42px;
            font-weight: var(--font-weight-bold);
            color: var(--primary-purple-navy);
            text-align: center;
            margin-bottom: 26px;
            letter-spacing: -0.02em;
        }

        /* Value Proposition */
        .value-props {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .value-card {
            text-align: center;
            padding: 32px;
            background: var(--color-white);
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 20px rgba(17, 8, 99, 0.15);
            transition: all var(--duration-normal) var(--ease-standard);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 100px;
            height: 100px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20c-8 0-15 3-20 8-5 5-8 12-8 20 0 15 18 32 28 32s28-17 28-32c0-8-3-15-8-20-5-5-12-8-20-8z" fill="%23c00ffd" opacity="0.05"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            pointer-events: none;
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(193, 15, 253, 0.25);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-accent);
            border-radius: 50%;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            position: relative;
            z-index: 1;
        }

        .value-card h3 {
            font-size: 24px;
            color: var(--primary-purple-navy);
            margin-bottom: 16px;
            font-weight: var(--font-weight-bold);
            position: relative;
            z-index: 1;
        }

        .value-card p {
            color: var(--neutral-black);
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        /* Problem/Solution Section */
        .problem-solution {
            background: var(--gradient-section);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .problem-solution::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            width: 400px;
            height: 400px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20c-8 0-15 3-20 8-5 5-8 12-8 20 0 15 18 32 28 32s28-17 28-32c0-8-3-15-8-20-5-5-12-8-20-8zm0 5c10 0 18 8 18 18 0 5-2 9-5 13l-8 8c-3 2-5 2-5 2s-2 0-5-2l-8-8c-3-4-5-8-5-13 0-10 8-18 18-18zm0 8c-3 0-6 1-8 3-2 2-3 5-3 8s1 6 3 8 5 3 8 3 6-1 8-3 3-5 3-8-1-6-3-8-5-3-8-3z" fill="white" opacity="0.08"/><circle cx="50" cy="45" r="8" fill="none" stroke="white" stroke-width="2" opacity="0.08"/><path d="M42 47h4v-4h8v4h4" fill="none" stroke="white" stroke-width="2" opacity="0.08"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.2;
            pointer-events: none;
        }

        .problem-solution .section-title {
            color: white;
        }

        .problem-text {
            font-size: 20px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.9);
        }

        .solution-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid var(--accent-magenta);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .solution-box p {
            font-size: 22px;
            line-height: 1.7;
            color: white;
        }

        /* How It Works */
        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            position: relative;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--gradient-accent);
            border-radius: 50%;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: var(--font-weight-bold);
            color: var(--primary-purple-navy);
            box-shadow: 0 4px 20px rgba(40, 249, 254, 0.5);
            position: relative;
        }

        .step-number::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 4c-2 0-4 1-5 2s-2 3-2 5c0 4 5 8 7 8s7-4 7-8c0-2-1-4-2-5s-3-2-5-2z" fill="%23110863" opacity="0.3"/></svg>');
            background-size: contain;
            top: 5px;
            right: 5px;
        }

        .step h3 {
            font-size: 20px;
            color: var(--primary-purple-navy);
            margin-bottom: 12px;
            font-weight: var(--font-weight-bold);
        }

        .step p {
            color: var(--neutral-black);
            line-height: 1.6;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            gap: 60px;
        }

        .feature-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .feature-item:nth-child(even) {
            direction: rtl;
        }

        .feature-item:nth-child(even)>* {
            direction: ltr;
        }

        .feature-image {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .feature-text h3 {
            font-size: 28px;
            color: var(--primary-purple-navy);
            margin-bottom: 16px;
            font-weight: var(--font-weight-bold);
        }

        .feature-text p {
            font-size: 18px;
            color: var(--neutral-black);
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: white;
            padding: 32px;
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 20px rgba(17, 8, 99, 0.1);
            transition: all var(--duration-normal) var(--ease-standard);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(193, 15, 253, 0.2);
        }

        .stars {
            color: var(--accent-cyan);
            font-size: 18px;
            margin-bottom: 16px;
        }

        .testimonial-quote {
            font-size: 16px;
            line-height: 1.7;
            color: var(--neutral-black);
            margin-bottom: 24px;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }

        .testimonial-quote::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--accent-magenta);
            border-radius: 2px;
        }

        .testimonial-author {
            font-weight: var(--font-weight-semibold);
            color: var(--primary-purple-navy);
        }

        .testimonial-role {
            color: var(--neutral-black);
            font-size: 14px;
            opacity: 0.7;
        }

        .testimonials-footer {
            text-align: center;
            margin-top: 48px;
            font-size: 20px;
            color: var(--primary-purple-navy);
            font-weight: var(--font-weight-semibold);
        }

        /* Comparison Section */
        .comparison-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(17, 8, 99, 0.15);
        }

        .comparison-header {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--neutral-light);
        }

        .comparison-col {
            padding: 24px;
            text-align: center;
            font-size: 20px;
            font-weight: var(--font-weight-bold);
        }

        .comparison-col.highlight {
            background: var(--gradient-accent);
            color: var(--primary-purple-navy);
            font-weight: var(--font-weight-bold);
        }

        .comparison-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-bottom: 1px solid var(--neutral-light);
        }

        .comparison-row:last-child {
            border-bottom: none;
        }

        .comparison-cell {
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .comparison-cell.highlight {
            background: rgba(193, 15, 253, 0.05);
            font-weight: var(--font-weight-semibold);
            color: var(--primary-purple-navy);
            border-left: 3px solid var(--accent-magenta);
        }

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

        /* Community Section */
        .community-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .community-intro {
            font-size: 20px;
            line-height: 1.7;
            color: var(--neutral-black);
            margin-bottom: 48px;
        }

        .community-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 48px;
            text-align: left;
        }

        .community-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 24px;
            background: rgba(17, 8, 99, 0.05);
            border-radius: var(--radius-base);
            border: 1px solid rgba(193, 15, 253, 0.1);
            transition: all var(--duration-normal) var(--ease-standard);
        }

        .community-feature:hover {
            background: rgba(193, 15, 253, 0.1);
            border-color: var(--accent-magenta);
            transform: translateX(5px);
        }

        .community-feature-icon {
            font-size: 24px;
            color: var(--accent-cyan);
        }

        .community-feature-text {
            flex: 1;
            font-size: 16px;
            color: var(--primary-purple-navy);
            font-weight: var(--font-weight-medium);
        }

        /* Pricing Section */
        .pricing-section {
            background: var(--neutral-light);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .pricing-subtitle {
            font-size: 18px;
            color: var(--neutral-black);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .pricing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .toggle-container {
            display: inline-flex;
            background: white;
            border-radius: var(--radius-full);
            padding: 4px;
            box-shadow: 0 2px 10px rgba(17, 8, 99, 0.1);
        }

        .toggle-option {
            padding: 10px 24px;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: all var(--duration-normal) var(--ease-standard);
            font-weight: var(--font-weight-medium);
            color: var(--neutral-black);
        }

        .toggle-option.active {
            background: var(--gradient-accent);
            color: var(--primary-purple-navy);
            font-weight: var(--font-weight-semibold);
        }

        .section-divider-logo {
            width: 100%;
            height: auto;
            /* opacity: 0.6; */
            margin: 60px auto;
            display: block;
            transition: opacity var(--duration-normal) var(--ease-standard);
        }

        /* .section-divider-logo:hover {
            opacity: 0.8;
        } */

        .pricing-cards {
            display: flex;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .pricing-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: 0 4px 20px rgba(17, 8, 99, 0.1);
            transition: all var(--duration-normal) var(--ease-standard);
            position: relative;
            border: 2px solid transparent;
            width: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(17, 8, 99, 0.2);
        }

        .pricing-card.recommended {
            border-color: var(--accent-magenta);
            transform: scale(1.05);
            box-shadow: 0 12px 40px rgba(193, 15, 253, 0.25);
        }

        .pricing-card.recommended:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-magenta);
            color: white;
            padding: 6px 20px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: var(--font-weight-bold);
            letter-spacing: 0.5px;
        }

        .pricing-card-header {
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 2px solid var(--neutral-light);
        }

        .pricing-name {
            font-size: 28px;
            font-weight: var(--font-weight-bold);
            color: var(--primary-purple-navy);
            margin-bottom: 8px;
        }

        .pricing-tagline {
            font-size: 14px;
            color: var(--neutral-black);
            opacity: 0.7;
            margin-bottom: 24px;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: var(--font-weight-bold);
            color: var(--primary-purple-navy);
            line-height: 1;
        }

        .pricing-period {
            font-size: 16px;
            color: var(--neutral-black);
            opacity: 0.6;
        }

        .pricing-savings {
            display: inline-block;
            margin-top: 8px;
            padding: 4px 12px;
            background: rgba(193, 15, 253, 0.1);
            border-radius: var(--radius-full);
            font-size: 12px;
            color: var(--accent-magenta);
            font-weight: var(--font-weight-semibold);
        }

        .pricing-features {
            margin-bottom: 32px;
        }

        .pricing-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 15px;
            line-height: 1.6;
        }

        .pricing-feature-icon {
            min-width: 20px;
            width: 20px;
            height: 20px;
            margin-top: 2px;
        }

        .pricing-cta {
            width: 100%;
            padding: 16px;
            border-radius: var(--radius-base);
            font-size: 16px;
            font-weight: var(--font-weight-semibold);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            transition: all var(--duration-normal) var(--ease-standard);
            cursor: pointer;
            border: none;
        }

        .pricing-card:not(.recommended) .pricing-cta {
            background: var(--accent-cyan);
            color: var(--primary-purple-navy);
        }

        .pricing-card:not(.recommended) .pricing-cta:hover {
            background: var(--primary-blue-electric);
            color: white;
        }

        .pricing-card.recommended .pricing-cta {
            background: var(--gradient-alt);
            color: white;
        }

        .pricing-card.recommended .pricing-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(193, 15, 253, 0.5);
        }

        .pricing-note {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            font-size: 14px;
            color: var(--neutral-black);
            opacity: 0.7;
            line-height: 1.6;
        }

        /* Final CTA */
        .final-cta {
            background: var(--gradient-hero);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20c-8 0-15 3-20 8-5 5-8 12-8 20 0 15 18 32 28 32s28-17 28-32c0-8-3-15-8-20-5-5-12-8-20-8zm0 5c10 0 18 8 18 18 0 5-2 9-5 13l-8 8c-3 2-5 2-5 2s-2 0-5-2l-8-8c-3-4-5-8-5-13 0-10 8-18 18-18zm0 8c-3 0-6 1-8 3-2 2-3 5-3 8s1 6 3 8 5 3 8 3 6-1 8-3 3-5 3-8-1-6-3-8-5-3-8-3z" fill="white" opacity="0.1"/><circle cx="50" cy="45" r="8" fill="none" stroke="white" stroke-width="2" opacity="0.1"/><path d="M42 47h4v-4h8v4h4" fill="none" stroke="white" stroke-width="2" opacity="0.1"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.15;
            pointer-events: none;
        }

        .final-cta .section-title {
            color: white;
            margin-bottom: 24px;
        }

        .final-cta-text {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
            color: var(--neutral-light);
            position: relative;
            z-index: 1;
        }

        .final-cta .btn-primary {
            font-size: 20px;
            padding: 20px 48px;
            background: var(--neutral-white);
            color: var(--primary-purple-navy);
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .final-cta .btn-primary:hover {
            background: var(--accent-cyan);
            color: var(--primary-purple-navy);
        }

        .trust-indicators {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-size: 14px;
        }

        .special-offer {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 16px 24px;
            border-radius: var(--radius-full);
            display: inline-block;
            font-weight: var(--font-weight-semibold);
            position: relative;
            z-index: 1;
        }

        /* Footer */
        footer {
            background: var(--primary-purple-navy);
            color: white;
            padding: 60px 24px 24px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 50%;
            right: 5%;
            transform: translateY(-50%);
            width: 300px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20c-8 0-15 3-20 8-5 5-8 12-8 20 0 15 18 32 28 32s28-17 28-32c0-8-3-15-8-20-5-5-12-8-20-8z" fill="%2328f9fe" opacity="0.05"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            pointer-events: none;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand {
            text-align: center;
            margin-bottom: 40px;
        }

        .footer-logo-image {
            width: 140px;
            height: auto;
            margin: 0 auto 24px;
            display: block;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: var(--font-weight-bold);
            color: white;
            margin-bottom: 8px;
        }

        .footer-tagline {
            color: var(--accent-cyan);
            font-size: 14px;
        }

        .footer-logo-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 16px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color var(--duration-normal);
        }

        .footer-links a:hover {
            color: var(--accent-cyan);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 32px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all var(--duration-normal);
        }

        .social-icon:hover {
            background: var(--accent-cyan);
            color: var(--primary-purple-navy);
            transform: translateY(-3px);
        }

        /* App Download Section */
        .app-download-section {
            text-align: center;
            margin-bottom: 40px;
            padding: 32px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .app-download-title {
            font-size: 22px;
            font-weight: var(--font-weight-bold);
            color: white;
            margin-bottom: 24px;
            letter-spacing: -0.01em;
        }

        .app-download-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .app-store-badge {
            display: inline-block;
            height: 50px;
            padding: 8px 20px;
            background: var(--neutral-black);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-base);
            text-decoration: none;
            transition: all var(--duration-normal) var(--ease-standard);
            position: relative;
            overflow: hidden;
        }

        .app-store-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(40, 249, 254, 0.1), transparent);
            transition: left 0.5s;
        }

        .app-store-badge:hover::before {
            left: 100%;
        }

        .app-store-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(193, 15, 253, 0.4);
            border-color: var(--accent-magenta);
        }

        .app-store-content {
            display: flex;
            align-items: center;
            gap: 10px;
            height: 100%;
        }

        .app-store-icon {
            font-size: 28px;
            line-height: 1;
        }

        .app-store-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2px;
        }

        .app-store-subtitle {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .app-store-title {
            font-size: 18px;
            color: white;
            font-weight: var(--font-weight-semibold);
            line-height: 1;
        }

        /* Enhanced Instagram Icon */
        .social-icon.instagram {
            background: var(--accent-magenta);
            position: relative;
        }

        .social-icon.instagram:hover {
            background: var(--accent-cyan);
            transform: translateY(-3px) scale(1.1);
        }

        .social-icon.instagram svg {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 768px) {
            .app-download-buttons {
                flex-direction: column;
                align-items: center;
            }

            .app-store-badge {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .app-download-title {
                font-size: 20px;
            }
        }

        .copyright {
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            opacity: 0;
            transform: translateY(100px);
            transition: all var(--duration-normal) var(--ease-standard);
        }

        .floating-cta.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .floating-cta .btn {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .logo-image {
                height: 40px;
            }

            .footer-logo-image {
                width: 100px;
            }

            .section-divider-logo {
                /* width: 50px;*/
                margin: 40px auto;
            }

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

            .pricing-card.recommended {
                transform: scale(1);
            }

            .pricing-card.recommended:hover {
                transform: translateY(-8px);
            }

            .toggle-container {
                flex-direction: column;
                width: 100%;
            }

            .toggle-option {
                width: 100%;
                text-align: center;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text {
                text-align: center;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-cta-group {
                flex-direction: column;
            }

            .value-props {
                grid-template-columns: 1fr;
            }

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

            .feature-item,
            .feature-item:nth-child(even) {
                grid-template-columns: 1fr;
                direction: ltr;
            }

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

            .comparison-header,
            .comparison-row {
                grid-template-columns: 1fr;
            }

            .community-features {
                grid-template-columns: 1fr;
            }

            .trust-indicators {
                flex-direction: column;
                gap: 16px;
            }

            .section-title {
                font-size: 32px;
            }

            section {
                padding: 60px 16px;
            }
        }
        .hero-quote{
            border:#FFF 1px solid;
            padding: 16px 16px;
            colOR:#FFF;
            /* display: inline-block; */
        margin-bottom: 20px;
        }
        .trust-indicators li{
        list-style: disc;
        color: white;
        font-size: 14px;
        }



        .trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    max-width: 620px;
    }

    .trust-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 18px 22px;

    background: rgba(8, 20, 50, 0.55);

    border: 1px solid rgba(0, 195, 255, 0.18);

    border-radius: 18px;

    backdrop-filter: blur(14px);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.22),
        inset 0 0 18px rgba(0, 195, 255, 0.05);

    transition: 0.35s ease;
    }

    .trust-card:hover {
    transform: translateY(-4px);

    border-color: rgba(0, 195, 255, 0.45);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.32),
        0 0 22px rgba(0, 195, 255, 0.16);
    }

    /* glowing bullet */

    .trust-bullet {
    width: 14px;
    height: 14px;

    min-width: 14px;

    margin-top: 8px;

    border-radius: 50%;

    background: linear-gradient(135deg, #00c3ff, #a855f7);

    box-shadow:
        0 0 10px rgba(0, 195, 255, 0.9),
        0 0 20px rgba(168, 85, 247, 0.7);
    }

    .trust-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 14px;

    line-height: 30px;

    }
