/* ══════════════════════════════════════════════════════════════════
   LeadintelAI — Linear.app-Inspired Design System
   ══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens — Matte Flat ───────────────────────────────────── */
:root {
    --bg:           #000000;   /* Pure Black */
    --bg-soft:      #0A0A0B;
    --text:         #FFFFFF;
    --text-muted:   rgba(255, 255, 255, 0.7);
    --text-dim:     rgba(255, 255, 255, 0.4);
    --border:       rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.12);
    --card-bg:      rgba(255, 255, 255, 0.025);
    --card-border:  rgba(255, 255, 255, 0.05);
    --accent:       #5E6AD2;
    --ghost-white:  #FFFFFF;
    --accent-soft:  transparent;
    --accent-glow:  transparent;

    /* Muted Accents */
    --amber:        #A6763D;
    --green:        #3A5C43;
    --red:          #A65252;
    --teal:         #4F8F81;

    --white:        #FFFFFF;
    --radius-sm:    6px;
    --radius-md:    10px;
    --radius-lg:    14px;
    --radius-xl:    18px;
    --nav-h:        60px;
    --section-pad:  128px;   /* Linear section vertical padding */
    --outer-pad:    80px;    /* Horizontal outer padding */
    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* Global strict matte — no glows */
body::before {
    display: none;
}

/* ── Layout Helpers ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 9999;
    transition: background 0.3s, border-color 0.3s;
}

.navbar.scrolled {
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}


.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.logo-icon { flex-shrink: 0; }

.logo-wordmark {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
}

.logo-ai {
    color: var(--accent);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 450;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.nav-login {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 450;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: color 0.2s;
}

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

.btn-nav-cta {
    background: #EAEAEC;
    color: #0B0B0D;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.btn-nav-cta:hover {
    background: #ffffff;
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: var(--radius-sm);
}

.nav-hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text-muted);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile drawer */
.nav-mobile-drawer {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 16px 24px 24px;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.nav-mobile-drawer.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.nav-mobile-drawer a {
    color: var(--text-muted);
    font-size: 1rem;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}

.nav-mobile-drawer a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.mobile-cta {
    background: var(--white) !important;
    color: #000 !important;
    font-weight: 500 !important;
    text-align: center;
    margin-top: 8px;
    border-radius: var(--radius-sm) !important;
}

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    padding-top: calc(var(--nav-h) + 80px);
    padding-bottom: 0;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ambient top glow — Linear style */
.hero-glow-top {
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: transparent;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-sub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.hero-sub-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-sub-pill strong { color: var(--white); font-weight: 500; }
.hero-sub-pill:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); color: var(--text); }

/* Hero text block — centered Linear style */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    animation: heroFadeUp 0.6s var(--ease) both;
}

.chip-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    box-shadow: 0 0 4px var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 3px var(--accent); }
    50% { box-shadow: 0 0 8px var(--accent); }
}

/* Hero headline — Linear thin style */
.hero-headline {
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.05em;
    color: var(--white);
    margin-bottom: 0;
    animation: heroFadeUp 0.6s var(--ease) both;
}

.hero-headline em {
    font-style: normal;
    color: var(--accent);
}

/* Hero sub */
.hero-sub {
    margin-top: 22px;
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.65;
    letter-spacing: -0.01em;
    animation: heroFadeUp 0.6s 0.1s var(--ease) both;
}

/* Hero link — strikethrough style */
.hero-link {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.81rem;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: -0.01em;
    animation: heroFadeUp 0.6s 0.18s var(--ease) both;
    transition: color 0.15s;
    padding-bottom: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}
.hero-link:hover {
    color: var(--text-muted);
    border-bottom-color: rgba(255,255,255,0.14);
}
.hero-link s {
    opacity: 0.6;
}

/* Signal row */
.signal-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.signal-chip {
    display: inline-block;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 2px 10px; /* Smaller */
    border-radius: 99px;
    font-size: 0.75rem; /* Smaller */
    color: var(--text-dim); /* Dull color */
    letter-spacing: 0.01em;
}

/* CTA row */
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Primary button — flat matte */
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EEEEF0;
    color: #080809;
    font-size: 0.9rem;
    font-weight: 600; /* Heavier for Linear feel */
    padding: 10px 22px;
    border-radius: 6px;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary-hero:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

/* Ghost button — flat matte */
.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 450;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-ghost-hero:hover {
    color: var(--white);
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.07);
}

/* ── Hero Mockup ──────────────────────────────────────────────────── */
.hero-mockup-wrap {
    position: relative;
    margin-top: 56px;
    width: 100%;
    max-width: 1100px;
    padding: 0 28px;
    animation: heroFadeUp 0.75s 0.28s var(--ease) both;
    z-index: 10;
}

.hero-mockup-wrap.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-mockup-glow {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 400px;
    background: transparent;
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

/* ── Linear 3-panel shell ─────────────────────────────────────────── */
.lm-shell {
    max-width: 1100px; /* Original width */
    margin: 0 auto;
    background: #0D0E12;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px; /* Tighter radius */
    overflow: hidden;
    box-shadow: 0 40px 100px -30px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
}

/* Chrome / title bar */
.lm-chrome {
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 14px;
    background: #121318;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
    gap: 10px;
}

.lm-chrome-left { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.lm-chrome-center { flex: 1; display: flex; justify-content: center; }
.lm-chrome-right { display: flex; align-items: center; gap: 6px; min-width: 60px; justify-content: flex-end; }

.lm-dots { display: flex; gap: 5px; }
.lmd-r { width: 9px; height: 9px; border-radius: 50%; background: #222; }
.lmd-y { width: 9px; height: 9px; border-radius: 50%; background: #222; }
.lmd-g { width: 9px; height: 9px; border-radius: 50%; background: #222; }

.lm-ws-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    cursor: default;
}
.lm-ws-dot {
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 3px;
    flex-shrink: 0;
}
.lm-ws-pill svg { color: var(--text-dim); }

.lm-tab {
    font-size: 0.65rem; /* Smaller */
    color: var(--text-dim);
    padding: 3px 14px;
    border-bottom: 1px solid #333; /* Darker line */
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.active-tab { color: #B4B8C0; border-bottom-color: #555 !important; }

.lm-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 5px;
    color: var(--text-dim);
    font-size: 0.7rem;
    cursor: default;
    transition: background 0.15s, color 0.15s;
}
.lm-icon-btn:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.lm-icon-btn.small { width: 18px; height: 18px; font-size: 0.6rem; }

/* ── 3-panel body ─────────────────────────────────────────────────── */
.lm-body {
    display: flex;
    flex: 1;
    min-height: 420px;
    overflow: hidden;
}

/* PANEL 1: Sidebar */
.lm-sidebar {
    width: 180px;
    flex-shrink: 0;
    background: var(--bg-soft);
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 12px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.lm-sidebar-section {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    padding: 12px 14px 4px;
}

.lm-sidebar-nav { display: flex; flex-direction: column; gap: 1px; padding: 0 6px; }

.lm-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 0.72rem;
    color: var(--text-muted);
    cursor: default;
    transition: background 0.15s, color 0.15s;
}
.lm-nav-item svg { flex-shrink: 0; opacity: 0.7; }
.lm-nav-item:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.active-nav { background: rgba(255,255,255,0.04) !important; color: #B4B8C0 !important; }
.active-nav svg { opacity: 1; }

.lm-fav-icon {
    width: 16px; height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

/* PANEL 2: Lead detail */
.lm-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #0D0D10;
    position: relative; /* Added for absolute positioning of agent panel */
}

.lm-detail-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    height: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: #0A0A0D;
    flex-shrink: 0;
    overflow: hidden;
}

.lm-breadcrumb {
    font-size: 0.7rem;
    color: var(--text-dim);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lm-detail-nav { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.lm-ref { font-size: 0.68rem; color: var(--text-dim); white-space: nowrap; }
.lm-arrow {
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--text-dim);
    border-radius: 4px;
    cursor: default;
    transition: background 0.15s;
}
.lm-arrow:hover { background: rgba(255,255,255,0.06); color: var(--text); }

.lm-lead-id {
    font-size: 0.68rem;
    color: var(--text-dim);
    font-family: monospace;
    flex-shrink: 0;
}

/* Detail body */
.lm-detail-body {
    flex: 1;
    padding: 18px 20px 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lm-lead-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.lm-lead-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lm-meta-chip {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.lm-lead-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.lm-code {
    display: inline-block;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 1px 6px;
    font-family: monospace;
    font-size: 0.7rem;
    color: var(--text);
}

/* Activity feed */
.lm-activity-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    padding-top: 4px;
}

.lm-activity {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.lm-act-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.lm-act-avatar {
    width: 20px; height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fff;
}

.lm-act-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.5;
    min-width: 0;
    flex: 1;
}

.lm-act-who {
    font-weight: 600;
    color: #B4B8C0;
}

.lm-act-time { color: var(--text-dim); }

.lm-act-bubble {
    margin-top: 4px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.lm-act-tag {
    display: inline-block;
    background: rgba(94,106,210,0.15);
    border: 1px solid rgba(94,106,210,0.25);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.65rem;
    color: #8a94e8;
}

.lm-act-status {
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    gap: 6px;
}
.lm-act-status strong { color: #B4B8C0; }

.lm-status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.lm-status-dot.contacted { background: #4ade80; }

/* Compose bar */
.lm-compose {
    padding: 10px 14px 12px;
    flex-shrink: 0;
    background: #0A0A0D;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.lm-compose-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 7px 10px;
}

.lm-compose-placeholder {
    font-size: 0.72rem;
    color: var(--text-dim);
}

.lm-compose-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lm-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 5px;
    background: rgba(255,255,255,0.12);
    color: var(--text);
    font-size: 0.8rem;
    cursor: default;
}
.lm-send-btn.small { width: 18px; height: 18px; font-size: 0.68rem; }

/* PANEL 3: Properties + AI */
.lm-props {
    width: 210px;
    flex-shrink: 0;
    background: #09090C;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}

.lm-props-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: #0A0A0D;
    flex-shrink: 0;
}

.lm-props-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lm-prop-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lm-prop-label {
    font-size: 0.65rem;
    color: var(--text-dim);
}

.lm-prop-val {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.lm-mini-avatar {
    width: 16px; height: 16px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 600;
    display: flex; align-items: center; justify-content: center;
}

.lm-tags { flex-wrap: wrap; gap: 4px; }
.lm-tag {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.65rem;
}

/* PANEL 3: Properties + AI */
/* Floating Task Window (Cursor style) */
.lm-floating-panel {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 270px;
    background: #111113;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    z-index: 50;
    font-size: 0.65rem;
    color: var(--text-muted);
}

.lm-floating-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #B4B8C0;
    font-weight: 500;
}
.lm-floating-header .lm-ai-icon {
    width: 16px; height: 16px;
    background: #fff; color: #000;
    border-radius: 3px; display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
}
.lm-floating-header .lm-icon-btn { margin-left: auto; }

.lm-floating-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lm-sub-text { font-size: 0.65rem; margin-bottom: 2px; }
.lm-status-text { margin-bottom: 4px; color: #B4B8C0; }
.lm-worked-for {
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 6px;
    color: var(--text-dim);
}
.lm-floating-body ol { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 4px; }
.lm-floating-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    margin-top: 6px;
}
.lm-floating-input span { color: var(--text-dim); }
.lm-actions { display: flex; gap: 6px; align-items: center; }
.lm-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #B4B8C0;
    margin: 8px 0;
}

.lm-props-body {
    flex: 1;
    padding: 12px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Property rows */
.lm-prop-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    min-height: 28px;
}

.lm-prop-label {
    font-size: 0.65rem;
    color: var(--text-dim);
    width: 52px;
    flex-shrink: 0;
    letter-spacing: 0.01em;
}

.lm-prop-val {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.lm-status-icon.contacted-i {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
}

.lm-mini-avatar {
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.5rem; font-weight: 700; color: #fff;
    flex-shrink: 0;
}

.lm-tags { flex-wrap: wrap; gap: 4px; }

.lm-tag {
    display: inline-block;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 0.62rem;
    color: var(--text-muted);
}

/* AI panel */
.lm-ai-panel {
    margin: 10px 10px 0;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.lm-ai-header {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(94,106,210,0.08);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    flex-shrink: 0;
}

.lm-ai-icon {
    color: var(--accent);
    font-size: 0.85rem;
}

.lm-ai-body {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    overflow: hidden;
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.lm-ai-body p { color: var(--text-muted); }

.lm-ai-body ol {
    padding-left: 14px;
}
.roadmap-sub-nav {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dim);
}
.roadmap-sub-nav span { cursor: pointer; transition: color 0.2s; }
.roadmap-sub-nav span:hover { color: var(--text-muted); }
.roadmap-sub-nav span.active { color: var(--white); }

.lm-ai-chip {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 6px 8px;
    font-family: monospace;
    font-size: 0.6rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.lm-ai-diff {
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 6px 8px;
    font-family: monospace;
    font-size: 0.62rem;
}

.diff-add { color: #4ade80; }
.diff-del { color: #f87171; }

.lm-ai-compose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.2);
    font-size: 0.65rem;
    color: var(--text-dim);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════
   LOGOS / SOCIAL PROOF
   ══════════════════════════════════════════════════════════════════ */
.logos-section {
    position: relative;
    z-index: 1;
    padding: 60px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.logos-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.logo-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dim);
    letter-spacing: -0.01em;
    padding: 8px 24px;
    transition: color 0.2s;
}

.logo-item:hover { color: var(--text-muted); }

.logo-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
}

/* ══════════════════════════════════════════════════════════════════
   FEATURES / SERVICES (BENTO GRID)
   ══════════════════════════════════════════════════════════════════ */
.features-section {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.footer-inner {
    max-width: 1540px;
    margin: 0 auto;
    padding: 0 48px;
}

.features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 4px 12px;
    background: var(--accent-soft);
    border: 1px solid rgba(94,106,210,0.25);
    border-radius: 99px;
}

.features-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--white);
    max-width: 760px;
}

.features-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.65;
}

/* Bento grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Card base */
.bento-card {
    --card-accent: #5E6AD2;
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: 
        radial-gradient(circle 200px at var(--mx, -9999px) var(--my, -9999px),
                        rgba(255,255,255,0.04) 0%, transparent 80%),
        var(--card-bg);
}

.bento-card:hover {
    border-color: rgba(255,255,255,0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Wide card (spans 2 cols) */
.bento-wide {
    grid-column: span 2;
    flex-direction: row;
    min-height: 340px;
}

.bento-wide .bento-text { flex: 1; min-width: 0; }
.bento-wide .bento-visual { flex: 0 0 44%; }

/* Bento text content */
.bento-text {
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
}

.bento-eyebrow {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.35;
    color: var(--white);
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 480px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-top: 4px;
    transition: gap 0.2s, opacity 0.2s;
}

.bento-link:hover { gap: 10px; }
.bento-link.dimmed { color: var(--text-dim); cursor: default; }

.coming-soon-chip {
    display: inline-block;
    padding: 2px 9px;
    background: rgba(255,193,7,0.1);
    border: 1px solid rgba(255,193,7,0.25);
    border-radius: 99px;
    font-size: 0.68rem;
    color: #ffc107;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-left: 4px;
}

/* Bento visual panels */
.bento-visual {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.bento-wide .bento-visual {
    border-top: none;
    border-left: 1px solid rgba(255,255,255,0.06);
}

/* B2B Data visual */
.bento-data-visual {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.data-nodes {
    position: relative;
    width: 200px;
    height: 200px;
}

.data-node {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(94,106,210,0.3);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    font-size: 0.72rem;
    line-height: 1.4;
    transform-origin: center center;
}

.dn-label { font-weight: 600; color: var(--white); }
.dn-sub { color: #4ade80; font-size: 0.65rem; }

.dn1 { top: 8%;  left: 5%;   animation: floatA 4s ease-in-out infinite; }
.dn2 { top: 8%;  right: 5%;  animation: floatB 4.5s ease-in-out infinite 0.5s; }
.dn3 { bottom: 8%; left: 5%; animation: floatC 3.8s ease-in-out infinite 1s; }
.dn4 { bottom: 8%; right: 5%;animation: floatA 4.2s ease-in-out infinite 1.5s; }

.dn-connector {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@keyframes floatA { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-7px); } }
@keyframes floatB { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-5px); } }
@keyframes floatC { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-9px); } }

/* WhatsApp visual */
.bento-wa-visual {
    background: radial-gradient(circle at 50% 50%, rgba(37,211,102,0.08) 0%, transparent 65%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 20px 0;
}

.wa-chat-mockup {
    width: 100%;
    max-width: 260px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-msg { max-width: 85%; }

.wa-msg span {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    line-height: 1.45;
}

.wa-msg-in  { align-self: flex-start; }
.wa-msg-out { align-self: flex-end; text-align: right; }

.wa-msg-in  span { background: rgba(255,255,255,0.07); color: var(--text-muted); }
.wa-msg-out span { background: rgba(37,211,102,0.2);  color: #4ade80; }

.wa-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px;
}

.wa-typing span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--text-dim);
    animation: bounce 1.2s ease-in-out infinite;
}

.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce { 0%,80%,100% { transform:translateY(0); } 40% { transform:translateY(-5px); } }

/* Mail visual */
.bento-mail-visual {
    background: radial-gradient(circle at 50% 50%, rgba(94,106,210,0.1) 0%, transparent 65%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mail-mockup {
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 8px 10px;
}

.mail-circle { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; opacity: 0.8; }

.mail-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }

.ml-line {
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 99px;
}

.mail-status {
    font-size: 0.65rem;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 99px;
    flex-shrink: 0;
}

.mail-status.sent   { background: rgba(94,106,210,0.15); color: #8a94e8; }
.mail-status.opened { background: rgba(74,222,128,0.15); color: #4ade80; }

.mail-progress {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 0 4px;
}

.mp-label { font-size: 0.68rem; color: var(--text-dim); white-space: nowrap; }
.mp-bar   { flex: 1; height: 4px; background: rgba(255,255,255,0.07); border-radius: 99px; overflow: hidden; }
.mp-fill  { height: 100%; background: linear-gradient(90deg, #5E6AD2, #e879f9); border-radius: 99px; }
.mp-pct   { font-size: 0.68rem; color: var(--text-muted); }

/* CRM pipeline visual */
.bento-crm-visual {
    background: radial-gradient(circle at 50% 50%, rgba(255,193,7,0.06) 0%, transparent 65%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.crm-pipeline {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 460px;
}

.pipe-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pipe-header {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 0 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pipe-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.pipe-card.won {
    background: rgba(74,222,128,0.08);
    border-color: rgba(74,222,128,0.2);
    color: #4ade80;
}

/* ══════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════ */
.how-section {
    padding: 80px 0 120px;
    position: relative;
    z-index: 1;
}

.how-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 56px;
}

.how-card {
    background: var(--bg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.3s;
}

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

.how-icon {
    width: 32px; height: 32px; /* Smaller */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid rgba(86,95,173,0.15); /* Duller border */
    border-radius: var(--radius-sm);
    color: var(--accent);
    flex-shrink: 0;
}

.how-icon svg {
    width: 18px;
    height: 18px;
}

.how-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
}

.how-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════════ */
.about-section {
    position: relative;
    z-index: 1;
    padding: 120px 24px;
    border-top: 1px solid var(--border);
}

.about-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: var(--white);
}

.about-inner h2 em {
    font-style: normal;
    color: var(--accent);
}

.about-inner > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 640px;
}

/* Stat row */
.about-stats {
    display: flex;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: 100%;
    margin-top: 8px;
}

.about-stat {
    flex: 1;
    background: var(--card-bg);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: background 0.2s;
}

.about-stat:hover { background: rgba(255,255,255,0.04); }

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════════ */
.cta-section {
    padding: 80px 24px 120px;
    position: relative;
    z-index: 1;
}

.cta-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 64px 48px;
    text-align: center;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 600px; height: 300px;
    background: transparent;
    pointer-events: none;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: var(--white);
    position: relative;
}

.cta-inner p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 16px auto 0;
    line-height: 1.65;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
    position: relative;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 72px 24px 40px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.social-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
    border-color: var(--border-hover);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

/* Footer bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

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

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

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

/* ══════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════════ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children in a grid */
.bento-grid .bento-card:nth-child(1).reveal-on-scroll { transition-delay: 0.05s; }
.bento-grid .bento-card:nth-child(2).reveal-on-scroll { transition-delay: 0.12s; }
.bento-grid .bento-card:nth-child(3).reveal-on-scroll { transition-delay: 0.19s; }
.bento-grid .bento-card:nth-child(4).reveal-on-scroll { transition-delay: 0.26s; }

.how-grid .how-card:nth-child(1).reveal-on-scroll { transition-delay: 0.05s; }
.how-grid .how-card:nth-child(2).reveal-on-scroll { transition-delay: 0.12s; }
.how-grid .how-card:nth-child(3).reveal-on-scroll { transition-delay: 0.19s; }

/* ══════════════════════════════════════════════════════════════════
   HERO ENTRANCE ANIMATION
   ══════════════════════════════════════════════════════════════════ */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bento-wide {
        flex-direction: column;
    }

    .bento-wide .bento-visual {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
        min-height: 220px;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Roadmap Section ─────────────────────────────────────────────── */
.roadmap-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg);
    overflow: hidden;
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 80px;
}

.roadmap-title {
    flex: 1;
}

.roadmap-title h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--white);
}

.roadmap-desc {
    flex: 1;
    max-width: 480px;
}

.roadmap-desc p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.roadmap-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.roadmap-main {
    display: flex;
    border: 1px solid rgba(255,255,255,0.05);
    background: #080808;
    border-radius: 8px;
    height: 480px;
    overflow: hidden;
    position: relative;
}

.roadmap-sidebar {
    width: 240px;
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    background: #080808;
    flex-shrink: 0;
}

.rm-sidebar-title {
    padding: 14px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.rm-items { padding: 8px 0; }

.rm-item {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    gap: 12px;
    transition: background 0.2s;
}

.rm-item:hover { background: rgba(255,255,255,0.03); }

.rm-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    border-radius: 4px;
    font-size: 0.65rem;
}

.rm-item-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.rm-item-count {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-dim);
}

@media (max-width: 768px) {
    :root { --nav-h: 56px; }

    .nav-links,
    .nav-actions { display: none; }

    .nav-hamburger { display: flex; }
    .nav-mobile-drawer { display: flex; }

    .hero { padding-top: calc(var(--nav-h) + 60px); }

    .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }

    .mockup-body { flex-direction: column; height: auto; }
    .mockup-sidebar { width: 100%; height: auto; flex-direction: row; padding: 12px 16px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .sidebar-nav { flex-direction: row; padding: 0; }
    .sidebar-logo { display: none; }
    .mockup-main { padding: 14px; }
    .mock-stats { flex-direction: column; gap: 8px; }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide {
        grid-column: span 1;
    }

    .bento-wide .bento-visual { min-height: 180px; }

    .how-grid { border-radius: var(--radius-lg); }
    .how-card { padding: 24px 20px; }

    .cta-inner { padding: 40px 24px; }

    .about-stats { flex-direction: column; }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-cta-row { flex-direction: column; }

    .logos-row { gap: 8px; }
    .logo-divider { display: none; }
    .logo-item { font-size: 0.85rem; padding: 4px 12px; }

    .features-section { padding: 80px 0; }
    .features-header { margin-bottom: 40px; }

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

@media (max-width: 480px) {
    .bento-text { padding: 24px 20px; }
    .about-inner h2 { font-size: 1.75rem; }
    .stat-num { font-size: 1.7rem; }
    .footer-links-grid { grid-template-columns: 1fr; }
    .signal-row { gap: 6px; }
    .signal-chip { font-size: 0.72rem; }
}

/* Roadmap Card */
.roadmap-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    height: 580px;
    display: flex;
    flex-direction: column;
}

.roadmap-card-top {
    display: flex;
    padding: 0 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}

.rm-tab {
    padding: 14px 16px;
    font-size: 0.8rem;
    color: var(--text-dim);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color 0.2s;
}

.rm-tab.active {
    color: var(--white);
    border-color: var(--accent);
}

.roadmap-card-main {
    flex: 1;
    display: flex;
}

/* Graph */
.roadmap-graph {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.rm-graph-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.7rem;
    color: var(--text-dim);
    text-align: center;
    font-weight: 500;
}

.rm-graph-content {
    flex: 1;
    position: relative;
    background-image: 
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 80px 40px;
    overflow: hidden;
    /* Strict Fading Edge — Linear 1:1 */
    mask-image: linear-gradient(to right, black 75%, transparent 100%),
                linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 75%, transparent 100%),
                        linear-gradient(to bottom, black 75%, transparent 100%);
}

.rm-pulse-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.rm-node-group {
    position: absolute;
    display: flex;
}

.rm-node {
    padding: 6px 10px;
    background: #0D0D0F;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    white-space: nowrap;
}

.rm-node.active {
    color: var(--white);
    border-color: rgba(255,255,255,0.15);
    background: #111;
}

.rm-badge {
    font-size: 0.55rem;
    padding: 1px 6px;
    background: #222;
    color: var(--text-muted);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.rm-badge.done { background: rgba(62, 172, 114, 0.15); color: #3EAC72; }
.rm-badge.live { background: rgba(94, 106, 210, 0.15); color: #5E6AD2; }
.rm-badge.testing { background: rgba(234, 179, 8, 0.15); color: #EAB308; }
.rm-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
    top: 50%;
    left: 100%;
    z-index: 1;
    transform-origin: left center;
}

.rm-pulse-anim {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 8px #fff;
    top: 50%;
    left: 100%;
    margin-top: -1.5px;
    animation: pipeline-flow 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pipeline-flow {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(280px); opacity: 0; }
}

@media (max-width: 1024px) {
    .roadmap-header { flex-direction: column; gap: 24px; }
    .roadmap-desc { max-width: 100%; }
    .roadmap-sidebar { width: 240px; }
}

@media (max-width: 768px) {
    .roadmap-sidebar { display: none; }
    .roadmap-card { height: 400px; }
}

/* ── Bento Grid & Spotlights ─────────────────────────────────────── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    background: #0D0D10;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.bento-wide { 
    grid-column: span 2; 
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.bento-wide .bento-text {
    flex: 1;
    margin-bottom: 0;
}

.bento-wide .bento-visual {
    flex: 1;
    margin-top: 0;
    min-height: 240px;
}

/* Spotlight hover effect using --mx and --my */
.bento-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(
        600px circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 255, 255, 0.06),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.bento-card:hover::before { opacity: 1; }
.bento-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }

.bento-text {
    position: relative;
    z-index: 2;
}

.bento-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.bento-eyebrow svg { color: var(--accent); }

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.bento-link:hover { opacity: 0.7; }
.bento-link span { transition: transform 0.2s; }
.bento-link:hover span { transform: translateX(4px); }

.bento-visual {
    margin-top: 32px;
    position: relative;
    z-index: 0;
    flex: 1;
    min-height: 200px;
    background: #080808;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; flex-direction: column; gap: 0; }
    .bento-wide .bento-text { margin-bottom: 24px; }
    .bento-wide .bento-visual { min-height: 200px; margin-top: 24px; }
}

/* ── Modals (Linear Matte Glass Style) ──────────────────────────── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.modal-overlay.visible { opacity: 1; pointer-events: auto; }

.service-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -48%) scale(0.96);
    width: 90%;
    max-width: 500px;
    background: #0F0F12;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    border-radius: 16px;
    padding: 32px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s var(--ease);
}

.service-modal.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--white); }

.service-modal h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.service-modal p, .service-modal ul {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-modal ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.modal-subhead {
    font-weight: 600;
    color: var(--white) !important;
    margin-bottom: 8px !important;
}

/* Contact form modal injects */
.lm-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lm-form input {
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 14px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}

.lm-form input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.25);
    background: #111;
}

.lm-success-msg {
    text-align: center;
    color: var(--white);
    font-size: 1rem;
    margin-top: 20px;
}

.lm-success-msg svg {
    color: var(--accent);
    width: 32px; height: 32px;
    margin-bottom: 12px;
}


/* ── Founder Quote Section ───────────────────────────────────────── */
.founder-section {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    background: var(--bg);
}

.founder-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.5);
}

.founder-inner::before {
    content: "“";
    font-family: serif;
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 140px;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    pointer-events: none;
}

.founder-quote {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.founder-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.founder-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.founder-meta strong {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.founder-meta span {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ── Animated Ghost Mascot ────────────────────────────────────────── */
.ghost-mascot {
    width: 80px;
    height: 80px;
    animation: ghostFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.ghost-body {
    fill: var(--ghost-white);
    transform-origin: center bottom;
    animation: ghostSway 2.5s ease-in-out infinite;
}

.ghost-eye {
    fill: #000;
    transform-origin: center;
    animation: ghostBlink 4s ease-in-out infinite;
}

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

@keyframes ghostSway {
    0%, 100% { transform: rotate(-3deg) translateX(-1px); }
    50% { transform: rotate(3deg) translateX(1px); }
}

@keyframes ghostBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

/* ── Why Choose Us & Combo ────────────────────────────────────────── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.benefit-item {
    padding: 24px;
    border-left: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s;
}

.benefit-item:hover {
    border-left-color: var(--accent);
}

.benefit-item h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.benefit-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-bottom: 16px;
}

.combo-card {
    background: linear-gradient(135deg, rgba(94, 106, 210, 0.05), rgba(0,0,0,0.8));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.combo-card .btn-primary-hero {
    margin-top: 24px;
}

@media (max-width: 768px) {
    .combo-card { padding: 40px 20px; }
    .benefit-grid { grid-template-columns: 1fr; }
}

/* ── Animated Ghost Mascot ────────────────────────────────────────── */
.ghost-mascot {
    width: 80px;
    height: 80px;
    animation: ghostFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

.ghost-body {
    fill: var(--ghost-white);
    transform-origin: center bottom;
    animation: ghostSway 2.5s ease-in-out infinite;
}

.ghost-eye {
    fill: #000;
    transform-origin: center;
    animation: ghostBlink 4s ease-in-out infinite;
}

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

@keyframes ghostSway {
    0%, 100% { transform: rotate(-3deg) translateX(-1px); }
    50% { transform: rotate(3deg) translateX(1px); }
}

@keyframes ghostBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}