/* CSS Variables */
:root {
    --gold: #cc9933;
    --gold-light: #e6b347;
    --gold-dark: #b38829;
    --black: #000000;
    --dark-gray: #0a0a0a;
    --surface: #141414;
    --surface-light: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --accent-gradient: linear-gradient(135deg, #cc9933 0%, #e6b347 50%, #cc9933 100%);
    --shadow-gold: rgba(204, 153, 51, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--black);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(204, 153, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(204, 153, 51, 0.05) 0%, transparent 50%);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-dark);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.metric-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px var(--shadow-gold);
    line-height: 1.2;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

/* Terminal Mockup */
.terminal-mockup {
    background: var(--surface);
    border: 2px solid var(--gold-dark);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.terminal-header {
    background: var(--surface-light);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gold-dark);
}

.terminal-buttons {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red { background: #ff5f56; }
.terminal-button.yellow { background: #ffbd2e; }
.terminal-button.green { background: #27ca3f; }

.terminal-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.terminal-line {
    margin-bottom: 0.5rem;
}

.prompt {
    color: var(--gold);
    font-weight: bold;
}

.output {
    color: var(--text-secondary);
    margin-left: 1rem;
}

.success {
    color: #27ca3f;
    margin-right: 0.5rem;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Revolution Section */
.revolution {
    padding: 100px 0;
    background: var(--surface);
}

.revolution-content {
    max-width: 1000px;
    margin: 0 auto;
}

.revolution-text h3 {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.revolution-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.old-way, .new-way {
    background: var(--black);
    padding: 2rem;
    border: 2px solid var(--surface-light);
    border-radius: 8px;
}

.new-way {
    border-color: var(--gold-dark);
}

.old-way h4, .new-way h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.old-way ul, .new-way ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.old-way li, .new-way li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.old-way li::before {
    content: '•';
    color: var(--text-muted);
    margin-right: 0.5rem;
}

.new-way li::before {
    content: '✓';
    color: var(--gold);
    margin-right: 0.5rem;
}

.timeline {
    text-align: center;
    padding: 1rem;
    background: var(--surface-light);
    border-radius: 4px;
    font-weight: 600;
    color: var(--text-muted);
}

.timeline.gold {
    background: var(--gold);
    color: var(--black);
}

/* Results Section */
.results {
    padding: 100px 0;
}

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

.result-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border: 2px solid var(--gold-dark);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(204, 153, 51, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.result-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-5px);
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.result-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--surface);
}

.project-category {
    margin-bottom: 4rem;
}

.project-category h3 {
    font-size: 1.8rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    text-align: center;
}

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

.project-card {
    background: var(--black);
    padding: 2rem;
    border: 1px solid var(--gold-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.project-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.project-tech {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.project-time {
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.projects-cta {
    text-align: center;
    margin-top: 4rem;
}

.projects-cta p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Intelligence Section */
.intelligence {
    padding: 100px 0;
}

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

.intelligence-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border: 2px solid var(--gold-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.intelligence-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

.intelligence-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.intelligence-card h3 {
    color: var(--gold-light);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.intelligence-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Investment Section */
.investment {
    padding: 100px 0;
    background: var(--surface);
}

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

.investment-item {
    background: var(--black);
    padding: 2.5rem 2rem;
    border: 2px solid var(--gold-dark);
    border-radius: 8px;
    text-align: center;
}

.investment-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.investment-category {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.investment-details {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.roi-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.roi-statement p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Access Section */
.access {
    padding: 100px 0;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.access-reality h3,
.access-timeline h3 {
    color: var(--gold-light);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.access-reality p,
.access-timeline p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.elite-tool-box {
    background: var(--surface);
    padding: 2rem;
    border: 2px solid var(--gold-dark);
    border-radius: 8px;
    margin-top: 2rem;
}

.elite-tool-box h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.access-timeline ul {
    list-style: none;
    margin-bottom: 2rem;
}

.access-timeline li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--surface);
}

.access-timeline li:last-child {
    border-bottom: none;
}

.timeline-statement {
    background: var(--surface);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    margin-top: 2rem;
}

.access-cta {
    text-align: center;
    background: var(--surface);
    padding: 4rem 2rem;
    border-radius: 8px;
}

.access-cta h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.access-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--gold-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--surface-light);
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .access-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-metrics {
        grid-template-columns: 1fr;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .results-grid,
    .intelligence-grid,
    .investment-breakdown {
        grid-template-columns: 1fr;
    }
}