@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* === RESET & BASE === */
:root {
    --vc-bg: #06080f;
    --vc-bg-card: #0c0f1a;
    --vc-bg-elevated: #111528;
    --vc-border: rgba(255, 255, 255, 0.06);
    --vc-border-hover: rgba(255, 255, 255, 0.12);
    --vc-text: #e2e4ed;
    --vc-text-dim: #6b7194;
    --vc-text-muted: #3d4263;
    --vc-red: #ff4757;
    --vc-red-bg: rgba(255, 71, 87, 0.08);
    --vc-red-border: rgba(255, 71, 87, 0.2);
    --vc-orange: #ff9f43;
    --vc-yellow: #feca57;
    --vc-green: #2ed573;
    --vc-green-bg: rgba(46, 213, 115, 0.08);
    --vc-green-border: rgba(46, 213, 115, 0.2);
    --vc-cyan: #70a1ff;
    --vc-purple: #7c6cf0;
    --vc-purple-glow: rgba(124, 108, 240, 0.15);
    --vc-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --vc-font-display: 'Space Grotesk', var(--vc-font);
    --vc-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --vc-radius: 12px;
    --vc-radius-lg: 20px;
}

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

body {
    font-family: var(--vc-font);
    background: var(--vc-bg);
    color: var(--vc-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.vc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === HEADER === */
.vc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(6, 8, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--vc-border);
}

.vc-header .vc-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vc-logo img { display: block; }

.vc-header-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vc-purple);
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(124, 108, 240, 0.3);
    border-radius: 8px;
    transition: all 0.2s;
}

.vc-header-cta:hover {
    background: var(--vc-purple-glow);
    border-color: rgba(124, 108, 240, 0.5);
}

/* === HERO === */
.vc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.vc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 71, 87, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 50% 110%, rgba(124, 108, 240, 0.08), transparent);
    pointer-events: none;
}

.vc-badge {
    display: inline-block;
    font-family: var(--vc-font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--vc-red);
    background: var(--vc-red-bg);
    border: 1px solid var(--vc-red-border);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.vc-hero-title {
    font-family: var(--vc-font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.vc-amount-reveal {
    background: linear-gradient(135deg, var(--vc-red), #ff6b81);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vc-subtle {
    font-size: 0.55em;
    color: var(--vc-text-dim);
    font-weight: 400;
    display: block;
    margin-top: 0.3em;
}

.vc-hero-sub {
    font-size: 1.15rem;
    color: var(--vc-text-dim);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.vc-hero-sub strong {
    color: var(--vc-text);
}

.vc-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--vc-text-muted);
    font-size: 0.85rem;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* === SECTION COMMON === */
.vc-section-title {
    font-family: var(--vc-font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.vc-section-sub {
    text-align: center;
    color: var(--vc-text-dim);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.vc-section-sub strong {
    color: var(--vc-text);
}

/* === STORY TIMELINE === */
.vc-story {
    padding: 6rem 0;
    background: var(--vc-bg);
}

.vc-timeline {
    position: relative;
    padding-left: 3.5rem;
}

.vc-timeline::before {
    content: '';
    position: absolute;
    left: 1.2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--vc-border), var(--vc-red-border), var(--vc-red-border), var(--vc-border));
}

.vc-timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.vc-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.vc-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.vc-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.vc-timeline-item:nth-child(4) { animation-delay: 0.4s; }
.vc-timeline-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.vc-timeline-marker {
    position: absolute;
    left: -3.2rem;
    top: 0;
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vc-bg-card);
    border: 2px solid var(--vc-border);
    border-radius: 50%;
    z-index: 1;
}

.vc-timeline-danger .vc-timeline-marker {
    border-color: var(--vc-red-border);
    background: var(--vc-red-bg);
}

.vc-timeline-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.vc-timeline-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--vc-text-dim);
}

.vc-timeline-danger .vc-timeline-icon svg {
    stroke: var(--vc-red);
}

.vc-timeline-content {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 1.75rem;
}

.vc-timeline-danger .vc-timeline-content {
    border-color: var(--vc-red-border);
}

.vc-timeline-date {
    font-family: var(--vc-font-mono);
    font-size: 0.75rem;
    color: var(--vc-text-dim);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.vc-timeline-content h3 {
    font-family: var(--vc-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.vc-timeline-content p {
    color: var(--vc-text-dim);
    line-height: 1.7;
}

.vc-narrator {
    margin-top: 1rem;
    color: var(--vc-text-muted) !important;
    font-size: 0.9rem;
}

/* Code block */
.vc-code-block {
    margin: 1.25rem 0;
    border-radius: var(--vc-radius);
    overflow: hidden;
    border: 1px solid var(--vc-border);
    background: #0a0d18;
}

.vc-code-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--vc-border);
}

.vc-code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.vc-code-dot.red { background: #ff5f57; }
.vc-code-dot.yellow { background: #febc2e; }
.vc-code-dot.green { background: #28c840; }

.vc-code-file {
    margin-left: auto;
    font-family: var(--vc-font-mono);
    font-size: 0.75rem;
    color: var(--vc-text-muted);
}

.vc-code-block pre {
    padding: 1rem;
    overflow-x: auto;
    font-size: 0.82rem;
    line-height: 1.7;
}

.vc-code-block code {
    font-family: var(--vc-font-mono);
}

.vc-comment { color: #4a5276; }
.vc-keyword { color: #c792ea; }
.vc-string { color: #ff5370; }

/* Metrics row */
.vc-metric-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
}

.vc-metric {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.vc-metric-value {
    font-family: var(--vc-font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--vc-text);
}

.vc-metric-label {
    font-size: 0.75rem;
    color: var(--vc-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Attack chain */
.vc-attack-chain {
    margin: 1.25rem 0;
    padding: 1rem;
    background: rgba(255, 71, 87, 0.04);
    border: 1px solid var(--vc-red-border);
    border-radius: var(--vc-radius);
}

.vc-attack-step {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    padding: 0.4rem 0;
}

.vc-attack-time {
    font-family: var(--vc-font-mono);
    font-size: 0.78rem;
    color: var(--vc-red);
    white-space: nowrap;
    min-width: 5rem;
    font-weight: 600;
}

.vc-attack-desc {
    font-size: 0.9rem;
    color: var(--vc-text-dim);
}

.vc-attack-arrow {
    color: var(--vc-red);
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
    padding: 0.15rem 0;
}

/* Damage grid */
.vc-damage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.vc-damage-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255, 71, 87, 0.04);
    border: 1px solid var(--vc-red-border);
    border-radius: var(--vc-radius);
}

.vc-damage-amount {
    font-family: var(--vc-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vc-red);
}

.vc-damage-desc {
    font-size: 0.8rem;
    color: var(--vc-text-dim);
    line-height: 1.4;
}

.vc-damage-total {
    grid-column: 1 / -1;
    background: rgba(255, 71, 87, 0.08);
    border-color: rgba(255, 71, 87, 0.35);
    text-align: center;
    padding: 1.25rem;
}

.vc-damage-total .vc-damage-amount {
    font-size: 2rem;
}

/* === PREVENTION / SCAN DEMO === */
.vc-prevention {
    padding: 6rem 0;
    background: var(--vc-bg-card);
    border-top: 1px solid var(--vc-border);
    border-bottom: 1px solid var(--vc-border);
}

.vc-terminal {
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--vc-border);
    background: #0a0d18;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.vc-terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--vc-border);
}

.vc-terminal-title {
    margin-left: auto;
    font-family: var(--vc-font-mono);
    font-size: 0.75rem;
    color: var(--vc-text-muted);
}

.vc-terminal-body {
    padding: 1.25rem;
    min-height: 400px;
    font-family: var(--vc-font-mono);
    font-size: 0.82rem;
    line-height: 1.8;
}

.vc-scan-line {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.vc-scan-line.visible {
    opacity: 1;
    transform: translateX(0);
}

.vc-t-gray { color: var(--vc-text-muted); }
.vc-t-red { color: var(--vc-red); font-weight: 700; }
.vc-t-orange { color: var(--vc-orange); font-weight: 700; }
.vc-t-yellow { color: var(--vc-yellow); }
.vc-t-green { color: var(--vc-green); font-weight: 600; }
.vc-t-cyan { color: var(--vc-cyan); }
.vc-t-white { color: var(--vc-text); font-weight: 600; }

.vc-scan-summary {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--vc-border);
}

.vc-scan-verdict {
    margin-top: 2rem;
    text-align: center;
}

.vc-verdict-badge {
    display: inline-block;
    font-family: var(--vc-font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--vc-green);
    background: var(--vc-green-bg);
    border: 1px solid var(--vc-green-border);
    padding: 0.75rem 1.5rem;
    border-radius: var(--vc-radius);
    margin-bottom: 1rem;
}

.vc-scan-verdict p {
    color: var(--vc-text-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* === COMPARISON === */
.vc-comparison {
    padding: 6rem 0;
    background: var(--vc-bg);
}

.vc-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vc-compare-card {
    border-radius: var(--vc-radius-lg);
    padding: 2rem;
    border: 1px solid var(--vc-border);
}

.vc-compare-bad {
    background: var(--vc-red-bg);
    border-color: var(--vc-red-border);
}

.vc-compare-good {
    background: var(--vc-green-bg);
    border-color: var(--vc-green-border);
}

.vc-compare-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.vc-compare-icon {
    font-size: 1.5rem;
}

.vc-compare-header h3 {
    font-family: var(--vc-font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

.vc-compare-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.vc-compare-list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--vc-text-dim);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--vc-border);
}

.vc-x {
    color: var(--vc-red);
    font-weight: 700;
    font-size: 1.1rem;
}

.vc-check {
    color: var(--vc-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.vc-compare-cost {
    text-align: center;
    padding-top: 1rem;
}

.vc-compare-price {
    display: block;
    font-family: var(--vc-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vc-red);
    line-height: 1.2;
}

.vc-price-good {
    color: var(--vc-green) !important;
}

.vc-compare-label {
    font-size: 0.8rem;
    color: var(--vc-text-dim);
}

/* === LIVE DEMO SECTION === */
.vc-live-demo {
    padding: 6rem 0;
    background: var(--vc-bg);
    border-top: 1px solid var(--vc-border);
}

.vc-demo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.vc-demo-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.75rem;
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.vc-demo-card:hover {
    border-color: var(--vc-border-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vc-demo-card-danger {
    border-color: var(--vc-red-border);
}

.vc-demo-card-danger:hover {
    border-color: rgba(255, 71, 87, 0.4);
}

.vc-demo-card-good {
    border-color: var(--vc-green-border);
}

.vc-demo-card-good:hover {
    border-color: rgba(46, 213, 115, 0.4);
}

.vc-demo-card-icon {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--vc-purple);
    line-height: 1;
}

.vc-demo-card-icon svg {
    display: block;
}

.vc-demo-card-danger .vc-demo-card-icon {
    color: var(--vc-red);
}

.vc-demo-card-good .vc-demo-card-icon {
    color: var(--vc-green);
}

.vc-demo-card h3 {
    font-family: var(--vc-font-display);
    font-size: 1.1rem;
    font-weight: 600;
}

.vc-demo-card p {
    font-size: 0.88rem;
    color: var(--vc-text-dim);
    line-height: 1.6;
    flex: 1;
}

.vc-demo-card-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vc-purple);
    margin-top: 0.5rem;
}

.vc-demo-card-danger .vc-demo-card-cta { color: var(--vc-red); }
.vc-demo-card-good .vc-demo-card-cta { color: var(--vc-green); }

.vc-demo-try-it {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 2rem;
}

.vc-demo-try-it h3 {
    font-family: var(--vc-font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vc-demo-try-it > p {
    color: var(--vc-text-dim);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .vc-demo-cards {
        grid-template-columns: 1fr;
    }
}

/* === CALCULATOR === */
.vc-calculator {
    padding: 6rem 0;
    background: var(--vc-bg-card);
    border-top: 1px solid var(--vc-border);
    border-bottom: 1px solid var(--vc-border);
}

.vc-calc-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--vc-bg-elevated);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 2rem;
}

.vc-calc-questions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.vc-calc-q {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: var(--vc-radius);
    border: 1px solid var(--vc-border);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.92rem;
    color: var(--vc-text-dim);
}

.vc-calc-q:hover {
    border-color: var(--vc-border-hover);
    background: rgba(255, 255, 255, 0.02);
}

.vc-calc-q input {
    display: none;
}

.vc-calc-checkbox {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--vc-text-muted);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vc-calc-q input:checked ~ .vc-calc-checkbox {
    background: var(--vc-red);
    border-color: var(--vc-red);
}

.vc-calc-q input:checked ~ .vc-calc-checkbox::after {
    content: '\2713';
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
}

.vc-calc-q input:checked ~ span:last-child {
    color: var(--vc-text);
}

.vc-calc-result {
    border-top: 1px solid var(--vc-border);
    padding-top: 1.5rem;
}

.vc-calc-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.vc-calc-total-label {
    font-size: 0.9rem;
    color: var(--vc-text-dim);
}

.vc-calc-total-amount {
    font-family: var(--vc-font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vc-text-muted);
    transition: color 0.3s;
}

.vc-calc-total-amount.has-risk {
    color: var(--vc-red);
}

.vc-calc-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.vc-calc-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    background: var(--vc-red-bg);
    border: 1px solid var(--vc-red-border);
    color: var(--vc-red);
}

.vc-calc-verdict {
    padding: 1rem;
    border-radius: var(--vc-radius);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--vc-border);
}

.vc-calc-verdict p {
    color: var(--vc-text-dim);
    font-size: 0.9rem;
    margin: 0;
}

.vc-calc-verdict .vc-verdict-critical p {
    color: var(--vc-red);
}

/* === INCIDENTS === */
.vc-incidents {
    padding: 6rem 0;
    background: var(--vc-bg);
}

.vc-incident-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.vc-incident-card {
    background: var(--vc-bg-card);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.vc-incident-card:hover {
    border-color: var(--vc-border-hover);
}

.vc-incident-amount {
    font-family: var(--vc-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--vc-red);
    margin-bottom: 0.25rem;
}

.vc-incident-type {
    font-family: var(--vc-font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vc-orange);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.vc-incident-card p {
    font-size: 0.9rem;
    color: var(--vc-text-dim);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.vc-incident-source {
    font-size: 0.75rem;
    color: var(--vc-text-muted);
}

/* === HOW IT WORKS === */
.vc-how-it-works {
    padding: 6rem 0;
    background: var(--vc-bg-card);
    border-top: 1px solid var(--vc-border);
    border-bottom: 1px solid var(--vc-border);
}

.vc-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.vc-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 1.5rem;
}

.vc-step-num {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--vc-font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--vc-purple);
    background: var(--vc-purple-glow);
    border: 1px solid rgba(124, 108, 240, 0.3);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.vc-step h3 {
    font-family: var(--vc-font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vc-step p {
    font-size: 0.9rem;
    color: var(--vc-text-dim);
    line-height: 1.6;
}

.vc-step-arrow {
    font-size: 1.5rem;
    color: var(--vc-text-muted);
    margin-top: 2.5rem;
}

/* === CTA === */
.vc-cta {
    padding: 6rem 0;
    background: var(--vc-bg);
}

.vc-cta-card {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(124, 108, 240, 0.08), rgba(255, 71, 87, 0.05));
    border: 1px solid rgba(124, 108, 240, 0.2);
    border-radius: var(--vc-radius-lg);
}

.vc-cta-card h2 {
    font-family: var(--vc-font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.vc-cta-card > p {
    color: var(--vc-text-dim);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.vc-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.vc-btn-primary {
    display: inline-block;
    font-family: var(--vc-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--vc-purple), #6a5bd6);
    padding: 0.85rem 2rem;
    border-radius: var(--vc-radius);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(124, 108, 240, 0.3);
}

.vc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 108, 240, 0.4);
}

.vc-btn-secondary {
    display: inline-block;
    font-family: var(--vc-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vc-text);
    background: transparent;
    padding: 0.85rem 2rem;
    border-radius: var(--vc-radius);
    border: 1px solid var(--vc-border);
    text-decoration: none;
    transition: all 0.2s;
}

.vc-btn-secondary:hover {
    border-color: var(--vc-border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.vc-cta-note {
    font-size: 0.8rem;
    color: var(--vc-text-muted);
}

/* === FOOTER === */
.vc-footer {
    padding: 2rem 0;
    border-top: 1px solid var(--vc-border);
}

.vc-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.vc-footer-logo img { display: block; opacity: 0.6; }

.vc-footer-text {
    font-size: 0.8rem;
    color: var(--vc-text-muted);
}

.vc-footer-links {
    display: flex;
    gap: 1.5rem;
}

.vc-footer-links a {
    font-size: 0.8rem;
    color: var(--vc-text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.vc-footer-links a:hover {
    color: var(--vc-text);
}

/* === VIBEMONEYPRO24 SECTION === */
.vc-vibemoney {
    padding: 6rem 0;
    background: var(--vc-bg-card);
    border-top: 1px solid var(--vc-border);
    border-bottom: 1px solid var(--vc-border);
}

.vc-vibemoney-quote {
    display: flex;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--vc-bg-elevated);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.vc-vq-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vc-orange), var(--vc-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #fff;
}

.vc-vq-name {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.vc-vq-handle {
    font-weight: 400;
    color: var(--vc-text-dim);
    font-size: 0.88rem;
}

.vc-vq-content p {
    color: var(--vc-text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.vc-vq-date {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--vc-text-muted);
}

.vc-reviews-title,
.vc-audit-title {
    font-family: var(--vc-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.vc-review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.vc-review-card {
    background: var(--vc-bg-elevated);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.vc-review-card:hover {
    border-color: var(--vc-border-hover);
}

.vc-review-stars {
    color: var(--vc-yellow);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.vc-review-card p {
    font-size: 0.9rem;
    color: var(--vc-text-dim);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.vc-review-author {
    font-size: 0.78rem;
    color: var(--vc-text-muted);
}

.vc-vibemoney-audit {
    max-width: 700px;
    margin: 0 auto;
}

.vc-audit-card {
    background: var(--vc-bg-elevated);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
}

.vc-audit-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--vc-border);
}

.vc-audit-badge {
    font-family: var(--vc-font-mono);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--vc-green);
    background: var(--vc-green-bg);
    border: 1px solid var(--vc-green-border);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
}

.vc-audit-firm {
    font-size: 0.82rem;
    color: var(--vc-text-dim);
    font-style: italic;
}

.vc-audit-findings {
    padding: 0.5rem 0;
}

.vc-audit-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.7rem 1.5rem;
    border-bottom: 1px solid var(--vc-border);
    font-size: 0.88rem;
}

.vc-audit-label {
    color: var(--vc-text-dim);
    font-weight: 500;
}

.vc-audit-value {
    color: var(--vc-text);
    text-align: right;
    font-family: var(--vc-font-mono);
    font-size: 0.82rem;
}

.vc-audit-footnote {
    padding: 1rem 1.5rem;
    font-size: 0.75rem;
    color: var(--vc-text-muted);
    font-style: italic;
    text-align: center;
    border-top: 1px solid var(--vc-border);
}

/* === LIVE TEST RUNNER === */
.vc-live-test-runner {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vc-btn-run-tests {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--vc-font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--vc-green), #1db954);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--vc-radius);
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(46, 213, 115, 0.3);
}

.vc-btn-run-tests:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(46, 213, 115, 0.4);
}

.vc-btn-run-tests:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.vc-btn-run-tests svg {
    flex-shrink: 0;
}

.vc-test-hint {
    font-size: 0.82rem;
    color: var(--vc-text-muted);
}

.vc-test-btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: vc-spin 0.6s linear infinite;
}

@keyframes vc-spin {
    to { transform: rotate(360deg); }
}

.vc-test-results {
    background: var(--vc-bg-elevated);
    border: 1px solid var(--vc-border);
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.vc-test-results-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--vc-border);
    font-family: var(--vc-font-mono);
    font-size: 0.85rem;
    color: var(--vc-text);
}

.vc-test-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid var(--vc-text-muted);
    border-top-color: var(--vc-purple);
    border-radius: 50%;
    animation: vc-spin 0.6s linear infinite;
}

.vc-test-results-body {
    max-height: 450px;
    overflow-y: auto;
    padding: 0.5rem 0;
}

.vc-test-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    animation: vc-row-in 0.3s ease both;
}

@keyframes vc-row-in {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.vc-test-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    font-weight: 700;
}

.vc-test-fail { color: var(--vc-red); }
.vc-test-pass { color: var(--vc-green); }
.vc-test-skip { color: var(--vc-text-muted); }

.vc-test-sev {
    flex-shrink: 0;
    font-family: var(--vc-font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    min-width: 65px;
    text-align: center;
}

.vc-sev-critical {
    color: var(--vc-red);
    background: var(--vc-red-bg);
    border: 1px solid var(--vc-red-border);
}

.vc-sev-high {
    color: var(--vc-orange);
    background: rgba(255, 159, 67, 0.08);
    border: 1px solid rgba(255, 159, 67, 0.2);
}

.vc-sev-medium {
    color: var(--vc-yellow);
    background: rgba(254, 202, 87, 0.08);
    border: 1px solid rgba(254, 202, 87, 0.2);
}

.vc-test-title {
    flex: 1;
    color: var(--vc-text-dim);
}

.vc-test-duration {
    flex-shrink: 0;
    font-family: var(--vc-font-mono);
    font-size: 0.75rem;
    color: var(--vc-text-muted);
    min-width: 55px;
    text-align: right;
}

.vc-test-results-summary {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--vc-border);
    background: rgba(255, 255, 255, 0.01);
}

.vc-test-summary-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.vc-test-stat {
    font-family: var(--vc-font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vc-text-dim);
}

.vc-test-stat-fail { color: var(--vc-red); }
.vc-test-stat-pass { color: var(--vc-green); }
.vc-test-stat-skip { color: var(--vc-text-muted); }

.vc-test-summary-msg {
    font-size: 0.88rem;
    color: var(--vc-text-dim);
    margin: 0;
    line-height: 1.6;
}

.vc-test-error {
    padding: 1rem 1.5rem;
    color: var(--vc-red);
    font-family: var(--vc-font-mono);
    font-size: 0.85rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .vc-damage-grid {
        grid-template-columns: 1fr;
    }

    .vc-compare-grid {
        grid-template-columns: 1fr;
    }

    .vc-steps {
        flex-direction: column;
        align-items: center;
    }

    .vc-step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .vc-metric-row {
        flex-wrap: wrap;
    }

    .vc-timeline {
        padding-left: 2.5rem;
    }

    .vc-timeline-marker {
        left: -2.5rem;
        width: 2.2rem;
        height: 2.2rem;
    }

    .vc-timeline-icon svg {
        width: 13px;
        height: 13px;
    }

    .vc-timeline::before {
        left: 0.8rem;
    }

    .vc-footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .vc-calc-total {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .vc-attack-step {
        flex-direction: column;
        gap: 0.25rem;
    }

    .vc-attack-time {
        min-width: auto;
    }

    .vc-review-grid {
        grid-template-columns: 1fr;
    }

    .vc-vibemoney-quote {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vc-audit-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .vc-audit-value {
        text-align: left;
    }
}
