:root {
    --cyan: #00e5ff;
    --cyan-dim: #00b8cc;
    --bg: #08080c;
    --bg2: #0d0d12;
    --bg3: #111118;
    --bg4: #13131c;
    --border: #1e1e2e;
    --border-bright: #00e5ff30;
    --text: #e2e2f0;
    --muted: #6b6b8a;
    --card: #0f0f18;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--cyan-dim);
    border-radius: 4px;
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 920px;
}

.cursor-blink {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background: var(--cyan);
    margin-left: 4px;
    vertical-align: middle;
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.btn-primary {
    background: var(--cyan);
    color: #000;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    border-radius: 9px;
    padding: 15px 34px;
    font-size: 1rem;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    background: #00cfea;
    transform: translateY(-2px);
    box-shadow: 0 10px 34px rgba(0, 229, 255, 0.3);
}

.btn-ghost {
    border: 1px solid #2a2a3e;
    color: var(--text);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    border-radius: 9px;
    padding: 14px 30px;
    font-size: 1rem;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    cursor: pointer;
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.05);
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

#navbar.scrolled {
    background: rgba(8, 8, 12, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    width: 150px;
    height: auto;
}

.nav-logo span {
    color: var(--cyan);
}

.nav-link {
    font-size: 0.95rem;
    color: #9999b8;
    transition: color 0.2s;
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: #fff;
}

.nav-cta {
    background: var(--cyan);
    color: #000;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.nav-cta:hover {
    background: #00cfea;
}

.section {
    padding: 110px 1.5rem;
}

.section-alt {
    background: var(--bg2);
}

.section-dark {
    background: var(--bg3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 520px;
    line-height: 1.75;
}

.accent {
    color: var(--cyan);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(0, 229, 255, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    background: #17172a;
    border: 1px solid #252540;
    border-radius: 5px;
    padding: 4px 11px;
    font-size: 0.78rem;
    color: #8888aa;
    margin: 2px 2px 2px 0;
}

.step-num {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: rgba(0, 229, 255, 0.1);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-num {
    font-family: 'Madimi One', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--cyan);
    line-height: 1;
}

.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: 'Syne', sans-serif;
    font-size: 6rem;
    color: var(--cyan);
    opacity: 0.12;
    position: absolute;
    top: 8px;
    left: 24px;
    line-height: 1;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 32px;
    transition: all 0.3s;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #0d1f2e 0%, #0a1520 100%);
    border-color: var(--cyan);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.price-num {
    font-family: 'Narnoor', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.price-period {
    color: var(--muted);
    font-size: 0.95rem;
}

.price-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #bbb;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a28;
}

.price-feature:last-of-type {
    border-bottom: none;
}

.check {
    color: var(--cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.tech-pill {
    background: #13131e;
    border: 1px solid #1e1e30;
    border-radius: 50px;
    padding: 11px 22px;
    font-size: 0.92rem;
    color: #aaa;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.tech-pill:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

.form-label {
    font-size: 0.92rem;
    color: var(--muted);
    display: block;
    margin-bottom: 7px;
    font-weight: 500;
}

.form-input {
    background: #0f0f1a;
    border: 1px solid #1e1e30;
    border-radius: 10px;
    color: var(--text);
    padding: 14px 17px;
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.form-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.form-input::placeholder {
    color: #3a3a55;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0.25;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: 50px;
    padding: 7px 18px;
    font-size: 0.82rem;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 22px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4)
    }
}

@media(max-width:768px) {
    .section-title {
        font-size: 2rem;
    }

    #nav-desktop {
        display: none;
    }
}

@media(min-width:769px) {
    #mobile-menu-btn {
        display: none;
    }

    #mobile-nav {
        display: none !important;
    }
}

