:root {
    --bg:        #050b1f;
    --bg2:       #07102a;
    --panel:     #0d1733;
    --panel2:    #111e3d;
    --line:      #1e2f52;
    --line2:     #24345d;
    --text:      #f0f4ff;
    --muted:     #8097c4;
    --muted2:    #6079a8;
    --accent:    #35d0ff;
    --accent2:   #1db8f0;
    --accent-s:  rgba(53,208,255,.12);
    --accent-m:  rgba(53,208,255,.22);
    --purple:    #7c6fff;
    --purple-s:  rgba(124,111,255,.12);
    --green:     #2ecc8a;
    --green-s:   rgba(46,204,138,.12);
    --radius:    14px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(5,11,31,.88);
    backdrop-filter: blur(18px);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.nav-logo {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .55rem;
    letter-spacing: -.01em;
    white-space: nowrap;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    list-style: none;
}
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: .875rem;
    padding: .4rem .75rem;
    border-radius: 8px;
    transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--panel); }
.nav-cta {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
}

/* ── MOBILE HAMBURGER ── */
.nav-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}
.nav-hamburger:hover { background: var(--panel); color: var(--text); }

/* ── MOBILE DRAWER ── */
.nav-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2,6,18,.75);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    transition: opacity .2s ease;
}
.nav-drawer-backdrop.is-open { display: block; }
.nav-drawer-backdrop.is-visible { opacity: 1; }

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 88vw);
    background: var(--panel);
    border-left: 1px solid var(--line2);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.is-open { transform: translateX(0); }

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}
.nav-drawer-header .brand {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
}
.nav-drawer-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background .15s, color .15s;
}
.nav-drawer-close:hover { background: var(--bg); color: var(--text); }

.nav-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.nav-drawer-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem 1rem;
    border-radius: 9px;
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: background .15s, color .15s;
    border: 1px solid transparent;
}
.nav-drawer-link:hover { background: var(--panel2); color: var(--text); border-color: var(--line); }
.nav-drawer-link svg { flex-shrink: 0; opacity: .7; }
.nav-drawer-sep {
    border: none;
    border-top: 1px solid var(--line);
    margin: .4rem 0;
}
.nav-drawer-link.primary {
    background: var(--accent);
    color: #041020;
    font-weight: 700;
    border-color: var(--accent);
}
.nav-drawer-link.primary svg { opacity: 1; }
.nav-drawer-link.primary:hover { background: var(--accent2); border-color: var(--accent2); color: #041020; }

@media (max-width: 680px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1.1rem;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all .18s;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-ghost {
    color: var(--muted);
    border-color: var(--line);
    background: transparent;
}
.btn-ghost:hover { color: var(--text); border-color: var(--line2); background: var(--panel); }
.btn-accent {
    color: #041020;
    background: var(--accent);
    border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent2); border-color: var(--accent2); }
.btn-lg {
    padding: .75rem 1.6rem;
    font-size: 1rem;
    border-radius: 10px;
}
.btn-outline-accent {
    color: var(--accent);
    border-color: rgba(53,208,255,.4);
    background: var(--accent-s);
}
.btn-outline-accent:hover { border-color: var(--accent); background: var(--accent-m); }

/* ── HERO ── */
.hero {
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% -10%, rgba(53,208,255,.13), transparent),
        radial-gradient(ellipse 40% 40% at 80% 30%, rgba(124,111,255,.1), transparent),
        radial-gradient(ellipse 40% 30% at 20% 40%, rgba(53,208,255,.07), transparent);
    pointer-events: none;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--line2);
    background: rgba(5,11,31,.8);
    border-radius: 999px;
    padding: .35rem 1rem;
    font-size: .78rem;
    color: var(--accent);
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.75rem;
}
.hero-eyebrow .dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px var(--accent-s);
}
.hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
    max-width: 800px;
    margin: 0 auto .8rem;
}
.hero h1 .hl { color: var(--accent); }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-note {
    font-size: .8rem;
    color: var(--muted2);
}
.hero-note a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.hero-note a:hover { color: var(--text); }

/* screenshot strip */
.hero-screenshot {
    margin: 0 auto;
    max-width: 960px;
    border-radius: var(--radius);
    border: 1px solid var(--line2);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04);
    position: relative;
}
.hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}
.screenshot-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
    pointer-events: none;
}

/* ── LOGOS / TRUST BAR ── */
.trust {
    padding: 2.5rem 1.5rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    text-align: center;
}
.trust-label {
    font-size: .75rem;
    color: var(--muted2);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.5rem;
}
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--muted);
    font-size: .85rem;
    font-weight: 500;
}
.trust-badge svg { opacity: .6; }

/* ── SECTIONS ── */
.section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.section-sm { padding: 3.5rem 1.5rem; }
.section-center { text-align: center; }
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent);
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ── FEATURE GRID ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 3.5rem;
    background: var(--line);
}
.feature-card {
    background: var(--panel);
    padding: 1.8rem;
    transition: background .2s;
}
.feature-card:hover { background: var(--panel2); }
.feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--line2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 1.3rem;
}
.feature-icon.cyan  { background: var(--accent-s);  border-color: rgba(53,208,255,.3); }
.feature-icon.purple{ background: var(--purple-s);  border-color: rgba(124,111,255,.3); }
.feature-icon.green { background: var(--green-s);   border-color: rgba(46,204,138,.3); }
.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .4rem;
    letter-spacing: -.01em;
}
.feature-card p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.step {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem;
    background: var(--panel);
    position: relative;
}
.step-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--line2);
    line-height: 1;
    margin-bottom: .9rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.step p { font-size: .875rem; color: var(--muted); line-height: 1.6; }
.step code {
    display: block;
    margin-top: .85rem;
    background: var(--bg2);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: .75rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .78rem;
    color: var(--accent);
    white-space: pre;
    overflow-x: auto;
}

/* ── PRICING ── */
.pricing-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin: 0;
}
.pricing-wrapper {
    background: var(--bg2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.pricing-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    background: var(--panel);
}
.pricing-card.featured {
    border-color: rgba(53,208,255,.5);
    background: linear-gradient(160deg, rgba(53,208,255,.07), var(--panel));
    position: relative;
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px; right: 1.5rem;
    background: var(--accent);
    color: #041020;
    font-size: .7rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 0 0 8px 8px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.pricing-tier {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: .6rem;
}
.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .3rem;
}
.pricing-price sub {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
    vertical-align: baseline;
}
.pricing-note {
    font-size: .8rem;
    color: var(--muted2);
    margin-bottom: 1.5rem;
}
.pricing-divider-line {
    border: none;
    border-top: 1px solid var(--line);
    margin: 1.5rem 0;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-bottom: 1.8rem;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .875rem;
    color: var(--muted);
}
.pricing-features li .check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--green-s);
    border: 1px solid rgba(46,204,138,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.pricing-features li .check svg { color: var(--green); }
.pricing-features li .x {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.pricing-features li strong { color: var(--text); }
.pricing-card .btn { width: 100%; justify-content: center; }

/* comparison table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2.5rem;
    font-size: .9rem;
}
.compare-table th {
    padding: .9rem 1.2rem;
    text-align: left;
    background: var(--panel);
    font-weight: 600;
    border: 1px solid var(--line);
}
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius) 0 0; text-align: center; color: var(--accent); }
.compare-table td {
    padding: .8rem 1.2rem;
    border: 1px solid var(--line);
    color: var(--muted);
}
.compare-table td:last-child { text-align: center; }
.compare-table tr:nth-child(even) td { background: rgba(13,23,51,.4); }
.compare-table .yes { color: var(--green); font-weight: 600; }
.compare-table .no  { color: var(--muted2); }
.compare-table .section-row td {
    background: var(--panel);
    color: var(--muted2);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    padding: .5rem 1.2rem;
}

/* ── CTA BAND ── */
.cta-band {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(53,208,255,.06) 0%, transparent 60%),
                linear-gradient(225deg, rgba(124,111,255,.06) 0%, transparent 60%),
                var(--bg2);
    padding: 5rem 1.5rem;
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}
.cta-band p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}
.cta-actions {
    display: flex;
    gap: .85rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--line);
    padding: 2.5rem 1.5rem;
}
.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}
.footer-links a {
    color: var(--muted2);
    font-size: .85rem;
    text-decoration: none;
}
.footer-links a:hover { color: var(--muted); }
.footer-copy {
    font-size: .8rem;
    color: var(--muted2);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {
    .nav-links { display: none; }
    .hero { padding: 4rem 1.25rem 3.5rem; }
    .section { padding: 3.5rem 1.25rem; }
}

/* ── MISC ── */
.sep {
    border: none;
    border-top: 1px solid var(--line);
}
.mt-4 { margin-top: 4rem; }
.badge-enterprise {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .2rem .6rem;
    border-radius: 999px;
    background: var(--accent-s);
    border: 1px solid rgba(53,208,255,.3);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.purple-text{
    color: var(--green);
}
.blue-text{
    color: var(--accent);
}
.videolink-hov{ 
    transition: all 0.3s ease-in-out;
    transform:scale(1.0);
}
.videolink-hov:hover{
    transform: scale(1.03);
    box-shadow:
    0 0 30px 20px #ffffff22  /* inner white */
    
    
}