@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Backgrounds */
    --bg-dark: #0A0F1A;
    --bg-soft: #121826;
    --bg-card: rgba(255, 255, 255, 0.02);
    
    /* Text */
    --text-main: #F8F9FA;
    --text-muted: #A0AABF;
    --text-dark: #0A0F1A;
    
    /* Accents (MAPPED TO BRAND GREEN & EMERALD) */
    --accent-blue: #22C55E;        /* Official Brand Green (Primary) */
    --accent-light-blue: #4ADE80;  /* Lighter Tint Green */
    --accent-cyan: #10B981;        /* Accent Emerald/Teal Green */
    --accent-purple: #16A34A;      /* Darker Forest Green */
    --accent-gold: #FBBF24;        /* Gold (keeps stars/streaks premium) */
    
    /* Effects */
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-hover-border: rgba(255, 255, 255, 0.15);
    --glow-subtle: 0 0 20px rgba(34, 197, 94, 0.1);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ambient Background Glow */
.ambient-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, rgba(10,15,26,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
}

.ambient-glow.right {
    top: 40%;
    left: auto;
    right: -20%;
    background: radial-gradient(circle, rgba(74,222,128,0.1) 0%, rgba(10,15,26,0) 70%);
}

.home-motion-field {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.home-motion-particle {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.9), rgba(74,222,128,0.25) 45%, transparent 72%);
    filter: blur(1px);
    box-shadow: 0 0 18px rgba(74,222,128,0.45);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-muted);
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation & Mobile Menu */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1100;
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--accent-light-blue);
}

.logo::before,
.auth-logo::before,
.footer-logo::before,
.preloader-logo::before {
    content: "";
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: inline-block;
    background: url("../logo.png") center 28% / 160px auto no-repeat;
    border-radius: 10px;
    filter: drop-shadow(0 0 14px rgba(34, 197, 94, 0.35));
}

.preloader-logo,
.footer-logo,
.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.preloader-logo {
    flex-direction: column;
    gap: 0.75rem;
}

.preloader-logo::before {
    width: 96px;
    height: 96px;
    flex-basis: 96px;
    display: block;
    margin: 0 auto 0.85rem;
    background-size: 280px auto;
}

.footer-logo::before {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    background-size: 195px auto;
}

.auth-logo::before {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    background-size: 195px auto;
}

.app-sidebar .logo::before {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
    background-size: 195px auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #05080f;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-menu.active {
    transform: translateX(-100%);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.mobile-link:hover, .mobile-link.active {
    color: #fff;
    transform: scale(1.1);
}

.site-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 25000;
    padding: 0.75rem 1rem;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    animation: siteAlertEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes siteAlertEntrance {
    0% { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes siteAlertExit {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

.site-alert-inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.92rem;
    font-weight: 600;
    text-align: center;
}

.site-alert-info {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.95), rgba(14, 165, 233, 0.92));
}

.site-alert-success {
    background: linear-gradient(90deg, rgba(22, 163, 74, 0.95), rgba(16, 185, 129, 0.92));
}

.site-alert-warning {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.96), rgba(249, 115, 22, 0.94));
}

.site-alert-critical {
    background: linear-gradient(90deg, rgba(185, 28, 28, 0.98), rgba(239, 68, 68, 0.95));
    animation: siteAlertPulse 1.8s ease-in-out infinite;
}

.site-alert-close {
    margin-left: auto;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 30px;
}

.has-site-alert nav {
    top: 44px;
}

.has-site-alert .app-sidebar,
.has-site-alert .app-main,
.has-site-alert .community-shell {
    padding-top: 44px;
}

.site-mobile-launcher,
.site-mobile-menu {
    display: none;
}

.customer-care-widget {
    position: fixed;
    right: 1.35rem;
    bottom: 1.35rem;
    z-index: 24000;
    font-family: var(--font-body);
    display: inline-flex;
    align-items: flex-end;
    gap: 0.75rem;
}

.customer-care-label {
    margin-bottom: 0.75rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(10, 15, 26, 0.84);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
    font-weight: 700;
    pointer-events: none;
    animation: customerCareNudge 5s ease-in-out infinite;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.customer-care-launcher {
    position: relative;
    width: 62px;
    height: 62px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.32), transparent 32%),
        linear-gradient(145deg, #22c55e, #0f766e 72%);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42), 0 0 34px rgba(34, 197, 94, 0.45);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    isolation: isolate;
    animation: customerCareFloat 4.5s ease-in-out infinite;
}

.customer-care-launcher::before,
.customer-care-launcher::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 1px solid rgba(74, 222, 128, 0.5);
    animation: customerCarePulse 2.8s ease-out infinite;
    z-index: -1;
}

.customer-care-launcher::after {
    animation-delay: 1.4s;
}

.customer-care-launcher i {
    position: relative;
    z-index: 1;
    font-size: 1.95rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.24));
}

.customer-care-unread {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 12px;
    height: 12px;
    border: 2px solid #052e16;
    border-radius: 999px;
    background: #fbbf24;
    box-shadow: 0 0 16px rgba(251, 191, 36, 0.75);
    z-index: 2;
}

.customer-care-launcher-glow {
    position: absolute;
    inset: 8px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.35), transparent 68%);
    transform: translate(10px, -10px);
    opacity: 0.85;
}

.customer-care-launcher:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(251, 191, 36, 0.55);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 44px rgba(34, 197, 94, 0.62);
}

.customer-care-panel {
    position: absolute;
    right: 0;
    bottom: 82px;
    width: min(390px, calc(100vw - 2rem));
    max-height: min(680px, calc(100vh - 7rem));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(160deg, rgba(18, 24, 38, 0.98), rgba(5, 8, 15, 0.98)),
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 45%);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
    transform: translateY(18px) scale(0.94);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.customer-care-widget.is-open .customer-care-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.customer-care-widget.is-open .customer-care-launcher {
    transform: rotate(4deg) scale(0.96);
    animation-play-state: paused;
}

.customer-care-widget.is-open .customer-care-label,
.customer-care-widget.is-open .customer-care-unread {
    opacity: 0;
    transform: translateY(6px);
}

.customer-care-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.customer-care-kicker {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--accent-cyan, #10b981);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.customer-care-header h2 {
    margin: 0;
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 0;
}

.customer-care-status {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    padding: 0.38rem 0.6rem;
    border: 1px solid rgba(74, 222, 128, 0.22);
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.08);
    color: #bbf7d0;
    font-size: 0.72rem;
    font-weight: 800;
}

.customer-care-status span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.75);
}

.customer-care-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.customer-care-thread {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-height: 190px;
    overflow-y: auto;
    padding: 1rem 1.2rem 0;
}

.customer-care-message {
    display: flex;
    animation: customerCareMessageIn 0.24s ease both;
}

.customer-care-message span {
    max-width: 88%;
    padding: 0.78rem 0.9rem;
    border-radius: 16px;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.45;
}

.customer-care-message.is-agent span {
    border-bottom-left-radius: 5px;
    background: rgba(255, 255, 255, 0.075);
    color: rgba(255, 255, 255, 0.86);
}

.customer-care-message.is-visitor {
    justify-content: flex-end;
}

.customer-care-message.is-visitor span {
    border-bottom-right-radius: 5px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #04120a;
    font-weight: 700;
}

.customer-care-typing span {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    min-width: 58px;
}

.customer-care-typing i {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    animation: customerCareTyping 0.9s ease-in-out infinite;
}

.customer-care-typing i:nth-child(2) {
    animation-delay: 0.12s;
}

.customer-care-typing i:nth-child(3) {
    animation-delay: 0.24s;
}

.customer-care-form {
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1.2rem 1.2rem;
}

.customer-care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.customer-care-form label {
    display: grid;
    gap: 0.38rem;
}

.customer-care-form label span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.customer-care-form input,
.customer-care-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    color: #fff;
    font: inherit;
    font-size: 0.92rem;
    outline: 0;
    padding: 0.82rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.customer-care-form textarea {
    min-height: 104px;
    resize: vertical;
}

.customer-care-form input:focus,
.customer-care-form textarea:focus {
    border-color: rgba(74, 222, 128, 0.65);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.customer-care-topics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.customer-care-topics button {
    min-height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.customer-care-topics button:hover,
.customer-care-topics button.active {
    border-color: rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.12);
    color: #fef3c7;
    transform: translateY(-1px);
}

.customer-care-send {
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: #04120a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font: inherit;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(16, 185, 129, 0.28);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.customer-care-send:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.customer-care-send:disabled {
    cursor: wait;
    filter: grayscale(0.45) brightness(0.82);
    transform: none;
}

@keyframes customerCarePulse {
    0% {
        opacity: 0.75;
        transform: scale(0.86);
    }
    100% {
        opacity: 0;
        transform: scale(1.42);
    }
}

@keyframes customerCareFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes customerCareNudge {
    0%, 72%, 100% { transform: translateX(0); }
    78% { transform: translateX(-5px); }
    84% { transform: translateX(3px); }
}

@keyframes customerCareMessageIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes customerCareTyping {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
    40% { transform: translateY(-4px); opacity: 1; }
}

@keyframes siteAlertPulse {
    0%, 100% { filter: saturate(1); }
    50% { filter: saturate(1.35) brightness(1.08); }
}

@media (max-width: 768px) {
    .site-alert {
        padding: 0.65rem 0.75rem;
    }

    .site-alert-inner {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        font-size: 0.82rem;
    }

    .site-mobile-launcher {
        display: none !important;
    }

    .site-mobile-launcher.has-bottom-nav {
        bottom: 6.25rem;
    }

    .site-mobile-menu {
        display: none !important;
        position: fixed;
        inset: 0;
        background: rgba(5, 8, 15, 0.72);
        backdrop-filter: blur(12px);
        z-index: 21990;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .site-mobile-menu.open {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .site-mobile-menu-panel {
        position: absolute;
        right: 1rem;
        bottom: 4.75rem;
        width: min(320px, calc(100vw - 2rem));
        background: rgba(13, 17, 28, 0.98);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 18px;
        padding: 0.85rem;
        display: grid;
        gap: 0.35rem;
        box-shadow: 0 24px 70px rgba(0,0,0,0.55);
    }

    .site-mobile-menu.has-bottom-nav .site-mobile-menu-panel {
        bottom: 9.8rem;
    }

    .site-mobile-menu-panel a,
    .site-mobile-close {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.8rem 0.9rem;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid transparent;
    }

    .site-mobile-menu-panel a:hover {
        border-color: rgba(74, 222, 128, 0.35);
        background: rgba(34, 197, 94, 0.1);
    }

    .site-mobile-close {
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: auto;
        padding: 0;
        cursor: pointer;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .customer-care-widget {
        right: 1rem;
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        gap: 0.5rem;
    }

    .app-layout .customer-care-widget {
        bottom: calc(6.4rem + env(safe-area-inset-bottom, 0px));
    }

    .customer-care-label {
        display: none;
    }

    .customer-care-launcher {
        width: 60px;
        height: 60px;
    }

    .customer-care-panel {
        right: 0;
        bottom: 74px;
        max-height: calc(100dvh - 7rem);
        border-radius: 18px;
    }

    .app-layout .customer-care-panel {
        max-height: calc(100dvh - 12rem);
    }

    .customer-care-grid,
    .customer-care-topics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 430px) {
    .customer-care-panel {
        width: calc(100vw - 1.25rem);
        right: -0.35rem;
    }

    .customer-care-header {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .customer-care-status {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .hide-mobile,
    .nav-actions .hide-mobile {
        display: none !important;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--text-main);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--glass-hover-border);
    background: rgba(255, 255, 255, 0.05);
}

/* Sections General */
section {
    padding: 8rem 0;
    position: relative;
    overflow: clip;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-light-blue);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #FFF, #A0AABF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 1. Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-media {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(20%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10,15,26,0.6) 0%, rgba(10,15,26,1) 100%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFF 0%, #A0AABF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-actions .btn {
    flex-shrink: 0;
}

.hero-brand-mark {
    width: min(220px, 54vw);
    margin: 0 auto 1.5rem;
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    filter: drop-shadow(0 24px 38px rgba(34, 197, 94, 0.22));
}

.hero-brand-mark img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-visual {
    margin-top: 5rem;
    position: relative;
    width: 100%;
    height: 400px;
    perspective: 1200px;
    transform-style: preserve-3d;
    opacity: 1;
}

.hero-dashboard-mock {
    opacity: 1;
    width: 90%;
    height: 100%;
    margin: 0 auto;
    background: rgba(18, 24, 38, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -20px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(34, 197, 94, 0.15);
    backdrop-filter: blur(24px);
    position: relative;
    transform: rotateX(12deg);
    transform-origin: bottom;
    transform-style: preserve-3d;
    overflow: hidden;
    display: flex;
}

.hero-dashboard-mock::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 10;
}

.dash-mock-sidebar {
    width: 80px;
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    gap: 1.5rem;
    background: rgba(255,255,255,0.01);
}

.dash-mock-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(22, 163, 74,0.4);
}

.dash-mock-nav-item {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.dash-mock-nav-item.active {
    background: rgba(34, 197, 94,0.15);
    color: var(--accent-light-blue);
    border: 1px solid rgba(34, 197, 94,0.2);
}

.dash-mock-main {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dash-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dash-mock-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.dash-mock-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dash-mock-badge {
    background: rgba(251,191,36,0.1);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(251,191,36,0.2);
}

.dash-mock-cards {
    display: flex;
    gap: 1rem;
}

.dash-mock-card {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
    transform: translateZ(0px);
    transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.dash-mock-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 20px rgba(22, 163, 74,0.2);
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.15);
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(251,191,36,0.15);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.stat-icon.blue { background: rgba(34, 197, 94,0.15); color: var(--accent-light-blue); }
.stat-icon.purple { background: rgba(22, 163, 74,0.15); color: var(--accent-purple); }

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.stat-sparkline {
    margin-top: 1rem;
    height: 30px;
}
.stat-sparkline svg { width: 100%; height: 100%; }

.stat-progress-ring {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
}
.stat-progress-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.stat-dots {
    display: flex;
    gap: 4px;
    margin-top: 1rem;
}
.stat-dots .dot {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}
.stat-dots .dot.active {
    background: var(--accent-purple);
    box-shadow: 0 0 8px var(--accent-purple);
}

.dash-mock-chart-area {
    flex: 1;
    background: rgba(255,255,255,0.01);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.chart-trend { color: var(--accent-cyan); display: flex; align-items: center; gap: 4px; }

.chart-container {
    flex: 1;
    position: relative;
    width: 100%;
}
.animated-chart {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
}
.chart-node {
    box-shadow: 0 0 10px #fff;
}

/* Product Visual Proof */
.visual-proof-section {
    padding-top: 2rem;
}

.visual-proof-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
    gap: 2rem;
    align-items: center;
}

.visual-proof-copy {
    max-width: 420px;
}

.visual-proof-copy .section-header {
    text-align: left;
    margin: 0;
}

.visual-proof-copy .section-title {
    font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.visual-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    perspective: 1000px;
}

.visual-shot {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.36);
    transform: translateY(0);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.visual-shot:hover {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 24px rgba(34, 197, 94, 0.12);
}

.visual-shot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top left;
    opacity: 0.92;
    transform: scale(1.01);
    transition: transform 0.45s ease, opacity 0.35s ease;
}

.visual-shot:hover img {
    opacity: 1;
    transform: scale(1.045);
}

.visual-shot figcaption {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 8, 15, 0.78);
    backdrop-filter: blur(16px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.visual-shot figcaption i {
    color: var(--accent-light-blue);
    font-size: 1rem;
}

.visual-proof-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.visual-proof-stat {
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.025);
}

.visual-proof-stat strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.visual-proof-stat span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

/* 2. Platform Overview Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(40px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(34, 197, 94, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 197, 94, 0.1);
    background: rgba(34, 197, 94, 0.02);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-light-blue);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
    transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.feature-card:hover .feature-icon {
    border-color: var(--accent-light-blue);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.3);
    background: rgba(34, 197, 94, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card.has-media {
    padding: 0;
}

.feature-media {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-media img {
    transform: scale(1.08);
}

.feature-icon-overlay {
    position: absolute;
    bottom: -25px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--accent-light-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-light-blue);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-overlay {
    background: var(--accent-light-blue);
    color: var(--bg-dark);
    box-shadow: 0 10px 25px rgba(34,197,94,0.4);
}

.feature-content {
    padding: 2.5rem 2rem 2rem 2rem;
}

/* 3. How It Works Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background: var(--glass-border);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 0%;
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-cyan));
    box-shadow: 0 0 10px var(--accent-blue);
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateX(20px);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 17px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--accent-light-blue);
    box-shadow: 0 0 10px rgba(34,197,94,0.4);
    z-index: 2;
}

.timeline-content.has-media {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.timeline-text {
    flex: 1;
}

.timeline-media {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.timeline-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:hover .timeline-media img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .timeline-content.has-media {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    .timeline-media {
        width: 100%;
        height: 160px;
    }
}

.timeline-item.active .timeline-dot {
    border-color: var(--accent-cyan);
    background: var(--accent-blue);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* 4. Development Domains */
.domains-section {
    overflow: hidden;
}

.domain-cta-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s, gap 0.3s;
    flex-shrink: 0;
    opacity: 0;
}

.domain-cta-link:hover {
    color: var(--accent-light-blue);
    gap: 0.9rem;
}

.domains-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.domains-scroll::-webkit-scrollbar {
    display: none;
}

.domain-card {
    min-width: 300px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    transform-style: preserve-3d;
}

.domain-card:hover {
    border-color: rgba(255,255,255,0.15);
}

.domain-card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 163, 74,0.15) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    pointer-events: none;
    transition: opacity 0.4s;
    opacity: 0;
}

.domain-card:hover .domain-card-glow {
    opacity: 1;
}

.domain-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.4s, background 0.4s;
}

.domain-card:hover .domain-icon-wrap {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 20px var(--glow, rgba(22, 163, 74,0.3));
}

.domain-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.domain-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

.domain-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.domain-progress-fill {
    height: 100%;
    width: 0%; /* starts at 0, animated by GSAP */
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(16, 185, 129,0.4);
}

.domain-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.6rem;
    opacity: 0;
}

/* 5. Progress Tracking Dashboard */
.dashboard-preview {
    background: rgba(18, 24, 38, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.dash-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.dash-stat {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 1rem 0;
}

/* 6. Reflective Learning */
.journal-ui {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.journal-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 4rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(15px);
}

.journal-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-weight: 400;
}

.journal-input-mock {
    width: 100%;
    height: 150px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    position: relative;
}

.journal-input-mock::after {
    content: '|';
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--accent-light-blue);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 1;
}

.floating-1 { top: -20px; right: -40px; }
.floating-2 { bottom: -30px; left: -20px; }

/* 8. Final CTA */
.cta-section {
    text-align: center;
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw; height: 80vw;
    background: radial-gradient(circle, rgba(34, 197, 94,0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.cta-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

/* Footer Styles */
.footer-section {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 2rem;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100px;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129,0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    text-align: left;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-link {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-link {
    color: var(--text-muted);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
}
.social-link:hover {
    color: var(--accent-cyan);
    background: rgba(16, 185, 129,0.1);
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(16, 185, 129,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; line-height: 1.1; }
    .nav-links { display: none; }
    .dashboard-preview { grid-template-columns: 1fr; padding: 1.5rem; }
    .journal-card { padding: 2rem; }
    .logo::before {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
    .hero-brand-mark {
        width: min(170px, 62vw);
        margin-bottom: 1rem;
    }

    /* --- MOBILE BUTTON FIX --- */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }

    .visual-proof-layout {
        grid-template-columns: 1fr;
    }
    .visual-proof-copy {
        max-width: none;
    }
    .visual-proof-grid {
        grid-template-columns: 1fr;
    }
    .visual-shot {
        aspect-ratio: 16 / 11;
    }
    .visual-proof-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    
    /* --- MOBILE HERO DASHBOARD MOCKUP --- */
    .hero-visual {
        height: auto;
        min-height: auto;
        perspective: none;
        overflow: visible;
        margin-top: 3rem;
    }
    .hero-dashboard-mock {
        width: 100%;
        height: auto;
        flex-direction: column;
        border-radius: 20px;
        transform: none !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(22, 163, 74,0.2);
        margin-bottom: 2rem;
        overflow: hidden;
    }
    /* Top bar on mobile acts as the header strip */
    .dash-mock-sidebar {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 0.75rem 1rem;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        background: rgba(255,255,255,0.03);
    }
    .dash-mock-avatar { 
        margin-bottom: 0; 
        width: 32px; 
        height: 32px;
        font-size: 0.9rem;
    }
    .dash-mock-nav-item {
        width: 32px; 
        height: 32px;
        font-size: 1rem;
    }
    .dash-mock-main {
        padding: 1rem;
    }
    /* Mobile header: horizontal pill layout */
    .dash-mock-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.5rem 0 0.75rem;
        flex-wrap: wrap;
    }
    .dash-mock-title {
        font-size: 0.9rem;
        font-weight: 600;
    }
    .dash-mock-subtitle {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    .dash-mock-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
        white-space: nowrap;
    }
    /* Cards scroll horizontally on mobile like a story reel */
    .dash-mock-cards {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 0.75rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
    }
    .dash-mock-cards::-webkit-scrollbar { display: none; }
    .dash-mock-card {
        flex: 0 0 calc(70vw - 2rem);
        max-width: 220px;
        scroll-snap-align: start;
    }
    /* Chart area compact on mobile */
    .dash-mock-chart-area {
        margin-top: 0.75rem;
    }
    .chart-container {
        height: 70px;
    }
}

/* Premium Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #05080f;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preloader-content {
    text-align: center;
    width: 300px;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.preloader-logo span {
    color: var(--accent-light-blue);
}

.preloader-bar-container {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--accent-blue), var(--accent-cyan));
    box-shadow: 0 0 15px var(--accent-blue);
}

.preloader-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Rebranding / Enhancements - Premium CTA & Testimonials */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.btn-pulse {
    animation: pulseGlow 2s infinite !important;
}

.testimonial-card {
    transition: border-color 0.4s ease, background-color 0.4s ease !important;
}

.testimonial-card:hover {
    border-color: rgba(34, 197, 94, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(34, 197, 94, 0.15) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

/* MindsetX Cinematic Motion System v3 */
:root { --cine-glass-bg: rgba(255,255,255,0.05); --cine-glass-bg-strong: rgba(255,255,255,0.09); --cine-shadow: 0 30px 90px rgba(0,0,0,0.45); }
body.home-page { }
.global-particle-canvas,.hero-particle-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.global-particle-canvas { position: fixed; z-index: -3; }
.global-noise-overlay { position: fixed; inset: 0; z-index: -1; opacity:.2; pointer-events:none; background-image: radial-gradient(rgba(255,255,255,.1) .5px, transparent .6px); background-size:3px 3px; mix-blend-mode:soft-light; animation:noiseDrift .55s steps(2) infinite; }
.global-lighting-layer { position: fixed; inset:0; pointer-events:none; z-index:-2; }
.light-orb { position:absolute; border-radius:999px; filter:blur(100px); opacity:.55; will-change:transform,opacity; }
.orb-a { width:46vw; height:46vw; left:-10vw; top:-12vw; background:radial-gradient(circle, rgba(16,185,129,0.25), transparent 70%); animation:orbFloatA 16s ease-in-out infinite; }
.orb-b { width:38vw; height:38vw; right:-8vw; top:18vh; background:radial-gradient(circle, rgba(34,197,94,0.18), transparent 70%); animation:orbFloatB 22s ease-in-out infinite; }
.orb-c { width:30vw; height:30vw; left:35vw; bottom:-10vw; background:radial-gradient(circle, rgba(74,222,128,0.18), transparent 72%); animation:orbFloatC 18s ease-in-out infinite; }
.cursor-glow-field { position:fixed; width:340px; height:340px; border-radius:999px; pointer-events:none; z-index:5; opacity:0; mix-blend-mode:screen; background:radial-gradient(circle,rgba(74,222,128,.25) 0%,rgba(16,185,129,.06) 42%,transparent 72%); transform:translate(-50%,-50%); filter:blur(12px); }
.cinematic-hero { isolation:isolate; }
.hero-cinematic-layers { position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero-content,.hero-visual { position:relative; z-index:2; }
.hero-holo-rings { position:absolute; width:min(80vw,720px); height:min(80vw,720px); top:48%; left:50%; transform:translate(-50%,-50%); opacity:.35; }
.hero-holo-rings circle { fill:none; stroke:rgba(74,222,128,.45); stroke-width:1.8; stroke-dasharray:12 18; filter:drop-shadow(0 0 12px rgba(16,185,129,.55)); }
.hero-energy-lines { position:absolute; width:100%; bottom:16%; left:0; opacity:.4; }
.hero-energy-lines path { fill:none; stroke:rgba(16,185,129,.7); stroke-width:2; stroke-linecap:round; filter:drop-shadow(0 0 12px rgba(16,185,129,.6)); }
.hero-dashboard-mock,.feature-card,.domain-card,.testimonial-card,.dash-panel,.journal-card { background:linear-gradient(145deg,var(--cine-glass-bg-strong),rgba(255,255,255,.01)); border-color:rgba(255,255,255,.12); box-shadow:var(--cine-shadow); backdrop-filter:blur(18px) saturate(140%); transform-style:preserve-3d; }
.cinematic-cta { overflow:hidden; }
.cinematic-cta::before { content:""; position:absolute; inset:-25%; background:conic-gradient(from 90deg,rgba(16,185,129,0),rgba(16,185,129,.2),rgba(74,222,128,0),rgba(34,197,94,.15),rgba(16,185,129,0)); animation:ctaWave 14s linear infinite; opacity:.65; }
.cta-energy-rings { position:absolute; inset:0; pointer-events:none; }
.cta-energy-rings span { position:absolute; left:50%; top:52%; border-radius:999px; border:1px solid rgba(74,222,128,.35); transform:translate(-50%,-50%); animation:ctaRingPulse 7s ease-out infinite; }
.cta-energy-rings span:nth-child(1) { width:280px; height:280px; animation-delay:0s; }
.cta-energy-rings span:nth-child(2) { width:420px; height:420px; animation-delay:1.8s; }
.cta-energy-rings span:nth-child(3) { width:560px; height:560px; animation-delay:3.6s; }
.reveal-depth { opacity:0; transform:translateY(28px) scale(.98); filter:blur(8px); }
@keyframes orbFloatA { 0%,100%{transform:translate3d(0,0,0);} 50%{transform:translate3d(40px,30px,0);} }
@keyframes orbFloatB { 0%,100%{transform:translate3d(0,0,0);} 50%{transform:translate3d(-50px,-20px,0);} }
@keyframes orbFloatC { 0%,100%{transform:translate3d(0,0,0);} 50%{transform:translate3d(24px,-40px,0);} }
@keyframes noiseDrift { 0%{transform:translate(0,0);} 50%{transform:translate(-.5px,.5px);} 100%{transform:translate(0,0);} }
@keyframes ctaWave { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
@keyframes ctaRingPulse { 0%{opacity:0; transform:translate(-50%,-50%) scale(.72);} 20%{opacity:.5;} 70%{opacity:.18;} 100%{opacity:0; transform:translate(-50%,-50%) scale(1.2);} }
@media (max-width: 992px) { .cursor-glow-field { display:none; } .global-noise-overlay { opacity:.14; } .hero-holo-rings { opacity:.22; } .light-orb { filter:blur(60px); opacity:.35; } }
@media (max-width: 768px) { .global-particle-canvas { opacity:.55; } .hero-energy-lines { opacity:.28; } .hero-holo-rings circle { stroke-width:1.2; } }
