/* Website 107 - Gold Timeline Theme */
:root {
    --primary: #b45309;
    --primary-dark: #924421;
    --primary-light: #f59e0b;
    --secondary: #ca8a04;
    --dark: #1c1917;
    --darker: #0c0a09;
    --light: #fef3c7;
    --muted: #fcd34d;
    --bg-card: #292524;
    --gradient: linear-gradient(135deg, #b45309 0%, #ca8a04 100%);
    --shadow: 0 10px 40px rgba(180, 83, 9, 0.25);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; background: var(--darker); color: var(--light); line-height: 1.6; }

/* Header */
.top-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(28, 25, 23, 0.95); border-bottom: 1px solid rgba(245, 158, 11, 0.2); padding: 16px 40px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.3rem; font-weight: 700; color: var(--primary-light); text-decoration: none; }
.top-bar nav { display: flex; gap: 24px; }
.top-bar nav a { color: var(--muted); text-decoration: none; font-weight: 500; transition: var(--transition); }
.top-bar nav a:hover, .top-bar nav a.active { color: var(--primary-light); }

/* Hero */
.hero-timeline { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 120px 24px 80px; background: linear-gradient(180deg, var(--darker) 0%, #1a1208 100%); }
.hero-badge { display: inline-block; padding: 8px 20px; background: rgba(245, 158, 11, 0.15); border: 1px solid var(--primary); border-radius: 25px; font-size: 0.8rem; color: var(--primary-light); margin-bottom: 24px; }
.hero-timeline h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; background: linear-gradient(180deg, #fff 0%, var(--primary-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-timeline p { font-size: 1.2rem; color: var(--muted); margin-bottom: 32px; }
.btn-gold { display: inline-block; padding: 14px 32px; background: var(--gradient); color: #fff; text-decoration: none; border-radius: 50px; font-weight: 600; transition: var(--transition); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* Timeline */
.vertical-timeline { padding: 80px 40px; background: var(--dark); position: relative; }
.vertical-timeline h2 { text-align: center; font-size: 2rem; margin-bottom: 60px; }
.timeline-rail { position: relative; max-width: 800px; margin: 0 auto; height: 800px; }
.timeline-rail::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary), var(--secondary)); transform: translateX(-50%); }
.timeline-node { position: absolute; left: 50%; transform: translateX(-50%); width: 300px; display: flex; align-items: center; gap: 30px; }
.node-dot { width: 20px; height: 20px; background: var(--gradient); border-radius: 50%; border: 4px solid var(--darker); box-shadow: 0 0 20px rgba(245, 158, 11, 0.5); z-index: 1; }
.node-content { background: var(--bg-card); padding: 24px; border-radius: 12px; border: 1px solid rgba(245, 158, 11, 0.2); flex: 1; transition: var(--transition); }
.node-content:hover { border-color: var(--primary); transform: scale(1.02); }
.node-content span { font-size: 2rem; display: block; margin-bottom: 12px; }
.node-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.node-content p { color: var(--muted); font-size: 0.9rem; }

/* Stats */
.stats-strip { padding: 50px 24px; background: var(--gradient); }
.stats-container { max-width: 800px; margin: 0 auto; display: flex; justify-content: space-around; }
.stat-item { text-align: center; }
.stat-item span { display: block; font-size: 2.5rem; font-weight: 800; color: #fff; }
.stat-item small { font-size: 0.9rem; color: rgba(255,255,255,0.8); }

/* Tech Row */
.tech-row-section { padding: 80px 24px; text-align: center; background: var(--darker); }
.tech-row-section h2 { font-size: 2rem; margin-bottom: 40px; }
.tech-pills { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.pill { padding: 16px 32px; background: var(--bg-card); border-radius: 50px; border: 1px solid rgba(245, 158, 11, 0.3); display: flex; align-items: center; gap: 12px; transition: var(--transition); cursor: default; }
.pill:hover { border-color: var(--primary); background: rgba(245, 158, 11, 0.1); }
.pill span { font-size: 1.3rem; }
.pill:hover span { transform: scale(1.1); }

/* CTA */
.cta-section { padding: 80px 24px; text-align: center; background: var(--dark); }
.cta-section h2 { font-size: 2rem; margin-bottom: 16px; }
.cta-section p { color: var(--muted); margin-bottom: 32px; }

/* Footer */
.gold-footer { padding: 60px 24px 30px; background: var(--darker); border-top: 1px solid rgba(245, 158, 11, 0.1); }
.footer-content { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-content h3 { color: var(--primary-light); margin-bottom: 12px; }
.footer-content p { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }
.footer-copy { max-width: 1000px; margin: 0 auto; padding-top: 30px; text-align: center; color: var(--muted); font-size: 0.875rem; }

/* Responsive */
@media (max-width: 768px) {
    .top-bar { flex-direction: column; gap: 16px; padding: 16px; }
    .top-bar nav { flex-wrap: wrap; justify-content: center; }
    .timeline-rail::before { left: 20px; }
    .timeline-node { left: 20px !important; transform: none !important; width: auto; margin-left: 30px; }
    .stats-container { flex-direction: column; gap: 30px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}
