/* === GPI Inner Page Layout === */
:root {
    --bg:         #000000;
    --bg2:        #080808;
    --pink:       #ff00ff;
    --purple:     #8b3fe8;
    --blue:       #00ffff;
    --purple-mid: #ff00ff;
    --text:       #ffffff;
    --muted:      #ffffff;
    --dim:        #ffffff;
    --card-bg:    rgba(255,255,255,0.02);
    --card-border:#222222;
    --magenta:    #ff00ff;
}

.gpi-page {
    background: #000000;
    font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    text-align: left;
    position: relative;
}

/* Noise grain overlay */
.gpi-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

/* Ambient orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(170,59,255,0.15) 0%, transparent 70%); top: -200px; left: -200px; opacity: 0.5; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);   bottom: 0;    right: 100px; opacity: 0.4; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,0,255,0.08) 0%, transparent 70%); top: 50%;    left: 50%;   transform: translate(-50%,-50%); opacity: 0.3; }

/* Navigation */
.gpi-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #222;
}
.nav-logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }

/* Page Header */
.page-header {
    position: relative;
    z-index: 1;
    padding: 160px 32px 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 24px;
}
.page-header h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 200;
    line-height: 1;
    margin: 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -2px;
}
.page-header h1 em {
    font-style: normal;
    font-weight: 800;
    color: var(--blue);
}
.page-divider {
    width: 100px;
    height: 1px;
    background: #333;
    margin: 30px auto;
}
.page-intro {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: #888;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Wrap */
.content-wrap {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 100px;
}

/* Timeline */
.timeline { position: relative; padding: 16px 0; }
.tl-item  { display: grid; grid-template-columns: 1fr; gap: 0; margin-bottom: 30px; }
.tl-card  {
    background: #050505;
    border: 1px solid #111;
    border-radius: 0;
    padding: 40px;
    transition: all 0.3s;
}
.tl-card:hover { border-color: #333; background: #080808; }
.tl-year  { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 10px; color: #444; }
.tl-tag   { display: inline-block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; padding: 4px 10px; border: 1px solid #333; margin-bottom: 15px; color: #fff; }
.tl-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.tl-desc  { font-size: 1rem; line-height: 1.6; color: #aaa; }
.tl-desc a { color: var(--purple-mid); text-decoration: none; }
.tl-desc a:hover { text-decoration: underline; }

.era-divider { margin: 60px 0 30px; text-align: left; border-bottom: 1px solid #111; padding-bottom: 10px; }
.era-inner   { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.3em; text-transform: uppercase; color: #444; }

/* Sections */
.section-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.4em; text-transform: uppercase; color: #444; margin-bottom: 15px; }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 200; line-height: 1.1; color: #fff; margin-bottom: 20px; text-transform: uppercase; }
.section-title em { font-style: normal; font-weight: 800; color: var(--magenta); }
.section-sub { font-size: 1.1rem; line-height: 1.6; color: #666; max-width: 800px; margin-bottom: 40px; text-transform: uppercase; letter-spacing: 1px; }

.full-divider { width: 100%; height: 1px; background: #111; margin: 60px 0; }

/* CTA Buttons */
.cta-row { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 40px;
    background: #fff; color: #000;
    font-size: 0.8rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary:hover  { background: #00ffff; }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 38px;
    background: transparent; color: #fff;
    font-size: 0.8rem; font-weight: 800;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #333;
    transition: all 0.2s;
}
.btn-secondary:hover { border-color: #fff; }

/* Footer */
.gpi-footer {
    position: relative;
    z-index: 1;
    background: #000;
    border-top: 1px solid #111;
    padding: 60px 40px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.footer-name { font-size: 1.5rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 15px; }
.footer-links a { color: #444; text-decoration: none; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.7rem; color: #333; margin-top: 40px; grid-column: span 2; text-transform: uppercase; letter-spacing: 2px; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Fade-Up Animation */
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-up { animation: fadeUp 0.8s forwards; opacity: 0; }

/* Responsive */
@media (max-width: 768px) {
    .gpi-nav { padding: 15px 20px; }
    .nav-links { display: none; }
    .gpi-footer { grid-template-columns: 1fr; gap: 40px; }
    .footer-copy { grid-column: span 1; }
    .page-header { padding: 120px 20px 40px; }
    .content-wrap { padding: 0 20px 60px; }
}
