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

:root {
    --color-primary: #6366F1;
    --color-primary-dark: #4F46E5;
    --color-secondary: #8B5CF6;
    --color-background: #ffffff;
    --color-surface: #F9FAFB;
    --color-text: #111827;
    --color-text-secondary: #6B7280;
    --color-border: #E5E7EB;
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

[data-theme="dark"] {
    --color-background: #0F172A;
    --color-surface: #1E293B;
    --color-text: #F1F5F9;
    --color-text-secondary: #94A3B8;
    --color-border: #334155;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

[data-theme="dark"] .header {
    background-color: rgba(15, 23, 42, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-text);
    text-decoration: none;
}

.logo-image {
    height: 2.75rem;
    width: auto;
    display: block;
}

.logo-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav {
    display: flex;
    gap: 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

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

.nav-link-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}

.nav-link-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
}

.nav-link-discord svg {
    flex-shrink: 0;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: background-color 0.2s ease;
}

.theme-toggle:hover {
    background-color: var(--color-surface);
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

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

/* Hero Section */
.hero {
    padding: 7rem 0 6rem;
    background: linear-gradient(180deg, #F7F8FF 0%, #EAEEFE 100%);
}

[data-theme="dark"] .hero {
    background: linear-gradient(180deg, #161a2d 0%, #202743 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hero-copy {
    max-width: 36rem;
}

@media (max-width: 1024px) {
    .hero-copy {
        max-width: 100%;
        margin: 0 auto;
    }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(99, 102, 241, 0.12);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.hero-title-main {
    font-family: 'EB Garamond', serif;
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
    color: #19191D;
}

[data-theme="dark"] .hero-title-main {
    color: #F1F5F9;
}

.hero-highlight {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    color: #4A5568;
    margin-bottom: 1.75rem;
}

[data-theme="dark"] .hero-subtitle {
    color: #94A3B8;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(24, 24, 27, 0.04);
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

[data-theme="dark"] .hero-badge {
    background: rgba(148, 163, 184, 0.12);
    color: #E2E8F0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}


.hero-secondary {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-secondary:hover {
    text-decoration: underline;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4A5568;
    font-size: 1rem;
    font-weight: 500;
}

[data-theme="dark"] .quick-feature {
    color: #94A3B8;
}

.quick-feature svg {
    color: #6366F1;
    flex-shrink: 0;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}


.hero-stats--inline {
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    padding-top: 1.5rem;
}

[data-theme="dark"] .hero-stats--inline {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #19191D;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

[data-theme="dark"] .stat-value {
    color: #F1F5F9;
}

.stat-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

[data-theme="dark"] .stat-label {
    color: #94A3B8;
}

.status-indicator {
    width: 0.5rem;
    height: 0.5rem;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-reel {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .hero-card {
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-card--alt {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(236, 233, 255, 0.95));
}

[data-theme="dark"] .hero-card--alt {
    background: linear-gradient(140deg, rgba(30, 41, 59, 0.9), rgba(88, 28, 135, 0.4));
}

.hero-card--dark {
    background: linear-gradient(150deg, #1f2250, #3c1f6e);
    color: #F1F5F9;
}

[data-theme="dark"] .hero-card--dark {
    background: linear-gradient(150deg, #2a2f72, #6b21a8);
}

.hero-card-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--color-primary);
}

.hero-card-tag--pink {
    background: rgba(244, 114, 182, 0.15);
    color: #DB2777;
}

.hero-card-tag--violet {
    background: rgba(129, 140, 248, 0.25);
    color: #C4B5FD;
}

.hero-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-card-meta {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.5;
}

[data-theme="dark"] .hero-card-meta {
    color: #CBD5F5;
}

.hero-card-cta {
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-primary);
}

.hero-card-avatars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-avatar {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-avatar--more {
    background: rgba(17, 24, 39, 0.08);
    color: #111827;
}

[data-theme="dark"] .hero-avatar--more {
    background: rgba(148, 163, 184, 0.16);
    color: #E2E8F0;
}

.hero-card-progress {
    width: 100%;
    height: 0.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.hero-card-progress-bar {
    height: 100%;
    width: var(--progress, 50%);
    background: linear-gradient(135deg, #6366F1, #EC4899);
}

.hero-float {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.25rem;
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: fit-content;
    min-width: 15rem;
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .hero-float {
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-float-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    color: #1F2937;
}

[data-theme="dark"] .hero-float-top {
    color: #E2E8F0;
}

.hero-float-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B7280;
}

[data-theme="dark"] .hero-float-label {
    color: #A3AED0;
}

.hero-float-value {
    font-size: 1.35rem;
    font-weight: 700;
}

.hero-float-bottom {
    font-size: 0.95rem;
    color: #4A5568;
}

[data-theme="dark"] .hero-float-bottom {
    color: #94A3B8;
}

@media (max-width: 768px) {
    .hero {
        padding: 5.5rem 0 4.5rem;
    }

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

    .hero-card {
        padding: 1.4rem;
    }

    .hero-float {
        min-width: 100%;
    }

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

    .stat-item {
        text-align: center;
    }
}

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

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.hero-marquee {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.12));
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    border-bottom: 1px solid rgba(236, 72, 153, 0.2);
    padding: 1.1rem 0;
    overflow: hidden;
}

[data-theme="dark"] .hero-marquee {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.18), rgba(236, 72, 153, 0.14));
    border-color: rgba(129, 140, 248, 0.25);
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    list-style: none;
    animation: marquee 20s linear infinite;
    padding: 0;
    width: max-content;
}

.marquee-track li {
    font-weight: 600;
    color: #1F2937;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

[data-theme="dark"] .marquee-track li {
    color: #E2E8F0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.02em;
}

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

.btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Key Features Showcase */
.key-features-showcase {
    padding: 5rem 0;
    background: #ffffff;
}

[data-theme="dark"] .key-features-showcase {
    background: #0F172A;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-large {
    font-family: 'EB Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #19191D;
    margin-bottom: 1rem;
}

[data-theme="dark"] .section-title-large {
    color: #F1F5F9;
}

.section-subtitle-large {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 42rem;
    margin: 0 auto;
}

[data-theme="dark"] .section-subtitle-large {
    color: #94A3B8;
}

.features-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-card {
    background: radial-gradient(92.09% 124.47% at 50% 99.24%, rgba(221, 226, 238, 0.40) 58.91%, rgba(187, 197, 221, 0.40) 100%);
    border: 1px solid rgba(54, 57, 63, 0.05);
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 1.899px 1.77px 8.174px 0 rgba(255, 255, 255, 0.13) inset, 1.007px 0.939px 4.087px 0 rgba(255, 255, 255, 0.13) inset;
}

[data-theme="dark"] .showcase-card {
    background: radial-gradient(92.09% 124.47% at 50% 99.24%, rgba(30, 41, 59, 0.60) 58.91%, rgba(51, 65, 85, 0.40) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.15);
}

.showcase-primary {
    background: radial-gradient(167.08% 140.48% at 79.5% 0%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.00) 100%), 
                radial-gradient(120.74% 124.92% at 7.26% 100%, #497EE9 0%, #749CFF 100%);
    background-blend-mode: overlay, normal;
    color: #ffffff;
}

.showcase-primary .showcase-title,
.showcase-primary .showcase-description {
    color: #ffffff;
}

.showcase-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.showcase-card:not(.showcase-primary) .showcase-icon {
    background: rgba(99, 102, 241, 0.1);
}

.showcase-card:not(.showcase-primary) .showcase-icon svg {
    color: #6366F1;
}

.showcase-primary .showcase-icon svg {
    color: #ffffff;
}

.showcase-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #19191D;
    letter-spacing: -0.5px;
}

[data-theme="dark"] .showcase-title {
    color: #F1F5F9;
}

.showcase-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .showcase-description {
    color: #94A3B8;
}

.showcase-badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

.showcase-card:not(.showcase-primary) .showcase-badge {
    background: rgba(99, 102, 241, 0.1);
    color: #6366F1;
}

[data-theme="dark"] .showcase-card:not(.showcase-primary) .showcase-badge {
    background: rgba(99, 102, 241, 0.2);
    color: #818CF8;
}

.showcase-badge-ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    color: #8B5CF6;
}

[data-theme="dark"] .showcase-badge-ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
    color: #A78BFA;
}

.showcase-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-mini-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #19191D;
}

[data-theme="dark"] .stat-mini-value {
    color: #F1F5F9;
}

.stat-mini-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .stat-mini-label {
    color: #94A3B8;
}

/* Collection Management Showcase */
.collection-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F7F8FF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .collection-showcase {
    background: linear-gradient(180deg, #1a1b26 0%, #16171f 100%);
}

.collection-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.collection-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.collection-icon-large {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
}

.collection-showcase-title {
    font-family: 'EB Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #19191D;
}

[data-theme="dark"] .collection-showcase-title {
    color: #F1F5F9;
}

.highlight-gradient {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.collection-showcase-description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #6B7280;
    max-width: 90%;
}

[data-theme="dark"] .collection-showcase-description {
    color: #94A3B8;
}

.collection-features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.collection-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #4B5563;
}

[data-theme="dark"] .collection-feature-item {
    color: #CBD5E1;
}

.collection-feature-item svg {
    flex-shrink: 0;
    color: #10B981;
}

.btn-collection-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    align-self: flex-start;
}

.btn-collection-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.btn-collection-cta svg {
    transition: transform 0.3s ease;
}

.btn-collection-cta:hover svg {
    transform: translateX(4px);
}

/* Collection Visual - Shelf Display */
.collection-visual {
    position: relative;
}

.shelf-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

[data-theme="dark"] .shelf-container {
    background: rgba(30, 31, 42, 0.8);
    border-color: rgba(99, 102, 241, 0.2);
}

.shelf-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.shelf-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    margin: 0.5rem 0;
}

.shelf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.shelf-box {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.shelf-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
}

.shelf-item:hover .shelf-box {
    transform: translateY(-4px) scale(1.05);
}

/* Labubu Colors */
.labubu-pink {
    background: linear-gradient(135deg, #FFC0CB 0%, #FFB6C1 100%);
}

.labubu-blue {
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
}

.labubu-green {
    background: linear-gradient(135deg, #98FB98 0%, #90EE90 100%);
}

.labubu-purple {
    background: linear-gradient(135deg, #DDA0DD 0%, #BA55D3 100%);
}

.labubu-yellow {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.labubu-orange {
    background: linear-gradient(135deg, #FFA07A 0%, #FF8C00 100%);
}

.labubu-red {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
}

/* Other Series Colors */
.skull-pink {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
}

.skull-blue {
    background: linear-gradient(135deg, #6495ED 0%, #4169E1 100%);
}

.cry-pink {
    background: linear-gradient(135deg, #FADADD 0%, #FFB6C1 100%);
}

.cry-blue {
    background: linear-gradient(135deg, #B0E0E6 0%, #87CEEB 100%);
}

/* Wishlist Box */
.shelf-item.empty .shelf-box.wishlist {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px dashed rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366F1;
}

.shelf-label {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
    text-align: center;
}

[data-theme="dark"] .shelf-label {
    color: #94A3B8;
}

/* Collection Stats Overlay */
.collection-stats-overlay {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.stat-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

[data-theme="dark"] .stat-bubble {
    background: rgba(30, 31, 42, 0.95);
    border-color: rgba(99, 102, 241, 0.25);
}

.stat-bubble-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-bubble-label {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .stat-bubble-label {
    color: #94A3B8;
}

.creator-feed {
    padding: 4.5rem 0;
    background: var(--color-surface);
}

[data-theme="dark"] .creator-feed {
    background: #111927;
}

.creator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.creator-card {
    display: flex;
    gap: 1rem;
    border-radius: 1rem;
    padding: 1.25rem;
    background: var(--color-background);
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

[data-theme="dark"] .creator-card {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(129, 140, 248, 0.18);
}

.creator-thumb {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.creator-thumb--labubu {
    background-image: linear-gradient(135deg, #F472B6, #F97316);
}

.creator-thumb--skullpanda {
    background-image: linear-gradient(135deg, #818CF8, #6366F1);
}

.creator-thumb--crybaby {
    background-image: linear-gradient(135deg, #A855F7, #3B82F6);
}

.creator-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.creator-handle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.creator-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.creator-caption {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.creator-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: var(--color-background);
}

.products-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.products-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 260px;
}

@media (max-width: 768px) {
    .products-actions {
        width: 100%;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

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

/* Collection Selector */
.collection-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.collection-label svg {
    color: var(--color-primary);
}

.collection-dropdown {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-background);
    color: var(--color-text);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='%236366F1'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.collection-dropdown:hover {
    border-color: var(--color-primary);
}

.collection-dropdown:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.collection-dropdown optgroup {
    font-weight: 600;
    color: var(--color-text);
    padding: 0.5rem 0;
}

.collection-dropdown option {
    padding: 0.5rem;
    color: var(--color-text);
}

.filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.product-info {
    padding: 1.25rem;
}

.product-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.product-status.in-stock {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.product-status.out-of-stock {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Feature Section */
.features {
    padding: 4rem 0;
    background: var(--color-surface);
}

.feature-header .section-subtitle {
    max-width: 40rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 2rem;
    align-items: stretch;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-background);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.feature-button.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.18));
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .feature-button {
    background: var(--color-surface);
}

[data-theme="dark"] .feature-button.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.24), rgba(139, 92, 246, 0.32));
}

.feature-button-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-button-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.feature-button-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-button-meta span {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
}

.feature-preview {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-background);
    overflow: hidden;
    padding: 2.5rem;
}

.feature-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.18), transparent 55%);
    pointer-events: none;
}

.feature-preview-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-preview-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.feature-preview-description {
    color: var(--color-text-secondary);
    font-size: 1rem;
    max-width: 38rem;
}

.feature-points {
    display: grid;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    border: 1px solid rgba(99, 102, 241, 0.12);
}

.feature-point-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(139, 92, 246, 0.18));
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.feature-point-copy {
    flex: 1;
    font-size: 0.95rem;
    color: var(--color-text);
}

.feature-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-metric {
    flex: 1 1 140px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(99, 102, 241, 0.12);
}

.feature-metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    margin-bottom: 0.35rem;
}

.feature-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-timeline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-lg);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.14);
}

.timeline-time {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-primary);
}

.timeline-label {
    font-weight: 600;
}

.timeline-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.timeline-tag.success {
    background: rgba(16, 185, 129, 0.18);
    color: var(--color-success);
}

.timeline-tag.warning {
    background: rgba(245, 158, 11, 0.18);
    color: var(--color-warning);
}

.timeline-tag.snooze {
    background: rgba(99, 102, 241, 0.18);
    color: var(--color-primary);
}

/* Insights Section */
.insights {
    padding: 4rem 0;
    background: var(--color-surface);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.insight-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.insight-card::after {
    content: "";
    position: absolute;
    inset: auto -40% -60% auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12), transparent 70%);
    pointer-events: none;
    transform: rotate(12deg);
}

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

.insight-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
}

.insight-value {
    font-size: 2rem;
    font-weight: 700;
}

.insight-delta {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-success);
}

.insight-progress {
    height: 6px;
    width: 100%;
    background: var(--color-border);
    border-radius: 999px;
    overflow: hidden;
}

.insight-progress-bar {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    width: var(--progress, 0%);
}

.insight-detail {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.insight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.insight-pill {
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.insights-footer {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.insights-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.note-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--color-success);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.insights-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.insights-cta svg {
    width: 18px;
    height: 18px;
}

/* Brand Coverage Section */
.brand-coverage {
    padding: 4rem 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    position: relative;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-card.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.brand-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(139, 92, 246, 0.22));
    display: grid;
    place-items: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1rem;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
}

.brand-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.brand-progress {
    height: 8px;
    border-radius: 999px;
    background: var(--color-border);
    overflow: hidden;
}

.brand-progress-bar {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    width: var(--coverage, 0%);
}

.brand-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.brand-badge {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.brand-badge.live {
    background: rgba(16, 185, 129, 0.16);
    color: var(--color-success);
}

.brand-badge.watch {
    background: rgba(99, 102, 241, 0.16);
    color: var(--color-primary);
}

.brand-hint {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    text-align: center;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: var(--color-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
}

.about-description {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.about-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.about-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.about-bullet {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.about-list h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.about-list p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.about-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    background: var(--color-background);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.16);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--color-border);
    box-shadow: 0 0 6px rgba(99, 102, 241, 0.35);
}

.about-dot--active {
    background: var(--color-success);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.45);
}

.about-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.about-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.about-status {
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-status--available {
    background: rgba(16, 185, 129, 0.16);
    color: var(--color-success);
}

.about-status--warm {
    background: rgba(245, 158, 11, 0.16);
    color: var(--color-warning);
}

.about-status--cooldown {
    background: rgba(99, 102, 241, 0.16);
    color: var(--color-primary);
}

.about-card-footer {
    display: flex;
    gap: 1.5rem;
}

.about-card-footer div {
    flex: 1;
}

.about-metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    margin-bottom: 0.35rem;
}

.about-metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.about-note {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.18));
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    color: var(--color-text);
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Updates Section */
.updates {
    padding: 4rem 0;
    background: var(--color-surface);
}

.updates-grid {
    display: grid;
    gap: 1rem;
}

.update-card {
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: all 0.2s ease;
}

.update-card:hover {
    box-shadow: var(--shadow-md);
}

.update-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.update-content {
    flex: 1;
}

.update-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.update-description {
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.update-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.update-date {
    font-weight: 500;
}

.update-price {
    font-weight: 600;
    color: var(--color-primary);
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--color-background);
    border-radius: var(--radius-xl);
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-secondary);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-text);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-description {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.signup-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.modal-note {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    text-align: center;
}

/* Footer */
.footer {
    background: #000000;
    color: #FFFFFF;
    padding: 3rem 0 2rem;
}

[data-theme="dark"] .footer {
    background: #000000;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-text {
    color: #D1D5DB;
    margin-top: 1rem;
    max-width: 32rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #FFFFFF;
}

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

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: 3rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }

    .hero-features-quick {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-quick {
        font-size: 0.875rem;
    }

    .section-title-large {
        font-size: 2.5rem;
    }

    .features-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-card {
        padding: 2rem 1.5rem;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .collection-showcase {
        padding: 3rem 0;
    }

    .collection-showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .collection-showcase-title {
        font-size: 2.25rem;
    }

    .collection-showcase-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .collection-features-list {
        gap: 0.75rem;
    }

    .collection-feature-item {
        font-size: 0.875rem;
    }

    .shelf-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .shelf-box {
        width: 70px;
        height: 70px;
    }

    .collection-stats-overlay {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .stat-bubble {
        flex: 1;
        min-width: calc(50% - 0.5rem);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-cta {
        align-items: stretch;
        width: 100%;
    }

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

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .collection-selector {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .collection-dropdown {
        max-width: 100%;
    }

    .filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    .product-name {
        font-size: 0.875rem;
    }

    .brands-scroller {
        gap: 1rem;
    }

    .brand-item {
        width: 10rem;
        padding: 1rem;
    }

    .brand-logo-wrapper {
        width: 3rem;
        height: 3rem;
    }

    .product-price {
        font-size: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        width: 90%;
        max-width: 400px;
    }

    .signup-form {
        flex-direction: column;
    }

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

    .feature-preview {
        padding: 2rem 1.5rem;
    }

    .feature-metrics {
        flex-direction: column;
    }

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

    .insights-footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .brand-card {
        padding: 1.25rem;
    }

    .about-card-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .about-grid {
        gap: 2rem;
    }
}

.footer-text {
    color: var(--color-text-secondary);
    margin-top: 1rem;
    max-width: 20rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Featuring Brands Section */
.featuring-brands {
    padding: 3rem 0;
    background: var(--color-background);
}

.section-header-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.section-bar {
    width: 0.5rem;
    height: 1.625rem;
    background-color: #060606;
    flex-shrink: 0;
}

[data-theme="dark"] .section-bar {
    background-color: #F1F5F9;
}

.section-title-inline {
    color: #060606;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.5px;
    margin: 0;
}

[data-theme="dark"] .section-title-inline {
    color: #F1F5F9;
}

.brands-scroller-wrapper {
    position: relative;
    overflow: hidden;
}

.brands-scroller-wrapper::before,
.brands-scroller-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2rem;
    z-index: 10;
    pointer-events: none;
}

.brands-scroller-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-background), transparent);
}

.brands-scroller-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-background), transparent);
}

.brands-scroller {
    display: flex;
    gap: 1.5rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.brands-scroller:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2 - 0.75rem));
    }
}

.brand-item {
    flex-shrink: 0;
    width: 12rem;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.brand-item:hover {
    box-shadow: var(--shadow-md);
}

.brand-logo-wrapper {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
}

.brand-logo {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
    margin: 0;
}

[data-theme="dark"] .brand-name {
    color: #9CA3AF;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav {
        display: none;
    }

    .stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}
