/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores Reserva del Bienestar - Inspirados en la imagen */
    --primary: #8B1538;        /* Rojo vino/granate principal */
    --primary-dark: #6B0F2A;   /* Rojo vino más oscuro */
    --primary-light: #A01D47;  /* Rojo vino claro */
    --secondary: #D4AF37;      /* Dorado */
    --accent: #F4D03F;         /* Dorado brillante */
    --gold: #FFD700;           /* Oro puro para detalles */
    
    /* Fondos */
    --dark: #1a0d14;           /* Casi negro con toque rojizo */
    --darker: #0d0608;         /* Negro profundo */
    --card-bg: #2d1a22;        /* Fondo de tarjetas */
    
    /* Textos */
    --light: #f8f4f0;          /* Blanco cálido */
    --gray: #c4b5b0;           /* Gris cálido */
    --gray-light: #e8ddd8;     /* Gris muy claro */
    
    /* Estados */
    --success: #10b981;
    --error: #ef4444;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #8B1538 0%, #D4AF37 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-dark: linear-gradient(135deg, #1a0d14 0%, #2d1a22 100%);
    --gradient-hero: linear-gradient(135deg, #0d0608 0%, #8B1538 50%, #1a0d14 100%);
    
    /* Sombras con tinte dorado */
    --shadow-sm: 0 1px 2px rgba(212, 175, 55, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(212, 175, 55, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(212, 175, 55, 0.25);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);
    
    /* Transiciones */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;

    /* Nuevas variables para Live Metrics */
    --text-foreground: #f8f4f0;
    --text-foreground-60: rgba(248, 244, 240, 0.6);
    --text-foreground-70: rgba(248, 244, 240, 0.7);
    --border-color: rgba(100, 73, 91, 1);
    --border-hover: var(--secondary);
    --green-success: #10b981;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--darker);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 21, 56, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: var(--light);
}

h2 {
    font-size: 2.5rem;
    color: var(--light);
}

h3 {
    font-size: 1.5rem;
    color: var(--light);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-light);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--darker);
    box-shadow: var(--shadow-glow);
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 13, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 6px rgba(139, 21, 56, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    height: 70px;
}

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

.logo:hover {
    transform: translateX(5px);
}

.logo-img {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}

.nav-link {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--secondary);
    transition: var(--transition-normal);
    transform-origin: left center;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 70px;
}

/* Hero USOR Style */
.hero-usor {
    padding: 100px 0 80px;
    min-height: auto;
}

.hero-header {
    margin-bottom: 60px;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-subtitle-text {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray-light);
    margin: 0;
    text-transform: uppercase;
}

.hero-ticker-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-ticker {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-green {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-live {
    background: rgba(139, 21, 56, 0.2);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.badge-live-feed {
    background: rgba(212, 175, 55, 0.15);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-main-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.hero-title-large {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
}

.text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.link-gold {
    color: var(--secondary);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

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

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

.feature-badge {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(45, 26, 34, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.feature-badge:hover {
    border-color: var(--secondary);
    background: rgba(45, 26, 34, 0.6);
    transform: translateY(-2px);
}

.feature-badge-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-badge-content h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.feature-badge-content p {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin: 0;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--darker);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.btn-outline-light:hover {
    border-color: var(--secondary);
    background: rgba(212, 175, 55, 0.1);
}

.hero-disclaimer {
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
}

/* Reserve Board */
.reserve-board {
    background: linear-gradient(135deg, rgba(45, 26, 34, 0.6) 0%, rgba(26, 13, 20, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 4rem;
}

.reserve-board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reserve-board-header h3 {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin: 0;
    text-transform: uppercase;
}

.reserve-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.reserve-value {
    margin-bottom: 3rem;
}

.reserve-amount {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.reserve-note {
    font-size: 0.875rem;
    color: var(--gray);
    font-style: italic;
}

.reserve-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reserve-stat-card {
    padding: 1.5rem;
    background: rgba(13, 6, 8, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.reserve-stat-card:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.reserve-stat-wide {
    grid-column: 1 / -1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.stat-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

.reserve-footer-note {
    font-size: 0.875rem;
    color: var(--gray-light);
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(45, 26, 34, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
}

.stat:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(139, 21, 56, 0.1) 100%);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    font-size: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature-description {
    color: var(--gray-light);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ===== HOW TO BUY SECTION ===== */
#how-to-buy {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

#how-to-buy::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

/* Flechas conectadoras entre tarjetas */
.absolute {
    position: absolute;
}

.top-1\/2 {
    top: 50%;
}

.-right-3 {
    right: -0.75rem;
}

.w-6 {
    width: 1.5rem;
}

.h-0\.5 {
    height: 0.125rem;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--secondary), transparent);
}

.opacity-0 {
    opacity: 0;
}

.group-hover\:opacity-100:hover {
    opacity: 1;
}

.transition-opacity {
    transition: opacity var(--transition-fast);
}

.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

/* Números redondos */
.-top-3 {
    top: -0.75rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--secondary), var(--gold));
}

.shadow-\[0_0_20px_hsl\(45_95\%_55\%_\/_0\.5\)\] {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.text-\[hsl\(220_30\%_8\%\)\] {
    color: var(--darker);
}

.font-bold {
    font-weight: 700;
}

/* Iconos circulares */
.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}

.rounded-full {
    border-radius: 9999px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

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

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--secondary), var(--gold));
}

.from-blue-500 {
    --tw-gradient-from: #3b82f6;
}

.to-blue-600 {
    --tw-gradient-to: #2563eb;
}

.from-orange-500 {
    --tw-gradient-from: #f97316;
}

.to-orange-600 {
    --tw-gradient-to: #ea580c;
}

.from-purple-500 {
    --tw-gradient-from: #8b5cf6;
}

.to-purple-600 {
    --tw-gradient-to: #7c3aed;
}

.from-green-500 {
    --tw-gradient-from: #10b981;
}

.to-green-600 {
    --tw-gradient-to: #059669;
}

/* Títulos y textos */
.group-hover\:text-\[hsl\(45_95\%_55\%\)\]:hover {
    color: var(--secondary);
}

.transition-colors {
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

/* Grid responsivo */
.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Ocultar flechas en móvil */
.hidden {
    display: none;
}

.lg\:block {
    display: block;
}

/* Responsive para How to Buy */
@media (max-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:block {
        display: none;
    }
}

@media (max-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* ===== ECOSYSTEM ===== */
.ecosystem {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

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

.ecosystem-card {
    background: var(--card-bg);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition-normal);
    position: relative;
}

.ecosystem-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.ecosystem-card:hover::before {
    opacity: 1;
}

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

.ecosystem-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.ecosystem-description {
    color: var(--gray-light);
    font-size: 0.875rem;
}

/* ===== CTA ===== */
.cta {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FFD700' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-buttons .btn-outline {
    color: white;
    border-color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* ===== FOOTER STYLES ===== */
footer {
    position: relative;
    background: linear-gradient(135deg, #0d0608 0%, #8B1538 30%, #0d0608 70%, #1a0d14 100%);
    color: white;
    border-top: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 -4px 20px rgba(139, 21, 56, 0.3);
}

.border-t {
    border-top-width: 1px;
}

.border-\[hsl\(45_95\%_55\%\)\]\/20 {
    border-color: rgba(212, 175, 55, 0.2);
}

.container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-8 {
    gap: 2rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.font-bold {
    font-weight: 700;
}

.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.leading-relaxed {
    line-height: 1.625;
}

.hover\:text-\[hsl\(45_100\%_60\%\)\]:hover {
    color: var(--gold);
}

footer a {
    text-decoration: none;
}

.inline-block {
    display: inline-block;
}

/* Social icons */
.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

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

.border-\[hsl\(45_95\%_55\%\)\]\/30 {
    border-color: rgba(212, 175, 55, 0.3);
}

.hover\:border-\[hsl\(45_95\%_55\%\)\]:hover {
    border-color: var(--secondary);
}

.hover\:bg-\[hsl\(45_95\%_55\%\)\]\/10:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.transition-all {
    transition: all var(--transition-normal);
}

.w-5 {
    width: 1.25rem;
}

.h-5 {
    height: 1.25rem;
}

/* Quick Links */
.space-y-4 > * + * {
    margin-top: 1rem;
}

.block {
    display: block;
}

.group:hover .group-hover\:text-\[hsl\(45_95\%_55\%\)\] {
    color: var(--secondary);
    
}

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

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

/* Contract Address Section */
.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.rounded {
    border-radius: 0.375rem;
}

.p-3 {
    padding: 0.75rem;
}

.flex-1 {
    flex: 1;
}

.break-all {
    word-break: break-all;
}

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

.p-1 {
    padding: 0.25rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

/* Footer bottom section */
.pt-8 {
    padding-top: 2rem;
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.md\:flex-row {
    flex-direction: row;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.hidden {
    display: none;
}

.md\:inline {
    display: inline;
}

/* Responsive */
@media (max-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .md\:flex-row {
        flex-direction: column;
    }
    
    .gap-4 {
        gap: 1rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* ===== NOTIFICATION STYLES ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--success);
    color: white;
    border-radius: 8px;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
    box-shadow: var(--shadow-xl);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    max-width: 350px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.notification.error {
    background: #ef4444;
}

.notification.info {
    background: var(--primary);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .navbar .container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 1000;
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
.footer-link {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
    position: relative;
    padding-left: 0.5rem;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 3px;
    height: 100%;
    background: var(--gradient-gold);
    transition: transform var(--transition-fast);
}

.footer-link:hover {
    color: var(--secondary);
    padding-left: 1rem;
}

.footer-link:hover::before {
    transform: translateY(-50%) scaleX(1);
}
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .features-grid,
    .process-steps,
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== USOR HERO STYLES ===== */
.container-usor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.glass-card {
    background: rgba(26, 13, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        rgba(0, 0, 0, 0.3) 0px 8px 32px,
        rgba(212, 175, 55, 0.1) 0px 0px 60px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.glass-shimmer {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    opacity: 0.5;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.1) 50%,
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

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

.glass-gradient {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Hero Brand */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-logo-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.25) 0%,
        transparent 70%
    );
    border-radius: 50%;
    filter: blur(20px);
}

.hero-subtitle-text {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(248, 244, 240, 0.7);
    margin-bottom: 0.25rem;
}

.hero-ticker-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-ticker {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

/* Title */
.hero-title-large {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(248, 244, 240, 0.8);
    max-width: 48rem;
}

/* Features Badges */
.features-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-badge {
    background: rgba(26, 13, 20, 0.5);
    border: 1px solid rgba(100, 73, 91, 1);
    border-radius: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-badge:hover {
    border-color: rgba(212, 175, 55, 0.8);
}

.feature-badge-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.feature-badge-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    font-size: 1rem;
}

.feature-badge-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(248, 244, 240, 0.7);
}

.feature-badge-desc {
    font-size: 0.75rem;
    color: rgba(248, 244, 240, 0.7);
    margin: 0;
}

/* CTA Section */
.hero-cta-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Contract Section */
.contract-section {
    max-width: 36rem;
}

.contract-label {
    font-size: 0.75rem;
    color: rgba(248, 244, 240, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contract-box {
    background: rgba(13, 6, 8, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
}

.contract-box:hover {
    border-color: var(--secondary);
    background: rgba(13, 6, 8, 0.95);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: white;
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--secondary);
}

/* Reserve Board */
.reserve-board {
    background: rgba(26, 13, 20, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.reserve-board-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.reserve-board-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(248, 244, 240, 0.6);
}

.reserve-board-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-top: 0.25rem;
}

.live-feed-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(248, 244, 240, 0.7);
}

/* Reserve Value Box */
.reserve-value-box {
    background: rgba(13, 6, 8, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.reserve-value-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(248, 244, 240, 0.6);
    margin-bottom: 0.5rem;
}

.reserve-amount {
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.reserve-note {
    font-size: 0.625rem;
    color: rgba(248, 244, 240, 0.6);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.reserve-note svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Reserve Stats Grid */
.reserve-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reserve-stat-wide {
    grid-column: 1 / -1;
}

.reserve-stat-card {
    background: rgba(26, 13, 20, 0.5);
    border: 1px solid rgba(100, 73, 91, 1);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.reserve-footer-note {
    font-size: 0.6875rem;
    color: rgba(248, 244, 240, 0.55);
    border-top: 1px solid rgba(100, 73, 91, 0.5);
    padding-top: 0.75rem;
}

.text-gold-inline {
    color: var(--secondary);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .glass-card {
        padding: 2rem;
    }
    
    .hero-title-large {
        font-size: 2.5rem;
    }
    
    .features-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .glass-card {
        padding: 1.5rem;
    }
    
    .hero-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .hero-title-large {
        font-size: 2rem;
    }
    
    .hero-ticker {
        font-size: 1.25rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .reserve-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== LIVE METRICS SECTION ===== */
.py-20 {
    padding: 5rem 1.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.relative {
    position: relative;
}

.scroll-mt-24 {
    scroll-margin-top: 6rem;
}

/* Fondo de la sección */
#stats {
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Patrón de fondo */
#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

#stats::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 30px 30px;
    pointer-events: none;
}

.container.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-6xl {
    max-width: 72rem; /* 1152px */
}

.z-10 {
    z-index: 10;
}

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

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

.text-4xl {
    font-size: 2.25rem; /* 36px */
    line-height: 2.5rem;
}

.md\:text-5xl {
    font-size: 3rem; /* 48px */
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

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

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem;
}

/* Grid de métricas */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

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

/* Tarjetas de métricas estilo glass */
.glass {
    background: rgba(26, 13, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.glass:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.rounded-2xl {
    border-radius: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.group:hover .icon-glow {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Estilos de iconos */
.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

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

.text-foreground\/60 {
    color: var(--text-foreground-60);
}

.text-foreground\/70 {
    color: var(--text-foreground-70);
}

/* Valores de métricas */
.text-2xl {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem;
}

.md\:text-3xl {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem;
}

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

.text-xs {
    font-size: 0.75rem; /* 12px */
    line-height: 1rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.text-green-400 {
    color: var(--green-success);
}

/* Flex utilities */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

/* Sombras y efectos */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.transition-all {
    transition: all var(--transition-normal);
}

/* Responsive */
@media (max-width: 768px) {
    .md\:text-5xl {
        font-size: 2.25rem;
    }
    
    .md\:text-3xl {
        font-size: 1.5rem;
    }
    
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .py-20 {
        padding: 3rem 1rem;
    }
    
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .text-4xl {
        font-size: 1.875rem;
    }
    
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
/* ===== TOKEN PULSE SECTION ===== */
.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

#token-pulse {
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
    position: relative;
    overflow: hidden;
}

#token-pulse::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

#token-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 30px 30px;
    pointer-events: none;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Grid layout para token pulse */
.lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.border-\[hsl\(45_95\%_55\%\)\]\/20 {
    border-color: rgba(212, 175, 55, 0.2);
}

/* Tarjeta de reserva overview */
.text-gradient-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Grid interno de 3 columnas */
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rounded-lg {
    border-radius: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

/* Barra de progreso */
.w-full {
    width: 100%;
}

.h-2 {
    height: 0.5rem;
}

.bg-\[hsl\(220_25\%_15\%\)\] {
    background-color: rgba(26, 13, 20, 0.7);
}

.rounded-full {
    border-radius: 9999px;
}

.overflow-hidden {
    overflow: hidden;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--secondary), var(--gold));
}

.shadow-\[0_0_10px_hsl\(45_95\%_55\%_\/_0\.5\)\] {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Estilos para texto semibold */
.font-semibold {
    font-weight: 600;
}

/* Colores para flechas y estados */
.text-red-400 {
    color: #f87171;
}

.text-green-400 {
    color: #10b981;
}

/* Flex utilities adicionales */
.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.justify-between {
    justify-content: space-between;
}

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

/* Tamaños de iconos */
.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.h-4 {
    height: 1rem;
}

/* Responsive para Token Pulse */
@media (max-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .space-y-6 > * + * {
        margin-top: 1rem;
    }
    
    .space-y-4 > * + * {
        margin-top: 0.75rem;
    }
    
    .space-y-2 > * + * {
        margin-top: 0.375rem;
    }
}

/* ===== MARKET PULSE SECTION - VERSIÓN ACTUALIZADA ===== */
.rounded-3xl {
    border-radius: 1.5rem;
}

.sm\:p-8 {
    padding: 2rem;
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.border-\[hsl\(45_95\%_55\%\)\]\/20 {
    border-color: rgba(212, 175, 55, 0.2);
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.text-\[hsl\(45_95\%_55\%\)\] {
    color: var(--secondary);
}

/* Botones de timeframe */
.flex-wrap {
    flex-wrap: wrap;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-medium {
    font-weight: 500;
}

.border-\[hsl\(220_25\%_25\%\)\] {
    border-color: rgba(100, 73, 91, 1);
}

.hover\:border-\[hsl\(45_95\%_55\%\)\]:hover {
    border-color: var(--secondary);
}

.hover\:text-\[hsl\(45_95\%_55\%\)\]:hover {
    color: var(--secondary);
}

/* Botón activo */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--secondary), var(--gold));
}

.text-\[hsl\(220_30\%_8\%\)\] {
    color: var(--darker);
}

.shadow-\[0_0_15px_hsl\(45_95\%_55\%_\/_0\.3\)\] {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Iframe del gráfico */
.border-2 {
    border-width: 2px;
}

.border-\[hsl\(45_95\%_55\%\)\]\/30 {
    border-color: rgba(212, 175, 55, 0.3);
}

.rounded-xl {
    border-radius: 0.75rem;
}

.overflow-hidden {
    overflow: hidden;
}

.hover\:border-\[hsl\(45_95\%_55\%\)\]\/50:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.transition-colors {
    transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

/* Grid layout */
.lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gap-6 {
    gap: 1.5rem;
}

.lg\:col-span-2 {
    grid-column: span 2 / span 2;
}

/* Stats cards */
.p-4 {
    padding: 1rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

/* Botón de copiar */
.font-mono {
    font-family: 'Courier New', monospace;
}

.break-all {
    word-break: break-all;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

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

.gap-2 {
    gap: 0.5rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-md {
    border-radius: 0.375rem;
}

.ring-offset-background {
    --ring-offset-background: var(--darker);
}

.focus-visible\:outline-none:focus-visible {
    outline: none;
}

.focus-visible\:ring-2:focus-visible {
    outline: 2px solid var(--secondary);
}

.focus-visible\:ring-ring:focus-visible {
    --ring-color: var(--secondary);
}

.focus-visible\:ring-offset-2:focus-visible {
    --ring-offset-width: 2px;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

\[&\_svg\]:pointer-events-none svg {
    pointer-events: none;
}

\[&\_svg\]:size-4 svg {
    width: 1rem;
    height: 1rem;
}

\[&\_svg\]:shrink-0 svg {
    flex-shrink: 0;
}

.hover\:text-accent-foreground:hover {
    color: var(--secondary);
}

.h-6 {
    height: 1.5rem;
}

.w-6 {
    width: 1.5rem;
}

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

.hover\:bg-\[hsl\(45_95\%_55\%\)\]\/20:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

/* Acciones */
.pt-4 {
    padding-top: 1rem;
}

.border-t {
    border-top-width: 1px;
}

.flex-col {
    flex-direction: column;
}

.gap-3 {
    gap: 0.75rem;
}

/* Botones de acción */
.h-10 {
    height: 2.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.w-full {
    width: 100%;
}

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

.hover\:bg-primary\/90:hover {
    background-color: rgba(139, 21, 56, 0.9);
}

.hover\:from-\[hsl\(45_100\%_60\%\)\]:hover {
    background: linear-gradient(to right, var(--gold), var(--secondary));
}

.hover\:to-\[hsl\(45_95\%_55\%\)\]:hover {
    background: linear-gradient(to right, var(--secondary), var(--gold));
}

.shadow-\[0_0_20px_hsl\(45_95\%_55\%_\/_0\.3\)\] {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

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

.border-2 {
    border-width: 2px;
}

.hover\:border-\[hsl\(45_95\%_55\%\)\]:hover {
    border-color: var(--secondary);
}

.hover\:bg-\[hsl\(45_95\%_55\%\)\]\/10:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .lg\:col-span-2 {
        grid-column: span 1 / span 1;
    }
}

@media (max-width: 768px) {
    .sm\:p-8 {
        padding: 1.5rem;
    }
    
    .text-3xl {
        font-size: 1.5rem;
    }
    
    .md\:text-4xl {
        font-size: 1.875rem;
    }
}

@media (max-width: 640px) {
    .flex-wrap button {
        flex: 1;
        min-width: 60px;
        text-align: center;
    }
    
    .chart-container {
        height: 300px !important;
    }
}
/* ===== SWAP WITH JUPITER SECTION ===== */
.py-20 {
    padding: 5rem 0;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.bg-gradient-to-br {
    background: linear-gradient(135deg, rgba(26, 13, 20, 0.8) 0%, rgba(45, 26, 34, 0.6) 50%, rgba(26, 13, 20, 0.8) 100%);
}

.flex-col {
    flex-direction: column;
}

.md\:flex-row {
    flex-direction: row;
}

.items-start {
    align-items: flex-start;
}

.md\:items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-1 {
    flex: 1;
}

.text-sm {
    font-size: 0.875rem;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

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

.max-w-2xl {
    max-width: 42rem;
}

.text-foreground\/90 {
    color: rgba(248, 244, 240, 0.9);
}

/* Botón Connect Wallet */
.justify-center {
    justify-content: center;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-md {
    border-radius: 0.375rem;
}

.ring-offset-background {
    --ring-offset-background: var(--darker);
}

.focus-visible\:outline-none:focus-visible {
    outline: none;
}

.focus-visible\:ring-2:focus-visible {
    outline: 2px solid var(--secondary);
}

.focus-visible\:ring-ring:focus-visible {
    --ring-color: var(--secondary);
}

.focus-visible\:ring-offset-2:focus-visible {
    --ring-offset-width: 2px;
}

.disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

\[&\_svg\]:pointer-events-none svg {
    pointer-events: none;
}

\[&\_svg\]:size-4 svg {
    width: 1rem;
    height: 1rem;
}

\[&\_svg\]:shrink-0 svg {
    flex-shrink: 0;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(139, 21, 56, 0.9);
}

.h-10 {
    height: 2.5rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Tarjeta de intercambio */
.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.border-\[hsl\(45_95\%_55\%\)\]\/30 {
    border-color: rgba(212, 175, 55, 0.3);
}

/* Grid de inputs */
.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Labels */
.block {
    display: block;
}

/* Inputs */
input {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.outline-none {
    outline: none;
}

.placeholder\:text-foreground\/30::placeholder {
    color: rgba(248, 244, 240, 0.3);
}

/* Selector de tokens */
.glass {
    background: rgba(26, 13, 20, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
}

.glass:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

/* Botón Swap */
.w-full {
    width: 100%;
}

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

/* Efectos hover para botones */
.hover\:from-\[hsl\(45_100\%_60\%\)\]:hover {
    background: linear-gradient(to right, var(--gold), var(--secondary));
}

.hover\:to-\[hsl\(45_95\%_55\%\)\]:hover {
    background: linear-gradient(to right, var(--secondary), var(--gold));
}

/* Gap utilities */
.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .md\:flex-row {
        flex-direction: column;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    
    .md\:items-center {
        align-items: flex-start;
    }
    
    .text-3xl {
        font-size: 1.875rem;
    }
    
    .md\:text-4xl {
        font-size: 2.25rem;
    }
}





.countdown-glass {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 3rem auto;
    width: fit-content;
}

.count-col {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.8rem 1rem;
    text-align: center;
    min-width: 90px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.count-number {
    font-size: 2.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.count-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.25rem;
    letter-spacing: 0.1em;
}

/* responsive */
@media (max-width: 768px) {
    .countdown-glass {
        gap: 1rem;
    }
    .count-number {
        font-size: 2.2rem;
    }
    .count-col {
        padding: 1.3rem 0.8rem;
    }
}
