/* ===================================
   ITSSLJK Tools - Holographic Tech Hub
   A Unique, Memorable Design System
   =================================== */

/* ===================================
   CSS Custom Properties
   =================================== */
:root {
    /* Core Colors - Deep Space Palette */
    --bg-void: #030712;
    --bg-deep: #0a0f1a;
    --bg-surface: #111827;
    --bg-elevated: #1f2937;

    /* Text Hierarchy */
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #4b5563;

    /* Accent Colors - Holographic Spectrum */
    --accent-violet: #a855f7;
    --accent-cyan: #22d3ee;
    --accent-pink: #ec4899;
    --accent-lime: #84cc16;

    /* Gradient Definitions */
    --gradient-hero: linear-gradient(135deg, #a855f7 0%, #22d3ee 50%, #ec4899 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.4), transparent 70%);
    --gradient-card: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);

    /* Glass Effects */
    --glass-bg: rgba(17, 24, 39, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', monospace;

    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Container */
    --container-max: 1280px;
    --container-padding: 24px;
}

/* ===================================
   Reset & Base
   =================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Particle Canvas Background
   =================================== */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===================================
   Cursor Glow Effect
   =================================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ===================================
   Container
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

/* ===================================
   Glass Header
   =================================== */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-out-expo);
}

.glass-header.scrolled {
    padding: var(--space-3) 0;
    box-shadow: var(--glass-shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Animated Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.logo-cube {
    width: 44px;
    height: 44px;
    position: relative;
    perspective: 200px;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    background: var(--gradient-hero);
    color: white;
    border-radius: var(--radius-sm);
    backface-visibility: hidden;
    transition: transform 0.6s var(--ease-out-expo);
}

.cube-face.front {
    transform: translateZ(22px);
}

.cube-face.top {
    transform: rotateX(90deg) translateZ(22px);
    font-size: 10px;
}

.logo:hover .cube-face.front {
    transform: rotateX(-90deg) translateZ(22px);
}

.logo:hover .cube-face.top {
    transform: rotateX(0deg) translateZ(22px);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-cyan);
    letter-spacing: 0.2em;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: var(--space-10);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: var(--space-2) 0;
    position: relative;
}

.link-index {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent-violet);
    opacity: 0.6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-hero);
    transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-3);
    z-index: 1001;
}

.menu-line {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--space-16)) 0 var(--space-16);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: var(--gradient-glow);
    opacity: 0.5;
    pointer-events: none;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-8);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-lime);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-lime);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Hero Title */
.hero-title {
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: var(--space-8);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    animation: slideUp 1s var(--ease-out-expo) forwards;
    animation-delay: calc(var(--word-index, 0) * 0.1s);
    opacity: 0;
    transform: translateY(100%);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-word {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: slideUp 1s var(--ease-out-expo) forwards, gradientShift 4s ease infinite;
    animation-delay: 0.1s, 0s;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: var(--space-10);
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-ghost {
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--accent-violet);
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.3);
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: rgba(34, 211, 238, 0.3);
    bottom: 0;
    left: 0;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: rgba(236, 72, 153, 0.3);
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    backdrop-filter: blur(20px);
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.6s var(--ease-out-expo);
    animation: cardFloat 6s ease-in-out infinite;
}

.hero-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

@keyframes cardFloat {

    0%,
    100% {
        transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateY(-15px);
    }
}

.card-glow {
    position: absolute;
    inset: -1px;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(15px);
}

.hero-card:hover .card-glow {
    opacity: 0.5;
}

.card-content {
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-8);
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 3s ease infinite;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(168, 85, 247, 0);
    }
}

.card-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-muted);
}

.scroll-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--glass-border);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 100%;
    height: 20px;
    background: var(--gradient-hero);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(60px);
    }
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: var(--space-24) 0;
    background: var(--bg-deep);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.section-header {
    margin-bottom: var(--space-16);
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: rgba(34, 211, 238, 0.1);
    border-radius: var(--radius-sm);
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.title-accent {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blink-cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-top: var(--space-4);
}

.section-header.centered .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Bento Grid Products
   =================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: var(--space-5);
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid item placement */
.bento-main {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-mockup {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-feature {
    grid-column: span 1;
}

.bento-stats {
    grid-column: span 2;
}

.bento-wide {
    grid-column: span 2;
}

/* Base Bento Item */
.bento-item {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.bento-item:hover {
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Main Product Hero */
.bento-main {
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(168, 85, 247, 0.08) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.bento-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(132, 204, 22, 0.15);
    border: 1px solid rgba(132, 204, 22, 0.3);
    color: var(--accent-lime);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
    position: relative;
}

.pulse-ring {
    position: absolute;
    left: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent-lime);
    border-radius: 50%;
    animation: pulseRing 2s ease infinite;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent-lime);
    border-radius: 50%;
    animation: pulseOut 2s ease infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes pulseOut {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.badge-icon {
    font-size: 14px;
    margin-left: var(--space-3);
}

.product-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-4);
}

.product-hero-title span {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 350px;
    margin-bottom: var(--space-8);
}

/* Launch Button */
.launch-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-hero);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.launch-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.launch-btn:hover svg {
    transform: translate(3px, -3px);
}

.launch-btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.launch-btn:hover .launch-btn-bg {
    transform: translateX(100%);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--accent-violet);
    bottom: 20%;
    right: 10%;
    filter: blur(40px);
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--accent-cyan);
    bottom: 40%;
    right: 30%;
    filter: blur(30px);
    animation: shapeFloat 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: var(--accent-pink);
    bottom: 60%;
    right: 20%;
    filter: blur(25px);
    animation: shapeFloat 10s ease-in-out infinite;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-20px, -20px);
    }
}

/* Browser Mockup */
.bento-mockup {
    padding: 0;
    background: var(--bg-elevated);
}

.browser-frame {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-surface);
    border-bottom: 1px solid var(--glass-border);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.browser-dots {
    display: flex;
    gap: var(--space-2);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f57;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #28c840;
}

.browser-url {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--bg-deep);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    flex: 1;
    max-width: 300px;
}

.browser-url svg {
    stroke: var(--accent-lime);
    flex-shrink: 0;
}

.browser-url span {
    font-size: 12px;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.browser-content {
    flex: 1;
    padding: var(--space-8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-interface {
    width: 100%;
    max-width: 300px;
}

.mock-input {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
}

.typing-text {
    font-size: 13px;
    color: var(--text-primary);
}

.cursor-blink {
    color: var(--accent-violet);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

.mock-response {
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    height: 100px;
    overflow: hidden;
    position: relative;
}

.response-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(168, 85, 247, 0.1) 50%,
            transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Feature Cards */
.bento-feature {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.bento-feature h4 {
    font-size: 16px;
    font-weight: 700;
}

.bento-feature p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(34, 211, 238, 0.2) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: var(--space-2);
}

.feature-icon-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-violet);
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
}

.bento-feature:hover .icon-glow {
    opacity: 0.5;
}

/* Stats Block */
.bento-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-10);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.stat-display {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.stat-number .num {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.bento-stats .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-sublabel {
    font-size: 12px;
    color: var(--text-muted);
}

.bento-stats .stat-divider {
    width: 1px;
    height: 60px;
    background: var(--glass-border);
}

/* Wide Feature */
.bento-wide .feature-row {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.bento-wide .feature-text {
    flex: 1;
}

.bento-wide .feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.bento-wide .feature-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.feature-badge-pro {
    background: var(--gradient-hero);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

/* Bento Grid Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-main,
    .bento-mockup {
        grid-column: span 2;
    }

    .bento-feature {
        grid-column: span 1;
    }

    .bento-stats,
    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-main,
    .bento-mockup,
    .bento-feature,
    .bento-stats,
    .bento-wide {
        grid-column: span 1;
    }

    .bento-main {
        min-height: 350px;
    }

    .bento-stats {
        flex-direction: column;
        gap: var(--space-6);
    }

    .bento-stats .stat-divider {
        width: 60px;
        height: 1px;
    }

    .bento-wide .feature-row {
        flex-wrap: wrap;
    }

    .feature-badge-pro {
        margin-left: auto;
    }
}

/* ===================================
   Coming Soon Section
   =================================== */
.coming-soon-section {
    padding: var(--space-24) 0;
    position: relative;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.soon-card {
    background: var(--bg-surface);
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.soon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.soon-card:hover {
    border-color: var(--accent-violet);
    transform: translateY(-5px);
}

.soon-card:hover::before {
    opacity: 1;
}

.soon-visual {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    position: relative;
}

.visual-glitch {
    width: 100%;
    height: 100%;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.visual-glitch svg {
    width: 36px;
    height: 36px;
    stroke: var(--text-muted);
    opacity: 0.5;
}

.visual-scan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-hero);
    opacity: 0.5;
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {

    0%,
    100% {
        top: 0;
        opacity: 0;
    }

    50% {
        top: calc(100% - 4px);
        opacity: 0.8;
    }
}

.soon-content {
    position: relative;
    z-index: 2;
}

.soon-title {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: var(--space-2);
    letter-spacing: 0.05em;
}

.soon-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

.soon-progress {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: var(--progress);
    background: var(--gradient-hero);
    border-radius: var(--radius-full);
    transition: width 1s var(--ease-out-expo);
}

.progress-label {
    font-size: 11px;
    color: var(--accent-violet);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--glass-border);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.footer-logo .logo-main {
    font-weight: 800;
    font-size: 22px;
}

.footer-logo .logo-sub {
    font-size: 11px;
    color: var(--accent-cyan);
    letter-spacing: 0.2em;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-heading {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-violet);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--glass-border);
}

.copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.copy-symbol {
    font-family: var(--font-mono);
}

.copyright-accent {
    opacity: 0.6;
}

.footer-pattern {
    display: flex;
    gap: var(--space-1);
}

.footer-pattern span {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.3;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-12);
    }

    .hero-content {
        order: 1;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: 2;
        min-height: 300px;
    }

    .product-feature {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .product-header {
        justify-content: center;
        gap: var(--space-4);
    }

    .product-number {
        display: none;
    }

    .product-features {
        align-items: center;
    }

    .product-cta {
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-void);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-8);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out-expo);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 24px;
    }

    .link-index {
        font-size: 12px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-section {
        padding-top: calc(80px + var(--space-12));
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-card {
        transform: none;
        animation: none;
    }

    .scroll-indicator {
        display: none;
    }

    .coming-soon-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: var(--space-2) var(--space-3);
    }

    .badge-text {
        font-size: 11px;
    }

    .product-feature {
        padding: var(--space-6);
    }

    .product-name {
        font-size: 28px;
    }

    .soon-card {
        padding: var(--space-6);
    }
}

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .cursor-glow {
        display: none;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-violet);
    outline-offset: 4px;
}

/* Selection */
::selection {
    background: rgba(168, 85, 247, 0.3);
    color: var(--text-primary);
}