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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

:root {
    /* Colors - BOLD Premium Palette */
    --bg-black: #030303;
    --bg-dark: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-elevated: #181818;
    
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-subtle: rgba(255, 255, 255, 0.35);
    
    /* Vibrant Gold - More saturated */
    --gold: #ffd700;
    --gold-bright: #ffe135;
    --gold-deep: #e6a800;
    --gold-dim: rgba(255, 215, 0, 0.25);
    --gold-glow: rgba(255, 215, 0, 0.4);
    
    /* Electric Neon Green */
    --neon-green: #00ff88;
    --neon-green-dim: rgba(0, 255, 136, 0.3);
    --neon-green-glow: rgba(0, 255, 136, 0.5);
    
    /* Accent Purple for depth */
    --accent-purple: #8b5cf6;
    --accent-purple-dim: rgba(139, 92, 246, 0.2);
    
    /* Accent Blue for data */
    --accent-blue: #3b82f6;
    
    --line: rgba(255, 255, 255, 0.1);
    --line-light: rgba(255, 255, 255, 0.2);
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-logo: 'Bebas Neue', Impact, sans-serif;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   ENTRY MODAL
   ======================================== */
.entry-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.entry-modal.hidden {
    display: none;
}

.entry-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.entry-title {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.entry-gold {
    color: var(--gold);
}

.entry-subtitle {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.entry-divider {
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 2.5rem;
}

.entry-invitation {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.entry-gold-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 2rem;
}

.entry-offering {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-subtle);
    margin-bottom: 2.5rem;
}

.entry-button {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1.2rem 3rem;
    background: var(--gold);
    color: var(--bg-black);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.entry-button:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
}

.entry-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.entry-button-outline {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1rem 3rem;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.entry-button-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-white);
}

.entry-card {
    position: relative;
}

.request-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.request-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.request-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-subtle);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

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

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

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

.logo-divider {
    width: 1px;
    height: 20px;
    background: var(--line-light);
}

.logo-subtitle {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--text-muted);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

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

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

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

.nav-divider {
    width: 1px;
    height: 16px;
    background: var(--line-light);
}

.nav-btn-outline {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.nav-btn {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.7rem 1.4rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--bg-black);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10rem 4rem 6rem;
    position: relative;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 255, 136, 0.03) 0%, transparent 60%),
        var(--bg-black);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 900px;
}

.invitation-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.badge-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.6));
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: var(--gold);
}

.hero-title {
    margin-bottom: 2.5rem;
}

.title-line1 {
    display: block;
    font-size: 6rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.01em;
}

.title-the {
    font-family: var(--font-serif);
    color: var(--text-muted);
    font-weight: 300;
    font-size: 5rem;
}

.title-1000x {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 7rem;
    letter-spacing: -0.03em;
    color: var(--gold);
}

.title-fund {
    font-family: var(--font-serif);
    color: var(--text-white);
    font-weight: 400;
    font-weight: 300;
}

.hero-tagline {
    margin-bottom: 2.5rem;
}

.tagline-line1 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.tagline-line2 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--gold);
}

/* Philosophy Statement */
.hero-philosophy {
    margin-bottom: 2rem;
    max-width: 550px;
}

.philosophy-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.philosophy-text .highlight {
    color: var(--gold);
    font-weight: 500;
    font-style: normal;
}

/* Hero Metrics Strip */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 4px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.metric-value {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
}

.hero-description-wrapper {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    max-width: 600px;
}

.description-line {
    width: 1px;
    background: var(--line-light);
    flex-shrink: 0;
}

.hero-description {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 300;
}

.desc-highlight {
    color: var(--text-light);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-ghost {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.8rem 0;
    transition: color 0.3s ease;
}

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

.btn-gold {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-decoration: none;
    padding: 0.8rem 0;
    transition: color 0.3s ease;
}

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

/* Hero Wrapper - Two Column Layout */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

/* Mathematical Animation */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.math-animation {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.ring-outer {
    animation: rotate-ring 20s linear infinite;
    transform-origin: 250px 250px;
}

.ring-middle {
    animation: rotate-ring 15s linear infinite reverse;
    transform-origin: 250px 250px;
}

.ring-inner {
    animation: rotate-ring 10s linear infinite;
    transform-origin: 250px 250px;
}

.center-pulse {
    animation: center-pulse 2s ease-in-out infinite;
}

.data-points circle {
    animation: blink-point 3s ease-in-out infinite;
}

.point-1 { animation-delay: 0s; }
.point-2 { animation-delay: 0.5s; }
.point-3 { animation-delay: 1s; }
.point-4 { animation-delay: 1.5s; }

.math-symbol {
    animation: float-symbol 4s ease-in-out infinite;
}

.symbol-1 { animation-delay: 0s; }
.symbol-2 { animation-delay: 0.8s; }
.symbol-3 { animation-delay: 1.6s; }
.symbol-4 { animation-delay: 2.4s; }
.symbol-5 { animation-delay: 3.2s; }

@keyframes rotate-ring {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes center-pulse {
    0%, 100% { opacity: 0.3; r: 30; }
    50% { opacity: 0.8; r: 40; }
}

@keyframes blink-point {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes float-symbol {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-10px); opacity: 0.6; }
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
}

.scroll-arrow-wrapper {
    animation: bounce-scroll 2s ease-in-out infinite;
}

.scroll-dot {
    animation: scroll-dot-move 2s ease-in-out infinite;
}

@keyframes bounce-scroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes scroll-dot-move {
    0%, 100% { cy: 12; opacity: 1; }
    50% { cy: 28; opacity: 0.5; }
}

/* ========================================
   ALGORITHMS SECTION
   ======================================== */
.algorithms-section {
    min-height: 100vh;
    background: var(--bg-dark);
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
}

.algo-container {
    flex: 1;
    display: grid;
    grid-template-columns: 280px 1fr 350px;
    min-height: calc(100vh - 60px);
}

/* Sidebar */
.algo-sidebar {
    border-right: 1px solid var(--line);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.sidebar-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-subtle);
}

.sidebar-count {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: var(--font-sans);
}

.algo-nav-vertical {
    flex: 1;
}

.algo-list-vertical {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.algo-nav-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border-left: 2px solid transparent;
    margin-left: -2px;
}

.algo-nav-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.algo-nav-item.active {
    border-left-color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}

.item-number {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-subtle);
    width: 20px;
}

.algo-nav-item.active .item-number {
    color: var(--gold);
}

.item-name {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.algo-nav-item:hover .item-name {
    color: var(--text-light);
}

.algo-nav-item.active .item-name {
    color: var(--text-white);
}

/* Main Content */
.algo-main {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.algo-content {
    max-width: 650px;
}

.algo-badge {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s var(--ease-out);
}

.algo-badge.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.algo-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s var(--ease-out);
}

.algo-title.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.algo-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s var(--ease-out);
}

.algo-description.fade-out {
    opacity: 0;
    transform: translateY(-15px);
}

.algo-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s var(--ease-out);
}

.algo-stats.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-subtle);
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--line);
}

/* Visual Section */
.algo-visual {
    border-left: 1px solid var(--line);
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
}

.visual-frame {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-frame::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid var(--line);
    pointer-events: none;
}

.animation-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-container svg {
    width: 90%;
    height: 90%;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.animation-container svg.fade-out {
    opacity: 0;
}

.visual-label {
    margin-top: 2rem;
}

.label-text {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-subtle);
}

/* Progress Bar */
.algo-progress {
    padding: 0 4rem 2rem;
}

.progress-bar {
    height: 2px;
    background: var(--line);
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.1s linear;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .algo-container {
        grid-template-columns: 220px 1fr 280px;
    }
    
    .algo-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 1rem 2rem;
    }
    
    .hero-section {
        padding: 8rem 2rem 4rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-animation {
        display: none;
    }
    
    .title-line1 {
        font-size: 4rem;
    }
    
    .title-1000x {
        font-size: 4.5rem;
    }
    
    .algo-container {
        grid-template-columns: 1fr;
    }
    
    .algo-sidebar {
        display: none;
    }
    
    .algo-visual {
        display: none;
    }
    
    .algo-main {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .title-line1 {
        font-size: 3rem;
    }
    
    .tagline-line1, .tagline-line2 {
        font-size: 1.1rem;
    }
    
    .algo-title {
        font-size: 2.2rem;
    }
    
    .algo-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .growth-chart {
        padding: 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 8rem 4rem;
    background: var(--bg-black);
    border-top: 1px solid var(--line);
}

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

.stats-header {
    text-align: center;
    margin-bottom: 5rem;
}

.stats-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.stats-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--gold-dim);
    background: var(--bg-elevated);
}

.stat-number {
    font-family: var(--font-sans);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-white);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* ========================================
   GROWTH CHART SECTION
   ======================================== */
.growth-section {
    padding: 8rem 4rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--line);
}

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

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

.growth-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.growth-title {
    font-family: var(--font-sans);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(201, 162, 39, 0.3);
}

.growth-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.growth-chart {
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 2rem;
    border-radius: 4px;
}

.chart-svg {
    width: 100%;
    height: auto;
    max-height: 400px;
}

.growth-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-growth 3s ease-out forwards;
}

.growth-fill {
    opacity: 0;
    animation: fade-fill 1s ease-out 2s forwards;
}

.chart-points .point {
    opacity: 0;
    animation: pop-point 0.5s ease-out forwards;
}

.chart-points .point:nth-child(1) { animation-delay: 0.5s; }
.chart-points .point:nth-child(2) { animation-delay: 1.2s; }
.chart-points .point:nth-child(3) { animation-delay: 2s; }
.chart-points .point:nth-child(4) { animation-delay: 2.8s; }

@keyframes draw-growth {
    to { stroke-dashoffset: 0; }
}

@keyframes fade-fill {
    to { opacity: 1; }
}

@keyframes pop-point {
    0% { opacity: 0; transform: scale(0); }
    50% { transform: scale(1.5); }
    100% { opacity: 1; transform: scale(1); }
}

/* ========================================
   PORTFOLIO DISTRIBUTION SECTION
   ======================================== */
.portfolio-section {
    padding: 8rem 4rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

/* Floating particles background */
.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
}

.portfolio-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.portfolio-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

.portfolio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pie-chart-container {
    display: flex;
    justify-content: center;
    position: relative;
}

/* Rotating glow ring behind chart */
.pie-chart-container::before {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255, 215, 0, 0.1), rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.1), rgba(255, 215, 0, 0.1));
    animation: rotate-glow 20s linear infinite;
    filter: blur(30px);
}

@keyframes rotate-glow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pie-chart {
    width: 100%;
    max-width: 350px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

/* Animated slices on load */
.pie-slice {
    transform-origin: 200px 200px;
    opacity: 0;
    animation: slice-appear 0.8s ease-out forwards;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.pie-slice:nth-child(1) { animation-delay: 0.1s; }
.pie-slice:nth-child(2) { animation-delay: 0.2s; }
.pie-slice:nth-child(3) { animation-delay: 0.3s; }
.pie-slice:nth-child(4) { animation-delay: 0.4s; }
.pie-slice:nth-child(5) { animation-delay: 0.5s; }
.pie-slice:nth-child(6) { animation-delay: 0.6s; }
.pie-slice:nth-child(7) { animation-delay: 0.7s; }
.pie-slice:nth-child(8) { animation-delay: 0.8s; }
.pie-slice:nth-child(9) { animation-delay: 0.9s; }
.pie-slice:nth-child(10) { animation-delay: 1s; }

@keyframes slice-appear {
    from { 
        opacity: 0; 
        transform: scale(0.5) rotate(-30deg); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
    }
}

.pie-slice:hover {
    transform: scale(1.08);
    filter: brightness(1.3) drop-shadow(0 0 15px currentColor);
}

/* Pulsing center */
.pie-chart circle[r="70"] {
    animation: center-pulse 3s ease-in-out infinite;
}

@keyframes center-pulse {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.2)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.4)); }
}

.portfolio-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(30px);
    animation: legend-slide 0.5s ease-out forwards;
    transition: all 0.3s ease;
}

/* Staggered animation delays for legend items */
.legend-item:nth-child(1) { animation-delay: 0.5s; }
.legend-item:nth-child(2) { animation-delay: 0.6s; }
.legend-item:nth-child(3) { animation-delay: 0.7s; }
.legend-item:nth-child(4) { animation-delay: 0.8s; }
.legend-item:nth-child(5) { animation-delay: 0.9s; }
.legend-item:nth-child(6) { animation-delay: 1.0s; }
.legend-item:nth-child(7) { animation-delay: 1.1s; }
.legend-item:nth-child(8) { animation-delay: 1.2s; }
.legend-item:nth-child(9) { animation-delay: 1.3s; }
.legend-item:nth-child(10) { animation-delay: 1.4s; }

@keyframes legend-slide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover effect with sliding gradient */
.legend-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
    transition: width 0.3s ease;
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(5px);
}

.legend-item:hover::before {
    width: 100%;
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 10px currentColor;
    animation: color-pulse 2s ease-in-out infinite;
}

@keyframes color-pulse {
    0%, 100% { box-shadow: 0 0 5px currentColor; }
    50% { box-shadow: 0 0 15px currentColor, 0 0 25px currentColor; }
}

.legend-label {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.legend-item:hover .legend-label {
    color: var(--text-white);
}

.legend-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-sans);
    min-width: 40px;
    text-align: right;
}

/* Total allocation display */
.portfolio-total {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.total-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
}

.total-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.total-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.modal-note {
    font-size: 0.75rem;
    color: var(--text-subtle);
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

@media (max-width: 900px) {
    .portfolio-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pie-chart {
        max-width: 280px;
    }
    
    .pie-chart-container::before {
        width: 300px;
        height: 300px;
    }
    
    .portfolio-title {
        font-size: 2.5rem;
    }
    
    .legend-item {
        padding: 0.7rem 1rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--bg-black);
    border-top: 1px solid var(--line);
    padding: 5rem 4rem 3rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-wealth {
    color: var(--text-white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer-nomics {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-dim);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 400px;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.contact-details {
    font-style: normal;
}

.contact-details p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--gold);
}

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

.copyright {
    font-size: 0.75rem;
    color: var(--text-subtle);
    letter-spacing: 0.05em;
}
