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

:root {
    --bg-deep: #0a0a12;
    --bg-surface: #111122;
    --sacred-deep: #1a1033;
    --gold-deep: #d4a843;
    --gold-light: #e8c96a;
    --gold-muted: rgba(212, 168, 67, 0.3);
    --violet-deep: #2d1b69;
    --violet-glow: #7c3aed;
    --text-light: #e8e4dc;
    --text-muted: rgba(232, 228, 220, 0.55);
    --font-body: 'Inter', sans-serif;
    --font-display: 'Cinzel', serif;
    --font-accent: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

/* ===== Ambient Background ===== */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(125, 58, 237, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 168, 67, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(26, 16, 51, 0.4) 0%, transparent 80%);
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.08);
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold-light);
}

/* ===== Nav Controls ===== */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-select {
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    color: var(--gold-light);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
    transition: var(--transition);
    max-width: 130px;
}

.lang-select:hover,
.lang-select:focus {
    border-color: var(--gold-light);
    background: rgba(212, 168, 67, 0.12);
}

.lang-select option {
    background: var(--bg-deep);
    color: var(--text-light);
}

/* ===== Hamburger Button ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 18, 0.97);
    backdrop-filter: blur(16px);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 12px 24px;
}

.mobile-menu a:hover {
    color: var(--gold-light);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

/* ===== Hero Particles ===== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform, opacity;
}

.particle--gold {
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.03) 60%, transparent 100%);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.06);
}

.particle--white {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 60%, transparent 100%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.04);
}

@keyframes particleDrift1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(80px, -120px) scale(1.15); opacity: 0; }
}

@keyframes particleDrift2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(-60px, -100px) scale(0.9); opacity: 0; }
}

@keyframes particleDrift3 {
    0% { transform: translate(0, 0) scale(0.9); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(40px, 80px) scale(1.1); opacity: 0; }
}

@keyframes particleDrift4 {
    0% { transform: translate(0, 0) scale(1.05); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(-90px, -60px) scale(0.85); opacity: 0; }
}

/* ===== Stats Bar ===== */
.stats-bar {
    position: relative;
    z-index: 1;
    padding: 48px 24px;
    background: rgba(17, 17, 34, 0.6);
    border-top: 1px solid rgba(212, 168, 67, 0.08);
    border-bottom: 1px solid rgba(212, 168, 67, 0.08);
}

.stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 32px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(212, 168, 67, 0.15);
    flex-shrink: 0;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 0 60px rgba(212, 168, 67, 0.2);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 24px;
    opacity: 0.85;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold-light) 100%);
    color: var(--bg-deep);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid var(--gold-muted);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(212, 168, 67, 0.08);
    border-color: var(--gold-light);
}

.btn-disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* ===== Sections ===== */
.section {
    position: relative;
    padding: 100px 24px;
    z-index: 1;
}

.section-dark {
    background: rgba(17, 17, 34, 0.5);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 48px;
}

/* ===== Mission Cards ===== */
.mission-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.mission-card {
    background: rgba(212, 168, 67, 0.03);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    border-color: rgba(212, 168, 67, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== Product Cards ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    position: relative;
    background: linear-gradient(160deg, rgba(26, 16, 51, 0.6) 0%, rgba(10, 10, 18, 0.8) 100%);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 20px;
    padding: 40px 32px;
    transition: var(--transition);
}

.product-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-badge.live {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.product-badge.coming {
    background: rgba(124, 58, 237, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.product-name {
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.product-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
}

.product-features li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 0.85rem;
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--gold-deep);
    font-size: 0.7rem;
}

/* ===== About ===== */
.about-content {
    max-width: 700px;
    margin: 48px auto 0;
    text-align: center;
}

.about-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(212, 168, 67, 0.08);
    padding: 60px 24px 0;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}

.footer-logo {
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 20px 0;
    border-top: 1px solid rgba(212, 168, 67, 0.06);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
    opacity: 0.6;
}

/* ===== Spotify Badge ===== */
.product-badges-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.spotify-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(29, 185, 84, 0.1);
    border: 1px solid rgba(29, 185, 84, 0.3);
    border-radius: 20px;
    color: #1DB954;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.spotify-badge:hover {
    background: rgba(29, 185, 84, 0.2);
    border-color: #1DB954;
    box-shadow: 0 0 12px rgba(29, 185, 84, 0.15);
}

.spotify-icon {
    flex-shrink: 0;
}

/* ===== Audio Preview ===== */
.audio-preview {
    margin: 20px 0;
    padding: 16px;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 12px;
}

.audio-preview-label {
    font-size: 0.78rem;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.custom-player {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.player-play-btn:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold-light);
}

.player-progress {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.player-bar {
    height: 4px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.player-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
    border-radius: 4px;
    transition: width 0.1s linear;
}

.player-time {
    font-size: 0.68rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* ===== Email Capture ===== */
.email-capture-section {
    padding: 60px 24px;
}

.email-capture-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 32px;
    background: rgba(212, 168, 67, 0.03);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 20px;
}

.email-capture-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.email-capture-subtitle {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

.email-capture-row {
    display: flex;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}

.email-capture-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.email-capture-input:focus {
    border-color: var(--gold-light);
}

.email-capture-input::placeholder {
    color: var(--text-muted);
}

.email-capture-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
    border: none;
    border-radius: 10px;
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.email-capture-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.3);
}

.email-capture-msg {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gold-light);
    min-height: 1.2em;
}

.email-capture-msg.error {
    color: #ef4444;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-controls {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-lang {
        margin-top: 16px;
        padding: 10px 16px;
        font-size: 0.95rem;
        max-width: 200px;
        border-color: rgba(212, 168, 67, 0.3);
    }

    .hero-title {
        font-size: 2.6rem;
    }

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

    .mission-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .about-content p {
        line-height: 1.6;
    }

    .hero-description {
        text-align: left;
        line-height: 1.6;
    }

    .mission-card p {
        text-align: left;
        line-height: 1.6;
    }

    .product-description {
        text-align: left;
        line-height: 1.6;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-links {
        display: flex;
        justify-content: space-evenly;
        width: 100%;
        gap: 24px;
    }

    .footer-col {
        flex: 1;
    }

    .stats-inner {
        flex-direction: column;
        gap: 28px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

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

    .email-capture-row {
        flex-direction: column;
    }

    .email-capture-card {
        padding: 32px 20px;
    }
}

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

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

    .section {
        padding: 60px 16px;
    }

    .product-card {
        padding: 28px 20px;
    }
}

/* ===== Community Chat ===== */
.community-chat-section .chat-messages {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 14px;
    padding: 16px;
    max-height: 350px;
    overflow-y: auto;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.community-chat-section .chat-messages::-webkit-scrollbar {
    width: 4px;
}
.community-chat-section .chat-messages::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 67, 0.2);
    border-radius: 4px;
}

.chat-empty {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
    padding: 30px 0;
}

.chat-bubble {
    display: flex;
    gap: 10px;
    animation: chatFadeIn 0.3s ease;
}

@keyframes chatFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a0a0f;
    flex-shrink: 0;
}

.chat-bubble-body {
    flex: 1;
}

.chat-bubble-name {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-deep);
    margin-bottom: 2px;
}

.chat-bubble-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.chat-bubble-time {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.chat-input-row {
    display: flex;
    gap: 8px;
}

.chat-name-input {
    width: 120px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.chat-name-input:focus,
.chat-msg-input:focus {
    border-color: var(--gold-deep);
}

.chat-name-input::placeholder,
.chat-msg-input::placeholder {
    color: var(--text-muted);
}

.chat-msg-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.25s ease;
}

.chat-send-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold-light));
    border: none;
    border-radius: 10px;
    color: #0a0a0f;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.chat-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.chat-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 600px) {
    .chat-input-row {
        flex-direction: column;
    }
    .chat-name-input {
        width: 100%;
    }
}

/* ===== Founding 888 Banner ===== */
.nav-link-founding {
    color: var(--gold-deep) !important;
    font-weight: 600 !important;
}
.founding-banner {
    margin-top: 40px;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
    padding: 24px 28px;
}
.founding-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.founding-banner-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}
.founding-banner-star {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-right: 6px;
}
.founding-banner-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 4px;
}
.founding-progress-mini {
    display: inline-block;
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    vertical-align: middle;
}
.founding-progress-mini-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
    border-radius: 4px;
    transition: width 1s ease;
}
#bannerSpotsText {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.88rem;
}
.footer-pricing-line {
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--gold-light);
    letter-spacing: 0.04em;
    opacity: 0.8;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.82rem;
}
.product-badge.coming-soon {
    background: rgba(125, 58, 237, 0.2);
    color: #b794f4;
}
@media (max-width: 768px) {
    .founding-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .founding-banner-counter {
        display: flex;
        justify-content: center;
        margin: 4px 0;
    }
}
