/* ==========================================
   MVPVU - Premium Design System v2.0
   ========================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Purple (#8A55A3 base) */
    --primary-700: #4A1763;
    --primary-600: #63307C;
    --primary-500: #7D4996;
    --primary-400: #9761B1;
    --primary-300: #B37BCC;
    --primary-200: #CF95E9;
    --primary-100: #E9B3FF;
    --primary-50: #F7D9FF;

    /* Secondary Colors - Orange (#F6911D base) */
    --secondary-700: #6B3B00;
    --secondary-600: #8D4F00;
    --secondary-500: #B16400;
    --secondary-400: #D67A00;
    --secondary-300: #F8931F;
    --secondary-200: #FFB877;
    --secondary-100: #FFDCC0;

    /* Tertiary Colors - Pink/Rose */
    --tertiary-500: #99405C;
    --tertiary-400: #B75875;
    --tertiary-300: #D6718E;
    --tertiary-200: #F68BA8;
    --tertiary-100: #FFB1C4;

    /* Accent Colors */
    --accent-orange: #F8931F;
    --accent-pink: #D6718E;
    --accent-green: #10b981;
    --accent-red: #BA1A1A;

    /* Neutrals - Warm purple-tinted grays */
    --gray-950: #110D12;
    --gray-900: #1E1A1F;
    --gray-800: #342F34;
    --gray-700: #4B454B;
    --gray-600: #635C63;
    --gray-500: #7C757C;
    --gray-400: #968E95;
    --gray-300: #B1A9B0;
    --gray-200: #CDC4CB;
    --gray-100: #E9E0E7;
    --gray-50: #F8EEF5;
    --white: #FFFFFF;

    /* Neutral Variants */
    --neutral-variant-900: #201923;
    --neutral-variant-800: #362E38;
    --neutral-variant-700: #4D444F;
    --neutral-variant-600: #655B67;
    --neutral-variant-500: #7E7480;
    --neutral-variant-400: #988D9A;
    --neutral-variant-300: #B4A7B4;
    --neutral-variant-200: #CFC2D0;
    --neutral-variant-100: #ECDEEC;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-300) 100%);
    --gradient-primary-vertical: linear-gradient(180deg, var(--primary-500) 0%, var(--secondary-300) 100%);
    --gradient-dark: linear-gradient(180deg, #110D12 0%, #1E1A1F 50%, #201923 100%);
    --gradient-glow: linear-gradient(135deg, rgba(125, 73, 150, 0.5) 0%, rgba(248, 147, 31, 0.5) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 50px rgba(125, 73, 150, 0.4);
    --shadow-glow-sm: 0 0 30px rgba(125, 73, 150, 0.3);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', var(--font-family);

    /* Spacing - IMPROVED MARGINS */
    --section-padding: 140px;
    --container-max: 1400px;
    --container-padding: 64px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

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

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ==========================================
   Container & Layout - BETTER MARGINS
   ========================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (max-width: 1200px) {
    :root {
        --container-padding: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 32px;
        --section-padding: 100px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 24px;
        --section-padding: 80px;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(125, 73, 150, 0.1);
    border: 1px solid rgba(125, 73, 150, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.section-tag svg {
    width: 16px;
    height: 16px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-glow {
    box-shadow: 0 0 30px rgba(125, 73, 150, 0.4), 0 4px 15px rgba(125, 73, 150, 0.3);
}

.btn-glow:hover {
    box-shadow: 0 0 50px rgba(125, 73, 150, 0.5), 0 8px 25px rgba(125, 73, 150, 0.4);
    transform: translateY(-3px);
}

.btn-glass {
    background: rgba(125, 73, 150, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(125, 73, 150, 0.2);
    color: var(--gray-800);
}

.btn-glass:hover {
    background: rgba(125, 73, 150, 0.1);
    border-color: rgba(125, 73, 150, 0.3);
    transform: translateY(-2px);
}

.btn-icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-ghost {
    color: var(--gray-600);
    padding: 14px 20px;
}

.btn-ghost:hover {
    color: var(--gray-900);
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
    box-shadow: var(--shadow-xl);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-ghost-light {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--primary-500);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: all var(--transition-base);
    border-radius: 2px;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8EEF5 50%, #F7D9FF 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(125, 73, 150, 0.15) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(248, 147, 31, 0.12) 0%, transparent 70%);
    top: 30%;
    right: -15%;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(214, 113, 142, 0.1) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(125, 73, 150, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(125, 73, 150, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 14px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(125, 73, 150, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 32px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-green);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.badge-arrow {
    color: var(--gray-600);
    transition: transform var(--transition-base);
}

.hero-badge:hover .badge-arrow {
    transform: translateX(4px);
}

.hero-title {
    margin-bottom: 28px;
}

.title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.title-line:first-child {
    color: var(--gray-900);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 48px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 72px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(125, 73, 150, 0.1);
    border: 1px solid rgba(125, 73, 150, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary-400);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary-400);
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-container {
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: phoneFloat 8s ease-in-out infinite;
}

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

.phone-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #201923 0%, #110D12 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px 16px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--accent-red);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
}

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

.viewer-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--white);
}

.screen-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at center, rgba(125, 73, 150, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26, 42, 58, 0.5) 0%, rgba(13, 26, 38, 0.8) 100%);
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.play-button-large:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(125, 73, 150, 0.4);
}

.play-button-large svg {
    width: 36px;
    height: 36px;
    color: var(--white);
    margin-left: 6px;
}

.screen-footer {
    padding: 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.game-time {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 0, 0, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
}

.float-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary-500);
}

.float-icon.green {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.float-icon.green svg {
    color: var(--accent-green);
}

.float-icon.orange {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}

.float-icon.orange svg {
    color: var(--accent-orange);
}

.float-1 {
    top: 5%;
    left: -15%;
    animation: floatElement 7s ease-in-out infinite;
}

.float-2 {
    top: 35%;
    right: -20%;
    animation: floatElement 8s ease-in-out infinite 1s;
}

.float-3 {
    bottom: 15%;
    left: -10%;
    animation: floatElement 6s ease-in-out infinite 2s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-600);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-500), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ==========================================
   Trusted By Section
   ========================================== */
.trusted-by {
    padding: 60px 0;
    background: var(--gray-50);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.logo-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary-500);
}

/* ==========================================
   Features Section - Bento Grid
   ========================================== */
.features {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px;
}

.bento-card {
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(125, 73, 150, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.bento-card:hover {
    border-color: rgba(125, 73, 150, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 60px rgba(125, 73, 150, 0.08);
}

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

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

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

.bento-wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.bento-small {
    grid-column: span 1;
}

.bento-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bento-gradient {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125, 73, 150, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.bento-content {
    position: relative;
    z-index: 1;
}

.bento-content.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(125, 73, 150, 0.1);
    border: 1px solid rgba(125, 73, 150, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bento-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-400);
}

.bento-icon.purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
}

.bento-icon.purple svg {
    color: #9761B1;
}

.bento-icon.red {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
}

.bento-icon.red svg {
    color: var(--accent-red);
}

.bento-icon.green {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
}

.bento-icon.green svg {
    color: var(--accent-green);
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.bento-features {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.bento-features li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.bento-visual {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

/* Basketball Game Preview */
.game-preview {
    position: relative;
    width: 280px;
    height: 160px;
    background: linear-gradient(145deg, #2a5a3a, #1e4a2e);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

/* Basketball Court */
.court {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.court-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
}

.center-line {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
}

.court-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.three-point {
    position: absolute;
    width: 60px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 0 50% 50% 0;
    top: 50%;
    transform: translateY(-50%);
}

.three-point.left {
    left: -30px;
    border-left: none;
}

.three-point.right {
    right: -30px;
    border-radius: 50% 0 0 50%;
    border-right: none;
}

.key {
    position: absolute;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    top: 50%;
    transform: translateY(-50%);
}

.key.left {
    left: 0;
    border-left: none;
}

.key.right {
    right: 0;
    border-right: none;
}

/* Players */
.player {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.player.team-a {
    background: var(--primary-500);
    box-shadow: 0 2px 8px rgba(125, 73, 150, 0.5);
}

.player.team-b {
    background: #f8931f;
    box-shadow: 0 2px 8px rgba(248, 147, 31, 0.5);
}

.player.active {
    animation: playerMove 3s ease-in-out infinite;
}

@keyframes playerMove {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(calc(-50% + 20px), calc(-50% - 10px)); }
}

/* Player Tracking Indicator */
.player-tracking {
    position: absolute;
    inset: -6px;
    border: 2px solid transparent;
    border-radius: 50%;
    opacity: 0;
}

.player-tracking.active {
    border-color: var(--accent-green);
    opacity: 1;
    animation: trackingPulse 1.5s ease-in-out infinite;
}

@keyframes trackingPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
}

/* Basketball */
.ball {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: ballBounce 0.5s ease-in-out infinite;
}

@keyframes ballBounce {
    0%, 100% { top: -12px; }
    50% { top: -18px; }
}

/* Recording Overlay */
.rec-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.rec-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.rec-badge .rec-dot {
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    animation: recPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 71, 87, 0.6);
}

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

.rec-badge span:last-child {
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 700;
    color: #ff4757;
    letter-spacing: 0.1em;
}

.rec-time {
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
}

.quality-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: var(--font-display);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-primary);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    z-index: 5;
}

.tracking-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(16, 185, 129, 0.8);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tracking-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: trackDot 1s ease-in-out infinite;
}

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

/* Share Avatars */
.share-avatars {
    display: flex;
    margin-top: 24px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--white);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar.more {
    background: var(--gray-400);
    font-size: 0.75rem;
}

/* Live Preview */
.live-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.live-badge-small {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--accent-red);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite;
}

.viewers {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* Storage Visual */
.storage-visual {
    flex-shrink: 0;
    width: 200px;
}

.storage-bar {
    height: 12px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 12px;
}

.storage-fill {
    height: 100%;
    width: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: storagePulse 2s ease-in-out infinite;
}

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

.storage-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    text-align: right;
    display: block;
}

/* Stat Circle */
.stat-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.stat-circle svg {
    width: 100%;
    height: 100%;
}

.stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.stat-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 8px;
}

/* Highlight Stack */
.highlight-stack {
    position: relative;
    width: 80px;
    height: 100px;
    margin-bottom: 16px;
}

.highlight-card {
    position: absolute;
    width: 60px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.highlight-card.h1 {
    bottom: 0;
    left: 0;
    z-index: 3;
    animation: cardStack 3s ease-in-out infinite;
}

.highlight-card.h2 {
    bottom: 8px;
    left: 10px;
    z-index: 2;
    opacity: 0.7;
    animation: cardStack 3s ease-in-out infinite 0.2s;
}

.highlight-card.h3 {
    bottom: 16px;
    left: 20px;
    z-index: 1;
    opacity: 0.4;
    animation: cardStack 3s ease-in-out infinite 0.4s;
}

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

/* ==========================================
   Value Section
   ========================================== */
.value {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.value-card:hover {
    border-color: rgba(125, 73, 150, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.value-card.featured {
    background: linear-gradient(145deg, rgba(125, 73, 150, 0.05) 0%, rgba(248, 147, 31, 0.03) 100%);
    border-color: rgba(125, 73, 150, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(125, 73, 150, 0.1);
    border: 1px solid rgba(125, 73, 150, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-400);
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.value-card > p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.value-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.steps-line {
    position: absolute;
    top: 60px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
}

.line-progress {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    transition: width 1s ease;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 300px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    background: rgba(125, 73, 150, 0.1);
    border: 2px solid rgba(125, 73, 150, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);
}

.step-number span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step:hover .step-number {
    background: rgba(125, 73, 150, 0.2);
    border-color: var(--primary-500);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(125, 73, 150, 0.08);
    border: 1px solid rgba(125, 73, 150, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary-400);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.testimonial-card {
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: 36px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    border-color: rgba(125, 73, 150, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card.featured {
    background: linear-gradient(145deg, rgba(125, 73, 150, 0.05) 0%, rgba(248, 147, 31, 0.03) 100%);
    border-color: rgba(125, 73, 150, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.testimonial-info {
    flex: 1;
    min-width: 120px;
}

.testimonial-info strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.testimonial-info span {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: #FFB877;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    font-style: italic;
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
}

.about-content .section-tag {
    margin-bottom: 20px;
    justify-content: center;
}

.about-content .section-title {
    text-align: center;
    margin-bottom: 32px;
}

.about-text {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-features {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-check {
    width: 28px;
    height: 28px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 14px;
    height: 14px;
    color: var(--accent-green);
}

.about-feature span {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9375rem;
}

/* About Visual */
.about-visual {
    position: relative;
    height: 450px;
}

.about-card {
    position: absolute;
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: 32px 40px;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-card:hover {
    border-color: rgba(125, 73, 150, 0.3);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-content {
    text-align: center;
}

.card-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.card-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.about-card.card-1 {
    top: 0;
    left: 10%;
    animation: cardFloat 6s ease-in-out infinite;
}

.about-card.card-2 {
    top: 35%;
    right: 5%;
    animation: cardFloat 7s ease-in-out infinite 1s;
}

.about-card.card-3 {
    bottom: 0;
    left: 25%;
    animation: cardFloat 8s ease-in-out infinite 2s;
}

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

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125, 73, 150, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    left: -100px;
}

.cta-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(0, 0, 0, 0.1);
    bottom: -150px;
    right: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.contact-info .section-tag {
    margin-bottom: 20px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-subtitle {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(125, 73, 150, 0.1);
    border: 1px solid rgba(125, 73, 150, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-400);
}

.contact-text strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-text p {
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-text a {
    color: var(--primary-400);
    transition: color var(--transition-fast);
}

.contact-text a:hover {
    color: var(--primary-300);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    background: var(--gray-50);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    color: var(--gray-900);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(125, 73, 150, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--gray-900);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand > p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-500);
    border-color: var(--primary-500);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-400);
}

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

.footer-bottom p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
    }

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

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

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 32px;
    }

    .hero-visual {
        display: none;
    }

    .about-grid {
        max-width: 100%;
        padding: 0 20px;
    }

    .about-features {
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

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

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

    .stat {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

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

    .bento-wide {
        flex-direction: column;
        text-align: center;
    }

    .storage-visual {
        width: 100%;
    }

    .game-preview {
        width: 240px;
        height: 140px;
    }

    .player {
        width: 12px;
        height: 12px;
    }

    .court-circle {
        width: 40px;
        height: 40px;
    }

    .value-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .steps-container {
        flex-direction: column;
        gap: 48px;
    }

    .steps-line {
        display: none;
    }

    .step {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }

    .title-line {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

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

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .bento-card {
        padding: 28px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================
   Styles moved from JS runtime injection
   ========================================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links a.active {
    color: var(--primary-500);
}

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

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.form-group.focused label {
    color: var(--primary-500);
}

.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 404 Page */
.error-404-content {
    text-align: center;
    padding: var(--section-padding) 0;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-404-content h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.error-404-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.error-404-content p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 32px;
}
