:root {
    /* Base Dark Theme */
    --bg-dark: #050508;
    --bg-darker: #020204;
    --bg-surface: rgba(15, 15, 20, 0.6);
    --text-main: #ffffff;
    --text-muted: #8b8b9d;
    --accent-purple: #9d4edd;
    --accent-cyan: #00f5d4;
    --accent-blue: #00bbf9;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: rgba(157, 78, 221, 0.15);
    --danger: #ff5f56;
    --success: #27c93f;
}

/* Darker Neon Theme (Toggled via JS) */
body.theme-darker {
    --bg-dark: #000000;
    --bg-darker: #000000;
    --bg-surface: rgba(5, 5, 8, 0.8);
    --accent-purple: #b100ff;
    --accent-cyan: #00ffcc;
    --accent-blue: #0088ff;
    --glass-bg: rgba(20, 20, 30, 0.5);
    --glass-border: rgba(0, 255, 204, 0.2);
    --glass-glow: rgba(0, 255, 204, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important; /* Hide default cursor for custom one */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.5s ease;
}

/* Intro Loader */
.intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-darker);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
    animation: pulseLogo 1.5s infinite alternate;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: var(--accent-cyan);
    animation: loadingBar 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 1; text-shadow: 0 0 20px var(--accent-cyan); }
}

@keyframes loadingBar {
    0% { left: -50%; width: 50%; }
    100% { left: 100%; width: 50%; }
}

body.loaded .intro-loader {
    opacity: 0;
    visibility: hidden;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.custom-cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 245, 212, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, transform 0.1s ease-out;
}

.cursor-hover .custom-cursor {
    width: 0;
    height: 0;
}

.cursor-hover .custom-cursor-follower {
    width: 50px;
    height: 50px;
    background: rgba(0, 245, 212, 0.1);
    border-color: var(--accent-cyan);
}

/* Background Effects */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    opacity: 0.04;
    background-image: url('data:image/svg+xml,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
}

.animated-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200vw;
    height: 200vh;
    background: radial-gradient(circle at 50% 50%, rgba(157, 78, 221, 0.1) 0%, rgba(5, 5, 8, 0) 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 245, 212, 0.05) 0%, rgba(5, 5, 8, 0) 40%);
    z-index: -2;
    animation: rotateBg 30s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glass Panel Utility */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 1rem 5%;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-link.active::after {
    width: 100%;
}

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

.theme-toggle, .mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s;
}

.theme-toggle:hover {
    background: var(--glass-bg);
}

.mobile-menu-btn {
    display: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(-100%);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 80%;
}

.mobile-link {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    text-decoration: none;
}

/* Buttons */
.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    color: white;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--glass-border);
}

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

.btn-glass {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.w-full { width: 100%; }

/* Form Elements */
.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

input:focus, textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 212, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.ghost-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--glass-border) !important;
    border-radius: 0 !important;
    padding: 1rem 0 !important;
}

.ghost-input:focus {
    border-bottom-color: var(--accent-cyan) !important;
    box-shadow: none !important;
}

.title-input {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 450px;
    padding: 3rem 2.5rem;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
}

.close-modal:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.forgot-link, .modal-footer a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s;
}

.forgot-link:hover, .modal-footer a:hover {
    color: var(--accent-blue);
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-message {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    min-height: 20px;
}
.form-message.error { color: var(--danger); }
.form-message.success { color: var(--success); }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    perspective: 1000px;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a5a5b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    flex: 1.2;
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.glass-card {
    position: absolute;
    background: rgba(10, 10, 15, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px var(--glass-glow);
    animation: float 6s ease-in-out infinite;
    font-weight: 500;
}

.glass-card i {
    color: var(--accent-cyan);
}

.float-1 { top: 15%; left: 10%; animation-delay: 0s; z-index: 3; }
.float-2 { top: 60%; right: 5%; animation-delay: -2s; z-index: 1; }
.float-3 { bottom: 10%; left: 25%; animation-delay: -4s; z-index: 4; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    50% { transform: translateY(-20px) rotateX(5deg) rotateY(-5deg); }
}

/* Dashboard Mockup (Hero) */
.dashboard-mockup {
    width: 85%;
    height: 60%;
    background: rgba(15, 15, 20, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(157, 78, 221, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(10deg);
    z-index: 2;
}

.mockup-header {
    height: 35px;
    background: rgba(0,0,0,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.mac-dots {
    display: flex;
    gap: 8px;
}

.mac-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--danger);
}

.mac-dots span:nth-child(2) { background: #ffbd2e; }
.mac-dots span:nth-child(3) { background: var(--success); }

.mockup-body {
    display: flex;
    flex: 1;
}

.mockup-sidebar {
    width: 25%;
    background: rgba(0,0,0,0.3);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.mockup-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-card {
    height: 24px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.line-short { width: 40%; }
.line-long { width: 80%; }

.mockup-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex: 1;
}

.mockup-box {
    flex: 1;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.02);
}

.animate-pulse {
    animation: pulseBg 3s infinite;
}
.delay-1 { animation-delay: 1.5s; }

@keyframes pulseBg {
    0%, 100% { background: rgba(255,255,255,0.03); }
    50% { background: rgba(0, 245, 212, 0.1); }
}

/* Features Section */
.features {
    padding: 8rem 5%;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(180deg, rgba(20, 20, 25, 0.6) 0%, rgba(10, 10, 15, 0.4) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--glass-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: rgba(157, 78, 221, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px var(--glass-glow);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(157, 78, 221, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-cyan);
    transform: translateZ(20px);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: translateZ(30px) scale(1.1);
    color: var(--text-main);
    background: var(--accent-purple);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateZ(30px);
}

.feature-card p {
    color: var(--text-muted);
    transform: translateZ(20px);
}

/* Dashboard Section */
.dashboard-section {
    padding: 6rem 5%;
}

.preview-container {
    perspective: 1500px;
    display: flex;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
}

.fake-dashboard {
    width: 100%;
    height: 800px;
    background: #0a0a0f;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(0, 245, 212, 0.1);
    transform: rotateX(20deg) scale(0.9);
    transform-origin: top;
    transition: transform 0.1s linear;
}

.dash-sidebar {
    width: 80px;
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 3rem;
    background: rgba(0,0,0,0.2);
}

.dash-logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--accent-cyan);
}

.dash-nav-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dash-item {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.dash-item:hover {
    color: var(--text-main);
    background: rgba(255,255,255,0.05);
}

.dash-item.active {
    color: var(--accent-cyan);
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
}

.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.dash-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-search-container {
    position: relative;
    width: 350px;
}

.dash-search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.dash-search {
    width: 100%;
    height: 45px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 22px;
    padding: 0 1rem 0 3rem;
    color: white;
    transition: all 0.3s;
}

.dash-search:focus {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent-purple);
    outline: none;
}

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

.dash-profile {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    border: 2px solid #0a0a0f;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
}

.dash-content-area {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.dash-widgets {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.dash-widget {
    padding: 1.5rem;
    border-radius: 20px;
}

.large-widget {
    flex: 2;
    display: flex;
    flex-direction: column;
    height: 220px;
}

.small-widget {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
}

.widget-title {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    height: 100%;
    flex: 1;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, rgba(157, 78, 221, 0.2), var(--accent-purple));
    border-radius: 6px 6px 0 0;
    transition: height 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.circle-progress-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 250px;
}

.circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.05);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: var(--accent-cyan);
    stroke-width: 3.8;
    stroke-linecap: round;
    animation: progress 2s ease-out forwards;
}

@keyframes progress {
    0% { stroke-dasharray: 0, 100; }
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.dash-notes-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.dash-notes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.dash-note-card {
    padding: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.dash-note-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.dash-note-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.note-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}

.note-meta i {
    width: 14px;
    height: 14px;
}

/* Experience Section */
.experience {
    padding: 10rem 5%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.massive-text {
    font-size: 4vw;
    line-height: 1.3;
    font-weight: 800;
}

/* How It Works */
.how-it-works {
    padding: 8rem 5%;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    border-radius: 24px;
    z-index: 2;
}

.step-number {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: -1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 187, 249, 0.1);
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

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

.step-connector {
    width: 80px;
    height: 2px;
    position: relative;
    z-index: 1;
}

.connector-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--accent-cyan), transparent);
    opacity: 0.5;
}

/* Pricing Section */
.pricing {
    padding: 8rem 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.pricing-card {
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
}

.pricing-card.highlight {
    border-color: var(--accent-purple);
    box-shadow: 0 0 40px rgba(157, 78, 221, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
}

.plan-features i {
    color: var(--accent-cyan);
    width: 18px;
    height: 18px;
}

/* Contact Section */
.contact {
    padding: 8rem 5%;
}

.contact-container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    background: rgba(0,0,0,0.2);
    border-right: 1px solid var(--glass-border);
}

.contact-methods {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.method i {
    color: var(--accent-blue);
}

.contact-form-container {
    flex: 1.5;
    padding: 4rem;
}

/* Final CTA */
.final-cta {
    padding: 12rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.cta-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 60%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulseOrb 4s ease-in-out infinite alternate;
}

@keyframes pulseOrb {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-title {
    font-size: 4.5rem;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100px); opacity: 0; }
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    background: var(--bg-darker);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    color: var(--accent-cyan);
    background: rgba(0, 245, 212, 0.1);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

.back-to-top {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* Animations & Utilities */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.text-reveal.visible span {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal.visible span:nth-child(1) { transition-delay: 0.1s; }
.text-reveal.visible span:nth-child(3) { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links, .nav-actions button:not(.mobile-menu-btn):not(.theme-toggle) { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .hero { flex-direction: column; text-align: center; justify-content: center; gap: 4rem; padding-top: 8rem;}
    .hero-title { font-size: 4rem; }
    .hero-cta { justify-content: center; }
    .hero-visual { height: 400px; width: 100%; }
    
    .steps-container { flex-direction: column; gap: 2rem; }
    .step-connector { width: 2px; height: 50px; }
    .connector-line { background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent); }
    
    .pricing-card.highlight { transform: scale(1); }
    .pricing-card.highlight:hover { transform: translateY(-10px); }
    
    .contact-container { flex-direction: column; }
    .contact-info { border-right: none; border-bottom: 1px solid var(--glass-border); padding: 3rem 2rem; }
    .contact-form-container { padding: 3rem 2rem; }
    
    .massive-text { font-size: 6vw; }
    .cta-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    .dash-sidebar { display: none; }
    .hero-title { font-size: 3rem; }
    .massive-text { font-size: 8vw; }
    .dash-widgets { flex-direction: column; height: auto; }
    .large-widget, .small-widget { height: auto; padding: 2rem; }
    .dash-notes { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { flex-direction: column; gap: 1rem; }
    .footer-social { justify-content: center; }
    .dash-top { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .dash-search-container { width: 100%; }
}
