/* BRUTALIST WEB3 AESTHETIC - GETMEGABOT */

:root {
    --primary-green: #14F195;
    --primary-purple: #9945FF;
    --bg-dark: #000;
    --bg-card: #0A0A1B;
    --text-primary: #FFF;
    --text-secondary: #CCCCCC;
    --border-brutal: #14F195;
    --border-width: 4px;
}

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

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Space Mono', 'Courier New', monospace;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    font-size: 15px;
}

/* REMOVE SOFT GRADIENTS */
.gradient-bg {
    display: none;
}

/* NAVIGATION - BRUTAL & BOXY */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000;
    border-bottom: var(--border-width) solid var(--border-brutal);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-img {
    height: 40px !important;
    width: 40px !important;
    max-height: 40px !important;
    max-width: 40px !important;
    min-height: 40px;
    min-width: 40px;
    display: block;
    object-fit: contain;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-gm {
    font-family: 'Bebas Neue', impact, sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.15em;
}

.logo:hover .logo-gm {
    color: var(--primary-purple);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: none;
}

.nav-links a:not(.btn-primary):hover {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

/* BUTTONS - CHUNKY & STARK */
.btn-primary {
    background: var(--bg-dark);
    color: var(--primary-green);
    padding: 0.75rem 2rem;
    border: var(--border-width) solid var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-green);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    padding: 0.875rem 2rem;
    border: var(--border-width) solid var(--primary-purple);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: #000;
}

/* HERO - ASYMMETRIC & BOLD */
.hero {
    padding: 14rem 3rem 10rem;
    text-align: left;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: var(--border-width) solid var(--primary-green);
}

.hero-content {
    max-width: 1400px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-dark);
    border: 2px solid var(--primary-green);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero h1 {
    font-family: 'Bebas Neue', impact, sans-serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero h1 .gradient-text {
    color: var(--primary-green);
    display: block;
    border-left: 8px solid var(--primary-purple);
    padding-left: 2rem;
    margin-left: 0;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 0 3rem;
    line-height: 1.7;
    border-left: 3px solid var(--primary-green);
    padding-left: 2rem;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* STATS - GRID BOXES */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 6rem;
    max-width: 900px;
}

.stat {
    text-align: center;
    border: 3px solid var(--primary-green);
    padding: 2rem 1rem;
    background: var(--bg-card);
}

.stat:nth-child(2) {
    border-color: var(--primary-purple);
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.stat:nth-child(2) .stat-value {
    color: var(--primary-purple);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* SECTIONS - STARK & BOXED */
.section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    border-bottom: 2px solid var(--bg-card);
}

.section-header {
    text-align: left;
    margin-bottom: 5rem;
    border-left: 8px solid var(--primary-green);
    padding-left: 2rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    line-height: 1.7;
}

/* PRODUCT GRID - BRUTALIST BOXES */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--bg-card);
    border: var(--border-width) solid var(--primary-green);
    padding: 3rem;
    position: relative;
    transition: none;
    display: flex;
    flex-direction: column;
}

.product-card:nth-child(2) {
    border-color: var(--primary-purple);
    transform: translateY(2rem);
}

.product-card:nth-child(3) {
    border-color: var(--primary-green);
}

.product-card:hover {
    border-width: 6px;
    margin: -2px;
}

.product-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.product-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.product-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.use-case {
    background: rgba(20, 241, 149, 0.1);
    border-left: 4px solid var(--primary-green);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.use-case strong {
    color: var(--primary-green);
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-features li {
    padding: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border: 1px solid var(--bg-dark);
    background: rgba(255, 255, 255, 0.02);
}

.product-features li::before {
    content: "▸ ";
    color: var(--primary-green);
    font-weight: 700;
    margin-right: 0.5rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 3px solid var(--primary-green);
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-card:nth-child(2) .product-link {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.product-link:hover {
    background: var(--primary-green);
    color: #000;
}

.product-card:nth-child(2) .product-link:hover {
    background: var(--primary-purple);
}

/* CTA SECTION - STARK INVERT */
.cta-section {
    background: var(--primary-green);
    padding: 6rem 3rem;
    text-align: center;
    margin: 6rem 0;
    border: 6px solid #000;
    position: relative;
}

.cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.cta-section p {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 3rem;
    font-weight: 700;
}

.cta-btn {
    background: #000;
    color: var(--primary-green);
    padding: 1.5rem 4rem;
    border: 4px solid #000;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.cta-btn:hover {
    background: var(--primary-purple);
    color: #000;
    border-color: #000;
}

/* HOW IT WORKS - NUMBERED GRID */
.how-it-works {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 5rem;
    text-transform: uppercase;
    color: var(--primary-green);
    border-bottom: 4px solid var(--primary-green);
    padding-bottom: 1rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
}

.step {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border: 2px solid var(--primary-green);
    border-right-width: 1px;
    position: relative;
}

.step:last-child {
    border-right-width: 2px;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ - STACKED BOXES */
.faq-section {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: var(--primary-purple);
    border-bottom: 4px solid var(--primary-purple);
    padding-bottom: 1rem;
}

.faq-item {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 3px solid var(--primary-green);
    margin-bottom: 2rem;
}

.faq-item:nth-child(odd) {
    border-color: var(--primary-purple);
}

.faq-item h4 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-green);
    text-transform: uppercase;
}

.faq-item:nth-child(odd) h4 {
    color: var(--primary-purple);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 700;
}

/* FOOTER - STARK GRID */
footer {
    background: var(--bg-card);
    padding: 5rem 3rem 2rem;
    border-top: var(--border-width) solid var(--primary-green);
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 0.5rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
}

.footer-section a:hover {
    color: var(--primary-green);
    border-left-color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-dark);
}

/* SCROLL PROGRESS - THICK BAR */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 6px;
    background: var(--primary-green);
    z-index: 9999;
}

/* MOBILE MENU - BRUTALIST */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 2px solid var(--primary-green);
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-green);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #000;
    z-index: 1000;
    transition: right 0.2s ease;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
    border-left: var(--border-width) solid var(--primary-green);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.5rem 1rem;
    border-bottom: 2px solid var(--bg-card);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-menu-links a:hover {
    color: var(--primary-green);
    border-left: 4px solid var(--primary-green);
}

/* PRICING PREVIEW */
.pricing-preview {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    border: 2px solid var(--bg-card);
    padding: 1rem 2rem;
    display: inline-block;
    font-weight: 700;
}

.pricing-preview strong {
    color: var(--primary-green);
}

.trust-badges {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
}

/* RESPONSIVE - MAINTAIN BRUTAL AESTHETIC */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding: 12rem 2rem 8rem;
    }

    .section {
        padding: 6rem 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card:nth-child(2) {
        transform: translateY(1rem);
    }
}

@media (max-width: 900px) {
    .logo-gm {
        font-size: 2.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu-overlay {
        display: block;
    }

    .logo-gm {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .hero {
        padding: 8rem 1.5rem 6rem;
        text-align: left;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 15vw, 5rem);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
        padding-left: 1rem;
        border-left-width: 4px;
    }

    .products-grid {
        gap: 2rem;
    }

    .product-card {
        padding: 2rem;
    }

    .product-card:nth-child(2) {
        transform: none;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        border-right-width: 2px;
        border-bottom-width: 1px;
    }

    .step:last-child {
        border-bottom-width: 2px;
    }

    .cta-section {
        padding: 4rem 1.5rem;
        margin: 3rem 0;
        border-width: 4px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* UTILITY */
.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}