/* =====================================================
   SLOWRUSH - Bending Spoons Style
   ===================================================== */

/* CSS Variables - Design Tokens */
:root {
    /* Colors - Bending Spoons Palette */
    --bg-dark: #000000;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;

    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #666666;

    /* Gradient Accents - Vibrant Multi-color */
    --gradient-primary: linear-gradient(135deg, #ff6b6b, #feca57);
    --gradient-secondary: linear-gradient(135deg, #5f27cd, #48dbfb);
    --gradient-accent: linear-gradient(135deg, #ff9ff3, #f368e0);
    --gradient-blue: linear-gradient(135deg, #00d2d3, #54a0ff);
    --gradient-text: linear-gradient(90deg, #ff6b6b, #feca57, #1dd1a1);

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

    /* Border Radius - Bending Spoons uses very large radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* =====================================================
   NAVIGATION - Minimal Bending Spoons Style
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: background var(--transition-base);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

/* Custom dotted style for logo like Bending Spoons */
.logo-text .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--text-light);
    border-radius: 50%;
    vertical-align: middle;
    margin-left: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
}

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

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

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

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-base);
}

/* =====================================================
   HERO SECTION - Pure Black with Bold Typography
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: var(--bg-dark);
}

/* Hide gradient orbs for cleaner look */
.hero-bg {
    display: none;
}

.gradient-orb {
    display: none;
}

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

.hero-tagline {
    display: none;
    /* Hidden for cleaner Bending Spoons look */
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.03em;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
    font-weight: 400;
}

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

/* Buttons - Clean and Modern */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--text-light);
    color: var(--text-dark);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}

/* =====================================================
   SECTIONS COMMON
   ===================================================== */
section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: none;
    /* Hidden for cleaner look */
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Dark section title gradient */
.section-title .gradient-text-dark {
    background: linear-gradient(90deg, #5f27cd, #00d2d3, #1dd1a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   PRODUCTS SECTION - Light Background with Large Cards
   ===================================================== */
.products {
    background: var(--bg-dark);
    padding: var(--spacing-2xl) 0;
}

.products .section-title {
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

/* Product Card - Dark Theme */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    transition: all var(--transition-base);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.product-card.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card.featured {
    border: none;
}

.product-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    padding: 6px 14px;
    background: var(--gradient-accent);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.product-badge.muted {
    background: var(--bg-light);
    color: var(--text-muted);
}

.product-icon {
    width: 72px;
    height: 72px;
    margin-bottom: var(--spacing-md);
}

.product-icon.muted {
    opacity: 0.5;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.product-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    font-size: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.feature-icon {
    font-size: 1.1rem;
}

.product-btn {
    width: 100%;
    justify-content: center;
    background: var(--gradient-secondary);
    color: var(--text-light);
    padding: var(--spacing-sm) var(--spacing-lg);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(95, 39, 205, 0.3);
}

/* Discover Link - Bending Spoons style */
.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 600;
    font-size: 1rem;
    transition: opacity var(--transition-fast);
}

.product-link:hover {
    opacity: 0.7;
}

.coming-soon-cta {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* =====================================================
   ABOUT SECTION - Dark with Stats
   ===================================================== */
.about {
    background: var(--bg-dark);
    padding: var(--spacing-2xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-content {
    max-width: 540px;
}

.about .section-title {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.about-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.9;
    font-size: 1.1rem;
}

.about-text strong {
    color: var(--text-light);
}

.stats-row {
    display: flex;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--spacing-xs);
}

/* Visual Grid - Abstract 3D-like blocks */
.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.visual-card.glass-card {
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    width: 80%;
}

.visual-item {
    aspect-ratio: 1;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    animation: pulse 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.visual-item:nth-child(2) {
    background: var(--gradient-primary);
}

.visual-item:nth-child(3) {
    background: var(--gradient-blue);
}

.visual-item:nth-child(5) {
    background: var(--gradient-accent);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* =====================================================
   CONTACT SECTION - Light with Clean Design
   ===================================================== */
.contact {
    background: var(--bg-dark);
    padding: var(--spacing-2xl) 0;
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-card.glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact .section-title {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.contact-text {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--spacing-lg);
    max-width: 400px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-email {
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity var(--transition-fast);
    margin-bottom: var(--spacing-lg);
}

.contact-email:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
    border: none;
}

.social-link:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* =====================================================
   FOOTER - Minimal Dark
   ===================================================== */
.footer {
    background: var(--bg-dark);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo-text {
    font-size: 1.25rem;
    color: var(--text-light);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg-dark);
        padding: var(--spacing-md);
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: var(--spacing-sm) 0;
    }

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

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

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

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

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-description {
        font-size: 1.1rem;
    }

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

    .stats-row {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

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

    .contact-card {
        padding: var(--spacing-xl);
    }

    .contact-email {
        font-size: 1.4rem;
    }
}

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

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

    .product-card {
        padding: var(--spacing-lg);
    }
}