/* LW CMS Commercial Showcase — Ultra-Luxury Obsidian Design System */
:root {
    --bg-obsidian: #06080a;
    --bg-card: rgba(14, 17, 23, 0.75);
    --bg-glass: rgba(20, 25, 35, 0.6);
    --border-gold: rgba(223, 193, 93, 0.2);
    --border-gold-bright: rgba(223, 193, 93, 0.5);
    --border-glass: rgba(255, 255, 255, 0.08);
    --gold: #dfc15d;
    --gold-light: #f4e3b1;
    --gold-dark: #b8962d;
    --text-main: #f1f5f9;
    --text-muted: #8a99ad;
    --cyan-accent: #38bdf8;
    --green-accent: #34d399;
    --red-accent: #f87171;
    --font-display: 'Cinzel', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-obsidian);
    color: var(--text-main);
    font-family: var(--font-sans);
}

body {
    background-image: 
        radial-gradient(at 15% 15%, rgba(223, 193, 93, 0.08) 0px, transparent 50%),
        radial-gradient(at 85% 75%, rgba(56, 189, 248, 0.05) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(6, 8, 10, 0.95) 0px, #06080a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glassmorphism Card Utility */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-panel:hover {
    border-color: var(--border-gold-bright);
    box-shadow: 0 12px 40px 0 rgba(223, 193, 93, 0.15);
}

/* Typography */
.text-gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.heading-display {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Luxury Header Navigation */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 8, 10, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-gold);
    padding: 1rem 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-links-menu {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    list-style: none;
}

@media (max-width: 1280px) {
    .nav-links-menu {
        gap: 0.85rem;
    }
    .nav-item-link {
        font-size: 0.82rem;
        letter-spacing: 0.5px;
    }
    .btn-nav-trial, .btn-nav-claim {
        padding: 0.45rem 0.8rem;
        font-size: 0.78rem;
    }
}

.nav-item-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

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

/* Luxury Buttons */
.btn-gold-glow {
    background: linear-gradient(135deg, #dfc15d 0%, #b8962d 100%);
    color: #06080a;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 0 20px rgba(223, 193, 93, 0.3);
    transition: all 0.3s ease;
}

.btn-gold-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(223, 193, 93, 0.5);
    background: linear-gradient(135deg, #f4e3b1 0%, #dfc15d 100%);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    border: 1px solid var(--gold);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: rgba(223, 193, 93, 0.1);
    border-color: var(--gold-light);
    color: var(--gold-light);
}

/* Hero Section */
.hero-section {
    padding-top: 9rem;
    padding-bottom: 5rem;
    text-align: center;
    position: relative;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(223, 193, 93, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

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

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 820px;
    margin: 0 auto 2.5rem auto;
    font-weight: 400;
}

/* Feature Grid */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.25rem;
}

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.feature-card h3 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

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

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(223, 193, 93, 0.2);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, #dfc15d 0%, #b8962d 100%);
    color: #06080a;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    text-transform: uppercase;
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--gold);
    vertical-align: super;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 1.75rem 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Modal styling */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 10, 0.9);
    backdrop-filter: blur(12px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 16px;
    max-width: 550px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.close-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Form Controls */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
}

.form-control-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(223, 193, 93, 0.3);
}

/* Currency Switcher Pill */
.currency-switcher {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-gold);
    border-radius: 999px;
    padding: 0.25rem;
    margin-bottom: 2rem;
}

.curr-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s;
}

.curr-btn.active {
    background: var(--gold);
    color: #06080a;
}

.nav-cta-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
    display: none;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Glass Slide-down Drawer */
.mobile-nav-drawer {
    display: none !important;
}

@media (max-width: 1080px) {
    .mobile-nav-drawer {
        background: rgba(10, 13, 20, 0.98);
        backdrop-filter: blur(24px);
        border-top: 1px solid var(--border-gold);
        border-bottom: 1px solid var(--border-gold-bright);
        padding: 1.25rem 1.5rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.9);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .mobile-nav-drawer.active {
        display: block !important;
    }
}

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

.mobile-drawer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-drawer-links a:hover {
    color: var(--gold);
}

/* Mobile & Tablet responsive adjustments */
@media (max-width: 1080px) {
    .navbar-fixed {
        padding: 0.75rem 0;
        position: fixed;
    }
    .nav-links-menu, .btn-nav-trial {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex !important;
    }
    .btn-nav-claim {
        padding: 0.45rem 0.8rem !important;
        font-size: 0.75rem !important;
    }
    .brand-title {
        font-size: 1.1rem !important;
        gap: 0.4rem !important;
    }
    .pricing-card.popular {
        transform: none;
    }
    .hero-section {
        padding-top: 6.5rem;
    }
    .glass-panel {
        padding: 1.25rem !important;
    }
    .hero-headline {
        font-size: 1.75rem !important;
    }
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
    .currency-switcher {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 12px;
    }
}
