:root {
    --bg-dark: #000000;
    --bg-light: #000000;
    --primary: #ff6b00;
    --primary-hover: #ff8533;
    --accent-orange: #ff6b00;
    --accent-orange-glow: rgba(255, 107, 0, 0.4);
    --card-bg: #050505;
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #f0f0f0;
    --text-muted: #a0a5b5;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Nav */
#navbar {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

/* Banner */
.banner {
    background: linear-gradient(90deg, #cc5500, var(--accent-orange), #ff8533);
    color: #fff;
    text-align: center;
    padding: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 0 20px var(--accent-orange-glow);
}

/* Centered Hero */
.hero-centered {
    padding: 4rem 2rem;
    background-color: transparent;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto 3rem auto;
    display: block;
}

.highlight-heading {
    color: var(--accent-orange);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.lead-centered {
    font-size: 1.5rem;
    color: #a0a5b5;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.highlight {
    color: var(--accent-orange);
}

.video-placeholder {
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.video-mockup {
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #a0a5b5;
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.video-mockup:hover {
    transform: scale(1.02);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn.primary {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 0 20px var(--accent-orange-glow);
    border: 1px solid rgba(255, 107, 0, 0.5);
}

.btn.primary:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
}

.btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border-color);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #a0a5b5;
}

/* Graphic */
.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 0;
    z-index: 0;
    filter: blur(40px);
}

.cube-wireframe {
    width: 250px;
    height: 250px;
    border: 2px solid var(--accent-orange);
    border-radius: 0;
    transform: rotateX(45deg) rotateZ(45deg);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 50px rgba(255, 107, 0, 0.2), 0 0 50px rgba(255, 107, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.cube-wireframe::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0;
}

@keyframes float {
    0% { transform: rotateX(45deg) rotateZ(45deg) translateY(0); }
    50% { transform: rotateX(45deg) rotateZ(45deg) translateY(-20px); }
    100% { transform: rotateX(45deg) rotateZ(45deg) translateY(0); }
}

/* Content Section Cards */
.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before { display: none !important; }

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-orange-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    color: #fff;
}

/* Alternating Feature List */
.library-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
    padding: 0 1rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 800px;
    width: 100%;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-icon-box {
    width: 130px;
    height: 130px;
    border: 2px solid var(--accent-orange);
    border-radius: 0;
    background: #000;
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 1.5rem;
}

.feature-icon-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px var(--accent-orange-glow);
}

.feature-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text {
    text-align: left;
    flex: 1;
}

.feature-text.text-right {
    text-align: right;
}

.feature-text h3 {
    font-size: 1.4rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.feature-text p {
    color: #a0a5b5;
    font-size: 1.1rem;
    line-height: 1.6;
}

.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s, box-shadow 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.15);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Divider */
hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 4rem 0;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

/* Animations */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.4s ease;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.5rem;
    }
    .cta-nav {
        display: none;
    }
    .hero-logo {
        max-width: 90%;
    }
    .highlight-heading {
        font-size: 2.5rem;
    }
    .lead-centered {
        font-size: 1.2rem;
    }
    .nav-links {
        gap: 1.5rem;
        flex-direction: column;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .hero-graphic {
        height: 300px;
    }
    .glow-orb {
        width: 250px;
        height: 250px;
    }
    .cube-wireframe {
        width: 150px;
        height: 150px;
    }
}

/* Premium Design Upgrades */


.ambient-glows {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb-orange, .glow-orb-purple, .glow-orb-mint {
    position: absolute;
    border-radius: 0;
    filter: blur(150px);
    opacity: 0.5;
    animation: floatGlow 15s ease-in-out infinite alternate;
}

.glow-orb-orange {
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, transparent 60%);
    top: -20%; left: -10%;
}

.glow-orb-purple {
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(160, 32, 240, 0.3) 0%, transparent 60%);
    bottom: -20%; right: -10%;
    animation-delay: -5s;
}

.glow-orb-mint {
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(0, 255, 150, 0.2) 0%, transparent 60%);
    top: 30%; left: 40%;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 5%) scale(1.1); }
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.text-gradient-alt {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff5e62 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.glowing-btn {
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(255, 107, 0, 0.4); }
    100% { box-shadow: 0 0 35px rgba(255, 107, 0, 0.9); }
}

/* Enhanced Responsive Design */
@media (max-width: 900px) {
    /* Stack feature rows vertically instead of zigzag */
    .feature-row, .feature-row.reverse {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }
    
    .feature-text, .feature-text.text-right {
        text-align: center !important;
    }
    
    /* Shrink the glowing boxes slightly on mobile */
    .feature-icon-box {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }
    
    /* Hero section adjustments */
    .hero-centered {
        padding: 2rem 1rem;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        margin-left: 0 !important;
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer stacking */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Typography & Layout Spacing Fixes */
section, .section-dark, .section-light {
    padding: 8rem 0;
}

.hero-centered h1 {
    font-size: 3.8rem;
    margin-bottom: 2rem;
}

.lead {
    font-size: 1.25rem;
}

.highlight-heading {
    margin-bottom: 2.5rem !important;
    font-size: 3.2rem !important;
}

.lead-centered {
    font-size: 1.4rem !important;
    margin-bottom: 3.5rem !important;
    line-height: 1.8;
}

.combo-examples {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.combo-examples p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.6;
}

/* Feature Grid & Tags */
.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-media {
    transition: all 0.3s ease;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before { display: none !important; }

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-tag {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 0.8rem 1.8rem;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    transition: all 0.3s ease;
    cursor: default;
    display: inline-block;
}

.feature-tag:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.2);
    color: #fff;
}

/* --- Sales Funnel & Layout Upgrades --- */



/* Roadmap Pipeline & Animations */
.roadmap-pipeline {
    position: relative;
    padding-top: 3rem;
}

.roadmap-pipeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.timeline-pulse {
    position: absolute;
    top: -4px;
    left: 5%;
    width: 60px;
    height: 10px;
    background: var(--accent-orange);
    box-shadow: 0 0 20px var(--accent-orange);
    border-radius: 0;
    animation: travelLine 4s infinite linear;
}

@keyframes travelLine {
    0% { left: 5%; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 45%; opacity: 1; }
    90% { opacity: 0; }
    100% { left: 95%; opacity: 0; }
}

.roadmap-active {
    border-color: rgba(0, 255, 100, 0.5) !important;
    box-shadow: 0 0 40px rgba(0, 255, 100, 0.15);
    animation: activeCardPulse 3s infinite alternate;
}

@keyframes activeCardPulse {
    0% { box-shadow: 0 0 20px rgba(0, 255, 100, 0.1); border-color: rgba(0, 255, 100, 0.3) !important; }
    100% { box-shadow: 0 0 40px rgba(0, 255, 100, 0.3); border-color: rgba(0, 255, 100, 0.8) !important; }
}

.roadmap-card {
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.4) !important;
}

.roadmap-dimmed {
    opacity: 0.4;
    filter: grayscale(80%);
    border-color: rgba(255, 255, 255, 0.02) !important;
}

.roadmap-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.roadmap-active .roadmap-tag {
    border-color: rgba(255, 107, 0, 0.6);
    background: rgba(255, 107, 0, 0.1);
    color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.2);
}

/* Early Adopter FOMO Block */
.fomo-block {
    background: #050505;
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 4rem;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.fomo-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

/* --- Mobile Responsiveness Fixes --- */
/* Ambient Background Animations */
.ambient-glows {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb-orange, .glow-orb-purple, .glow-orb-mint {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    animation: ambientDrift 20s infinite alternate ease-in-out;
}

.glow-orb-orange {
    width: 600px; height: 600px;
    background: var(--accent-orange);
    top: -100px; left: -100px;
}

.glow-orb-purple {
    width: 500px; height: 500px;
    background: #6a0dad;
    bottom: 20%; right: -50px;
    animation-delay: -5s;
    animation-duration: 25s;
}

.glow-orb-mint {
    width: 400px; height: 400px;
    background: #00ffcc;
    top: 40%; left: 30%;
    animation-delay: -10s;
    animation-duration: 18s;
}

@keyframes ambientDrift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.1; }
    50% { transform: translate(100px, 50px) scale(1.2); opacity: 0.2; }
    100% { transform: translate(-50px, 150px) scale(0.9); opacity: 0.1; }
}

html, body { background: #000000 !important; overflow-x: hidden !important; width: 100%; margin: 0; padding: 0; }

@media (max-width: 768px) {
    .hero-centered h1 {
        font-size: 2.8rem;
    }
    .highlight-heading {
        font-size: 2.2rem !important;
    }
    .lead, .lead-centered {
        font-size: 1.1rem !important;
        margin-bottom: 2rem !important;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    section, .section-dark, .section-light {
        padding: 4rem 0;
    }
    .feature-overlay h3 {
        font-size: 1.2rem;
    }
    .sticky-checkout-btn {
        width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        justify-content: center;
    }
    
    
    .fomo-block {
        padding: 2rem;
    }
}


/* --- Roadmap Pipeline --- */
.roadmap-pipeline {
    position: relative;
    padding-top: 3rem;
}

.roadmap-pipeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 255, 100, 0.8) 0%, rgba(255, 107, 0, 0.4) 50%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 3px;
}

.timeline-pulse {
    position: absolute;
    top: -2px;
    left: 0;
    width: 30px;
    height: 7px;
    background: #00ff64;
    border-radius: 5px;
    box-shadow: 0 0 15px #00ff64, 0 0 30px #00ff64;
    animation: timelineTravel 4s infinite linear;
    z-index: 2;
}

@keyframes timelineTravel {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    70% { opacity: 0.5; background: var(--accent-orange); box-shadow: 0 0 15px var(--accent-orange); }
    100% { left: 100%; opacity: 0; }
}

.section-dark {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.discord-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.3) !important;
    border-color: rgba(88, 101, 242, 0.8) !important;
    background: rgba(88, 101, 242, 0.2) !important;
}

@media (max-width: 768px) {
    .os-support-banner div {
        gap: 1.5rem !important;
    }
    .performance-block {
        flex-direction: column;
        text-align: center !important;
    }
    .performance-block div:last-child {
        margin: 0 auto;
    }
}

body { background: #000000 !important; overflow-x: hidden !important; width: 100%; margin: 0; padding: 0; }
html {
    overflow-x: hidden !important;
}


/* =========================================
   REFERENCE-STYLE REDESIGN OVERRIDES
   Left-aligned, pure black, simplified
   ========================================= */

body, html {
    background: #111111 !important;
}

/* All sections pure dark, no gradients */
section,
.section-dark,
.hero-centered,
header {
    background: #111111 !important;
    backdrop-filter: none !important;
}

/* Left-align all content */
section .container,
header .container,
.text-center,
.lead-centered {
    text-align: left !important;
}

.lead {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

/* Container max-width tighter — doc-style */
.container {
    max-width: 760px !important;
    padding: 0 1.75rem !important;
    box-sizing: border-box !important;
}

/* Section padding tighter */
section {
    padding: 3rem 0 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}

/* Headings left-aligned, simpler */
h1, h2, h3, h4 {
    text-align: left !important;
}

h2.highlight-heading,
h2.fade-in {
    font-size: 1.6rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    margin-bottom: 1rem !important;
}

/* Hero left-aligned */
.hero-centered {
    padding: 2.5rem 0 3rem 0 !important;
    min-height: unset !important;
}

.hero-centered .container {
    text-align: left !important;
}

.hero-logo {
    width: 48px !important;
    height: 48px !important;
    margin: 0 0 1rem 0 !important;
    display: block !important;
}

h1 {
    font-size: 2rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
    text-align: left !important;
}

/* Lead paragraph */
.lead.fade-in {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    color: var(--text-muted) !important;
    margin-bottom: 1.5rem !important;
}

/* OS support banner — left aligned, no border box */
.os-support-banner {
    align-items: flex-start !important;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    padding: 1rem 0 !important;
    margin: 0 !important;
}

.os-support-banner h3 {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    margin-bottom: 0.75rem !important;
    color: var(--text-muted) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

/* Video / YouTube iframe — full width, no max-width cap on mobile */
.video-placeholder {
    max-width: 100% !important;
    margin: 1.5rem 0 2rem 0 !important;
}

/* Banner strip */
.banner {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    letter-spacing: 0.5px !important;
}

/* Navbar */
#navbar {
    padding: 1rem 1.5rem !important;
    justify-content: flex-start !important;
    background: rgba(17,17,17,0.9) !important;
}

/* Section headings */
.highlight-heading {
    color: #fff !important;
}

/* Lead centered override */
.lead-centered {
    text-align: left !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    max-width: 100% !important;
    margin: 0 0 1.5rem 0 !important;
}

/* Combo examples */
.combo-examples {
    text-align: left !important;
    padding: 0 !important;
    background: transparent !important;
}

.combo-examples p em {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    font-style: normal !important;
    display: block !important;
    padding: 0.5rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

/* Performance block */
.performance-block {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: left !important;
}

.performance-block h3 {
    font-size: 1.4rem !important;
    text-align: left !important;
}

/* Feature grid — single column, left-aligned */
.feature-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem !important;
    margin-top: 2rem !important;
}

.feature-item {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.feature-item > div:first-child {
    /* GIF area */
    border-bottom: none !important;
}

.feature-item h3 {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 0.35rem !important;
    text-align: left !important;
}

.feature-item p {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
    text-align: left !important;
}

/* Feature tags */
.more-features {
    background: transparent !important;
    border: none !important;
    padding: 2rem 0 !important;
    text-align: left !important;
}

.more-features h3 {
    font-size: 1.2rem !important;
    text-align: left !important;
}

.feature-tag {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 0 !important;
}

/* Sections text alignment */
#library .container,
#integration .container,
#roadmap .container,
#early-adopter .container {
    text-align: left !important;
}

/* Roadmap cards */
.roadmap-grid {
    gap: 1rem !important;
}

.roadmap-card {
    padding: 1.5rem !important;
}

/* Fomo block */
.fomo-block {
    text-align: left !important;
    padding: 2rem 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Footer */
.footer-content {
    flex-direction: column !important;
    gap: 1rem !important;
}

/* Remove hover lift */
.feature-item:hover {
    transform: none !important;
    opacity: 1 !important;
}

/* Discord button — left aligned */
.discord-btn {
    border-radius: 0 !important;
}

/* Fix edge-to-edge cutting */
body {
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
}

* {
    box-sizing: border-box !important;
}

/* Fix logo — do NOT squash */
.hero-logo {
    width: auto !important;
    height: 52px !important;
    max-width: 160px !important;
    object-fit: contain !important;
    margin: 0 0 1.25rem 0 !important;
    display: block !important;
}

/* Ensure section content respects container */
section > .container > * {
    max-width: 100%;
}

/* Trailer box */
.trailer-box {
    width: 100%;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid rgba(255,107,0,0.2);
    margin: 1.25rem 0 2rem 0;
    cursor: pointer;
}

.trailer-box svg {
    opacity: 0.5;
}

.trailer-box span {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}
/* === CRITICAL PADDING FIX === */
body {
    padding: 0 !important;
    margin: 0 !important;
}
.container,
section > .container,
header > .container,
.hero-centered > .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
}
img {
    max-width: 100% !important;
    height: auto !important;
}
/* Feature items as cards — like the reference boxes */
.feature-item {
    background: #181818 !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    padding: 0 !important;
    overflow: hidden !important;
}
.feature-item > div {
    padding: 0.9rem 1rem !important;
}
.feature-item > img {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}


/* Hide scrollbar for iframe embeds */
body, html {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
::-webkit-scrollbar {
    display: none;
}


@keyframes orangePulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.2);
        border-color: rgba(255, 107, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 107, 0, 0.8);
        border-color: rgba(255, 107, 0, 1);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 0, 0.2);
        border-color: rgba(255, 107, 0, 0.4);
    }
}
.glow-pulse {
    animation: orangePulseGlow 2s infinite ease-in-out;
    color: #fff !important;
}

