:root {
    --bg-deep: #05070a;
    --bg-blur: rgba(10, 14, 26, 0.7);
    --accent-primary: #6366f1;
    --accent-secondary: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-glass: rgba(255, 255, 255, 0.08);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.2);
    --radius: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default; /* We will use the custom bot cursor for demo */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.glass {
    background: var(--bg-blur);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.4s ease;
}

.glass:hover::after {
    background: var(--accent-gradient);
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Ambient Background Blobs ─── */
.ambient-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background-color: var(--bg-deep);
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}
.blob-1 {
    width: 600px; height: 600px;
    background: rgba(99, 102, 241, 0.25);
    top: -100px; left: -100px;
}
.blob-2 {
    width: 500px; height: 500px;
    background: rgba(139, 92, 246, 0.25);
    bottom: -100px; right: 5%;
    animation-delay: -5s;
}
.blob-3 {
    width: 400px; height: 400px;
    background: rgba(217, 70, 239, 0.15);
    top: 30%; left: 30%;
    animation-delay: -10s;
}

.grain-overlay {
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: transparent;
    filter: url(#noiseFilter);
    opacity: 0.12;
    pointer-events: none;
    z-index: 1000;
    mix-blend-mode: soft-light;
}

.tech-grid {
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.9); }
}

/* ─── Reveal Animations ─── */
.reveal, [class*="reveal-delay-"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active, [class*="reveal-delay-"].active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.bot-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transition: transform 0.1s ease-out;
}

.bot-label {
    background: var(--accent-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    overflow: visible;
    position: relative;
    z-index: 10;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s ease;
}

.logo:hover .logo-text {
    opacity: 0.9;
}

.footer-brand .logo-text {
    font-size: 20px;
}



.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* ─── Hero ─── */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-ai {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
}

.hero p {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

/* Specific compact style for navbar */
.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-block {
    width: 100%;
}

.hero-live-example {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    line-height: 1.5;
}

.pulse-dot-green {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
    animation: sim-pulse 2s infinite;
}

.hero-visual {
    position: relative;
    z-index: 1;
    perspective: 1000px;
}

.hero-bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: auto;
    opacity: 0.4;
    z-index: -1;
    filter: blur(40px);
}

.browser-mockup {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
    transform: rotateY(-12deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

.browser-mockup:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.browser-header {
    background: rgba(255,255,255,0.05);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.address-bar {
    background: rgba(0,0,0,0.3);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 11px;
    color: var(--text-muted);
    flex: 1;
    font-family: var(--font-mono);
}

.browser-body {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    position: relative;
}

/* ─── Workflow Console Mockup ─── */
.workflow-console-sim {
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    overflow: hidden;
    font-family: var(--font-mono);
}

.console-sidebar {
    width: 60px;
    background: rgba(255,255,255,0.02);
    border-right: 1px solid var(--border-glass);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    gap: 15px;
}

.platform-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: white;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.whatsapp { background: #0077b5; }
.telegram { background: #000000; }
.salesforce { background: #4CAF50; }

.console-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.workflow-step {
    max-width: 90%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
}

.incoming {
    background: rgba(255,255,255,0.03);
    align-self: flex-start;
}

.outgoing {
    background: rgba(99, 102, 241, 0.05);
    align-self: flex-end;
    border: 1px solid rgba(99, 102, 241, 0.1);
    opacity: 0.1; /* Start dim for simulation */
    transition: opacity 0.5s, transform 0.3s;
}

.outgoing.active {
    opacity: 1;
    transform: scale(1.05);
}

.skeleton {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.line-1 { width: 100%; }
.line-2 { width: 80%; }
.line-3 { width: 40%; }

.btn-post-sim {
    background: var(--accent-primary);
    color: white;
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    opacity: 1;
    transition: transform 0.2s, opacity 0.2s, background 0.3s;
}

/* ─── No APIs Bypass Diagram ─── */
.bypass-visual {
    padding: 16px;
    align-items: center;
    justify-content: center;
}
.bypass-diagram {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bypass-row {
    display: flex;
    align-items: center;
    gap: 0;
}
.bypass-node {
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-mono);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.app-node {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    min-width: 52px;
    justify-content: center;
}
.blocked-server {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
    opacity: 0.6;
}
.success-server {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #10b981;
}
.x-icon { color: #ef4444; font-weight: 900; }
.check-icon { color: #10b981; font-weight: 900; }
.bypass-arrow {
    flex: 1;
    height: 2px;
    position: relative;
    margin: 0 8px;
    display: flex;
    align-items: center;
}
.blocked-arrow {
    background: rgba(239, 68, 68, 0.2);
}
.blocked-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    border-left: 8px solid rgba(239,68,68,0.4);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.success-arrow {
    background: rgba(99, 102, 241, 0.2);
    overflow: hidden;
}
.success-arrow::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    border-left: 8px solid var(--accent-primary);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.arrow-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-mono);
    white-space: nowrap;
}
.blocked-label { color: rgba(239,68,68,0.6); }
.success-label { color: var(--accent-primary); }
.flow-packet-h {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 8px var(--accent-primary);
    animation: packetSlide 1.8s linear infinite;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
@keyframes packetSlide {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}
.bypass-divider {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 0;
}
.bypass-divider::before, .bypass-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(99,102,241,0.2);
}

/* ─── Bento Support Badges (legacy, kept for reference) ─── */
.support-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
}

.platform-badge {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.simulation-status {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 11px;
    color: var(--accent-primary);
    font-family: var(--font-mono);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: sim-pulse 2s infinite;
}

@keyframes sim-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* ─── Features ─── */
.features {
    padding: 20px 0 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 60px;
}

.bento-card {
    padding: 32px;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card::after {
    border-radius: 32px; /* Fix the glass mask corner radius */
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.bento-span-2 { grid-column: span 2; }
.bento-tall { grid-row: span 2; }

/* ─── Bento Visual Embeds ─── */
.bento-visual {
    margin-bottom: 24px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 100%;
}

/* 1. Macro Studio Visual */
.studio-visual {
    display: flex;
    align-items: center;
    gap: 16px;
}
.macronode {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 24px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}
.macronode.active {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    animation: macropulse 2s infinite;
}
@keyframes macropulse {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.1); transform: scale(1); }
    50% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.4); transform: scale(1.05); }
}
.macrolink {
    width: 50px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    position: relative;
    border-radius: 2px;
}
.macrolink::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--accent-gradient);
    border-radius: 2px;
    transform-origin: left;
    animation: flow 2s infinite;
}
@keyframes flow {
    0% { transform: scaleX(0); opacity: 1; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(1); opacity: 0; }
}

/* 2. LLM Healer Terminal */
.terminal-visual {
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    align-self: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    font-family: var(--font-mono);
}
.term-header {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}
.term-header span {
    width: 12px; height: 12px; border-radius: 50%;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.term-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.log-line {
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
}
.error-line { color: #ef4444; }
.healing-line { color: #f59e0b; animation: terminalBlink 1.5s infinite; }
.success-line { color: #10b981; }

@keyframes terminalBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* 3. Stealth Engine Visual */
.stealth-visual svg {
    overflow: visible;
}
.stealth-line {
    animation: dash 3s linear infinite;
}
@keyframes dash {
    to { stroke-dashoffset: -24; }
}
.stealth-cursor {
    animation: stealthMove 6s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes stealthMove {
    0% { cx: 20; cy: 80; }
    100% { cx: 480; cy: 50; }
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.bento-card h3, .feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.bento-card p, .feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ─── Social Proof & Marquee ─── */
.social-proof {
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(0,0,0,0.2);
    overflow: hidden;
    margin-bottom: 80px;
}
.trust-label {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted, #64748b);
    margin-bottom: 30px;
    font-weight: 600;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0; width: 150px; height: 100%;
    z-index: 2;
}
.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-deep) 0%, transparent 100%);
}
.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-deep) 0%, transparent 100%);
}
.marquee-content {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    align-items: center;
}
.logo-placeholder {
    font-size: 24px;
    font-weight: 800;
    color: rgba(255,255,255,0.15);
    white-space: nowrap;
    letter-spacing: -0.02em;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Comparison Section ─── */
.comparison-section {
    padding: 60px 0 80px;
}
.comparison-section .section-title {
    margin-bottom: 48px;
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.comparison-card {
    padding: 44px 40px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}
.comparison-card:hover {
    transform: translateY(-4px);
}
.comparison-card.before {
    border: 1px solid rgba(239, 68, 68, 0.15);
    background: rgba(239, 68, 68, 0.03);
}
.comparison-card.after {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.25);
}
.card-header {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: -0.01em;
}
.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.comparison-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.comparison-card.after .comparison-list li {
    color: var(--text-primary);
}
.x-icon, .check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 13px;
    flex-shrink: 0;
    font-weight: 900;
}
.x-icon {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.check-icon {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ─── ROI Metrics Banner ─── */
.metrics-banner {
    padding: 40px 0 80px;
}
.metrics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.metric {
    padding: 44px 40px;
    text-align: center;
    border-radius: 24px;
    transition: transform 0.3s ease;
}
.metric:hover {
    transform: translateY(-4px);
}
.metric-value {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}
.metric-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ─── How It Works (Pipeline) ─── */
.how-it-works {
    padding: 60px 0;
}
.pipeline-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}
.pipeline-step {
    flex: 1;
    padding: 40px 32px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
}
.pipeline-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
}
.pipeline-step p {
    color: var(--text-secondary);
    font-size: 15px;
}
.pipeline-connector-svg {
    flex: 1;
    margin: 0 16px;
    padding-bottom: 24px;
}

.base-line {
    stroke: rgba(255,255,255,0.05);
    stroke-width: 2;
    fill: none;
}

.flow-line {
    stroke: var(--accent-primary);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: flowStroke 2s linear infinite;
    opacity: 0.3;
}

.data-packet {
    fill: white;
    box-shadow: 0 0 10px white;
    animation: flowPacket 2s linear infinite;
}

.animate-delay {
    animation-delay: 1s;
}

@keyframes flowStroke {
    0% { stroke-dashoffset: 100; opacity: 0; }
    50% { stroke-dashoffset: 0; opacity: 0.6; }
    100% { stroke-dashoffset: -100; opacity: 0; }
}

@keyframes flowPacket {
    0% { cx: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { cx: 100; opacity: 0; }
}

/* ─── Real Use Cases ─── */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.usecase-card {
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.usecase-card:hover {
    transform: translateY(-8px);
}
.usecase-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}
.usecase-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}
.usecase-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* ─── FAQ Section ─── */
.faq {
    padding: 60px 0;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border-radius: 16px;
    overflow: hidden;
}
.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 32px;
    background: none;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}
.faq-trigger:hover {
    color: #818cf8;
}
.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #6366f1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: #ec4899;
}
.faq-content {
    padding: 0 32px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}
.faq-item.open .faq-content {
    max-height: 300px;
    padding-bottom: 24px;
}

/* ─── Pricing ─── */
.pricing {
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
}

.pricing-card {
    padding: 48px 40px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.feature-plan {
    border-color: var(--accent-primary);
    transform: scale(1.05);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, rgba(10, 14, 26, 0.7) 100%);
    position: relative;
    z-index: 2;
}

.best-value {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
}

.plan-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
}

.price {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 32px;
}

.price span {
    font-size: 16px;
    color: var(--text-muted);
}

.plan-anchor {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
    min-height: 42px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent-primary);
    font-weight: 900;
}

/* ─── Contact ─── */
.contact {
    padding: 60px 0 100px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-info {
    padding: 60px;
    background: rgba(99, 102, 241, 0.05);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-form-container {
    padding: 60px;
    position: relative;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px 18px;
    color: white;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background: rgba(99,102,241,0.04);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-deep);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

.form-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.hide { display: none; }

/* ─── Footer ─── */
.footer {
    padding: 72px 0 0;
    border-top: 1px solid var(--border-glass);
    background: rgba(0,0,0,0.4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand .logo-svg {
    height: 52px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 260px;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    font-size: 18px;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-link:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-glass);
    font-size: 12px;
    color: var(--text-muted);
}
/* ─── Mobile Navigation ─── */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-menu-toggle .bar {
    width: 24px;
    height: 2px;
    background: white;
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .nav-links { gap: 20px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-live-example { justify-content: center; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border-glass);
        z-index: 1000;
        margin: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-links a { font-size: 16px; font-weight: 600; }
    .logo-text { font-size: 20px; }
    .hero { padding: 120px 0 60px; }
    .hero-visual { display: none; }
}

@media (max-width: 600px) {
    .pricing-grid, .features-grid, .footer-grid, .metrics-container, .usecases-grid, .comparison-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .pipeline-grid {
        flex-direction: column;
        gap: 24px;
    }
    .pipeline-connector {
        width: 4px;
        height: 40px;
    }
    .bento-span-2, .bento-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    .studio-visual { flex-direction: column; }
    .macrolink { width: 4px; height: 30px; }
    .pricing-card.feature-plan { transform: scale(1); }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-info, .contact-form-container {
        padding: 40px 32px;
    }
    .contact-info h2 {
        font-size: 28px;
    }
    .hero h1 {
        font-size: 44px;
    }
    .section-title h2 {
        font-size: 32px;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .faq-trigger {
        padding: 18px 20px;
        font-size: 15px;
    }
    .faq-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .section-title h2 {
        font-size: 28px;
    }
    .comparison-grid {
        gap: 20px;
    }
    .comparison-card {
        padding: 32px 28px;
    }
    .metric {
        padding: 32px 24px;
    }
    .metric-value {
        font-size: 40px;
    }
    .pricing-card {
        padding: 36px 28px;
    }
    .price {
        font-size: 44px;
    }
}

/* --- Anti-Spam Security --- */
.stealth-trap {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

/* ─── Legal Pages ─── */
.legal-page {
    padding: 140px 0 100px;
    min-height: 100vh;
}

.legal-hero {
    text-align: center;
    margin-bottom: 60px;
}

.legal-hero-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 28px;
}

.legal-hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.legal-hero .last-updated {
    font-size: 13px;
    color: var(--accent-primary);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.legal-hero .legal-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.legal-content {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.legal-section {
    padding: 40px 44px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.legal-section:hover {
    transform: translateY(-4px);
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.legal-section-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.legal-section-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.01em;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-section ul:last-child {
    margin-bottom: 0;
}

.legal-section li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.legal-section li::before {
    content: '▸';
    color: var(--accent-primary);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-section em {
    color: var(--accent-primary);
    font-style: normal;
    font-weight: 500;
}

.legal-highlight {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 16px;
    padding: 24px 28px;
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.legal-highlight-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.legal-highlight p {
    margin: 0;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.7;
}

.legal-contact-cta {
    text-align: center;
    padding: 48px 40px;
    border-radius: 24px;
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(139, 92, 246, 0.06) 100%);
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.legal-contact-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.legal-contact-cta p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.legal-contact-cta a {
    display: inline-flex;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    .legal-hero h1 {
        font-size: 36px;
    }
    .legal-section {
        padding: 28px 24px;
    }
    .legal-section-header h2 {
        font-size: 19px;
    }
    .legal-hero-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    .legal-contact-cta {
        padding: 36px 24px;
    }
}
