:root {
    --bg-carbon: #030509;
    --card-surface: #080D16;
    --mint-neon: #00F5A0;
    --mint-light: #70FFD0;
    --mint-glow: rgba(0, 245, 160, 0.4);
    --cyan-laser: #00D9F5;
    --cyan-glow: rgba(0, 217, 245, 0.35);
    --bento-border: rgba(0, 245, 160, 0.2);
    --text-main: #F1F7F6;
    --text-muted: #8E9EA2;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-carbon);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Cyber Grid Lines */
.laser-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, rgba(0, 245, 160, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 245, 160, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Ambient Laser Lights */
.carbon-ambient {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.45;
}

.ambient-mint {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--mint-neon), transparent 70%);
    top: -120px;
    left: -100px;
}

.ambient-cyan {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--cyan-laser), transparent 70%);
    bottom: -100px;
    right: -100px;
}

/* HUD Top Bar */
.telemetry-bar {
    background: #020407;
    border-bottom: 1px solid rgba(0, 245, 160, 0.15);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    padding: 6px 0;
    color: var(--text-muted);
    position: relative;
    z-index: 10;
}

.telemetry-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--mint-neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--mint-neon);
    margin-right: 4px;
}

/* Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* All-New Bento Card Base */
.bento-card {
    background: var(--card-surface);
    border: 1px solid var(--bento-border);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    border-color: var(--mint-neon);
    box-shadow: 0 12px 40px var(--mint-glow);
    transform: translateY(-3px);
}

/* Navbar */
header {
    margin: 20px 0 35px;
    position: sticky;
    top: 15px;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px;
    border-radius: 100px;
    backdrop-filter: blur(15px);
    background: rgba(8, 13, 22, 0.85);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--mint-neon), var(--cyan-laser));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030509;
    font-size: 20px;
    box-shadow: 0 0 15px var(--mint-glow);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.logo-dot {
    color: var(--mint-neon);
}

.nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Neo-Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-mint {
    background: linear-gradient(135deg, var(--mint-neon), var(--cyan-laser));
    color: #030509;
    box-shadow: 0 4px 20px var(--mint-glow);
    border: none;
}

.btn-mint:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 30px var(--cyan-glow);
    background: linear-gradient(135deg, #38EF7D, #11998E);
}

.btn-dark-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--bento-border);
    color: var(--text-main);
}

.btn-dark-outline:hover {
    background: rgba(0, 245, 160, 0.1);
    border-color: var(--mint-neon);
    color: var(--mint-neon);
}

/* Hero Section Bento Grid */
.hero-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 50px;
}

.bento-hero-main {
    grid-row: span 2;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--mint-neon);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.text-gradient-mint {
    background: linear-gradient(135deg, var(--mint-neon), var(--cyan-laser));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bento-stat {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(0, 245, 160, 0.1);
    border: 1px solid var(--bento-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--mint-neon);
}

.stat-meta {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Feature Grid */
.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.grid-bento-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
    margin-bottom: 60px;
}

.card-provider {
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bento-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.provider-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    background: rgba(0, 245, 160, 0.15);
    color: var(--mint-neon);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid var(--bento-border);
}

.provider-icon {
    font-size: 24px;
    color: var(--cyan-laser);
}

.card-provider h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.card-provider p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* SEO Content Bento Box */
.seo-content-card {
    padding: 40px;
    margin-bottom: 60px;
}

.seo-content-card h2 {
    font-size: 1.75rem;
    margin-bottom: 18px;
    color: var(--mint-neon);
}

.seo-content-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* Pure Dofollow SEO Anchors */
.seo-anchor {
    color: var(--mint-light);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed var(--mint-neon);
    transition: all 0.2s ease;
}

.seo-anchor:hover {
    color: #030509;
    background: var(--mint-neon);
    border-bottom-style: solid;
    border-radius: 4px;
    padding: 0 4px;
}

/* Bento FAQ */
.faq-wrap {
    max-width: 840px;
    margin: 0 auto 80px;
}

.faq-item {
    margin-bottom: 14px;
}

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFFFFF;
}

.faq-answer {
    display: none;
    padding: 0 24px 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
}

/* Bottom Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 460px;
    z-index: 999;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 13, 22, 0.9);
    backdrop-filter: blur(15px);
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 245, 160, 0.15);
    padding: 40px 0 90px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

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

@media (max-width: 860px) {
    .hero-bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-hero-main {
        grid-row: span 1;
    }
    .nav-links { display: none; }
}