/* ============================================
   VELO - AI Automation Landing Page
   ENHANCED Premium CSS Stylesheet
   ============================================ */

/* CSS Variables - Premium Design System */
:root {
    /* Colors */
    --color-bg: #f8f9fa;
    --color-white: #ffffff;
    --color-black: #0a0a0a;
    --color-text: #1a1a1a;
    --color-text-secondary: #525252;
    --color-text-muted: #9ca3af;
    --color-border: rgba(0, 0, 0, 0.06);
    --color-glass: rgba(255, 255, 255, 0.65);
    --color-glass-border: rgba(255, 255, 255, 0.4);
    --color-star: #eab308;

    /* Reveal Text Colors */
    --reveal-text-inactive: #e5e7eb;
    /* Light grey */
    --reveal-text-active: #111827;
    /* Almost black */

    /* Premium accent gradients */
    --gradient-glow: linear-gradient(135deg, rgba(80, 120, 255, 0.08) 0%, rgba(140, 80, 255, 0.05) 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    --gradient-card-hover: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;
    --spacing-3xl: 8rem;

    /* Border Radius */
    --radius-sm: 8px;
    /* More refined */
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.33, 1, 0.68, 1);
    --transition-base: 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Premium Shadows */
    --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.05), 0 1px 4px -1px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 12px 24px -6px rgba(0, 0, 0, 0.06), 0 4px 8px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 24px 48px -12px rgba(0, 0, 0, 0.08);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
    --shadow-button: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 80px rgba(100, 140, 255, 0.15);

    /* Creative Effects */
    --spotlight-color: rgba(255, 255, 255, 0.8);
    --tech-grid-color: rgba(0, 0, 0, 0.03);
}

/* ============================================
   CREATIVE UTILITIES
   ============================================ */

/* Scroll Scale Animation - "Expand In" Feel */
.scale-anim {
    transform: scale(0.9);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.scale-anim.in-view {
    transform: scale(1);
    opacity: 1;
}

/* Background Tech Grid */
.bg-tech-grid {
    background-image:
        radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.02) 0%, transparent 50%),
        linear-gradient(var(--tech-grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--tech-grid-color) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}

/* Spotlight Effect */
.spotlight-card {
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.spotlight-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.1),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

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

.spotlight-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    /* border width */
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 0, 0, 0.4),
            transparent 40%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.spotlight-card:hover .spotlight-border {
    opacity: 1;
}

/* 3D Tilt Effect */
.card-tilt {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.card-tilt-inner {
    transform: translateZ(20px);
}

/* Infinite Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: var(--spacing-lg);
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ============================================
   NOISE TEXTURE OVERLAY - Premium Effect
   ============================================ */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============================================
   BLUE VIGNETTE GLOW - Secret Sauce
   ============================================ */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    box-shadow:
        inset 0 0 200px rgba(80, 120, 255, 0.08),
        inset 0 0 400px rgba(80, 120, 255, 0.04);
}

img {
    max-width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.text-yellow {
    color: var(--color-star);
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

svg {
    display: block;
    width: 24px;
    height: 24px;
}

.w-4 {
    width: 16px;
    height: 16px;
}

.h-4 {
    height: 16px;
    width: 16px;
}

.w-5 {
    width: 20px;
    height: 20px;
}

.h-5 {
    height: 20px;
    width: 20px;
}

.w-6 {
    width: 24px;
    height: 24px;
}

.h-6 {
    height: 24px;
    width: 24px;
}

.w-8 {
    width: 32px;
    height: 32px;
}

.h-8 {
    height: 32px;
    width: 32px;
}

.w-12 {
    width: 48px;
    height: 48px;
}

.h-12 {
    height: 48px;
    width: 48px;
}

/* Icon specific styling */
.icon-outline {
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.icon-solid {
    fill: currentColor;
    stroke: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    padding: 12px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    padding: 10px 24px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

@media (min-width: 900px) {

    .header-left,
    .header-right {
        width: 260px;
        flex-shrink: 0;
    }

    .header-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1rem;
    }
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 28px;
    width: auto;
}

/* Logo Switching */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.nav {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--color-black);
    transition: var(--transition-base);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--color-black);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-black);
    transition: var(--transition-base);
    border-radius: 1px;
}

/* ============================================
   BUTTONS - Premium Multi-Layer Shadows
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 14px 28px;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: relative;
}

.btn-primary {
    background: var(--color-black);
    color: var(--color-white);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0.6px 1px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 6px 12px rgba(0, 0, 0, 0.1),
        0 12px 24px rgba(0, 0, 0, 0.08),
        0 24px 36px rgba(0, 0, 0, 0.06),
        0 36px 48px rgba(0, 0, 0, 0.04);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-link {
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-fast);
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-black);
    transition: var(--transition-base);
}

.btn-link:hover::after {
    width: 100%;
}

/* ============================================
   HERO SECTION - Cinematic
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px var(--spacing-lg) var(--spacing-3xl);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--color-bg);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: invert(1) saturate(0);
    mix-blend-mode: multiply;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.5) 40%,
            rgba(255, 255, 255, 0.95) 85%,
            rgba(255, 255, 255, 1) 100%);
    /* Stronger white gradient for "pure white" feel */
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

/* Premium Badge with Animated Border Glow */
.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
    box-shadow:
        inset 0 3px 1px rgba(255, 255, 255, 1),
        0 1px 2px rgba(0, 0, 0, 0.06),
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 4px 8px rgba(0, 0, 0, 0.04);
}

/* Animated border glow wrapper */
.hero-badge::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-full);
    background: conic-gradient(from var(--border-angle, 0deg),
            transparent 0%,
            transparent 25%,
            rgba(234, 179, 8, 0.8) 50%,
            transparent 75%,
            transparent 100%);
    z-index: -2;
    animation: rotateBorder 3s linear infinite;
}

/* Solid background to mask the inner gradient */
.hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-white);
    border-radius: var(--radius-full);
    z-index: -1;
}

@keyframes rotateBorder {
    from {
        --border-angle: 0deg;
    }

    to {
        --border-angle: 360deg;
    }
}

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.hero-badge .counter-value {
    color: var(--color-star);
    font-weight: 700;
    font-size: 0.8rem;
}

/* Hero Title - Tight Letter Spacing (Editorial) */
.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.06em;
    /* Key: Editorial tight spacing */
    color: var(--color-black);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--color-text-secondary);
    max-width: 580px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.75;
    letter-spacing: -0.01em;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ============================================
   SCROLL-REVEAL TEXT - Premium Typography
   ============================================ */
/* ============================================
   SCROLL-REVEAL TEXT - Premium Typography
   ============================================ */
.text-reveal-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    background: var(--color-bg);
}

.reveal-text {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    letter-spacing: -0.04em;
    color: var(--reveal-text-inactive);
    transition: color 0.5s ease;
}

.reveal-char {
    display: inline-block;
    color: var(--reveal-text-inactive);
    transition: color 0.1s ease, transform 0.4s ease, opacity 0.4s ease;
    opacity: 1 !important;
    /* Override JS opacity */
}

.reveal-char.active {
    color: var(--reveal-text-active);
    transform: translateY(0);
}

/* ============================================
   FOUNDER SECTION - Premium Layout
   ============================================ */
.founder-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient accent in background */
.founder-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 50%,
            rgba(234, 179, 8, 0.06) 0%,
            transparent 40%),
        radial-gradient(circle at 100% 50%,
            rgba(234, 179, 8, 0.06) 0%,
            transparent 40%);
    opacity: 0.8;
    pointer-events: none;
}

.founder-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
}

.founder-image {
    position: relative;
    width: fit-content;
    /* Ensure container matches image size */
    margin: 0 auto;
    /* Center in grid cell if needed, though grid aligns it */
}

/* Decorative frame around image */
.founder-image::before {
    content: "";
    position: absolute;
    top: 15px;
    /* Offset down */
    left: 15px;
    /* Offset right */
    width: 100%;
    /* Exact match */
    height: 100%;
    /* Exact match */
    border: 1px solid rgba(234, 179, 8, 0.4);
    border-radius: var(--radius-xl);
    z-index: -1;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.1);
    transition: all 0.5s ease;
}

.founder-image:hover::before {
    top: -20px;
    left: -20px;
    border-color: rgba(234, 179, 8, 0.6);
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.2);
}

/* Glowing accent */
.founder-image::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle,
            rgba(234, 179, 8, 0.15) 0%,
            transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

.founder-image img {
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
}

.founder-content {
    max-width: 500px;
    position: relative;
}

/* Decorative quote mark */
.founder-content::before {
    content: "\201C";
    position: absolute;
    top: -40px;
    left: -20px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: rgba(234, 179, 8, 0.1);
    line-height: 1;
    pointer-events: none;
}

.founder-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

/* Accent underline for title */
.founder-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-star), transparent);
}

.founder-text {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.9;
    font-size: 1.02rem;
}

.founder-signature {
    font-weight: 600;
    margin-top: var(--spacing-md);
    font-size: 1.1rem;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-signature::after {
    content: "✦";
    color: var(--color-star);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px rgba(234, 179, 8, 0.5));
}

margin-top: var(--spacing-lg);
font-style: italic;
color: var(--color-text);
position: relative;
display: inline-block;
padding-left: 24px;
}

/* Dark mode innovative founder accent */
[data-theme="dark"] .founder-content {
    position: relative;
}

[data-theme="dark"] .founder-content::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

[data-theme="dark"] .founder-title {
    text-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
}

/* Animated signature accent */
.founder-signature::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: var(--color-star);
    animation: signaturePulse 2s ease-in-out infinite;
}

@keyframes signaturePulse {

    0%,
    100% {
        width: 16px;
        opacity: 1;
    }

    50% {
        width: 12px;
        opacity: 0.6;
    }
}

/* Hover effect on image */
.founder-image:hover img {
    transform: scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.founder-image img {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   SECTION HEADER - Refined
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-star);
    margin-bottom: var(--spacing-sm);
    padding: 6px 12px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.04em;
    color: var(--color-black);
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION - Done-For-You (Premium)
   ============================================ */
.services-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 950px;
    margin: 0 auto;
    transform-style: preserve-3d;
    position: relative;
    padding: var(--spacing-xl) 0;
}

/* Central orbit decoration */
.services-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border: 1px dashed rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Inner orbit ring */
.services-grid::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* Cross-axis card positioning */
.service-card {
    --delay: 0s;
    animation: axisEnter 0.8s var(--delay) cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
    z-index: 1;
}

/* Top-left - pull toward center */
.service-card:nth-child(1) {
    --delay: 0s;
    transform: translateX(20px) translateY(20px);
}

/* Top-right - pull toward center */
.service-card:nth-child(2) {
    --delay: 0.1s;
    transform: translateX(-20px) translateY(20px);
}

/* Bottom-left - pull toward center */
.service-card:nth-child(3) {
    --delay: 0.2s;
    transform: translateX(20px) translateY(-20px);
}

/* Bottom-right - pull toward center */
.service-card:nth-child(4) {
    --delay: 0.3s;
    transform: translateX(-20px) translateY(-20px);
}

@keyframes axisEnter {
    from {
        opacity: 0;
        transform: scale(0.9) rotate(2deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}



.service-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--spacing-md);
    padding: 0;
    transition: transform 0.5s ease;
    display: flex;
    align-items: center;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(3deg);
    background: transparent;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    color: var(--color-black);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   BENTO GRID (Benefits)
   ============================================ */
.benefits-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: var(--spacing-md);
    max-width: 1100px;
    margin: 0 auto;
}

.bento-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.bento-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Specific Card Layouts */
.bento-large {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
}

.bento-tall {
    grid-row: span 2;
    background: #0a0a0a;
    /* Dark card for contrast */
    color: white;
}

.bento-tall .bento-title,
.bento-tall .bento-desc,
.bento-tall .bento-icon svg {
    color: white !important;
}

.bento-tall .bento-desc {
    opacity: 0.8;
}

.bento-wide {
    grid-column: span 2;
}

.bento-icon {
    margin-bottom: var(--spacing-md);
    color: var(--color-black);
}

.bento-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.03em;
}

.bento-desc {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 90%;
}

/* Decorative Elements */
.bento-decoration-1 {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 150px;
    height: 150px;
    background: var(--color-accent-blue);
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.5;
}

.bento-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

/* ============================================
   PROCESS SECTION - Premium Timeline
   ============================================ */
.process-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Animated vertical progress line */
.process-steps::before {
    content: "";
    position: absolute;
    left: 39px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--color-border) 10%,
            var(--color-border) 90%,
            transparent 100%);
}

/* Animated pulse dot on the line */
.process-steps::after {
    content: "";
    position: absolute;
    left: 35px;
    top: 30px;
    width: 10px;
    height: 10px;
    background: var(--color-star);
    border-radius: 50%;
    animation: pulseDown 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.6);
}

@keyframes pulseDown {
    0% {
        top: 30px;
        opacity: 1;
    }

    100% {
        top: calc(100% - 30px);
        opacity: 0.3;
    }
}

.process-step {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
}

/* Step indicator dot */
.process-step::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.process-step:hover::before {
    background: var(--color-star);
    border-color: var(--color-star);
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.5);
    transform: translateY(-50%) scale(1.3);
}

.process-step:hover {
    background: var(--color-white);
    border-color: var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1;
    opacity: 0.08;
    letter-spacing: -0.05em;
    min-width: 80px;
    transition: all 0.4s ease;
}

.process-step:hover .step-number {
    opacity: 1;
    color: var(--color-star);
    transform: scale(1.05);
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.02em;
}

.step-desc {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION - Masonry/Premium Grid
   ============================================ */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg);
    overflow: hidden;
}

/* Remove old grid styles */

.testimonials-marquee-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.testimonial-card-marquee {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    width: 340px;
    min-height: 200px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-marquee:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card-marquee .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.testimonial-card-marquee .testimonial-footer {
    border: none;
    padding-top: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card-marquee .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.testimonial-card-marquee .author-avatar-placeholder {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--color-bg);
    color: var(--color-text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card-marquee .author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    display: block;
}

.testimonial-card-marquee .author-role {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: block;
}

/* ============================================
   COMPARISON SECTION - Bold Contrast
   ============================================ */
.comparison-section {
    padding: var(--spacing-3xl) 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

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

.comparison-basic {
    background: var(--color-white);
    border: 1px solid var(--color-border);
}

.comparison-basic:hover {
    box-shadow: var(--shadow-md);
}

.comparison-velo {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--color-white);
    box-shadow:
        var(--shadow-lg),
        0 0 40px rgba(234, 179, 8, 0.15),
        0 0 80px rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    position: relative;
    z-index: 1;
}

/* Animated border for Velo card */
.comparison-velo::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    background: conic-gradient(from var(--border-angle, 0deg),
            transparent 0%,
            transparent 25%,
            rgba(234, 179, 8, 0.8) 50%,
            transparent 75%,
            transparent 100%);
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
    pointer-events: none;
}

/* Ensure background covers strict area so border shows only at edges */
.comparison-velo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: inherit;
    z-index: -1;
}

.comparison-velo:hover {
    box-shadow:
        var(--shadow-lg),
        0 0 50px rgba(234, 179, 8, 0.2),
        0 0 100px rgba(234, 179, 8, 0.1);
}

.comparison-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Style SVG check icons to gold for VELO card */
.comparison-velo .comparison-list li svg {
    color: var(--color-star) !important;
}

.comparison-velo .comparison-list li {
    border-color: rgba(255, 255, 255, 0.1);
}

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

/* ============================================
   FAQ SECTION - Elegant Accordion
   ============================================ */
.faq-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-fast);
    letter-spacing: -0.01em;
}

.faq-question:hover {
    color: var(--color-text-secondary);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    transition: var(--transition-base);
    opacity: 0.5;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 0.98rem;
}

/* ============================================
   FINAL CTA SECTION - Impactful
   ============================================ */
.final-cta-section {
    padding: var(--spacing-3xl) 0 calc(var(--spacing-3xl) + 20px);
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--color-white);
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: var(--spacing-xl) var(--spacing-lg);
}

/* Tech grid overlay */
.final-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

/* Spotlight effect */
.final-cta-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(234, 179, 8, 0.15) 0%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);
}

.final-cta-section:hover::after {
    opacity: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.05em;
    color: var(--color-white);
}

[data-theme="dark"] .final-cta-title {
    color: #ffffff !important;
    text-shadow: 0 0 30px rgba(234, 179, 8, 0.6);
}

.final-cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xl);
}

.final-cta-section .btn-primary {
    background-color: #ffffff;
    color: #000000;
    border: none;
}

.final-cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER - Minimal & Clean
   ============================================ */
.footer {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
}

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

.footer-logo img {
    height: 48px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-info {
    text-align: right;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-credit {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.footer-credit a {
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.footer-credit a:hover {
    color: var(--color-black);
}

/* ============================================
   ANIMATIONS - Smooth & Premium
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.services-grid .service-card:nth-child(1) {
    transition-delay: 0s;
}

.services-grid .service-card:nth-child(2) {
    transition-delay: 0.08s;
}

.services-grid .service-card:nth-child(3) {
    transition-delay: 0.16s;
}

.services-grid .service-card:nth-child(4) {
    transition-delay: 0.24s;
}

.benefits-grid .benefit-card:nth-child(1) {
    transition-delay: 0s;
}

.benefits-grid .benefit-card:nth-child(2) {
    transition-delay: 0.08s;
}

.benefits-grid .benefit-card:nth-child(3) {
    transition-delay: 0.16s;
}

.testimonials-grid .testimonial-card:nth-child(1) {
    transition-delay: 0s;
}

.testimonials-grid .testimonial-card:nth-child(2) {
    transition-delay: 0.08s;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    transition-delay: 0.16s;
}

.testimonials-grid .testimonial-card:nth-child(4) {
    transition-delay: 0.24s;
}

.comparison-grid .comparison-card:nth-child(1) {
    transition-delay: 0s;
}

.comparison-grid .comparison-card:nth-child(2) {
    transition-delay: 0.12s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-large,
    .bento-wide {
        grid-column: span 2;
    }

    .bento-tall {
        grid-row: span 1;
        grid-column: span 1;
    }

    .testimonials-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .header {
        left: 20px;
        right: 20px;
        transform: none;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 768px) {
    .header {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 10px 16px;
    }

    .nav {
        display: none;
    }

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

    .header .btn-primary {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.04em;
    }

    .hero {
        padding-top: 100px;
    }

    .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .founder-content {
        max-width: 100%;
    }

    /* Reset grids to single column */
    .services-grid,
    .bento-grid,
    .testimonials-grid-premium,
    .comparison-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    /* Reset spans */
    .bento-large,
    .bento-wide,
    .bento-tall,
    .testimonial-card.featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .process-step {
        flex-direction: column;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }

    .step-number {
        font-size: 2.5rem;
    }

    .footer-container {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }

    .testimonial-card {
        padding: 24px;
    }

    .comparison-card {
        padding: 28px;
    }

    body::after {
        box-shadow:
            inset 0 0 100px rgba(80, 120, 255, 0.06),
            inset 0 0 200px rgba(80, 120, 255, 0.03);
    }
}

/* ... rest of dark mode media queries and other styles ... */

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
    }

    .container {
        padding: 0 var(--spacing-md);
    }
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background: rgba(0, 0, 0, 0.1);
    color: var(--color-black);
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-star);
}

.service-card .service-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.4));
    transition: all 0.3s ease;
}

.theme-toggle {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(100, 140, 255, 0.2);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(-90deg);
}

.theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg);
}

/* ============================================
   DARK MODE
   ============================================ */
[data-theme="dark"] {
    /* Dark Mode Colors */
    --color-bg: #0a0a0a;
    --color-white: #141414;
    --color-black: #ffffff;
    --color-text: #f0f0f0;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-glass: rgba(20, 20, 20, 0.85);
    --color-glass-border: rgba(255, 255, 255, 0.08);

    /* Dark Mode Accent Colors */
    --color-accent-blue: rgba(100, 150, 255, 0.2);
    --color-accent-purple: rgba(160, 100, 255, 0.15);
    --color-glow: rgba(100, 150, 255, 0.15);

    /* Dark Mode Shadows */
    --shadow-sm:
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md:
        0 2px 4px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg:
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 32px rgba(0, 0, 0, 0.1),
        0 32px 64px rgba(0, 0, 0, 0.1);
    --shadow-button:
        0 0.6px 1px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 16px 24px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(100, 150, 255, 0.1);
    --shadow-glow:
        0 0 60px rgba(100, 150, 255, 0.2),
        0 0 100px rgba(100, 150, 255, 0.15);
}

/* Dark Mode Specific Overrides */
[data-theme="dark"] body::after {
    box-shadow:
        inset 0 0 200px rgba(80, 130, 255, 0.12),
        inset 0 0 400px rgba(80, 130, 255, 0.08);
}

[data-theme="dark"] .hero-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

[data-theme="dark"] .hero-video {
    filter: saturate(0);
    mix-blend-mode: screen;
    opacity: 0.8;
}



[data-theme="dark"] .hero-overlay {
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.4) 0%,
            /* More transparency at top for video visibility */
            rgba(10, 10, 10, 0.7) 50%,
            rgba(10, 10, 10, 1) 100%);
}

[data-theme="dark"] .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .benefits-section,
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .faq-section {
    background: rgba(255, 255, 255, 0.02);
}

[data-theme="dark"] .benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .comparison-basic {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .comparison-velo {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow:
        var(--shadow-lg),
        0 0 60px rgba(100, 150, 255, 0.15);
}

[data-theme="dark"] .author-avatar-placeholder {
    background: linear-gradient(135deg, #2a2a4a 0%, #1a1a3e 100%);
}

[data-theme="dark"] .btn-primary {
    background: var(--color-black);
    color: #0a0a0a;
}

[data-theme="dark"] .btn-link::after {
    background: var(--color-text);
}

[data-theme="dark"] .nav-link::after {
    background: var(--color-text);
}

[data-theme="dark"] .founder-image::before {
    background: transparent;
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow:
        0 0 20px rgba(234, 179, 8, 0.05),
        inset 0 0 30px rgba(234, 179, 8, 0.1);
}

[data-theme="dark"] .footer {
    background: rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] ::selection {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-text);
}

/* Theme Toggle Icon Switch */
[data-theme="dark"] .theme-toggle {
    background: var(--color-text);
    color: #0a0a0a;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg);
}

[data-theme="dark"] .theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(90deg);
}

/* Global Dark Mode Adjustments */
[data-theme="dark"] body::after {
    display: none;
    /* Remove blue vignette globally in dark mode */
}

/* Responsive Dark Mode Adjustments */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* Fix for dark mode image visibility if transparent */
[data-theme="dark"] .service-icon img {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}

[data-theme="dark"] .founder-content,
[data-theme="dark"] .section-title {
    color: var(--color-text);
}

[data-theme="dark"] .header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Dark mode header at top of page - transparent, no border/shadow */
[data-theme="dark"] .header {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid transparent;
    box-shadow: none;
}

/* Dark mode reveal text - update CSS variables for animation */
[data-theme="dark"] {
    --reveal-text-inactive: #4b5563;
    /* Grey that's visible on dark bg */
    --reveal-text-active: #ffffff;
    /* White for active state */
}

/* Gold glow on active reveal text in dark mode */
[data-theme="dark"] .reveal-char.active {
    text-shadow: 0 0 30px rgba(234, 179, 8, 0.3);
}

/* Gold accent on key words */
[data-theme="dark"] .text-reveal-section {
    position: relative;
}

[data-theme="dark"] .text-reveal-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 100px;
    background: radial-gradient(ellipse,
            rgba(234, 179, 8, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
    filter: blur(40px);
}

/* ============================================
   DARK MODE TECH GRID - Only on specific containers
   ============================================ */
/* Keep grid effect only on bento-tall (Infinite Scaling) card hover */
[data-theme="dark"] .bento-tall::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.3;
    border-radius: inherit;
    z-index: 1;
    transition: opacity 0.5s ease;
}

[data-theme="dark"] .bento-tall:hover::after {
    opacity: 0.5;
}

/* Fix bento card text contrast in dark mode */
/* bento-tall has dark bg so text should be white */
[data-theme="dark"] .bento-tall .bento-title {
    color: #ffffff !important;
}

[data-theme="dark"] .bento-tall .bento-desc {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* bento-large has light bg so text should stay dark */
[data-theme="dark"] .bento-large .bento-title {
    color: #0a0a0a !important;
    text-shadow: none;
}

[data-theme="dark"] .bento-large .bento-desc {
    color: #666666 !important;
}

/* bento-large icon stays dark on light bg */
[data-theme="dark"] .bento-large .bento-icon {
    color: #0a0a0a !important;
}

/* bento-wide (Revenue While You Sleep) - has gradient bg, needs white text */
[data-theme="dark"] .bento-wide .bento-title {
    color: #ffffff !important;
}

[data-theme="dark"] .bento-wide .bento-desc {
    color: rgba(255, 255, 255, 0.75) !important;
}

[data-theme="dark"] .bento-wide .bento-icon {
    color: #ffffff !important;
}

[data-theme="dark"] .bento-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 1px rgba(100, 150, 255, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================
   DARK MODE VELOCITY METHOD ENHANCEMENT
   ============================================ */
[data-theme="dark"] .process-section {
    position: relative;
}

[data-theme="dark"] .process-step {
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    margin-bottom: var(--spacing-md);
}

[data-theme="dark"] .process-step:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Yellow step numbers - matching original hover state */
[data-theme="dark"] .step-number {
    color: var(--color-star);
    opacity: 0.4;
}

[data-theme="dark"] .process-step:hover .step-number {
    opacity: 1;
    color: var(--color-star);
}

/* Connecting vertical line between steps */
[data-theme="dark"] .process-steps {
    position: relative;
}

[data-theme="dark"] .process-steps::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%);
}

/* Step number dot accent */
/* Step number dot accent - overriding duplicate ::after */
[data-theme="dark"] .process-step::after {
    display: none;
}

/* Update original ::before for dark mode instead */
[data-theme="dark"] .process-step::before {
    left: 46px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .process-step:hover::before {
    background: var(--color-star);
    border-color: var(--color-star);
    box-shadow: 0 0 12px rgba(234, 179, 8, 0.4);
    transform: translateY(-50%) scale(1.2);
}

[data-theme="dark"] .process-step:hover::after {
    background: var(--color-star);
    border-color: var(--color-star);
    box-shadow: 0 0 12px rgba(234, 179, 8, 0.4);
}

/* ============================================
   DARK MODE COMPARISON CARDS
   ============================================ */
[data-theme="dark"] .comparison-basic {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .comparison-basic .comparison-title {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .comparison-basic .comparison-list li {
    color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .comparison-velo {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(234, 179, 8, 0.2);
    box-shadow:
        0 0 40px rgba(234, 179, 8, 0.15),
        0 0 80px rgba(234, 179, 8, 0.08);
}

[data-theme="dark"] .comparison-velo:hover {
    box-shadow:
        0 0 50px rgba(234, 179, 8, 0.2),
        0 0 100px rgba(234, 179, 8, 0.1);
}

[data-theme="dark"] .comparison-velo .comparison-title {
    color: #ffffff;
}

[data-theme="dark"] .comparison-velo .comparison-list li {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   DARK MODE FAQ
   ============================================ */
[data-theme="dark"] .faq-question {
    color: #ffffff;
}

[data-theme="dark"] .faq-question:hover {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .faq-answer p {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .faq-item {
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .faq-icon {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   DARK MODE SERVICE CARDS
   ============================================ */
[data-theme="dark"] .services-grid::before {
    border-color: rgba(234, 179, 8, 0.15);
}

[data-theme="dark"] .services-grid::after {
    border-color: rgba(234, 179, 8, 0.1);
}

[data-theme="dark"] .service-card {
    background: rgba(20, 20, 25, 0.6);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Tech grid overlay on card */
[data-theme="dark"] .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(234, 179, 8, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 179, 8, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

/* Gold shine sweep effect */
[data-theme="dark"] .service-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(234, 179, 8, 0.03) 50%,
            transparent 55%);
    transform: rotate(45deg) translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}

[data-theme="dark"] .service-card:hover {
    background: rgba(20, 20, 25, 0.6);
    border-color: rgba(234, 179, 8, 0.25);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(234, 179, 8, 0.1);
    transform: translateY(-8px);
}

/* Fix for dark mode hover background persistence - hide light glow */
[data-theme="dark"] .card-glow {
    display: none;
}

[data-theme="dark"] .service-card:hover::before {
    opacity: 1;
}

[data-theme="dark"] .service-card:hover::after {
    transform: rotate(45deg) translateY(-100%);
}

[data-theme="dark"] .service-card .service-icon {
    background: transparent;
    border: none;
    color: var(--color-star);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(234, 179, 8, 0.4));
}

[data-theme="dark"] .service-card .service-icon svg {
    width: 40px;
    height: 40px;
}

[data-theme="dark"] .service-card:hover .service-icon {
    background: transparent;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 0 25px rgba(234, 179, 8, 0.8));
    transform: scale(1.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-theme="dark"] .service-title {
    color: #ffffff;
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .service-desc {
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 2;
}

/* Gold spotlight border for dark mode */
[data-theme="dark"] .spotlight-border {
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(234, 179, 8, 0.4),
            transparent 40%);
}