/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
    --navy:    #050c1a;
    --navy2:   #080f20;
    --navy3:   #0b1428;
    --slate:   #111d35;
    --border:  rgba(255,255,255,0.07);
    --border2: rgba(255,255,255,0.12);
    --cyan:    #00d4ff;
    --cyan2:   #00b8e0;
    --blue:    #1a6cff;
    --blue2:   #0050cc;
    --accent:  #5be7c4;
    --text:    #d6e4ff;
    --muted:   rgba(214,228,255,0.55);
    --card-bg: rgba(255,255,255,0.04);
    --glass:   rgba(255,255,255,0.055);
}

/* ─── BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--navy);
    color: var(--text);
    overflow-x: hidden;
}

/* ─── BACKGROUND GRID ────────────────────────────────────── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* ─── UTILITY ────────────────────────────────────────────── */
.glass {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 60%, #5be7c4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.divider-glow {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.3) 50%, transparent 100%);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    background: linear-gradient(135deg, #1a6cff 0%, #00d4ff 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(26,108,255,0.4), 0 2px 8px rgba(0,0,0,0.3);
}
@media (hover: hover) and (pointer: fine) {
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(26,108,255,0.55), 0 2px 12px rgba(0,0,0,0.3);
    color: #ffffff;
    filter: brightness(1.08);
}
}
.btn-outline-light-vc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border2);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    background: transparent;
    color: var(--text);
}
@media (hover: hover) and (pointer: fine) {
.btn-outline-light-vc:hover {
    background: var(--glass);
    border-color: rgba(0,212,255,0.3);
    color: var(--cyan);
    transform: translateY(-1px);
}
}
.btn-cta-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    background: linear-gradient(135deg, #1a6cff 0%, #00d4ff 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(26,108,255,0.35);
}
@media (hover: hover) and (pointer: fine) { .btn-cta-sm:hover { transform: translateY(-1px); filter: brightness(1.08); color:#fff; } }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.vc-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(5,12,26,0.85);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.vc-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.vc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.vc-logo-img-wrap {
    background: #fff;
    padding: 4px 6px;
    border-radius: 6px;
    line-height: 0;
}
.vc-logo-img { max-height: 34px; }
.vc-brand {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}
.vc-nav-links { display: flex; align-items: center; gap: 8px; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}
.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-bg-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(26,108,255,0.18) 0%, transparent 70%);
    top: -100px; left: -200px;
}
.hero-bg-blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
    top: 50px; right: -150px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.25);
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-cta-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-note {
    margin-top: 20px;
    font-size: 0.78rem;
    color: rgba(214,228,255,0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-note i { color: var(--accent); }

/* Hero right panel */
.hero-panel {
    background: var(--glass);
    border: 1px solid var(--border2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-panel-header {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-dot-red { background: #ff5f57; }
.panel-dot-yellow { background: #ffbd2e; }
.panel-dot-green { background: #28c940; }
.hero-panel-body { padding: 20px; }
.stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
}
.stat-num { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-lbl { font-size: 0.68rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-num-cyan { color: var(--cyan); }
.stat-num-green { color: var(--accent); }
.mini-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.mini-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    font-size: 0.83rem;
    color: var(--text);
    border: 1px solid var(--border);
}
.mini-list .icon { font-size: 1rem; width: 28px; text-align: center; }
.mini-list .label { flex: 1; }
.mini-badge {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
.badge-ok { background: rgba(40,201,64,0.15); color: #28c940; border: 1px solid rgba(40,201,64,0.3); }
.badge-warn { background: rgba(255,189,46,0.15); color: #ffbd2e; border: 1px solid rgba(255,189,46,0.3); }
.badge-alert { background: rgba(255,68,68,0.15); color: #ff4444; border: 1px solid rgba(255,68,68,0.3); }
.badge-info { background: rgba(0,212,255,0.12); color: var(--cyan); border: 1px solid rgba(0,212,255,0.25); }

/* ─── STATS STRIP ────────────────────────────────────────── */
.stats-strip {
    background: var(--navy2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 36px 0;
}
.stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
}
.stats-strip-item {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid var(--border);
}
.stats-strip-item:last-child { border-right: none; }
.stats-num {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stats-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── PAIN POINTS ────────────────────────────────────────── */
.pain-section { padding: 100px 0; background: var(--navy2); }
.pain-card {
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    border: 1px solid rgba(255,68,68,0.15);
    background: rgba(255,68,68,0.04);
    transition: border-color 0.25s;
}
.pain-card:hover { border-color: rgba(255,68,68,0.3); }
.pain-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(255,68,68,0.1);
    border: 1px solid rgba(255,68,68,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-bottom: 16px;
}
.pain-title { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pain-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── FEATURES ───────────────────────────────────────────── */
.features-section { padding: 100px 0; }
.feat-card {
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feat-card:hover {
    border-color: rgba(0,212,255,0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.feat-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.feat-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-tag {
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--muted);
    letter-spacing: 0.03em;
}

/* Icon color themes */
.fi-blue   { background: rgba(26,108,255,0.15); color: #5595ff; border: 1px solid rgba(26,108,255,0.2); }
.fi-cyan   { background: rgba(0,212,255,0.12); color: var(--cyan); border: 1px solid rgba(0,212,255,0.2); }
.fi-green  { background: rgba(40,201,64,0.12); color: #4dd66a; border: 1px solid rgba(40,201,64,0.2); }
.fi-yellow { background: rgba(255,189,46,0.12); color: #ffca5a; border: 1px solid rgba(255,189,46,0.2); }
.fi-orange { background: rgba(255,120,60,0.12); color: #ff7a3d; border: 1px solid rgba(255,120,60,0.2); }
.fi-red    { background: rgba(255,68,68,0.12); color: #ff6b6b; border: 1px solid rgba(255,68,68,0.2); }
.fi-purple { background: rgba(160,92,255,0.12); color: #b87aff; border: 1px solid rgba(160,92,255,0.2); }
.fi-teal   { background: rgba(91,231,196,0.12); color: var(--accent); border: 1px solid rgba(91,231,196,0.2); }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-section { padding: 100px 0; background: var(--navy2); }
.step-card {
    position: relative;
    border-radius: 16px;
    padding: 36px 28px;
    height: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border);
}
.step-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 16px; right: 24px;
    font-family: 'JetBrains Mono', monospace;
}
.step-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(26,108,255,0.2) 0%, rgba(0,212,255,0.15) 100%);
    border: 1px solid rgba(0,212,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 20px;
}
.step-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── PROFILES ───────────────────────────────────────────── */
.profiles-section { padding: 100px 0; }
.profile-card {
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    border: 1px solid var(--border);
    background: var(--card-bg);
    transition: all 0.3s ease;
}
.profile-card:hover {
    border-color: rgba(0,212,255,0.2);
    transform: translateY(-3px);
}
.profile-avatar {
    width: 64px; height: 64px;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.profile-name { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.profile-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.profile-perks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.profile-perks li {
    font-size: 0.82rem;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.profile-perks li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* ─── DIFFERENTIALS ──────────────────────────────────────── */
.diff-section { padding: 100px 0; background: var(--navy2); }
.diff-row { display: flex; flex-direction: column; gap: 16px; }
.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}
.diff-item:hover {
    border-color: rgba(0,212,255,0.2);
    background: rgba(0,212,255,0.04);
}
.diff-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.diff-content .diff-title { font-size: 0.93rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.diff-content .diff-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { padding: 100px 0; }
.testimonial-card {
    border-radius: 20px;
    padding: 32px 28px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: -10px; left: 20px;
    font-size: 8rem;
    color: rgba(0,212,255,0.08);
    font-family: Georgia, serif;
    line-height: 1;
}
.test-stars { color: #ffca5a; font-size: 0.9rem; margin-bottom: 16px; }
.test-quote { font-size: 0.93rem; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; position: relative; z-index: 1; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a6cff, #00d4ff);
    color: #fff;
    flex-shrink: 0;
}
.test-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.test-role { font-size: 0.78rem; color: var(--muted); }

/* ─── CTA FINAL ──────────────────────────────────────────── */
.cta-final { padding: 100px 0; background: var(--navy3); }
.cta-box {
    border-radius: 24px;
    padding: 64px 48px;
    background: linear-gradient(135deg, rgba(26,108,255,0.12) 0%, rgba(0,212,255,0.06) 100%);
    border: 1px solid rgba(0,212,255,0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    bottom: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-box-headline { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-box-sub { font-size: 1rem; color: var(--muted); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-box-note { font-size: 0.78rem; color: rgba(214,228,255,0.35); margin-top: 20px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.vc-footer {
    background: var(--navy);
    border-top: 1px solid var(--border);
    padding: 40px 0 28px;
}
.footer-brand { font-size: 1.1rem; font-weight: 800; color: #fff; }
.footer-tagline { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.footer-copy { font-size: 0.78rem; color: rgba(214,228,255,0.3); }
.footer-link { color: var(--muted); font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--cyan); }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up 0.65s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 767px) {
    .hero-section { padding: 110px 0 60px; }
    .stats-strip-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stats-strip-item:last-child { border-bottom: none; }
    .cta-box { padding: 40px 24px; }
    .hero-cta-group { flex-direction: column; }
    .btn-cta, .btn-outline-light-vc { width: 100%; justify-content: center; }
}
@media (max-width: 991px) {
    .vc-nav-links .btn-outline-light-vc { padding: 10px 12px; }
    .vc-nav-links .btn-outline-light-vc .vc-nav-label { display: none; }
}
