/* ============================================
   BIRTHRIGHT MARS — Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800&display=swap');

@font-face {
    font-family: 'Nasalization';
    src: url('Fonts/Nasalization Rg.otf') format('opentype');
    font-display: swap;
}

/* ---- Custom Properties ---- */
:root {
    --void: #08080e;
    --bg: #0c0c15;
    --surface: #13131f;
    --surface-hover: #1a1a2a;
    --surface-active: #222235;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --mars: #c0442a;
    --mars-bright: #d95535;
    --mars-glow: rgba(192, 68, 42, 0.15);
    --rust: #7a3520;
    --gold: #c9a44c;
    --gold-dim: rgba(201, 164, 76, 0.3);

    --text: #d8d0c4;
    --text-bright: #f0ebe3;
    --text-dim: #6e6960;
    --text-muted: #4a463f;

    --font-display: 'Nasalization', 'Arial Black', sans-serif;
    --font-body: 'Urbanist', 'Segoe UI', sans-serif;

    --nav-height: 64px;
    --container-width: 1200px;
    --container-padding: 5%;
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Selection ---- */
::selection {
    background: var(--mars);
    color: var(--text-bright);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--rust); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--mars); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-bright);
    letter-spacing: 0.02em;
    line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
}

a {
    color: var(--mars-bright);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--gold); }

ul { list-style: none; }

img { max-width: 100%; height: auto; }

/* ---- Layout ---- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---- Scroll Reveal ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.stagger > .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger > .fade-up:nth-child(2) { transition-delay: 0.08s; }
.stagger > .fade-up:nth-child(3) { transition-delay: 0.16s; }
.stagger > .fade-up:nth-child(4) { transition-delay: 0.24s; }
.stagger > .fade-up:nth-child(5) { transition-delay: 0.32s; }
.stagger > .fade-up:nth-child(6) { transition-delay: 0.40s; }


/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-padding);
    background: rgba(8, 8, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-bright);
    letter-spacing: 0.15em;
    text-decoration: none;
    white-space: nowrap;
}
.nav-brand span {
    color: var(--mars);
}

#nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}
#nav-links li a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-dim);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}
#nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--mars);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
#nav-links li a:hover,
#nav-links li a.active {
    color: var(--text-bright);
}
#nav-links li a:hover::after,
#nav-links li a.active::after {
    transform: scaleX(1);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease, background 0.3s ease;
}
.social-links a:hover {
    border-color: var(--border-hover);
    background: var(--surface);
}
.social-links a img {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.social-links a:hover img {
    opacity: 1;
}

/* Hamburger */
#menu-toggle {
    display: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
#menu-toggle .bar {
    background: var(--text);
    height: 2px;
    width: 100%;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}
#menu-toggle .bar:nth-child(1) { top: 6px; }
#menu-toggle .bar:nth-child(2) { top: 13px; }
#menu-toggle .bar:nth-child(3) { top: 20px; }

#menu-toggle.open .bar:nth-child(1) {
    top: 13px;
    transform: rotate(45deg);
}
#menu-toggle.open .bar:nth-child(2) { opacity: 0; }
#menu-toggle.open .bar:nth-child(3) {
    top: 13px;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    #menu-toggle { display: block; }

    #nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(8, 8, 14, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s ease, opacity 0.4s ease;
        z-index: 999;
    }
    #nav-links.menu-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    #nav-links li a {
        padding: 0.85rem var(--container-padding);
        font-size: 0.95rem;
    }
    #nav-links li a::after { display: none; }
}


/* ============================================
   HERO SECTION (Home)
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 2rem) var(--container-padding) 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('Assets/marsBanner.png') center/cover no-repeat;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 14, 0.3) 0%,
        rgba(8, 8, 14, 0.55) 40%,
        rgba(8, 8, 14, 0.85) 75%,
        var(--bg) 100%
    );
    z-index: -1;
}

.hero-logo {
    max-width: 320px;
    width: 60%;
    margin-bottom: 1.5rem;
    animation: heroFadeIn 1s ease forwards;
    opacity: 0;
}
.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    animation: heroSlideUp 1s 0.2s ease forwards;
    opacity: 0;
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 2vw, 1.15rem);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    animation: heroSlideUp 1s 0.4s ease forwards;
    opacity: 0;
}
.hero-statement {
    max-width: 560px;
    animation: heroSlideUp 1s 0.6s ease forwards;
    opacity: 0;
}
.hero-statement p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.15rem;
}
.hero-statement p.bold {
    font-weight: 700;
    color: var(--text-bright);
}
.hero-statement p.spaced {
    margin-top: 1rem;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    animation: heroSlideUp 1s 0.8s ease forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-primary {
    background: var(--mars);
    color: white;
    border: 2px solid var(--mars);
}
.btn-primary:hover {
    background: var(--mars-bright);
    border-color: var(--mars-bright);
    color: white;
    box-shadow: 0 0 30px var(--mars-glow);
}
.btn-outline {
    background: transparent;
    color: var(--text-bright);
    border: 2px solid var(--border-hover);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: heroFadeIn 1s 1.2s ease forwards, bounce 2.5s 2.2s infinite;
    opacity: 0;
}
.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-dim);
    border-bottom: 2px solid var(--text-dim);
    transform: rotate(45deg);
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 768px) {
    .hero {
        padding-bottom: 5rem;
    }
    .hero-logo {
        max-width: 220px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}


/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
    margin-top: var(--nav-height);
    padding: 4rem var(--container-padding) 3rem;
    text-align: center;
    background: var(--void);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 50% 120%, var(--mars-glow), transparent 60%);
    pointer-events: none;
}
.page-header h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    position: relative;
}
.page-header p {
    font-size: 0.9rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}


/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 0;
}
.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mars);
    margin-bottom: 0.75rem;
    display: block;
}
.section-heading {
    margin-bottom: 3rem;
}
.section-heading h2 {
    margin-bottom: 0.5rem;
}
.section-heading p {
    color: var(--text-dim);
    font-size: 0.95rem;
}
.section-divider {
    width: 50px;
    height: 2px;
    background: var(--mars);
    margin-bottom: 1.5rem;
}


/* ============================================
   POSITION & VALUES (Home)
   ============================================ */
.position-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 768px) {
    .position-values-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    transition: border-color 0.3s ease;
}
.card:hover {
    border-color: var(--border-hover);
}
.card h2 {
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.card ul li {
    padding: 0.6rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.card ul li:last-child {
    border-bottom: none;
}
.card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 5px;
    height: 5px;
    background: var(--mars);
    border-radius: 50%;
}


/* ============================================
   OBJECTIVES (Home)
   ============================================ */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}
.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}
.objective-item:hover {
    border-color: var(--border-hover);
}
.objective-number {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--mars);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rust);
    border-radius: 50%;
    margin-top: 1px;
}
.objective-item p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   ROADMAP / TIMELINE (Home)
   ============================================ */
.timeline {
    position: relative;
    padding-left: 3rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--mars), var(--rust), transparent);
}
.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0.15rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--mars);
    display: flex;
    align-items: center;
    justify-content: center;
}
.timeline-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mars);
}
.timeline-item:first-child .timeline-dot {
    box-shadow: 0 0 20px var(--mars-glow), 0 0 40px var(--mars-glow);
}
.timeline-item h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}
.timeline-item p {
    font-size: 0.95rem;
    color: var(--text);
}


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}
.about-content {
    flex: 1;
}
.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}
.about-content p:last-child {
    margin-bottom: 0;
}
.about-content p:first-child::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    padding: 0.1em 0.15em 0 0;
    color: var(--mars);
}
.about-image-wrapper {
    flex-shrink: 0;
    width: 260px;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
}
.about-image {
    width: 100%;
    border-radius: 50%;
    opacity: 0.85;
    border: 3px solid var(--border);
    transition: opacity 0.3s ease, border-color 0.3s ease;
}
.about-image:hover {
    opacity: 1;
    border-color: var(--mars);
}

@media (max-width: 768px) {
    .about-layout {
        flex-direction: column-reverse;
        align-items: center;
    }
    .about-image-wrapper {
        width: 180px;
        position: static;
    }
    .about-content p:first-child::first-letter {
        font-size: 2.8rem;
    }
}


/* ============================================
   PROPOSALS PAGE
   ============================================ */
.proposals-intro {
    max-width: 800px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.7;
}
.proposals-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.proposal-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.proposal-card:hover {
    border-color: var(--border-hover);
    border-left-color: transparent;
}
.proposal-card.expanded {
    border-color: var(--border-hover);
    border-left-color: var(--mars);
}
.proposal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
}
.proposal-header:hover {
    background: var(--surface-hover);
}
.proposal-number {
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--mars);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rust);
    border-radius: 2px;
}
.proposal-header h3 {
    flex: 1;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: var(--text-bright);
    font-weight: 600;
}
.expand-icon {
    font-size: 1.5rem;
    color: var(--text-dim);
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
    flex-shrink: 0;
}
.proposal-card.expanded .expand-icon {
    transform: rotate(45deg);
    color: var(--mars);
}
.proposal-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.proposal-card.expanded .proposal-body {
    max-height: 600px;
}
.proposal-body-inner {
    padding: 0 1.5rem 1.5rem;
    padding-left: calc(1.5rem + 32px + 1rem);
}
.proposal-body-inner p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}

@media (max-width: 768px) {
    .proposal-body-inner {
        padding-left: 1.5rem;
    }
    .proposal-number {
        display: none;
    }
    .proposal-header {
        padding: 1rem 1.25rem;
    }
}


/* ============================================
   FUNDING PAGE
   ============================================ */
.funding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.funding-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.funding-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}
.funding-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mars-glow);
    border-radius: 4px;
    margin-bottom: 1.25rem;
}
.funding-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--mars-bright);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.funding-card h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--text-bright);
    margin-bottom: 0.75rem;
}
.funding-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.funding-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-dim);
    font-style: italic;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}


/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--void);
    border-top: 1px solid var(--border);
    padding: 3rem var(--container-padding) 2rem;
}
.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-bright);
    letter-spacing: 0.12em;
}
.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.35rem;
    letter-spacing: 0.02em;
}
.footer-nav {
    display: flex;
    gap: 1.5rem;
}
.footer-nav a {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-nav a:hover {
    color: var(--text-bright);
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    transition: border-color 0.3s ease;
}
.footer-social a:hover {
    border-color: var(--border-hover);
}
.footer-social a img {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}
.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}
.footer-disclaimer {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    footer {
        padding: 2.5rem var(--container-padding) 1.5rem;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* ============================================
   MLT — COMING SOON PAGE
   ============================================ */
.mlt-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 2rem) var(--container-padding) 4rem;
    overflow: hidden;
    isolation: isolate;
}
.mlt-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('Assets/marsBanner.png') center/cover no-repeat;
    z-index: -3;
    opacity: 0.4;
}
.mlt-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(
        ellipse at 50% 45%,
        rgba(192, 68, 42, 0.08) 0%,
        rgba(8, 8, 14, 0.7) 40%,
        var(--bg) 100%
    );
    z-index: -2;
}

/* Orbital rings */
.mlt-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(192, 68, 42, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}
.mlt-orbit-1 {
    width: 400px;
    height: 400px;
    animation: mltOrbitSpin 30s linear infinite;
}
.mlt-orbit-2 {
    width: 600px;
    height: 600px;
    border-color: rgba(201, 164, 76, 0.06);
    animation: mltOrbitSpin 45s linear infinite reverse;
}
.mlt-orbit-3 {
    width: 850px;
    height: 850px;
    border-color: rgba(192, 68, 42, 0.04);
    animation: mltOrbitSpin 60s linear infinite;
}
/* Dot on orbit */
.mlt-orbit-1::after,
.mlt-orbit-2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--mars);
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-shadow: 0 0 12px var(--mars-glow), 0 0 24px var(--mars-glow);
}
.mlt-orbit-2::after {
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold-dim), 0 0 24px var(--gold-dim);
    width: 4px;
    height: 4px;
}

@keyframes mltOrbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.mlt-content {
    position: relative;
    max-width: 700px;
    width: 100%;
    overflow-wrap: break-word;
}

.mlt-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mars);
    border: 1px solid var(--rust);
    padding: 0.4rem 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
    animation: heroFadeIn 1s ease forwards;
    opacity: 0;
}

.mlt-title {
    margin-bottom: 2.5rem;
    animation: heroSlideUp 1s 0.2s ease forwards;
    opacity: 0;
}
.mlt-title-line {
    display: block;
    font-size: clamp(1.3rem, 4.5vw, 3rem);
    letter-spacing: 0.1em;
    color: var(--text-bright);
}
.mlt-title-accent {
    color: var(--gold);
    font-size: clamp(1.5rem, 5.5vw, 3.8rem);
    letter-spacing: 0.08em;
}

/* Token symbol */
.mlt-token-symbol {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    animation: heroSlideUp 1s 0.4s ease forwards;
    opacity: 0;
}
.mlt-token-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--mars);
    border-radius: 50%;
    animation: mltTokenPulse 3s ease-in-out infinite;
}
.mlt-token-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(192, 68, 42, 0.25);
    border-radius: 50%;
}
.mlt-token-ring::after {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(192, 68, 42, 0.1);
    border-radius: 50%;
}
.mlt-token-text {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.15em;
    color: var(--text-bright);
    text-shadow: 0 0 30px var(--mars-glow), 0 0 60px var(--mars-glow);
}

@keyframes mltTokenPulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--mars-glow), 0 0 40px rgba(192, 68, 42, 0.05);
    }
    50% {
        box-shadow: 0 0 40px var(--mars-glow), 0 0 80px rgba(192, 68, 42, 0.12);
    }
}

.mlt-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 500;
    font-style: italic;
    color: var(--text);
    margin-bottom: 3rem;
    animation: heroSlideUp 1s 0.5s ease forwards;
    opacity: 0;
}

/* Details grid */
.mlt-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 2.5rem;
    animation: heroSlideUp 1s 0.6s ease forwards;
    opacity: 0;
}
.mlt-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.mlt-detail-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.mlt-detail-value {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--gold);
}
.mlt-blink {
    animation: mltBlink 2.5s ease-in-out infinite;
}
@keyframes mltBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.mlt-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--mars), transparent);
    margin: 0 auto 2rem;
    animation: heroSlideUp 1s 0.7s ease forwards;
    opacity: 0;
}

.mlt-subtext {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: heroSlideUp 1s 0.7s ease forwards;
    opacity: 0;
}

/* Coming soon bar */
.mlt-coming-soon {
    margin-bottom: 2.5rem;
    animation: heroSlideUp 1s 0.8s ease forwards;
    opacity: 0;
}
.mlt-soon-text {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--mars);
    display: block;
    margin-bottom: 0.75rem;
}
.mlt-soon-bar {
    width: 200px;
    height: 3px;
    background: var(--surface);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}
.mlt-soon-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--mars), var(--gold), var(--mars));
    background-size: 200% 100%;
    animation: mltProgressSlide 2.5s ease-in-out infinite;
    border-radius: 2px;
}
@keyframes mltProgressSlide {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.mlt-classified-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    line-height: 1.7;
    animation: heroSlideUp 1s 0.9s ease forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .mlt-details {
        flex-direction: column;
        gap: 1.25rem;
    }
    .mlt-orbit-1 { width: 280px; height: 280px; }
    .mlt-orbit-2 { width: 420px; height: 420px; }
    .mlt-orbit-3 { width: 580px; height: 580px; }
    .mlt-token-symbol {
        width: 100px;
        height: 100px;
    }
    .mlt-token-text {
        font-size: 1.6rem;
    }
}

/* Teaser cards */
.mlt-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.mlt-teaser-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.mlt-teaser-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}
.mlt-teaser-number {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--mars);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rust);
    border-radius: 50%;
    margin-bottom: 1.25rem;
}
.mlt-teaser-card h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.mlt-teaser-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
}


/* ============================================
   MLT — LIVE PAGE ADDITIONS
   ============================================ */

/* Token image — slightly larger on live page */
.mlt-token-symbol {
    width: 160px;
    height: 160px;
}
.mlt-token-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Active status indicator (replaces blinking "AWAITING") */
.mlt-status-live {
    color: #4ade80 !important;
    text-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
    animation: none;
}

/* Hero CTA buttons row */
.mlt-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    animation: heroSlideUp 1s 0.8s ease forwards;
    opacity: 0;
}

/* Contract address box */
.mlt-contract-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.mlt-address-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}
.mlt-address {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--gold);
    background: var(--void);
    padding: 0.75rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    word-break: break-all;
    user-select: all;
}
.mlt-copy-btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-bright);
    background: var(--mars);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
}
.mlt-copy-btn:hover {
    background: var(--mars-bright);
}
.mlt-contract-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.75rem;
}

/* How to acquire — step cards */
.mlt-acquire-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.mlt-acquire-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.mlt-acquire-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}
.mlt-acquire-step {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--mars);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rust);
    border-radius: 50%;
    margin-bottom: 1.25rem;
}
.mlt-acquire-card h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}
.mlt-acquire-card p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.65;
}

/* Exchange links row */
.mlt-exchange-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 1rem;
}
.mlt-exchange-links .btn {
    width: 12rem;
    text-align: center;
}

/* Tokenomics grid */
.mlt-tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.mlt-tokenomics-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}
.mlt-tokenomics-item:hover {
    border-color: var(--border-hover);
}
.mlt-tokenomics-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.mlt-tokenomics-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    color: var(--gold);
}

/* Mobile adjustments for live page additions */
@media (max-width: 768px) {
    .mlt-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .mlt-hero-actions .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    .mlt-address {
        font-size: 0.7rem;
        padding: 0.6rem 0.75rem;
    }
}


/* ============================================
   GRAIN OVERLAY
   ============================================ */
body::after {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}
