/* ================================
   CSS Custom Properties
   ================================ */
:root {
    /* Colors */
    --color-bg-primary: #000000;
    --color-bg-secondary: #0a0a0a;
    --color-bg-tertiary: #111111;
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.5);
    /* Gold Theme Replacements */
    --color-accent-blue: #bb9954;
    /* Replaced Blue with Specific Gold */
    --color-accent-cyan: #bb8a54;
    /* Replaced Cyan with Secondary Specific Gold */
    --color-accent-purple: #8b5cf6;
    --color-gradient-blue: linear-gradient(135deg, #bb9954 0%, #bb8a54 100%);
    /* Gold Gradient */
    --color-gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

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

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow-blue: 0 0 24px rgba(187, 153, 84, 0.3);
    /* Gold Glow */
    --shadow-glow-purple: 0 0 24px rgba(139, 92, 246, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-medium);
}

.navbar.hidden {
    transform: translateY(-100%);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Space between logo and text */
}

.nav-logo-img {
    height: 32px;
    /* Adjust height to match line-height/font-size */
    width: auto;
}

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

.nav-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.nav-link-btn {
    color: var(--color-text-secondary);
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
}

.nav-link-btn:hover {
    color: var(--color-text-primary);
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-gradient-blue);
    color: white;
    box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(187, 153, 84, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--color-accent-cyan);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    margin: var(--spacing-md) 0;
    transition: all var(--transition-fast);
}

.link-arrow::after {
    content: ' →';
    margin-left: 0.5rem;
    transition: transform var(--transition-fast);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* ================================
   Hero Section
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-md);
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.animated-word {
    display: inline-block;
    opacity: 1;
    transition: opacity 0.8s ease-in-out;
    width: 6em;
    /* Fixed width to accommodate 'important.' */
    text-align: left;
}

@media (max-width: 768px) {
    .animated-word {
        text-align: center;
    }
}

.animated-word.fade-out {
    opacity: 0;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
}

.hero-scroll-hint {
    margin-top: var(--spacing-xl);
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
}

/* ================================
   Sections
   ================================ */
.section-dark {
    background: var(--color-bg-primary);
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Content Layouts
   ================================ */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse>* {
    direction: ltr;
}

.content-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
}

/* ================================
   Bento Grid Layout
   ================================ */
.bento-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0;
    /* Removed padding for full bleed */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    min-height: 320px;
}

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

.bento-visual {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    /* No default padding for full bleed potential */
}

/* Add padding for visual types that need it */
.bento-card:not(.full-bleed) .bento-visual {
    padding: 2rem 2rem 0;
}

.bento-visual img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
}

.bento-card.full-bleed .bento-visual img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.bento-card:hover .bento-visual img {
    transform: scale(1.05);
}

.bento-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem;
    /* Add margin for icon since visual padding is removed */
}

.bento-content {
    padding: 2rem;
    /* Added padding here */
}

.bento-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.bento-content p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Specific Card Styles */
.bento-card.quote-card {
    background: linear-gradient(135deg, rgba(187, 153, 84, 0.1), rgba(0, 0, 0, 0));
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.bento-quote {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-style: italic;
    color: var(--color-text-primary);
    position: relative;
    z-index: 1;
}

.bento-quote::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: -40px;
    left: -20px;
    color: rgba(187, 153, 84, 0.1);
    font-family: serif;
    z-index: -1;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card {
        min-height: auto;
    }
}

/* ================================
   Feature Cards
   ================================ */
.feature-cards {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    transition: all var(--transition-medium);
}

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

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

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   Visual Elements
   ================================ */
.floating-mockup {
    width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
    transition: transform var(--transition-slow);
}

.floating-mockup:hover {
    transform: translateY(-10px);
}

/* ================================
   CTA Section
   ================================ */
.section-cta {
    background: var(--color-bg-secondary);
    padding: var(--spacing-xxl) 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-text-primary);
}

.app-badges,
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.app-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.15);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-gradient-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    color: var(--color-text-tertiary);
    font-size: 0.85rem;
}

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

.footer-links a {
    color: var(--color-text-tertiary);
    font-size: 0.85rem;
}

/* ================================
   News Links
   ================================ */
.news-links {
    list-style: none;
    margin-top: var(--spacing-sm);
}

.news-links li {
    margin-bottom: var(--spacing-sm);
}

.news-links a {
    color: var(--color-accent-cyan);
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all var(--transition-fast);
}

.news-links a:hover {
    text-decoration-color: var(--color-accent-cyan);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
        --spacing-xxl: 5rem;
    }

    .nav-actions {
        flex: 1;
        justify-content: flex-end;
    }

    .hero-content {
        padding: var(--spacing-xl) var(--spacing-sm);
    }

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

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

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ================================
   Login Modal
   ================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.show {
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

/* Left Side - Login Options */
.modal-left {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #000;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.login-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    background: white;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.login-btn:hover {
    border-color: var(--color-accent-blue);
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    border-color: #4285F4;
}

.apple-btn:hover {
    border-color: #000;
}

.email-btn:hover {
    border-color: var(--color-accent-blue);
}

.modal-disclaimer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #999;
    line-height: 1.5;
}

.modal-disclaimer a {
    color: #0066ff;
    text-decoration: none;
}

.modal-disclaimer a:hover {
    text-decoration: underline;
}

/* Right Side - App Download */
.modal-right {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.app-title {
    color: #1976d2;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.app-badges-modal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.store-badge {
    display: block;
    transition: transform var(--transition-fast);
}

.store-badge:hover {
    transform: scale(1.05);
}

.qr-code-container {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-sm);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-right {
        display: none;
    }

    .modal-left {
        padding: 2rem 1.5rem;
    }

    .modal-container {
        width: 95%;
        max-width: 450px;
    }
}

/* ================================
   Hero Typing Search Bar
   ================================ */
.hero-search-container {
    margin: 0 auto 3rem;
    max-width: 600px;
    width: 100%;
    padding: 0 1rem;
}

.hero-search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-search-bar:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.hero-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    padding: 0.75rem 1rem;
}

.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-search-btn {
    background: var(--color-gradient-blue);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(187, 153, 84, 0.3);
}

.hero-search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(187, 153, 84, 0.5);
}

.hero-search-btn svg {
    color: white;
}

/* Typing animation */
@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-search-input.typing::after {
    content: '|';
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-search-container {
        margin: 2rem auto;
    }

    .hero-search-input {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
    }

    .hero-search-btn {
        width: 42px;
        height: 42px;
    }
}

/* ================================
   Hero Background Zoom Animation
   ================================ */
@keyframes hero-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-background img {
    animation: hero-zoom 10s ease-in-out infinite alternate;
    transform-origin: center center;
}

/* ================================
   Mobile Hamburger Menu
   ================================ */

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger Animation when open */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile visual tweak */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 5rem;
        /* Increase top padding to avoid header overlap */
    }
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-actions {
        position: fixed;
        bottom: 0;
        left: -100%;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 1rem;
        transition: left 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1000;
    }

    .nav-actions.active {
        left: 0;
    }

    .nav-actions a {
        width: 100%;
        text-align: center;
        padding: 0.875rem;
    }

    .nav-actions .nav-link-btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.875rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-md);
    }

    .nav-actions .btn-primary {
        width: 100%;
    }
}

/* Store Badges for Footer */
.store-badge {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.store-badge:hover {
    transform: scale(1.05);
}

.app-badges {
    flex-direction: column;
    align-items: flex-start;
}

/* ================================
   Responsive Utilities
   ================================ */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .mobile-only {
        display: inline-flex !important;
        justify-content: center;
        width: 100%;
    }

    .desktop-only {
        display: none !important;
    }

    /* Ensure Create button fits in header on mobile */
    .mobile-only.btn {
        width: auto !important;
        flex: 0 0 auto;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Header Decoupling Fix */
.header-desktop-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-sm {
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    border-radius: var(--radius-md);
    min-width: auto !important;
    width: auto !important;
    flex: none !important;
}

/* ================================
   Solutions Section (Giga-Style Split)
   ================================ */
.solutions-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    min-height: 500px;
    /* Ensure height for absolute images */
}

/* Left Side: Navigation */
.solutions-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-nav-item {
    padding: 1.5rem;
    border-left: 4px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.solution-nav-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.solution-nav-item.active {
    border-left-color: #bb9954;
    /* Gold */
    background: linear-gradient(90deg, rgba(187, 153, 84, 0.05) 0%, transparent 100%);
}

.nav-item-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.solution-nav-item.active .nav-item-header h3 {
    color: var(--color-text-primary);
}

.nav-item-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.solution-nav-item.active .nav-item-body {
    max-height: 200px;
    /* Adjust as needed */
    opacity: 1;
    margin-top: 1rem;
}

.nav-item-body p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.link-arrow-small {
    display: inline-flex;
    align-items: center;
    color: #bb9954;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.link-arrow-small::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s;
}

.link-arrow-small:hover::after {
    transform: translateX(3px);
}

/* Progress Bar */
.nav-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: transparent;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #bb9954;
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* Animate progress only when active */
.solution-nav-item.active .progress-fill {
    width: 100%;
    animation: progressAnimation 7s linear forwards;
    /* Match rotation interval */
}

/* Right Side: Image Display */
.solutions-display {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.solution-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    /* Reset to normal scale */
    transition: opacity 0.6s ease, transform 0s 0.6s;
    /* Instant reset for transform */
    z-index: 1;
}

.solution-image.active {
    opacity: 1;
    transform: scale(1.05);
    /* Zoom to 1.05 */
    z-index: 2;
    transition: opacity 0.6s ease, transform 10s linear;
    /* 10s zoom animation */
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solutions-display {
        min-height: 300px;
        order: -1;
        /* Show image above text on mobile */
    }

    /* Keep body visible on mobile or user interaction might be tricky */
    .nav-item-body {
        max-height: none;
        opacity: 1;
        margin-top: 0.5rem;
    }

    .solution-nav-item {
        padding: 1rem;
        border-left: 2px solid rgba(255, 255, 255, 0.1);
    }

    .solution-nav-item.active {
        border-left-width: 4px;
    }
}