/* ==========================================================================
   OUTREACHER — PREMIUM DESIGN SYSTEM (VANGUARD_UI_ARCHITECT ARCHETYPE)
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    --bg-base: #050505;          /* OLED Deep Off-Black */
    --bg-card: rgba(10, 10, 12, 0.75); /* Vantablack Frosted Panel */
    --accent: #00F59B;           /* Electric Emerald */
    --accent-glow: rgba(0, 245, 155, 0.15);
    --text-primary: #F4F4F5;     /* Slate-50 */
    --text-muted: #A1A1AA;       /* Zinc-400 */
    --text-dark: #3F3F46;        /* Zinc-700 */
    --success: #10B981;          /* Forest Green */
    --danger: #EF4444;           /* Coral Red */
    --border-glow: rgba(255, 255, 255, 0.08);
    --border-card: rgba(255, 255, 255, 0.05);
    
    /* Custom Physics Curve */
    --transition-premium: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Selection style */
::selection {
    background-color: var(--accent);
    color: #000;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: #18181b;
    border-radius: 9999px;
    border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover {
    background: #27272a;
}

/* --- Structural Containers --- */
.page-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.container-wide {
    width: 100%;
    padding: 0 4rem;
}

.container-narrow {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Premium Intermediate Section Spacing --- */
.section-critique,
.section-capabilities,
.section-calculator,
.section-waitlist {
    padding: 120px 0 !important;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* --- Grain Overlay (Anti-Slop GPU Safe) --- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Glowing Mesh Orbs --- */
.radial-mesh-gradient {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 50% -20%, rgba(0, 245, 155, 0.08) 0%, transparent 60%);
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
}

.glow-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    top: 20%;
    left: -10%;
    animation: orb-drift-1 25s infinite alternate ease-in-out;
}

.glow-orb-2 {
    width: 600px;
    height: 600px;
    background: #00d2ff;
    bottom: 10%;
    right: -15%;
    animation: orb-drift-2 30s infinite alternate ease-in-out;
}

@keyframes orb-drift-1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, -50px) scale(1.2); }
}

@keyframes orb-drift-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-120px, 80px) scale(0.9); }
}

/* --- Spacing & Layout Utilities --- */
.w-full {
    width: 100% !important;
}

.p-6 {
    padding: 1.5rem !important;
}

.p-8 {
    padding: 2rem !important;
}

.p-10 {
    padding: 2.5rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-4 {
    margin-top: 1rem !important;
}

.mt-6 {
    margin-top: 1.5rem !important;
}

/* --- Concentric Double-Bezel System --- */
.double-bezel-outer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-glow);
    padding: 8px;
    border-radius: 2rem; /* 32px outer radius */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transition: var(--transition-premium);
}

.double-bezel-inner {
    background: var(--bg-card);
    border-radius: calc(2rem - 8px); /* Concentric 24px inner radius */
    border: 1px solid var(--border-card);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

/* --- Typographical Utilities --- */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.text-accent {
    color: var(--accent);
}

.text-success {
    color: var(--success);
}

.text-red {
    color: var(--danger);
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success);
}

/* --- Premium CTA Button Architecture --- */
.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text-primary);
    color: #050505;
    padding: 10px 10px 10px 24px; /* Flushed right padding for icon circle */
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition-spring);
}

.btn-icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: rgba(5, 5, 5, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-center: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-spring);
}

.btn-primary-pill:hover {
    transform: scale(0.98);
}

.btn-primary-pill:hover .btn-icon-wrapper {
    background-color: rgba(5, 5, 5, 0.15);
    transform: translate(2px, -2px) scale(1.05);
}

.btn-secondary-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    padding: 10px 10px 10px 24px;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-spring);
}

.btn-secondary-pill .btn-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.06);
}

.btn-secondary-pill:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: scale(0.98);
}

.btn-secondary-pill:hover .btn-icon-wrapper {
    transform: translateY(2px);
}

/* --- Floating Glass Island Navbar --- */
.nav-floating-pill {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.7);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 9999px;
    padding: 8px 16px;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5);
    transition: var(--transition-premium);
}

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

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

.logo-icon {
    width: 16px;
    height: 16px;
    background: var(--accent);
    border-radius: 4px;
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--accent);
    transition: var(--transition-spring);
}

.nav-logo:hover .logo-icon {
    transform: rotate(135deg);
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-premium);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-premium);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 6px;
}

.hamburger-line {
    width: 20px;
    height: 1px;
    background-color: var(--text-primary);
    transition: var(--transition-spring);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 990;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-premium);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: auto;
    margin-top: 4rem;
}

.mobile-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition-premium);
}

.mobile-link:hover {
    color: var(--text-primary);
    padding-left: 12px;
}

.mobile-menu-footer {
    width: 100%;
}

/* --- Hero Section: Asymmetric Grid --- */
.section-hero {
    padding-top: 140px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 20;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding: 4rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 0.95;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 58ch;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats-strip {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 28px;
    font-weight: 500;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.border-l {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 40px;
}

/* --- Live Console Panels (Aesthetics) --- */
.console-panel {
    display: flex;
    flex-direction: column;
    height: 480px;
    background: #09090b;
}

.console-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #111115;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.console-controls {
    display: flex;
    gap: 6px;
}

.console-controls .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.console-controls .red { background-color: #ff5f56; }
.console-controls .yellow { background-color: #ffbd2e; }
.console-controls .green { background-color: #27c93f; }

.console-title {
    font-size: 11px;
    color: var(--text-muted);
}

.console-badge {
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: rgba(0, 245, 155, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 245, 155, 0.2);
    font-weight: 500;
}

.console-screen {
    flex: 1;
    padding: 20px;
    font-size: 12px;
    line-height: 1.7;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.console-screen::-webkit-scrollbar {
    width: 4px;
}

.console-screen .line {
    word-break: break-all;
}

.console-screen .muted { color: var(--text-dark); }
.console-screen .success { color: var(--success); }

.console-screen .line-progress {
    margin: 8px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.progress-label {
    font-size: 10px;
    color: var(--text-muted);
}

.progress-bar-wrapper {
    width: 100%;
    height: 3px;
    background-color: #18181b;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background-color: var(--accent);
    transition: width 0.1s linear;
}

.console-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feed-row {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 6px;
    animation: line-fade-in 0.4s ease-out forwards;
}

@keyframes line-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.feed-left {
    display: flex;
    gap: 8px;
    color: var(--text-primary);
}

.feed-right {
    color: var(--accent);
}

.console-footer-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #111115;
}

.mini-metric {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-metric:last-child {
    border-right: none;
}

.mini-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.mini-val {
    font-size: 16px;
    font-weight: 500;
}

/* --- Section Title Utils --- */
.text-center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 64px;
}

.text-left-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 64px;
}

.section-title {
    font-size: 3rem;
    line-height: 1.05;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 65ch;
}

.container-critique {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Section 2: Critique & Comparison Grid --- */
.fragmentation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 48px;
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.card-icon-header i {
    font-size: 18px;
}

.critique-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.critique-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.critique-header i {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.critique-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0 !important;
}

.critique-text {
    font-size: 13px;
    color: var(--text-muted);
}

.status-quo-card {
    border-color: rgba(239, 68, 68, 0.12) !important;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.01) 0%, rgba(9, 9, 11, 0.6) 100%) !important;
    transition: var(--transition-premium);
}

.status-quo-card:hover {
    border-color: rgba(239, 68, 68, 0.25) !important;
    box-shadow: 0 20px 45px rgba(239, 68, 68, 0.05) !important;
}

.status-quo-card .double-bezel-inner {
    border-color: rgba(239, 68, 68, 0.06) !important;
}

.status-quo-card:hover .double-bezel-inner {
    border-color: rgba(239, 68, 68, 0.15) !important;
}

.unified-way-card {
    border-color: rgba(0, 245, 155, 0.16) !important;
    background: linear-gradient(135deg, rgba(0, 245, 155, 0.02) 0%, rgba(9, 9, 11, 0.6) 100%) !important;
    box-shadow: 0 0 35px rgba(0, 245, 155, 0.05) !important;
    transition: var(--transition-premium);
}

.unified-way-card:hover {
    border-color: rgba(0, 245, 155, 0.35) !important;
    box-shadow: 0 0 50px rgba(0, 245, 155, 0.12), inset 0 0 16px rgba(0, 245, 155, 0.02) !important;
}

.unified-way-card .double-bezel-inner {
    border-color: rgba(0, 245, 155, 0.08) !important;
}

.unified-way-card:hover .double-bezel-inner {
    border-color: rgba(0, 245, 155, 0.22) !important;
}

/* --- Section 3: Bento Grid Layout --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 48px;
}

.col-span-8 { grid-column: span 8; }
.col-span-4 { grid-column: span 4; }

.bento-card .double-bezel-inner {
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-badge {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.bento-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.bento-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 50ch;
    margin-bottom: 24px;
}

/* --- Bento Box 1: B2B Lead Explorer --- */
.interactive-lead-panel {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-top: auto;
    overflow: hidden;
    height: 180px;
    display: flex;
    flex-direction: column;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    background: #111115;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 10px;
    color: var(--text-muted);
}

.table-container {
    flex: 1;
    overflow-y: auto;
}

.lead-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    text-align: left;
}

.lead-table th {
    padding: 8px 16px;
    background: #0e0e11;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lead-table td {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lead-table tr {
    transition: var(--transition-premium);
}

.lead-table tr.selected {
    background: rgba(0, 245, 155, 0.04);
}

.lead-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.badge-verification {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: var(--accent);
    background: rgba(0, 245, 155, 0.06);
    border: 1px solid rgba(0, 245, 155, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

.action-btn-select {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    padding: 2px 8px;
    font-size: 9px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-spring);
}

.action-btn-select:hover {
    background: var(--text-primary);
    color: #000;
}

/* --- Bento Box 2: Mailbox Dials --- */
.mailbox-rotator-panel {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-top: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mailbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition-spring);
}

.mailbox-row.active {
    border-color: rgba(0, 245, 155, 0.25);
    background: rgba(0, 245, 155, 0.02);
}

.mailbox-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mailbox-icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.mailbox-icon.active { background-color: var(--accent); box-shadow: 0 0 8px var(--accent); }
.mailbox-icon.idle { background-color: var(--success); }
.mailbox-icon.sending { background-color: var(--accent); animation: pulse-green 1.5s infinite; }

.mailbox-email {
    font-size: 11px;
}

.mailbox-status {
    font-size: 9px;
    font-weight: 500;
}

/* --- Bento Box 3: Terminal Chat --- */
.terminal-chat-panel {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-top: auto;
    height: 180px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    background: #111115;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 10px;
    color: var(--text-muted);
}

.chat-state {
    color: var(--accent);
}

.chat-body {
    flex: 1;
    padding: 16px;
    font-size: 10px;
    line-height: 1.6;
    overflow-y: auto;
    color: var(--text-muted);
    word-break: break-all;
}

.chat-body .writer-line {
    color: var(--text-primary);
    margin-top: 4px;
}

/* --- Bento Box 4: Architecture Visual --- */
.architecture-panel {
    background: #09090b;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-top: auto;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arch-node {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 10px;
    color: var(--text-primary);
    z-index: 10;
    transition: var(--transition-spring);
}

.arch-node:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.05);
}

.center-node {
    background: rgba(0, 245, 155, 0.05);
    border-color: rgba(0, 245, 155, 0.3);
}

.node-leaf {
    position: absolute;
    font-size: 9px;
}

.left-leaf { left: 40px; top: 120px; }
.middle-leaf { top: 20px; }
.right-leaf { right: 40px; top: 120px; }

/* --- Bento Interactive Panel Upgrades --- */
.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    background: #111115;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 10px;
    color: var(--text-muted);
}

.panel-header-search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 220px;
}

.panel-header-search .search-icon {
    position: absolute;
    left: 8px;
    font-size: 11px;
    color: var(--text-muted);
    pointer-events: none;
}

.panel-header-search .search-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 3px 8px 3px 26px;
    color: var(--text-primary);
    font-size: 9px;
    outline: none;
    transition: var(--transition-premium);
}

.panel-header-search .search-field:focus {
    border-color: var(--accent);
    background: rgba(0, 245, 155, 0.02);
    box-shadow: 0 0 8px rgba(0, 245, 155, 0.05);
}

.panel-queue-counter {
    background: rgba(0, 245, 155, 0.06);
    border: 1px solid rgba(0, 245, 155, 0.15);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 9px;
}

/* Mailbox Panel Rotator Forms */
.mailbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 155px;
    overflow-y: auto;
}

.mailbox-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-premium);
}

.mailbox-row:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.mailbox-row.active-sending {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.03);
}

.mailbox-row.active-verified {
    border-color: rgba(0, 245, 155, 0.3);
    background: rgba(0, 245, 155, 0.03);
}

.mailbox-row.active-warmup {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.03);
}

.add-mailbox-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.mailbox-input-field {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 10px;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-premium);
}

.mailbox-input-field:focus {
    border-color: var(--accent);
    background: rgba(0, 245, 155, 0.02);
}

.mailbox-add-btn {
    background: var(--text-primary);
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-spring);
}

.mailbox-add-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

/* SDR Intent Category Tabs */
.terminal-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: #0b0b0f;
}

.terminal-tab {
    flex: 1;
    background: none;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px 12px;
    font-size: 9px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-premium);
    outline: none;
}

.terminal-tab:last-child {
    border-right: none;
}

.terminal-tab.active {
    color: var(--accent);
    background: rgba(0, 245, 155, 0.03);
    font-weight: 600;
}

.terminal-tab:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}

/* Architecture Graphic Connections & Leaves */
.arch-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.conn-path {
    transition: var(--transition-premium);
}

.conn-path.active-pulse {
    stroke: url(#lineGlow);
    stroke-width: 2.5px;
    filter: drop-shadow(0 0 4px #00F59B);
    stroke-dasharray: 8, 4;
    animation: pathGlowDash 1s linear infinite;
}

@keyframes pathGlowDash {
    to { stroke-dashoffset: -12; }
}

.arch-node {
    position: absolute;
    z-index: 5;
    cursor: pointer;
}

.center-node {
    top: 75px;
    left: calc(50% - 60px);
    width: 120px;
    text-align: center;
}

.left-leaf { left: 40px; top: 125px; }
.middle-leaf { left: calc(50% - 70px); top: 10px; width: 140px; text-align: center; }
.right-leaf { right: 40px; top: 125px; }

/* Interactive Stats Details popup overlay */
.arch-details-card {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(9, 9, 11, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    width: 200px;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-premium);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.arch-details-card.show {
    opacity: 1;
    transform: translateY(0);
}

.details-title {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 4px;
    margin-bottom: 6px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.details-stat {
    display: flex;
    flex-direction: column;
}

.details-stat .stat-label {
    font-size: 7px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.details-stat .stat-val {
    font-size: 10px;
    font-weight: 600;
}


/* --- Section 4: ROI & Cost Calculator --- */
.calc-card-wrapper {
    margin-top: 48px;
}

.calc-card {
    background: var(--bg-card);
}

.calc-top-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.slider-value {
    font-size: 16px;
    font-weight: 600;
}

.premium-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #18181b;
    border-radius: 9999px;
    outline: none;
}

.premium-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent);
    transition: var(--transition-spring);
}

.premium-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--text-dark);
    padding: 0 4px;
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.result-tile {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition-premium);
}

.result-tile:hover {
    background: rgba(255, 255, 255, 0.03);
}

.result-tile.accent-border {
    border-color: rgba(0, 245, 155, 0.25);
    background: rgba(0, 245, 155, 0.02);
}

.result-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.result-value {
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
}

.result-sub {
    font-size: 10px;
    color: var(--text-dark);
}

.calc-savings-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 12px 24px;
    border-radius: 9999px;
    margin-top: 40px;
    font-size: 12px;
    font-weight: 500;
}

.calc-savings-banner i {
    font-size: 16px;
}

/* --- Section 5: The Waitlist Form System --- */
.form-container-wrapper {
    margin-top: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-card {
    background: var(--bg-card);
}

.waitlist-form {
    display: flex;
    flex-direction: column;
}

.form-inputs-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.premium-input {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition-premium);
}

.premium-input::placeholder {
    color: var(--text-dark);
}

.premium-input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.04);
}

.premium-select {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-premium);
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.premium-select:focus {
    outline: none;
    border-color: var(--accent);
}

.premium-select option {
    background-color: #121214;
    color: var(--text-primary);
}

/* Error States styling */
.input-error {
    font-size: 10px;
    color: var(--danger);
    font-family: 'JetBrains Mono', monospace;
    height: 12px;
    display: block;
}

.premium-input.error {
    border-color: var(--danger);
    background-color: rgba(239, 68, 68, 0.02);
}

/* Success State styling */
.form-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    animation: zoom-in-spring 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoom-in-spring {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.success-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.success-icon-wrapper i {
    font-size: 32px;
}

.success-title {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.success-desc {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 45ch;
}

.queue-details-box {
    border-color: rgba(16, 185, 129, 0.15);
}

.queue-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hidden {
    display: none !important;
}

/* --- Footer Infrastructure styling --- */
.footer-root {
    background-color: #08080a;
    border-color: rgba(255, 255, 255, 0.06);
    padding: 80px 4rem 40px 4rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 64px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 40ch;
    margin-bottom: 24px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    color: var(--text-muted);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.column-title {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links-column a {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-premium);
}

.links-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 32px;
    font-size: 10px;
    color: var(--text-dark);
}

/* --- Entry Animations (Scroll Observation) --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-150 { transition-delay: 150ms; }
.delay-200 { transition-delay: 200ms; }

/* Pulse Animation Utilities */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(0, 245, 155, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(0, 245, 155, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 245, 155, 0); }
}

/* ==========================================================================
   MOBILE & TABLET COLLAPSE RESPONSIVE SYSTEM (STRICT GUARDRAILS)
   ========================================================================== */

@media (max-width: 1024px) {
    .container-wide {
        padding: 0 2rem;
    }
    
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .bento-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .col-span-8, .col-span-4 {
        grid-column: span 1;
    }
    
    .calc-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-floating-pill {
        width: 95%;
        border-radius: 24px;
        padding: 6px 12px;
    }
    
    .nav-links {
        display: none; /* Collapsed */
    }
    
    .nav-cta {
        display: none; /* Hide primary nav cta on small mobile */
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .hamburger-active .line-1 {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger-active .line-2 {
        transform: translateY(-1px) rotate(-45deg);
    }
    
    .section-hero {
        padding-top: 100px;
    }
    
    .hero-split-grid {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions a {
        justify-content: center;
        width: 100%;
    }
    
    .hero-stats-strip {
        flex-direction: column;
        gap: 20px;
    }
    
    .border-l {
        border-left: none;
        padding-left: 0;
    }
    
    .fragmentation-grid {
        grid-template-columns: 1fr;
    }
    
    .calc-results-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-root {
        padding: 60px 2rem 20px 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* --- Visionary Critique Mirroring & Hover Highlight --- */
.critique-list li {
    transition: opacity 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
                transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
                filter 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border-left: 2px solid transparent;
    padding-left: 0px;
}

.critique-list li.dim-others {
    opacity: 0.25;
    filter: blur(0.8px) grayscale(40%);
}

.critique-list li.highlight-contrast {
    opacity: 1 !important;
    filter: none !important;
    transform: scale(1.025);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 10px 12px !important;
    margin: -10px -12px !important;
}

.status-quo-card .critique-list li.highlight-contrast {
    border-left: 2px solid var(--danger);
    box-shadow: -8px 0 20px -8px rgba(239, 68, 68, 0.15);
}

.unified-way-card .critique-list li.highlight-contrast {
    border-left: 2px solid var(--accent);
    box-shadow: -8px 0 20px -8px rgba(0, 245, 155, 0.15);
}

/* --- High-Tech Credit visualizer styling --- */
.credit-visualizer-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 24px;
    margin: 28px 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.visualizer-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 12px;
}

.visualizer-bar-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.visualizer-segment {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 110px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--transition-premium);
}

.visualizer-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    opacity: 0.8;
}

.segment-intelligence::before { background: var(--accent); }
.segment-verification::before { background: #38BDF8; }
.segment-rotation::before { background: #A855F7; }
.segment-agent::before { background: #E11D48; }

.visualizer-segment:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
}

.segment-inner {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.segment-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
}

.segment-label {
    font-size: 11px;
    color: var(--text-dark);
    font-weight: 500;
}

.segment-cost {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    margin-top: 10px;
}

.visualizer-footer {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--accent);
    opacity: 0.8;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .visualizer-bar-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .visualizer-segment {
        height: auto;
        padding: 14px;
    }
    
    .visualizer-footer {
        flex-direction: column;
        gap: 6px;
    }
}
