:root {
    --ink: #0b0f12;
    --graphite: #121a20;
    --steel: #1a2a35;
    --fog: #e8f1f7;
    --muted: #9fb3c2;
    --neon: #22f5ff;
    --ember: #ff7b44;
    --panel: rgba(18, 26, 32, 0.82);
    --stroke: rgba(120, 150, 170, 0.35);
    --shadow: 0 30px 80px rgba(5, 10, 15, 0.6);
    --font-display: "Oxanium", "Agency FB", "Segoe UI", sans-serif;
    --font-body: "Saira", "Rajdhani", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--fog);
    background-color: var(--ink);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(34, 245, 255, 0.15), transparent 35%),
        radial-gradient(circle at 80% 10%, rgba(255, 123, 68, 0.12), transparent 40%),
        linear-gradient(145deg, rgba(11, 15, 18, 0.95), rgba(7, 10, 12, 0.98)),
        repeating-linear-gradient(115deg, rgba(100, 120, 140, 0.08) 0 1px, transparent 1px 70px);
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    position: relative;
    overflow: hidden;
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, rgba(60, 80, 95, 0.08) 0 1px, transparent 1px 120px),
        repeating-linear-gradient(0deg, rgba(60, 80, 95, 0.05) 0 1px, transparent 1px 90px);
    opacity: 0.4;
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 6vw;
    background: rgba(9, 13, 16, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(90, 120, 140, 0.2);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
}

.logo img {
    width: 36px;
    height: 36px;
}

.top-nav ul {
    display: flex;
    gap: 1.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.top-nav a {
    color: var(--muted);
    position: relative;
    padding-bottom: 0.2rem;
}

.top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: width 0.2s ease;
}

.top-nav a:hover::after,
.top-nav a:focus-visible::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--stroke);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--fog);
    left: 10px;
    top: 20px;
    content: "";
    transition: transform 0.2s ease;
}

.nav-toggle span::before {
    top: -7px;
}

.nav-toggle span::after {
    top: 7px;
}

.site-main {
    position: relative;
    z-index: 1;
}

.section {
    padding: 4.5rem 6vw;
    scroll-margin-top: 110px;
}

.section-head {
    max-width: 620px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-head p {
    color: var(--muted);
    margin-top: 0;
}

.hero {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    padding-top: 6rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 4.6rem);
    margin: 0 0 0.8rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.7rem;
    color: var(--muted);
}

.lede {
    font-size: 1.2rem;
    color: var(--fog);
    margin-bottom: 1rem;
}

.pitch {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(120deg, var(--neon), #4fffe2);
    color: #041015;
    box-shadow: 0 18px 30px rgba(34, 245, 255, 0.3);
}

.btn-secondary {
    border: 1px solid var(--neon);
    color: var(--neon);
    background: rgba(10, 20, 26, 0.4);
}

.btn-tertiary {
    border: 1px solid var(--ember);
    color: var(--ember);
    background: rgba(25, 15, 10, 0.5);
}

.btn-ghost {
    border: 1px solid var(--stroke);
    color: var(--muted);
    background: transparent;
}

.hero-note {
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-visual {
    display: grid;
    gap: 1rem;
}

.visual-frame {
    border: 1px solid rgba(34, 245, 255, 0.4);
    border-radius: 20px;
    padding: 2rem;
    min-height: 260px;
    background: linear-gradient(150deg, rgba(17, 25, 30, 0.8), rgba(10, 14, 18, 0.95));
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.visual-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.visual-meta .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ember);
    box-shadow: 0 0 12px rgba(255, 123, 68, 0.8);
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 1.2rem;
}

.step-card {
    background: var(--panel);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 1.2rem 1.6rem;
    display: grid;
    gap: 0.4rem;
}

.step-index {
    font-family: var(--font-display);
    color: var(--neon);
    letter-spacing: 0.2em;
}

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

.card {
    background: var(--panel);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
}

.icon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(34, 245, 255, 0.1);
    color: var(--neon);
    font-family: var(--font-display);
    margin-bottom: 0.6rem;
}

.world-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.world-panel {
    border: 1px solid rgba(255, 123, 68, 0.4);
    border-radius: 20px;
    padding: 2rem;
    background: rgba(20, 14, 12, 0.7);
    position: relative;
    overflow: hidden;
}

.panel-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember);
}

.fusion-lines {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(34, 245, 255, 0.2), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 123, 68, 0.2), transparent 45%);
    opacity: 0.6;
    pointer-events: none;
}

.media-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.media-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: rgba(7, 10, 12, 0.8);
}

.media-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tagline-strip {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.timeline {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.timeline-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.4rem;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(14, 18, 22, 0.8);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 14px rgba(34, 245, 255, 0.7);
}

.press-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--stroke);
    background: rgba(12, 18, 22, 0.85);
}

.factsheet {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    background: rgba(12, 18, 22, 0.85);
    padding: 1.8rem;
    border-radius: 20px;
    border: 1px solid var(--stroke);
}

.factsheet div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px dashed rgba(120, 150, 170, 0.2);
    padding-bottom: 0.6rem;
}

.factsheet div:last-child {
    border-bottom: none;
}

.factsheet dt {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
}

.factsheet dd {
    margin: 0;
}

.about-card {
    border-radius: 20px;
    border: 1px solid var(--stroke);
    padding: 2rem;
    background: rgba(12, 18, 22, 0.85);
    max-width: 760px;
}

.text-link {
    color: var(--neon);
}

.accordion {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.accordion-item {
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: rgba(10, 14, 18, 0.8);
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    text-align: left;
    padding: 1rem 1.4rem;
    background: transparent;
    border: none;
    color: var(--fog);
    font-family: var(--font-display);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 1.4rem;
}

.accordion-item.is-open .accordion-panel {
    max-height: 200px;
    padding-bottom: 1rem;
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--neon);
}

.cta-panel {
    display: grid;
    gap: 1.6rem;
    padding: 2.5rem;
    border-radius: 24px;
    background: linear-gradient(140deg, rgba(34, 245, 255, 0.18), rgba(10, 18, 24, 0.92));
    border: 1px solid rgba(34, 245, 255, 0.4);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.site-footer {
    padding: 3rem 6vw 4rem;
    border-top: 1px solid rgba(90, 120, 140, 0.25);
    display: grid;
    gap: 2rem;
}

.footer-copy p {
    color: var(--muted);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-socials a {
    border: 1px solid var(--stroke);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    color: var(--muted);
}

.page-hero-card,
.legal-card {
    border: 1px solid var(--stroke);
    border-radius: 20px;
    padding: 2rem;
    background: rgba(10, 14, 18, 0.8);
    max-width: 820px;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 12, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 40;
}

.lightbox img {
    max-width: min(90vw, 900px);
    max-height: 80vh;
    border-radius: 16px;
    border: 1px solid var(--stroke);
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 960px) {
    .top-nav {
        position: absolute;
        top: 100%;
        right: 6vw;
        background: rgba(10, 14, 18, 0.95);
        border: 1px solid var(--stroke);
        border-radius: 16px;
        padding: 1rem;
        display: none;
    }

    .top-nav ul {
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-toggle {
        display: inline-flex;
    }

    body.nav-open .top-nav {
        display: block;
    }
}

@media (max-width: 720px) {
    .press-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .section {
        padding: 3.5rem 6vw;
    }
}
