:root {
    --color-primary: #06B6D4;
    --color-secondary: #22D3EE;
    --color-accent: #F97316;
    --color-accent-light: #FB923C;
    --color-white: #FFFFFF;
    --color-black: #0A0A0F;
    --color-dark: #12121A;
    --color-gray-50: #1A1A24;
    --color-gray-100: #1E1E2E;
    --color-gray-200: #252535;
    --color-gray-300: #2D2D3F;
    --color-gray-400: #4A4A5E;
    --color-gray-500: #6B6B80;
    --color-gray-600: #8E8EA0;
    --color-gray-700: #B0B0BE;
    --color-gray-800: #D1D1DB;
    --color-gray-900: #E5E5ED;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.15);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 0 40px rgba(6, 182, 212, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 0 60px rgba(6, 182, 212, 0.25);
    --glow-primary: 0 0 20px rgba(6, 182, 212, 0.4);
    --glow-secondary: 0 0 20px rgba(34, 211, 238, 0.3);
    --glow-accent: 0 0 20px rgba(249, 115, 22, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-800);
    background-color: var(--color-black);
    background-image: 
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(34, 211, 238, 0.05) 0px, transparent 50%);
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
}

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

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-dome {
    color: var(--color-white);
}

.logo-xxia {
    color: var(--color-primary);
}

.logo-badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-black);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--glow-primary);
}

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

.nav-links a {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    box-shadow: var(--glow-primary);
    transition: var(--transition);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-black) !important;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6), 0 0 20px rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    display: inline-block;
    text-align: center;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.5), 0 0 15px rgba(249, 115, 22, 0.2);
    border-color: var(--color-secondary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-xl {
    padding: 18px 42px;
    font-size: 18px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-subtitle {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: var(--glow-accent);
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 22px;
    color: var(--color-gray-700);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 48px;
    padding: 32px;
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
}

.hero-text p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-gray-700);
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-text strong {
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}

.highlight {
    color: var(--color-accent);
    font-weight: 600;
    text-shadow: var(--glow-accent);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    perspective: 1000px;
}

.stat-card {
    position: relative;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(30, 30, 46, 0.8));
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.1);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(6, 182, 212, 0.4), 0 0 40px rgba(6, 182, 212, 0.3), 0 0 80px rgba(249, 115, 22, 0.1);
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(30, 30, 46, 0.9));
}

.stat-card:hover::before,
.stat-card:hover::after {
    opacity: 1;
}

.stat-label {
    font-size: 11px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 700;
    opacity: 0.8;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-white), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

.stat-desc {
    font-size: 14px;
    color: var(--color-gray-700);
}

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

.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: rgba(18, 18, 26, 0.5);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-intro {
    font-size: 19px;
    color: var(--color-gray-700);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

.lead {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-gray-700);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.5;
}

.manifiesto-content {
    max-width: 900px;
    margin: 0 auto;
}

.manifiesto-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.manifiesto-item p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--color-gray-700);
}

.manifiesto-list {
    list-style: none;
    padding-left: 0;
}

.manifiesto-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 17px;
    color: var(--color-gray-700);
}

.manifiesto-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    text-shadow: var(--glow-accent);
}

.manifiesto-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.value-card {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
    background: rgba(6, 182, 212, 0.05);
}

.value-card h3 {
    font-size: 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.manifiesto-vision {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 16px;
    color: var(--color-black);
    box-shadow: var(--glow-primary);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.manifiesto-vision p {
    font-size: 20px;
    margin-bottom: 16px;
}

.manifiesto-vision strong {
    font-weight: 700;
}

.manifiesto-signature {
    font-size: 32px;
    font-weight: 700;
    margin-top: 32px;
    letter-spacing: 2px;
}

.funciona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.funciona-card {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.funciona-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.4), 0 0 20px rgba(249, 115, 22, 0.2);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--glow-primary);
}

.card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
}

.funciona-card h3 {
    font-size: 24px;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 15px;
    color: var(--color-gray-600);
    margin-bottom: 24px;
}

.funciona-card ul {
    list-style: none;
    padding: 0;
}

.funciona-card li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-700);
}

.funciona-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    text-shadow: var(--glow-accent);
}

.revenue-model {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
}

.revenue-model h3 {
    font-size: 28px;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-align: center;
}

.revenue-model > p {
    text-align: center;
    font-size: 17px;
    color: var(--color-gray-700);
    margin-bottom: 32px;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.revenue-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(37, 37, 53, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    transition: var(--transition);
}

.revenue-item:hover {
    border-color: rgba(6, 182, 212, 0.4);
}

.revenue-icon {
    font-size: 32px;
}

.revenue-item p {
    font-size: 16px;
    color: var(--color-gray-700);
    margin: 0;
}

.revenue-highlight {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    padding: 24px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    text-shadow: var(--glow-accent);
}

.tokenomics-unique {
    margin-bottom: 64px;
}

.tokenomics-unique h3 {
    font-size: 28px;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-align: center;
}

.tokenomics-unique > p {
    text-align: center;
    font-size: 17px;
    color: var(--color-gray-700);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.flow-diagram {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

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

.flow-box {
    background: rgba(37, 37, 53, 0.8);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 8px;
}

.flow-box.highlight {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.4);
    color: var(--color-primary);
    box-shadow: var(--glow-primary);
}

.flow-box.primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: 1px solid rgba(6, 182, 212, 0.5);
    color: var(--color-black);
    font-weight: 700;
    box-shadow: var(--glow-primary);
}

.flow-box.secondary {
    background: rgba(37, 37, 53, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--color-gray-700);
}

.flow-desc {
    font-size: 14px;
    color: var(--color-gray-600);
}

.flow-arrow {
    font-size: 32px;
    color: var(--color-accent);
    font-weight: 700;
    text-shadow: var(--glow-accent);
}

.flow-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 600px;
}

.flow-footer {
    text-align: center;
    font-size: 16px;
    color: var(--color-gray-700);
    margin-top: 16px;
}

.tokenomics-table {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    margin-bottom: 64px;
}

.tokenomics-table h3 {
    font-size: 28px;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    text-align: center;
}

.tokenomics-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}

.tokenomics-table tr {
    border-bottom: 1px solid rgba(6, 182, 212, 0.15);
}

.tokenomics-table td {
    padding: 16px;
    font-size: 16px;
}

.tokenomics-table td:first-child {
    color: var(--color-gray-700);
}

.tokenomics-table td:last-child {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-align: right;
}

.tokenomics-table > p {
    font-size: 16px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.distribution-chart {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
}

.distribution-chart h3 {
    font-size: 28px;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    text-align: center;
}

.pie-chart-container {
    display: flex;
    gap: 64px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03), rgba(30, 30, 46, 0.5));
    border-radius: 24px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 40px rgba(6, 182, 212, 0.05);
}

.pie-chart-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    filter: drop-shadow(0 0 40px rgba(6, 182, 212, 0.3));
}

.pie-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.pie-slices {
    transition: var(--transition);
}

.pie-slice {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    stroke: rgba(10, 10, 15, 0.9);
    stroke-width: 0.5;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.6));
}

.pie-slice:hover {
    opacity: 1;
    filter: brightness(1.3) drop-shadow(0 0 20px currentColor);
    stroke-width: 1;
    transform: scale(1.05);
    transform-origin: center;
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 70%);
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pie-total {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-white), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.6));
}

.pie-label {
    font-size: 14px;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(30, 30, 46, 0.6));
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
}

.legend-item:hover {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(30, 30, 46, 0.8));
    border-color: var(--color-primary);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.4), 0 0 40px rgba(6, 182, 212, 0.2);
}

.legend-item.active {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4), 0 0 15px rgba(249, 115, 22, 0.2);
}

.legend-color {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legend-info {
    flex: 1;
}

.legend-title {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 4px;
    font-weight: 500;
}

.legend-value {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.3));
}

.legend-tokens {
    font-size: 13px;
    color: var(--color-gray-600);
    font-weight: 400;
    margin-left: 8px;
}

@media (max-width: 968px) {
    .pie-chart-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pie-chart-wrapper {
        max-width: 300px;
    }
    
    .pie-total {
        font-size: 28px;
    }
}

.oportunidad-grid {
    display: grid;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.oportunidad-card {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    position: relative;
    transition: var(--transition);
}

.oportunidad-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.5);
}

.card-number {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--glow-primary);
}

.oportunidad-card h3 {
    font-size: 24px;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    margin-top: 16px;
}

.oportunidad-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: 12px;
}

.oportunidad-card ul {
    list-style: none;
    padding: 0;
}

.oportunidad-card li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.oportunidad-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    text-shadow: var(--glow-accent);
}

.riesgos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.riesgo-card {
    background: rgba(30, 30, 46, 0.6);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    border-left: 4px solid rgba(6, 182, 212, 0.3);
    transition: var(--transition);
}

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

.riesgo-card h4 {
    font-size: 18px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.riesgo-card p {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.disclaimer {
    background: rgba(6, 182, 212, 0.1);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--color-primary);
    box-shadow: var(--glow-primary);
}

.disclaimer p {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.disclaimer .disclaimer-toggle {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-black);
    border: none;
    padding: 14px 36px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 0 20px rgba(6, 182, 212, 0.3);
    margin-top: 12px;
    text-align: center;
}

.disclaimer .disclaimer-toggle:hover {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6), 0 0 20px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.disclaimer .disclaimer-toggle:active {
    transform: translateY(0);
}

.disclaimer-content {
    margin-top: 24px;
    padding: 24px;
    background: rgba(30, 30, 46, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    text-align: left;
}

.disclaimer-content h4 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 16px;
    text-align: center;
}

.disclaimer-content h5 {
    font-size: 16px;
    color: var(--color-accent);
    margin: 16px 0 8px 0;
}

.disclaimer-content p {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: left;
}

.disclaimer-content ul {
    list-style: none;
    padding-left: 0;
    margin: 12px 0;
}

.disclaimer-content ul li {
    font-size: 15px;
    color: var(--color-gray-700);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.disclaimer-content ul li::before {
    content: '•';
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.disclaimer-content .disclaimer-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    text-align: center;
}

.disclaimer-content a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.disclaimer-content a:hover {
    text-shadow: var(--glow-accent);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.link-underline {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.link-underline:hover {
    text-shadow: var(--glow-accent);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 30, 46, 0.6);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: var(--shadow-lg);
}

.faq-item h4 {
    font-size: 18px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.participar {
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    position: relative;
}

.participar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.participar-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.participar-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.participar-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.participar-stats strong {
    font-size: 36px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.participar-stats span {
    font-size: 15px;
    color: var(--color-gray-700);
}

.participar-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.participar-footer {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-accent);
    text-shadow: var(--glow-accent);
}

.footer {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--color-white);
    padding: 64px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-white);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-primary);
    padding-left: 4px;
    text-shadow: var(--glow-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-primary);
    text-shadow: var(--glow-primary);
}

.disclaimer-content a {
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.disclaimer-content a:hover {
    color: var(--color-secondary);
    text-shadow: var(--glow-primary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-black);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.6), 0 0 20px rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

#backToTop:active {
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .manifiesto-grid {
        grid-template-columns: 1fr;
    }
    
    .manifiesto-values {
        grid-template-columns: 1fr;
    }
    
    .funciona-grid {
        grid-template-columns: 1fr;
    }
    
    .revenue-grid {
        grid-template-columns: 1fr;
    }
    
    .riesgos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .participar-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.95);
        border: 1px solid rgba(6, 182, 212, 0.2);
        padding: 24px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(20px);
        gap: 16px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .riesgos-grid {
        grid-template-columns: 1fr;
    }
    
    .participar-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-text {
        padding: 24px;
    }
    
    .btn-lg, .btn-xl {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .flow-split {
        grid-template-columns: 1fr;
    }
}
