/* ============================================================
   STELLAR REACTOR — stellarreactor.com
   Dark, cinematic, singular. One investor. One name.
   ============================================================ */

:root {
    --black:    #060608;
    --near-black: #0c0c10;
    --dark:     #111116;
    --card:     #16161c;
    --border:   #1e1e26;
    --border-light: #2a2a36;
    --gold:     #c9a227;
    --gold-dim: #7a6118;
    --gold-glow: rgba(201,162,39,0.08);
    --plasma:   rgba(120,180,255,0.06);
    --text-primary: #e8e8f0;
    --text-secondary: #8888a0;
    --text-dim: #484860;
    --white: #f0f0f8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    background: rgba(6,6,8,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--gold);
}

.nav-cta {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid var(--border-light);
    padding: 0.45rem 1.1rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    color: var(--gold);
    border-color: var(--gold-dim);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 60%, rgba(30,30,60,0.4) 0%, var(--black) 70%);
}

/* Plasma rings — pure CSS, no images */
.plasma-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(120,160,255,0.06);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

.ring-1 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0s; }
.ring-2 { width: 750px; height: 750px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 2s; border-color: rgba(201,162,39,0.04); }
.ring-3 { width: 1050px; height: 1050px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 4s; }

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 2rem;
    padding-top: 5rem;
}

.hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 2.5rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero h1 em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 3.5rem;
}

.hero-scroll {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: inline-block;
}

.hero-scroll:hover { color: var(--gold); }

/* ── SECTIONS ────────────────────────────────────────────── */
.section {
    padding: 7rem 2rem;
}

.section-dark {
    background: var(--near-black);
}

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

.container.narrow {
    max-width: 760px;
}

.section-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.prose p {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

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

.prose em {
    color: var(--text-primary);
    font-style: italic;
}

/* ── SPECS GRID ──────────────────────────────────────────── */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 0.5rem;
}

.spec-item {
    background: var(--dark);
    padding: 2.5rem;
    transition: background 0.3s ease;
}

.spec-item:hover {
    background: rgba(201,162,39,0.03);
}

.spec-icon {
    font-size: 1.4rem;
    color: var(--gold-dim);
    margin-bottom: 1rem;
    display: block;
}

.spec-item h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.spec-item p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.8;
}

/* ── APPLICATIONS ────────────────────────────────────────── */
.apps-list {
    margin-top: 1rem;
}

.app-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.app-row:first-child { border-top: 1px solid var(--border); }

.app-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--gold);
    padding-top: 0.1rem;
}

.app-desc {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.75;
}

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline-block {
    margin-top: 3rem;
    border-left: 1px solid var(--border-light);
    padding-left: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 1.3rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold);
}

.tl-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--gold);
    min-width: 120px;
    padding-top: 0.05rem;
}

.tl-event {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* ── NAMING SECTION ──────────────────────────────────────── */
.naming-section {
    background: var(--gold);
    padding: 8rem 2rem;
}

.naming-inner {
    max-width: 680px;
    margin: 0 auto;
}

.naming-section .section-eyebrow {
    color: rgba(0,0,0,0.5);
    font-size: 0.65rem;
}

.naming-section h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    color: #000;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.naming-prose p {
    color: rgba(0,0,0,0.75);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.naming-quote {
    margin: 2.5rem 0;
    padding: 2rem 2.5rem;
    background: rgba(0,0,0,0.08);
    border-left: 3px solid rgba(0,0,0,0.2);
}

.naming-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(0,0,0,0.85);
    line-height: 1.7;
}

.naming-close p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #000;
    margin-top: 1.5rem;
}

/* ── FOUNDATION LINK ─────────────────────────────────────── */
.foundation-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gold-dim);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.foundation-link:hover {
    color: #c9a227;
    border-color: var(--gold);
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
    background: var(--black);
}

.contact-inner {
    max-width: 680px;
}

.contact-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.contact-email-wrap {
    margin: 3rem 0 2rem;
    padding: 2rem 2.5rem;
    border: 1px solid rgba(201,162,39,0.25);
    background: var(--gold-glow);
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover { color: #d4b84a; }

.contact-name {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.contact-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.3s ease;
}

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

.contact-links span { color: var(--border-light); font-size: 0.7rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    background: var(--black);
}

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

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--gold-dim);
    letter-spacing: 0.15em;
}

.footer-sub {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.footer-legal {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-style: italic;
    line-height: 1.6;
}

/* ── MILESTONE ───────────────────────────────────────────── */
.milestone-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

/* ── MILESTONE IMAGE ─────────────────────────────────────── */
.milestone-image-wrap {
    margin-top: 4rem;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.milestone-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.9;
}

.timeline-item-confirmed::before {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(201,162,39,0.45);
}

.timeline-item-confirmed .tl-event {
    color: var(--text-primary);
}

/* ── PHASE GRID ──────────────────────────────────────────── */
.phase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0 2.5rem;
}

.phase-card {
    border: 1px solid var(--border-light);
    padding: 2rem;
    background: var(--card);
}

.phase-label {
    font-size: 0.63rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dim);
    margin-bottom: 0.6rem;
}

.phase-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 400;
}

.phase-items {
    list-style: none;
    margin-bottom: 1.25rem;
    border-top: 1px solid var(--border);
}

.phase-items li {
    color: var(--text-secondary);
    font-size: 0.88rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.phase-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ── ENERGY CALLOUT ──────────────────────────────────────── */
.energy-callout {
    border-left: 2px solid var(--gold);
    padding: 1.75rem 2.25rem;
    margin: 2.5rem 0 3rem;
    background: var(--gold-glow);
}

.energy-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

.energy-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .phase-grid { grid-template-columns: 1fr; }
    .specs-grid { grid-template-columns: 1fr; }

    .app-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .timeline-item { flex-direction: column; gap: 0.25rem; }
    .tl-year { min-width: unset; }

    .naming-section { padding: 5rem 1.5rem; }
    .naming-quote { padding: 1.5rem; }

    .footer-inner { flex-direction: column; align-items: flex-start; }

    .hero h1 { font-size: 2.2rem; }
    .ring-1 { width: 300px; height: 300px; }
    .ring-2 { width: 460px; height: 460px; }
    .ring-3 { width: 640px; height: 640px; }
}
