:root {
    --deep-navy: #090040;
    --purple: #471396;
    --magenta: #B13BFF;
    --black: #030014;
    --white: #FFFFFF;
    --gray-50: #FAFAFF;
    --gray-100: #E8E8F2;
    --gray-200: #C8C8D8;
    --gray-300: #9898B0;
    --gray-400: #686888;
    --gray-500: #484868;
    --danger: #FF3B5C;
    --success: #00D4AA;
}

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

::selection {
    background: var(--magenta);
    color: var(--white);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--magenta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--magenta);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--magenta));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    padding: 14px 48px;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(177, 59, 255, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: white;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-logo-mark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
    animation: shine 3s ease-in-out infinite;
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

.nav-logo-text {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
    white-space: nowrap;
    color: var(--white);
}

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

.nav-link {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--magenta);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--white);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    margin-left: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(177, 59, 255, 0.3);
}

/* Responsive nav for medium screens */
@media (max-width: 1100px) {
    .nav {
        padding: 16px 32px;
    }

    .nav-links {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 160px 60px 120px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 100% at 50% -20%, rgba(71, 19, 150, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 80% 50%, rgba(177, 59, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(71, 19, 150, 0.2) 0%, transparent 50%);
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(177, 59, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(177, 59, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(177, 59, 255, 0.1);
    border: 1px solid rgba(177, 59, 255, 0.2);
    padding: 10px 20px;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--magenta);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(0, 212, 170, 0); }
}

.hero-title {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 50%, var(--magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-300);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--white);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--magenta);
    background: rgba(177, 59, 255, 0.1);
}

.hero-proof {
    display: flex;
    justify-content: center;
    gap: 60px;
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
}

.hero-proof-item {
    text-align: center;
}

.hero-proof-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--magenta);
    margin-bottom: 4px;
}

.hero-proof-label {
    font-size: 12px;
    color: var(--gray-400);
}

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

/* Stakes Section */
.stakes {
    padding: 160px 60px;
    position: relative;
    background: linear-gradient(180deg, var(--black) 0%, var(--deep-navy) 100%);
}

.stakes-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--danger);
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
}

.fines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.fine-card {
    background: rgba(255, 59, 92, 0.03);
    border: 1px solid rgba(255, 59, 92, 0.15);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--danger), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fine-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 59, 92, 0.4);
    box-shadow: 0 30px 80px rgba(255, 59, 92, 0.1);
}

.fine-card:hover::before {
    opacity: 1;
}

.fine-company {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.fine-logo {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.fine-name {
    font-weight: 700;
    font-size: 18px;
}

.fine-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 42px;
    font-weight: 700;
    color: var(--danger);
    margin-bottom: 8px;
    line-height: 1;
}

.fine-amount .currency {
    font-size: 24px;
    opacity: 0.7;
}

.fine-reason {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.fine-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray-500);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    display: inline-block;
}

.stakes-total {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: rgba(255, 59, 92, 0.05);
    border: 1px solid rgba(255, 59, 92, 0.1);
    border-radius: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stakes-total-label {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.stakes-total-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--danger);
    line-height: 1;
    margin-bottom: 16px;
}

.stakes-total-context {
    font-size: 16px;
    color: var(--gray-300);
}

/* Solution Section */
.solution {
    padding: 160px 60px;
    background: var(--deep-navy);
    position: relative;
    overflow: hidden;
}

.solution-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(177, 59, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.solution-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

.solution-header .section-label {
    color: var(--success);
}

.solution-visual {
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 80px;
}

.solution-step {
    padding: 48px 40px;
    text-align: center;
    position: relative;
}

.solution-step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 24px;
    position: relative;
}

.solution-step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    border-radius: 20px;
    opacity: 0.3;
    filter: blur(8px);
}

.solution-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.solution-step p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

.solution-divider {
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--magenta), transparent);
    position: relative;
}

.solution-divider::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--deep-navy);
    padding: 8px;
    color: var(--magenta);
    font-size: 16px;
}

/* Protocol Box */
.protocol-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(177, 59, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.protocol-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(177, 59, 255, 0.1);
}

.protocol-dots {
    display: flex;
    gap: 8px;
}

.protocol-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.protocol-dot.red { background: #FF5F57; }
.protocol-dot.yellow { background: #FFBD2E; }
.protocol-dot.green { background: #28CA41; }

.protocol-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--gray-400);
    margin-left: 8px;
}

.protocol-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 2;
}

.protocol-line {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.protocol-line-number {
    color: var(--gray-500);
    min-width: 24px;
    text-align: right;
    user-select: none;
}

.protocol-comment { color: var(--gray-500); }
.protocol-keyword { color: var(--magenta); }
.protocol-string { color: var(--success); }
.protocol-property { color: #60A5FA; }
.protocol-value { color: #FBBF24; }

/* Features Grid */
.features {
    padding: 160px 60px;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--black) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    background: rgba(177, 59, 255, 0.05);
    border-color: rgba(177, 59, 255, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(71, 19, 150, 0.3), rgba(177, 59, 255, 0.2));
    border: 1px solid rgba(177, 59, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* Founder Section */
.founder {
    padding: 160px 60px;
    background: var(--black);
    position: relative;
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image-frame {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    border-radius: 24px;
    padding: 3px;
}

.founder-image-inner {
    width: 100%;
    height: 100%;
    background: var(--deep-navy);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--gray-400);
    overflow: hidden;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--white);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.founder-badge-flag {
    font-size: 16px;
}

.founder-text .section-label {
    color: var(--magenta);
    margin-bottom: 16px;
}

.founder-name {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.founder-role {
    font-size: 16px;
    color: var(--magenta);
    margin-bottom: 24px;
}

.founder-bio {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 32px;
}

.founder-links {
    display: flex;
    gap: 12px;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.founder-link:hover {
    background: rgba(177, 59, 255, 0.1);
    border-color: var(--magenta);
}

/* CTA Section */
.cta {
    padding: 200px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(71, 19, 150, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(177, 59, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 48px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

.cta-trust-icon {
    color: var(--success);
}

/* Footer */
.footer {
    padding: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--black);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-info {
    font-size: 14px;
    color: var(--gray-400);
}

.footer-info strong {
    color: var(--white);
    font-weight: 600;
}

.footer-info a {
    color: var(--magenta);
    text-decoration: none;
}

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

.footer-link {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--magenta);
}

.footer-location {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--gray-500);
    text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
    .fines-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-visual {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solution-divider {
        display: none;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .founder-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 14px 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-logo-text {
        font-size: 20px;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .hero-proof {
        flex-direction: column;
        gap: 24px;
    }

    .stakes,
    .solution,
    .features,
    .founder,
    .cta {
        padding: 100px 24px;
    }

    .fines-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas,
    .cta-buttons {
        flex-direction: column;
    }

    .cta-trust {
        flex-direction: column;
        gap: 16px;
    }

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

    .footer-location {
        text-align: center;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }
}
/* VHH Explainer Styles - Add to styles.css */

.vhh-explainer {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0a0a0f 0%, #0d0d1a 50%, #0a0a0f 100%);
}

.vhh-container {
    max-width: 900px;
    margin: 0 auto;
}

.vhh-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Start Screen */
.vhh-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.vhh-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.vhh-play-btn:hover {
    background: rgba(124, 58, 237, 0.3);
    transform: scale(1.05);
}

.vhh-play-btn svg {
    fill: #a78bfa;
    margin-left: 4px;
}

.vhh-start-text {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Progress Dots */
.vhh-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.vhh-dot {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: #374151;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease;
}

.vhh-dot:hover {
    background: #4b5563;
}

.vhh-dot.active {
    width: 32px;
    background: #7c3aed;
}

.vhh-dot.passed {
    background: #5b21b6;
}

/* Stage */
.vhh-stage {
    background: rgba(15, 15, 30, 0.5);
    border: 1px solid #1e1e3f;
    border-radius: 1rem;
    padding: 2rem;
    min-height: 280px;
    margin-bottom: 1.5rem;
}

.vhh-step {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 240px;
    animation: vhhFadeIn 0.5s ease-out;
}

.vhh-step.active {
    display: flex;
}

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

/* Terminal */
.vhh-terminal {
    background: #1e1e2e;
    border: 1px solid #2d2d3f;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
}

.vhh-terminal-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 0.75rem;
}

.vhh-terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.vhh-terminal-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #d1d5db;
}

.vhh-prompt {
    color: #6b7280;
}

.vhh-pii {
    color: #f87171;
    font-weight: 600;
}

.vhh-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f87171;
    font-size: 0.8rem;
    animation: vhhPulse 2s infinite;
}

@keyframes vhhPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Docker/Vault Box */
.vhh-docker-box {
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid #06b6d4;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.vhh-docker-label {
    color: #06b6d4;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.vhh-vault-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.vhh-icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vhh-icon-box span {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    animation: vhhPulse 2s infinite;
}

.vhh-key-box span {
    background: rgba(234, 179, 8, 0.2);
    border: 1px solid #eab308;
}

.vhh-vault-box span {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
}

.vhh-icon-box p {
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

.vhh-key-box p { color: #eab308; }
.vhh-vault-box p { color: #22c55e; }

.vhh-arrow {
    color: #6b7280;
    font-size: 1.25rem;
}

.vhh-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: #22c55e;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Flow Row */
.vhh-flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.vhh-node {
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    min-width: 100px;
}

.vhh-node-cyan {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid #06b6d4;
}

.vhh-node-purple {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid #7c3aed;
}

.vhh-node-gray {
    background: #1e1e2e;
    border: 1px solid #4b5563;
}

.vhh-node-title {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.vhh-node-cyan .vhh-node-title { color: #06b6d4; }
.vhh-node-purple .vhh-node-title { color: #7c3aed; }

.vhh-node-icons {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.25rem 0;
}

.vhh-node-icons span {
    font-size: 1rem;
}

.vhh-node-sub {
    font-size: 0.7rem;
    color: #9ca3af;
}

.vhh-token-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vhh-tokens {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    animation: vhhBounce 1s infinite;
}

@keyframes vhhBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.vhh-token {
    background: #7c3aed;
    color: white;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.vhh-arrow-purple {
    color: #a78bfa;
    font-size: 0.9rem;
}

.vhh-caption {
    color: #9ca3af;
    font-size: 0.8rem;
    text-align: center;
}

.vhh-red {
    color: #f87171;
    font-weight: 700;
}

/* Sandbox Box */
.vhh-sandbox-box {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid #7c3aed;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.vhh-sandbox-label {
    color: #a78bfa;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.vhh-transform-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(30, 30, 60, 0.5);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
}

.vhh-token-text {
    color: #a78bfa;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.vhh-arrow-green {
    color: #22c55e;
}

.vhh-fake-text {
    color: #22c55e;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.vhh-fake-label {
    color: #6b7280;
    font-size: 0.65rem;
}

.vhh-success-text {
    color: #22c55e;
    font-size: 0.8rem;
    text-align: center;
}

/* AI Processing */
.vhh-node-small {
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.vhh-node-small p {
    font-size: 0.75rem;
    margin: 0;
}

.vhh-node-small.vhh-node-purple p { color: #a78bfa; }
.vhh-node-small.vhh-node-gray p { color: #9ca3af; }

.vhh-pulse {
    animation: vhhPulse 1s infinite;
}

.vhh-ai-sees {
    background: #1e1e2e;
    border: 1px solid #2d2d3f;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
}

.vhh-ai-label {
    color: #6b7280;
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
}

.vhh-ai-query {
    color: #22c55e;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.vhh-no-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.vhh-no {
    color: #f87171;
    font-size: 0.75rem;
}

/* Response Returns */
.vhh-return-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.7rem;
}

.vhh-return-node {
    background: #1e1e2e;
    border: 1px solid #4b5563;
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    color: #9ca3af;
}

.vhh-return-purple {
    background: rgba(124, 58, 237, 0.1);
    border-color: #7c3aed;
    color: #a78bfa;
}

.vhh-return-cyan {
    background: rgba(6, 182, 212, 0.1);
    border-color: #06b6d4;
    color: #06b6d4;
}

.vhh-return-arrow {
    color: #6b7280;
}

.vhh-unlock-box {
    background: rgba(6, 182, 212, 0.1);
    border: 2px solid #06b6d4;
    border-radius: 1rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vhh-unlock-arrow {
    color: #22c55e;
    font-size: 1.5rem;
    animation: vhhPulse 1s infinite;
}

.vhh-unlock-box-icon span {
    background: rgba(34, 197, 94, 0.3);
    border: 2px solid #22c55e;
}

/* Subpoena Grid */
.vhh-subpoena-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 500px;
}

.vhh-subpoena-card {
    background: #1e1e2e;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.vhh-subpoena-title {
    color: #f87171;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vhh-subpoena-response {
    color: #22c55e;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.vhh-subpoena-result {
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 700;
}

.vhh-immunity-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.vhh-immunity-sub {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Step Info */
.vhh-info {
    text-align: center;
    margin-bottom: 2rem;
}

.vhh-info-subtitle {
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 600;
}

.vhh-info-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0.25rem 0;
}

.vhh-info-desc {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* CTA */
.vhh-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e1e3f;
}

.vhh-cta p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
    .vhh-subpoena-grid {
        grid-template-columns: 1fr;
    }
    
    .vhh-flow-row {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .vhh-terminal-text {
        font-size: 0.75rem;
    }
    
    .vhh-transform-row {
        flex-wrap: wrap;
        font-size: 0.7rem;
    }
}
