:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --accent-primary: #00d084;
    /* Florian Emerald */
    --accent-secondary: #0ea5e9;
    --text-main: #0f172a;
    --text-muted: #475569;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Falling Leaves (Forest Theme Particles) */
#atmospheric-particle-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.particle-leaf {
    position: absolute;
    top: -40px;
    width: 15px;
    height: 25px;
    background: linear-gradient(135deg, var(--accent-primary), #059669);
    border-radius: 20px 0 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    will-change: transform, opacity;
    animation: fallLeaf linear both;
    opacity: 0;
}

@keyframes fallLeaf {
    0% {
        transform: translate3d(0, -20px, 0) rotate(0deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translate3d(var(--tx), 110vh, 0) rotate(720deg) scale(0.8);
        opacity: 0;
    }
}

.leaves-paused .particle-leaf {
    animation-play-state: paused !important;
}

.toggle-leaves-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--accent-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-premium);
}

.toggle-leaves-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: white;
    box-shadow: 0 15px 30px rgba(0, 208, 132, 0.2);
}

.toggle-leaves-btn.paused {
    background: var(--accent-primary);
    color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Sophisticated Background Effects */
.glow-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

#orb1 {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    animation: moveOrb1 20s infinite alternate;
}

#orb2 {
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, var(--accent-secondary), transparent);
    animation: moveOrb2 25s infinite alternate;
}

@keyframes moveOrb1 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100px, 100px);
    }
}

@keyframes moveOrb2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(150px, -150px);
    }
}

.dynamic-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#00d08422 1px, transparent 0);
    background-size: 40px 40px;
    z-index: -2;
    opacity: 0.3;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-premium);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar .container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 30px;
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #0f172a, #334155);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    background: var(--accent-primary);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.nav-item:hover {
    color: var(--accent-primary);
}

.nav-btn {
    background: var(--text-main);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.founder-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    color: var(--accent-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -3px;
    margin-bottom: 30px;
}

.accent-text {
    color: var(--accent-primary);
    position: relative;
    animation: coreBreath 4s infinite alternate ease-in-out;
}

@keyframes coreBreath {
    0% {
        opacity: 1;
        filter: drop-shadow(0 0 0px var(--accent-primary));
    }

    100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 20px var(--accent-primary));
    }
}

.hero-desc {
    max-width: 600px;
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 208, 132, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    padding: 18px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 100px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--text-main);
}

/* Metrics Grid */
.key-metrics {
    padding-bottom: calc(var(--app-footer-height) + 20px);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.metric-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.m-val {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
}

.m-lbl {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Vision Section */
.vision {
    padding: 150px 0;
    background: var(--bg-secondary);
}

.vision-box {
    padding: 100px;
    border-radius: 60px;
    text-align: center;
}

.vision-quote i {
    font-size: 40px;
    color: var(--accent-primary);
    margin-bottom: 30px;
    display: block;
}

.vision-quote h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.4;
    color: #334155;
    font-style: italic;
    margin-bottom: 40px;
}

.signature {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
}

.typing-cursor {
    color: var(--accent-primary);
    font-weight: 300;
    margin-left: 5px;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.signature::before {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
    margin: 0 auto 20px;
}

/* Biography */
.biography {
    padding: 150px 0;
}

.bio-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-label {
    color: var(--accent-primary);
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 14px;
    margin-bottom: 20px;
}

.bio-text h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.bio-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.bio-bullet-points {
    list-style: none;
    margin-top: 40px;
}

.bio-bullet-points li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.bio-bullet-points i {
    color: var(--accent-primary);
    font-size: 20px;
}

.bio-image-frame {
    aspect-ratio: 4/5;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.founder-status-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 30px;
    color: #00d084;
    font-family: monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    border: 1px solid rgba(0, 208, 132, 0.3);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #00d084;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d084;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.neural-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 25px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overlay-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.o-label {
    font-family: monospace;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    letter-spacing: 1px;
}

.o-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.o-fill {
    height: 100%;
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
    border-radius: 2px;
}

.founder-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bio-image-frame:hover .founder-portrait-img {
    transform: scale(1.05);
}

/* Milestones Timeline */
.milestones {
    padding: 150px 0;
    background: #fdfdfd;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
}

.timeline-item.right {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    z-index: 10;
}

.timeline-item:not(.right) .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-content {
    padding: 30px;
    border-radius: 25px;
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.t-year {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-primary);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.3);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    transition: width 0.3s, height 0.3s, background 0.3s, opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    z-index: 100000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

body:hover .cursor-follower,
body:hover .cursor-dot {
    opacity: 1;
}

.cursor-link-hover {
    width: 80px;
    height: 80px;
    background: rgba(0, 208, 132, 0.2);
    border-color: var(--accent-primary);
}

/* Arsenal ... */

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 80px;
}

.center {
    text-align: center;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.arsenal-card {
    padding: 50px;
    border-radius: 40px;
    transition: all 0.4s;
    text-align: center;
}

.arsenal-card:hover {
    background: white;
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-primary);
}

.arsenal-card i {
    font-size: 48px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.arsenal-card h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.arsenal-card p {
    color: var(--text-muted);
}

/* CTA */
.final-cta {
    padding-bottom: 150px;
}

.cta-inner {
    padding: 100px;
    border-radius: 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.8));
}

.cta-inner h2 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.cta-inner p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 50px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.founder-footer {
    padding-bottom: 50px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
}

.made-with i {
    color: #ef4444;
    margin-left: 5px;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 3px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 2s infinite;
}

@keyframes scrollMouse {
    0% {
        transform: translate(-50%, 0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

/* Loading States for Revealing */
body.loaded .reveal {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.2s;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

body.loaded .reveal-delay-1,
body.loaded .reveal-delay-2,
body.loaded .reveal-delay-3 {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Cursor Control */
@media (pointer: coarse) {

    .cursor-dot,
    .cursor-follower {
        display: none !important;
    }

    * {
        cursor: auto !important;
    }
}

/* Base Responsive Refinements */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 70px;
    }

    .metrics-grid,
    .arsenal-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bio-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .vision-box {
        padding: 60px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 10px 20px;
        border-radius: 30px;
        top: 10px;
        width: calc(100% - 20px);
        left: 10px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
        height: auto;
        padding-bottom: 80px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 15px 30px;
        text-align: center;
    }

    .metrics-grid {
        gap: 20px;
    }

    .metric-card {
        padding: 30px;
    }

    .m-val {
        font-size: 32px;
    }

    .vision {
        padding: 80px 0;
    }

    .vision-box {
        padding: 40px 20px;
        border-radius: 40px;
    }

    .vision-quote h2 {
        font-size: 22px;
    }

    .biography {
        padding: 80px 0;
    }

    .bio-text h3 {
        font-size: 36px;
        text-align: center;
    }

    /* Responsive Timeline */
    .timeline-line {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }

    .timeline-content {
        padding: 25px;
    }

    .arsenal {
        padding: 80px 0;
    }

    .arsenal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .arsenal-card {
        padding: 40px 20px;
    }

    .cta-inner {
        padding: 60px 20px;
        border-radius: 40px;
    }

    .cta-inner h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Engineering Console Styling (Exclusive) */
.console-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0f172a;
    border: 1px solid rgba(0, 208, 132, 0.3);
    color: #00d084;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.console-toggle-btn:hover {
    transform: scale(1.1) rotate(-15deg);
    background: #00d084;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.3);
}

.console-modal {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 350px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(0, 208, 132, 0.2);
    z-index: 1001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.console-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.console-dots {
    display: flex;
    gap: 6px;
}

.console-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.console-title {
    font-family: monospace;
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
}

.console-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s;
}

.console-close:hover {
    color: #f43f5e;
}

.console-body {
    padding: 20px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 11px;
    line-height: 1.8;
    color: #cbd5e1;
    max-height: 250px;
    overflow-y: auto;
}

.log-line {
    margin-bottom: 5px;
    opacity: 0;
    transform: translateX(-10px);
    animation: logFade 0.3s forwards;
}

.log-line.success {
    color: #00d084;
    font-weight: 800;
}

@keyframes logFade {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 38px;
    }

    .m-val {
        font-size: 28px;
    }

    .metric-card {
        padding: 20px;
    }

    .logo-text {
        font-size: 20px;
    }
}
