/**
 * ============================================
 * BROKAR THEME OLD MONEY
 * ============================================
 * 
 * Estilo: Lujo discreto, elegancia atemporal, sofisticación heredada.
 * Inspiración: Familias de abolengo, clubes privados, mansiones históricas.
 * 
 * Características:
 * - Paleta de colores apagados y refinados
 * - Tipografía serif clásica (Cormorant Garamond, Playfair Display)
 * - Mucho espacio en blanco ("breathing room")
 * - Animaciones sutiles y elegantes
 * - Sin elementos llamativos o flashy
 * 
 * Para usar este tema:
 * 1. Enlazar este CSS después de Bootstrap
 * 2. Incluir Google Font: Cormorant Garamond
 * 
 * Creado: 2024-12-26
 * Versión: 1.0.0
 */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   CSS VARIABLES - OLD MONEY PALETTE
   ============================================ */
:root {
    /* Background Colors - Warm, muted tones */
    --bg-primary: #FAF8F5;
    /* Warm ivory/cream */
    --bg-secondary: #F5F2ED;
    /* Soft linen */
    --bg-card: #FFFFFF;
    /* Pure white cards */
    --bg-card-hover: #FDFCFA;
    --bg-dark: #1C1917;
    /* Rich espresso (for dark sections) */
    --bg-dark-soft: #292524;
    /* Softer dark */

    /* Primary Colors - Muted, sophisticated */
    --primary-navy: #1E3A5F;
    /* Deep navy blue */
    --primary-forest: #2D4739;
    /* Forest green */
    --primary-burgundy: #722F37;
    /* Wine/burgundy */
    --primary-gold: #9A7B4F;
    /* Antique gold (muted, not shiny) */
    --primary-brass: #B8956C;
    /* Warm brass */

    /* Accent Colors */
    --accent-cream: #E8E4DC;
    /* Warm cream */
    --accent-taupe: #B5A896;
    /* Sophisticated taupe */
    --accent-sage: #87937A;
    /* Muted sage */

    /* Text Colors */
    --text-primary: #1C1917;
    /* Near black, warm undertone */
    --text-secondary: #57534E;
    /* Warm gray */
    --text-muted: #78716C;
    /* Muted warm gray */
    --text-light: #A8A29E;
    /* Light gray */
    --text-inverse: #FAF8F5;
    /* For dark backgrounds */

    /* Borders */
    --border-light: rgba(28, 25, 23, 0.08);
    --border-medium: rgba(28, 25, 23, 0.12);
    --border-dark: rgba(28, 25, 23, 0.2);
    --border-gold: rgba(154, 123, 79, 0.3);

    /* Shadows - Subtle, sophisticated */
    --shadow-sm: 0 1px 2px rgba(28, 25, 23, 0.04);
    --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.06);
    --shadow-lg: 0 8px 30px rgba(28, 25, 23, 0.08);
    --shadow-xl: 0 20px 50px rgba(28, 25, 23, 0.1);

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --container: 1200px;
    --section-padding: 8rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

/* ============================================
   TYPOGRAPHY - REFINED ELEGANCE
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Elegant Text Accent - Subtle italic serif */
.text-accent {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--primary-navy);
}

/* ============================================
   NAVIGATION - UNDERSTATED ELEGANCE
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-content {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo i {
    color: var(--primary-gold);
    font-size: 1.25rem;
}

.nav-links {
    display: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

@media(min-width: 900px) {
    .nav-links {
        display: flex;
    }
}

/* ============================================
   BUTTONS - REFINED & TIMELESS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Gold Button - Antique Gold */
.btn-gold {
    background: var(--primary-gold);
    color: var(--text-inverse);
    border-color: var(--primary-gold);
}

.btn-gold:hover {
    background: var(--primary-brass);
    border-color: var(--primary-brass);
    color: var(--text-inverse);
}

/* Primary Button - Dark Navy */
.btn-primary {
    background: var(--primary-navy);
    color: var(--text-inverse);
    border-color: var(--primary-navy);
}

.btn-gold:hover,
.btn-primary:hover {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-dark);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--text-inverse);
    border-color: var(--text-primary);
}

/* Ghost Button - Minimal */
.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.5rem 0;
    letter-spacing: 0.1em;
}

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

.btn-ghost::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-ghost:hover::after {
    transform: translateX(4px);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 150;
}

.mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

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

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

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

@media(min-width: 900px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 140;
    padding: 7rem 3rem 3rem;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 1.25rem 0;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--text-primary);
    padding-left: 0.75rem;
}

.mobile-menu a.btn {
    margin-top: 2rem;
    text-align: center;
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(28, 25, 23, 0.3);
    z-index: 130;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION - GRAND & REFINED
   ============================================ */
.hero {
    position: relative;
    padding: 12rem 2rem 8rem;
    text-align: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(135deg, transparent 0%, rgba(154, 123, 79, 0.03) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.badge-premium {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.hero h1 {
    font-size: clamp(2.75rem, 6vw, 5rem);
    margin-bottom: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3.5rem;
    font-weight: 400;
    line-height: 1.9;
}

/* Elegant Gold Text - Subtle, refined */
.gold-text {
    color: var(--primary-gold);
    font-style: italic;
}

.hero-image-container {
    margin-top: 5rem;
    padding: 0 2rem;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hero-image img {
    width: 100%;
    display: block;
    filter: saturate(0.95);
}

.hero-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(28, 25, 23, 0.12);
}

@media(min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    .hero {
        padding: 14rem 2rem 10rem;
    }
}

/* ============================================
   TRUST TICKER - SUBTLE ELEGANCE
   ============================================ */
.trust-ticker {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 1.75rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 5rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.ticker-item {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.ticker-item:hover {
    opacity: 1;
    color: var(--text-primary);
}

.ticker-item i {
    font-size: 1rem;
    color: var(--primary-gold);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

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

/* ============================================
   SECTIONS - GENEROUS SPACING
   ============================================ */
.section {
    padding: var(--section-padding) 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 6rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ============================================
   BENTO GRID - CLEAN CARDS
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: var(--container);
    margin: 0 auto;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 0;
    background: transparent;
    border: 1px solid var(--border-medium);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.card-visual {
    width: 100%;
    height: 160px;
    background: var(--bg-secondary);
    border-radius: 2px;
    margin-top: auto;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

/* Grid Spans */
.span-12 {
    grid-column: span 12;
}

.span-8 {
    grid-column: span 12;
}

.span-4 {
    grid-column: span 12;
}

.span-6 {
    grid-column: span 12;
}

@media(min-width: 1024px) {
    .span-8 {
        grid-column: span 8;
    }

    .span-4 {
        grid-column: span 4;
    }

    .span-6 {
        grid-column: span 6;
    }
}

/* ============================================
   AI SECTION - SOPHISTICATED DARK
   ============================================ */
.ai-section {
    background: var(--bg-dark);
    position: relative;
}

.ai-section h2,
.ai-section h3,
.ai-section p,
.ai-section li {
    color: var(--text-inverse);
}

.ai-section p,
.ai-section li {
    color: rgba(250, 248, 245, 0.7);
}

.ai-demo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
}

.ai-chat-interface {
    background: var(--bg-dark-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.chat-bubble {
    padding: 1.25rem 1.75rem;
    border-radius: 2px;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    max-width: 90%;
    line-height: 1.6;
}

.chat-user {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-inverse);
    margin-left: auto;
}

.chat-ai {
    background: rgba(154, 123, 79, 0.1);
    color: rgba(250, 248, 245, 0.9);
    border: 1px solid rgba(154, 123, 79, 0.2);
}

.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-gold);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@media(min-width: 900px) {
    .ai-demo {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   MARKETPLACE BANNER
   ============================================ */
.marketplace-banner {
    position: relative;
    padding: 7rem 3rem;
    border-radius: 2px;
    max-width: var(--container);
    margin: 0 auto 6rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-dark);
}

.overlay-mp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(28, 25, 23, 0.85) 100%);
    z-index: 1;
}

.mp-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.mp-content h2 {
    color: var(--text-inverse);
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.mp-content p {
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 2.5rem;
}

/* ============================================
   FOOTER - MINIMAL & REFINED
   ============================================ */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

footer .logo {
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

footer nav {
    position: static;
    background: transparent;
    border: none;
    backdrop-filter: none;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

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

footer p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2rem;
}

/* ============================================
   FORM ELEMENTS - REFINED INPUTS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-medium);
    border-radius: 0;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: var(--transition-fast);
    width: 100%;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-light);
}

label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* ============================================
   CARDS - PRICING, FEATURES, ETC
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-medium);
}

.card-featured {
    border-color: var(--primary-navy);
    position: relative;
}

.card-featured::before {
    content: 'Recomendado';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-navy);
    color: var(--text-inverse);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.py-section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.bg-light {
    background-color: var(--bg-secondary);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-inverse);
}

.text-muted {
    color: var(--text-muted);
}

.text-gold {
    color: var(--primary-gold);
}

.text-navy {
    color: var(--primary-navy);
}

/* ============================================
   ANIMATIONS - SUBTLE & ELEGANT
   ============================================ */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

/* Hover lift effect */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* ============================================
   DIVIDERS & DECORATIVE ELEMENTS
   ============================================ */
.divider {
    width: 60px;
    height: 1px;
    background: var(--primary-gold);
    margin: 2rem auto;
}

.divider-full {
    width: 100%;
    height: 1px;
    background: var(--border-light);
    margin: 3rem 0;
}

/* Ornamental Line */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.ornament::before,
.ornament::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--border-medium);
}

.ornament i {
    color: var(--primary-gold);
    font-size: 0.75rem;
}

/* ============================================
   LOGIN / REGISTER PAGE OVERRIDES
   ============================================ */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    padding: 2rem;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 3.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
}

.auth-card h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-card .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

/* ============================================
   PRICING PAGE OVERRIDES
   ============================================ */
.pricing-section {
    background: var(--bg-primary);
    padding: var(--section-padding) 2rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 2px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition-smooth);
}

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

.pricing-card.featured {
    border-color: var(--primary-navy);
    position: relative;
}

.pricing-card .price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 1.5rem 0;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.pricing-card ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: var(--primary-gold);
    margin-right: 0.75rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 5rem;
    }

    .hero {
        padding: 9rem 1.5rem 5rem;
    }

    .bento-card {
        padding: 2rem;
    }

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

    .auth-card {
        padding: 2.5rem 2rem;
    }
}