:root {
    --bg-color: #030712;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --accent: #00f3ff;
    --accent-glow: rgba(0, 243, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--accent-glow));
}

.logo span {
    font-size: clamp(0.7rem, 2.5vw, 1.1rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    background: transparent;
    color: var(--accent);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--accent);
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px var(--accent-glow) inset;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-secondary {
    color: var(--text-main);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-main);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Sections */
.section {
    padding: 100px 5%;
}

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

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reverse {
    direction: rtl;
}
.reverse > * {
    direction: ltr;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.highlight-box {
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 243, 255, 0.05);
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-box span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Images & Cards */
.product-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

.product-icon {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.1);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
}

.highlight-border {
    border-color: rgba(0, 243, 255, 0.5);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.feature-list li strong {
    color: var(--text-main);
}

/* Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Footer */
footer {
    padding: 80px 5%;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

footer h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

footer p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.copyright {
    margin-top: 4rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.float-anim {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .grid-3::-webkit-scrollbar {
        display: none;
    }
    .grid-3 > * {
        min-width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    nav {
        flex-direction: column;
        padding: 1rem 5%;
    }
    .nav-links {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
}

/* HUD Overlay */
:root {
    --hud-accent: #ff5500;
}

.hud-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3rem 5%;
    z-index: 10;
}

.hud-header, .hud-controls, .hud-info {
    pointer-events: auto;
}

.hud-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.hud-controls {
    display: flex;
    gap: 1rem;
    align-self: flex-start;
}

.hud-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 0.6rem 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
}

.hud-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hud-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--hud-accent);
    box-shadow: 0 0 15px var(--hud-accent);
    color: #fff;
    text-shadow: 0 0 5px #fff;
}

.hud-info {
    align-self: flex-end;
    max-width: 450px;
    background: rgba(5, 5, 10, 0.85) !important;
    border-left: 3px solid var(--hud-accent);
    border-radius: 0 8px 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

#hud-desc {
    font-family: 'Courier New', Courier, monospace;
    color: #a0a0b0;
    line-height: 1.5;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #00ff41;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(10px, 9999px, 97px, 0); }
    5% { clip: rect(74px, 9999px, 66px, 0); }
    10% { clip: rect(98px, 9999px, 92px, 0); }
    15% { clip: rect(13px, 9999px, 5px, 0); }
    20% { clip: rect(65px, 9999px, 2px, 0); }
    25% { clip: rect(9px, 9999px, 64px, 0); }
    30% { clip: rect(87px, 9999px, 83px, 0); }
    35% { clip: rect(19px, 9999px, 32px, 0); }
    40% { clip: rect(21px, 9999px, 99px, 0); }
    45% { clip: rect(31px, 9999px, 20px, 0); }
    50% { clip: rect(84px, 9999px, 16px, 0); }
    55% { clip: rect(62px, 9999px, 64px, 0); }
    60% { clip: rect(59px, 9999px, 49px, 0); }
    65% { clip: rect(79px, 9999px, 31px, 0); }
    70% { clip: rect(80px, 9999px, 42px, 0); }
    75% { clip: rect(54px, 9999px, 80px, 0); }
    80% { clip: rect(58px, 9999px, 40px, 0); }
    85% { clip: rect(38px, 9999px, 61px, 0); }
    90% { clip: rect(50px, 9999px, 45px, 0); }
    95% { clip: rect(14px, 9999px, 36px, 0); }
    100% { clip: rect(29px, 9999px, 82px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(54px, 9999px, 14px, 0); }
    5% { clip: rect(69px, 9999px, 68px, 0); }
    10% { clip: rect(94px, 9999px, 30px, 0); }
    15% { clip: rect(37px, 9999px, 33px, 0); }
    20% { clip: rect(99px, 9999px, 5px, 0); }
    25% { clip: rect(2px, 9999px, 45px, 0); }
    30% { clip: rect(80px, 9999px, 88px, 0); }
    35% { clip: rect(69px, 9999px, 98px, 0); }
    40% { clip: rect(100px, 9999px, 32px, 0); }
    45% { clip: rect(93px, 9999px, 87px, 0); }
    50% { clip: rect(35px, 9999px, 80px, 0); }
    55% { clip: rect(74px, 9999px, 78px, 0); }
    60% { clip: rect(86px, 9999px, 19px, 0); }
    65% { clip: rect(52px, 9999px, 81px, 0); }
    70% { clip: rect(98px, 9999px, 2px, 0); }
    75% { clip: rect(94px, 9999px, 81px, 0); }
    80% { clip: rect(1px, 9999px, 49px, 0); }
    85% { clip: rect(44px, 9999px, 57px, 0); }
    90% { clip: rect(96px, 9999px, 27px, 0); }
    95% { clip: rect(52px, 9999px, 12px, 0); }
    100% { clip: rect(71px, 9999px, 14px, 0); }
}

@media (max-width: 768px) {
    .hud-controls {
        flex-direction: row;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hud-controls::-webkit-scrollbar {
        display: none;
    }
    .hud-info {
        align-self: flex-start;
        max-width: 100%;
        margin-top: 1rem;
    }
    .hud-overlay {
        padding: 1.5rem 5%;
        justify-content: flex-start;
    }
    #canvas-container {
        height: 100vh !important;
    }
}

/* Telemetry Terminal */
.terminal-box {
    background: #05050a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 2rem auto;
    text-align: left;
    position: relative;
}

.terminal-header {
    background: #111;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.terminal-title {
    color: #666;
    font-family: monospace;
    font-size: 0.9rem;
    margin-left: 10px;
}

.terminal-body {
    padding: 20px;
    height: 250px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    color: #00ff41;
    font-size: 0.95rem;
    line-height: 1.6;
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}
.terminal-body::-webkit-scrollbar-thumb {
    background: #00ff41;
    border-radius: 4px;
}

.log-line {
    margin-bottom: 5px;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.scanlines {
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.2));
    background-size: 100% 4px;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
    padding-left: 20px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 20px;
    height: 100%;
    width: 2px;
    background: var(--accent);
}
.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 40px;
    text-align: left;
}
.timeline-dot {
    position: absolute;
    left: -6px;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00ff41;
    box-shadow: 0 0 10px #00ff41;
}
.timeline-content {
    padding: 1.5rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    padding: 1.2rem;
    font-size: 1.1rem;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: background 0.3s;
}
.faq-question:hover, .faq-question.active {
    background: rgba(0, 243, 255, 0.1);
}
.faq-answer {
    background: rgba(0, 0, 0, 0.5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding: 1.2rem;
    margin: 0;
    color: var(--text-muted);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.team-card {
    text-align: center;
    padding: 1.5rem 1rem;
}
.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
    margin-bottom: 1rem;
    object-fit: cover;
}
.team-card h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: var(--text-light);
}
.team-card h4 {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-card p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* --- Pitch Deck Styles --- */
body.deck-body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: #05050a;
}

.gateway-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1000;
    background: #05050a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.gateway-overlay.fade-out {
    opacity: 0;
}

.gateway-terminal {
    width: 90%;
    max-width: 600px;
}

.blinking-cursor {
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}

.deck-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    height: 100vh;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.deck-container::-webkit-scrollbar {
    display: none;
}

.slide {
    flex: 0 0 100vw;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    position: relative;
}

.slide-content {
    max-width: 1000px;
    width: 100%;
    z-index: 10;
}

.slide h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    padding-bottom: 1rem;
}

.slide-nav {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #00ff41;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    z-index: 100;
    background: rgba(5, 5, 10, 0.8);
    padding: 5px 15px;
    border: 1px solid #00ff41;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

/* --- Whitepaper Styles --- */
.whitepaper-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 80px auto 0 auto;
    padding: 2rem 5%;
    align-items: start;
}

.toc-sidebar {
    position: sticky;
    top: 100px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.toc-sidebar h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.toc-sidebar ul {
    list-style: none;
}

.toc-sidebar li {
    margin-bottom: 0.8rem;
}

.toc-sidebar a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.toc-sidebar a:hover {
    color: var(--text-main);
}

.paper-content h2 {
    color: var(--text-main);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
}

.paper-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
}

.math-block {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.3rem;
    text-align: center;
    color: var(--accent);
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .whitepaper-container {
        grid-template-columns: 1fr;
    }
    .toc-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    .paper-content {
        padding: 1.5rem !important;
    }
}

/* --- Configurator Styles --- */
.builder-body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.builder-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    overflow: hidden;
}

.workshop-canvas {
    position: relative;
    background: radial-gradient(circle at center, #0a0e17 0%, var(--bg-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.canvas-title {
    position: absolute;
    top: 2rem;
    left: 2rem;
    color: rgba(0, 243, 255, 0.1);
    font-size: 4rem;
    letter-spacing: 10px;
    pointer-events: none;
    z-index: 1;
}

.cartridge-base {
    position: absolute;
    z-index: 5;
}

.balloon-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 4;
}

.spawned-balloon {
    position: absolute;
    width: 250px;
    filter: drop-shadow(0 0 15px rgba(0,255,65,0.4));
    transform-origin: center;
}

.hud-panel {
    border-left: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.stat-block {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    transition: width 0.3s ease;
}

.builder-btn {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem;
    width: 100%;
    text-align: left;
    margin-bottom: 0.8rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.builder-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
}

.btn-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.launch-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fade-in-scale {
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

@media (max-width: 900px) {
    .builder-body {
        height: auto;
        overflow: auto;
    }
    .builder-container {
        grid-template-columns: 1fr;
    }
    .workshop-canvas {
        height: 50vh;
    }
    .canvas-title {
        font-size: 2rem;
    }
}
