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

html {
    font-size: 16px;
    max-width: 1200px;
    margin: 0 auto;
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 2vw 2vw;
    background-attachment: fixed;
}

/* NAVBAR */
nav {
    padding: 24px 48px 0px 48px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    padding: 16px 28px;
    background: #0f0f0f;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    display: block;
}

.logo-sub {
    font-size: 11px;
    color: #888888;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: white;
}

.btn-dashboard {
    border: 1px solid #ffffff;
    padding: 8px 20px;
    border-radius: 6px;
    color: #ffffff !important;
}

.btn-dashboard:hover {
    background: #ffffff;
    color: #0a0a0a !important;
    transition: all 0.2s ease;
}

.btn-early:hover {
    background: transparent;
    color: #ffffff;
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    padding: 60px 110px;
    min-height: 70vh;
    position: relative;
    gap: 48px;
    justify-content: center;
}

.hero-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.hero-text {
    max-width: 440px;
}

.hero-text h1 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-text h1::after {
    content: '';
    display: block;
    width: 140px;
    height: 2px;
    background: #00d4d4;
    margin-top: 16px;
    border-radius: 100px;
    box-shadow: 0 0 4px #00d4d4, 0 0 20px #00d4d4;
}

.btn-early {
    display: inline-block;
    margin-top: 16px;
    background: #ffffff;
    border: 1px solid #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 14px;
    font-weight: bolder;
    transition: all 0.2s ease;
}

/* HERO CARDS */
.hero-cards {
    position: relative;
    width: 480px;
    height: 300px;
}

.card {
    position: absolute;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 24px;
    font-size: 13px;
    color: #888888;
    font-family: 'JetBrains Mono', monospace;
}

.card-top {
    width: 320px;
    height: 180px;
    top: 0;
    left: 0;
    z-index: 1;
}

.card-bottom {
    width: 320px;
    height: 180px;
    bottom: 0;
    right: 0;
    z-index: 2;
}

/*HERO STATS*/
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.stat-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: default;
}

.stat-card:hover {
    border-color: #00d4d4;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 212, 212, 0.1);
}

.stat-value {
    font-size: 18px;
    font-weight: 700;
    color: #00d4d4;
}

.stat-label {
    font-size: 13px;
    color: #888888;
}



/* GLOW BACKGROUND */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: fixed;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
}

.b1 { width: 40vw; height: 40vw; top: -10vw; left: -5vw; }
.b2 { width: 40vw; height: 40vw; top: -10vw; right: -5vw; }
.b3 { width: 40vw; height: 40vw; bottom: -10vw; left: 30%; }

/* MISSION */
.mission {
    background: #111111;
    padding: 60px 60px 80px 60px;
    border-radius: 24px;
    margin-top: -40px;
    border-top: 1px solid #00d4d4;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 40px;
}
.mission h2 {
    font-size: 36px;
    font-weight: 700;
}

.mission-content {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 720px;
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 22px;
    line-height: 1.5;
    color: #cccccc;
}

.mission-intro {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
}

.mission-ready {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.mission h2 {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

/* FEATURES */
.features {
    padding: 80px 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

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

.features-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.features-header p {
    color: #888888;
    font-size: 16px;
}

.teal {
    color: #00d4d4;
}

.feature-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 60px;
    width: 100%;
    max-width: 720px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.feature-content {
    display: none;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.feature-content.active {
    display: flex;
}

.feature-icon {
    font-size: 48px;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 700;
}

.feature-content p {
    font-size: 16px;
    color: #888888;
    line-height: 1.6;
    max-width: 480px;
}

.feature-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-btn {
    background: #111111;
    border: 1px solid #2a2a2a;
    color: #888888;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    border-color: #00d4d4;
    color: #ffffff;
}

.tab-btn.active {
    border-color: #00d4d4;
    color: #00d4d4;
    background: rgba(0, 212, 212, 0.05);
}

/* PRICING */
.pricing {
    padding: 80px 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

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

.pricing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-header p {
    color: #888888;
    font-size: 16px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 900px;
    align-items: start;
}

.pricing-card {
    background: #111111;
    border: 1px solid #333333;
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #666666;
    transform: translateY(-4px);
}

.pricing-card.featured {
    box-shadow: 0 0 30px rgba(0, 212, 212, 0.1);
}

.pricing-card.featured:hover {
    border-top: 3px solid #00d4d4;
    box-shadow: 0 0 40px rgba(0, 212, 212, 0.15);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d4d4;
    color: #0a0a0a;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.plan-price {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.plan-price span {
    font-size: 16px;
    color: #888888;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-top: 12px;
}

.plan-features li {
    font-size: 14px;
}

.plan-features li.tick {
    color: #ffffff;
}

.plan-features li.cross {
    color: #444444;
}

.plan-features li:has(✓) {
    color: #ffffff;
}

.plan-btn {
    margin-top: 16px;
    display: block;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.plan-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.btn-teal {
    background: #00d4d4;
    border-color: #00d4d4;
    color: #0a0a0a;
    font-weight: 600;
}

.btn-teal:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0a0a0a;
}

/* FINAL CTA */
.cta {
    padding: 80px 110px;
}

.cta-inner {
    background: #111111;
    border: 1px solid #00d4d4;
    border-radius: 24px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    box-shadow: 0 0 60px rgba(0, 212, 212, 0.08);
}

.cta-inner h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-inner p {
    font-size: 16px;
    color: #888888;
}

.cta-form {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.cta-input {
    background: #0a0a0a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Space Grotesk', sans-serif;
    width: 280px;
    transition: border-color 0.2s ease;
    outline: none;
}

.cta-input:focus {
    border-color: #00d4d4;
}

.cta-input::placeholder {
    color: #444444;
}

.cta-btn {
    background: #00d4d4;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #ffffff;
}

.cta-sub {
    font-size: 12px;
    color: #444444;
}

/* FOOTER */
footer {
    border-top: 1px solid #2a2a2a;
    padding: 40px 110px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-sub {
    font-size: 11px;
    color: #888888;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-copy {
    font-size: 12px;
    color: #444444;
}

/* CTA + FOOTER MOBILE */
@media (max-width: 768px) {
    .cta {
        padding: 40px 24px;
    }

    .cta-inner {
        padding: 40px 24px;
    }

    .cta-inner h2 {
        font-size: 28px;
    }

    .cta-form {
        flex-direction: column;
        width: 100%;
    }

    .cta-input {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    footer {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 24px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    nav {
        padding: 12px 16px;
    }

    .nav-inner {
    padding: 10px 20px;
    }

    .nav-links a:not(.btn-dashboard) {
        display: none;
    }

    .hero {
        padding: 40px 24px;
        min-height: auto;
        gap: 32px;
    }

    .hero-top {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-cards {
        width: 100%;
        height: 240px;
    }

    .card-top {
        width: 75%;
    }

    .card-bottom {
        width: 75%;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 24px;
    }

    .mission {
        padding: 40px 24px;
    }

    .mission-content {
        font-size: 18px;
    }

    .features {
        padding: 60px 24px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .feature-content h3 {
        font-size: 20px;
    }

    .tab-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .feature-tabs {
        gap: 8px;
    }

    .stats-card {
    padding: 40px;
    gap: 0;
    }

    .stat-divider {
        margin: 0 20px;
    }

    .stat-value {
        font-size: 22px;
    }
}

.hero-previews {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 80px;
    padding-right: 60px;
}

.hero-preview-main {
    width: 100%;
    overflow: hidden;
    border: 1px solid #1a1a1a;
    box-shadow: 0 24px 80px rgba(0, 212, 212, 0.1);
}

.hero-preview-secondary {
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-radius: 1vh;
    width: 50%;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8);
}

.hero-img {
    width: 100%;
    display: block;
    border-radius: 1vh;
}

.plan-annual {
    font-size: 12px;
    color: #888888;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 50px;
    padding: 3px 12px;
    width: fit-content;
    margin-top: 4px;
    margin-bottom: 8px;
}

.pricing-card.featured .plan-annual {
    color: #00d4d4;
    border-color: rgba(0, 212, 212, 0.3);
    background: rgba(0, 212, 212, 0.05);
}

.pricing-cards {
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
}

.plan-features {
    flex: 1;
}

.plan-price {
    margin-bottom: 4px;
}

.plan-features {
    flex: 1;
    margin-top: 8px;
}

.pricing-card .free-card {
    border-top: 3px solid #444444;
}

.pro-card {
    border-top: 3px solid #00d4d4;;
}

.pricing-card.elite-card {
    border-top: 3px solid #ff9900;
}

.plan-name.free { color: #888888; }
.plan-name.pro { color: #00d4d4; }
.plan-name.elite { color: #ff9900; }


@media (max-width: 768px) {
    .hero-previews {
        padding-bottom: 0;
        padding-right: 0;
        max-width: 80%;
    }

    .hero-preview-main {
        border-radius: 20px;
    }

    .hero-preview-secondary {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        background-size: 28px 28px;
    }
}