/* ===================================
   HireUp Marketing Website v3.0
   Dark-Mode-First Redesign (Supersonik-inspired)
   Brand Colors: Blue (#2563eb), Purple (#a855f7)
   Typography: Poppins (headings), Inter (body)
   =================================== */

/* ===================================
   CSS Reset & Variables
   =================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-blue: #2563eb;
    --primary-blue-light: #3b82f6;
    --secondary-purple: #a855f7;
    --secondary-purple-light: #c084fc;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;

    /* Dark mode */
    --dark-bg: #0c0f1a;
    --dark-surface: #141825;
    --dark-surface-2: #1a1f30;
    --dark-border: rgba(255, 255, 255, 0.07);
    --dark-text: rgba(255, 255, 255, 0.92);
    --dark-text-muted: rgba(255, 255, 255, 0.55);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #a855f7 100%);
    --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.18) 0%, rgba(168, 85, 247, 0.08) 40%, transparent 70%);

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 2rem;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow-blue: 0 0 40px rgba(37, 99, 235, 0.15);
    --shadow-glow-purple: 0 0 40px rgba(168, 85, 247, 0.12);

    /* Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.25rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--dark-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    min-width: 320px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: white;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--dark-text-muted); max-width: 65ch; }

a { text-decoration: none; color: inherit; transition: var(--transition-base); }

img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; height: auto; }
.fa, .fas, .far, .fab, .fa-solid, .fa-regular, .fa-brands {
    max-width: 100%; max-height: 100%; display: inline-block;
}

/* ===================================
   Utilities
   =================================== */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* All sections are dark-themed */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-purple-light);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: white;
}

.section-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: var(--dark-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    font-family: var(--font-body);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}
.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid rgba(37, 99, 235, 0.4);
}
.btn-outline:hover {
    background: rgba(37, 99, 235, 0.08);
    border-color: var(--primary-blue);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg { padding: 1rem 2rem; font-size: clamp(1rem, 2vw, 1.125rem); }
.btn-xl { padding: 1.25rem 2.5rem; font-size: clamp(1.0625rem, 2.5vw, 1.25rem); }
.btn-full { width: 100%; }
.btn-compact { padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.btn-nav { padding: 0.6rem 1.4rem; font-size: 0.9rem; }

/* ===================================
   Navigation - Frosted glass, dark default
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(12, 15, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
    background: rgba(12, 15, 26, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Light nav after hero */
.nav.nav-light {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
.nav.nav-light .nav-link { color: var(--text-dark); }
.nav.nav-light .nav-link:hover { color: var(--primary-blue); }
.nav.nav-light .nav-link.active { color: var(--primary-blue); }
.nav.nav-light .nav-link-secondary { color: var(--text-gray); }
.nav.nav-light .nav-link-secondary:hover { color: var(--primary-blue); }
.nav.nav-light .nav-toggle span { background: var(--text-dark); }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.nav-brand { display: flex; align-items: center; }
.nav-brand a { display: flex; align-items: center; }

.nav-logo {
    height: 36px;
    width: auto;
    max-height: 36px;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition-base);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}
.nav-link:hover { color: white; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: white; }
.nav-link.active::after { width: 100%; }

.nav-link-secondary {
    color: var(--dark-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-base);
}
.nav-link-secondary:hover { color: white; }

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ===================================
   HERO - Full dark with glow
   =================================== */
.hero {
    position: relative;
    padding: 9rem 0 5rem;
    background: var(--dark-bg);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, rgba(168, 85, 247, 0.08) 40%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.hero-glow-secondary {
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 70%);
}

@keyframes glowPulse {
    0% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

/* ===================================
   Continuous Flow Animation
   Conversations continuously shape the living profile
   =================================== */
.orbit-system {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* --- Living Core: the ATS profile that evolves --- */
.core-layer {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Primary glow - breathing, shifts blue to purple */
.core-glow-1 {
    width: 200px; height: 200px;
    background: radial-gradient(circle,
        rgba(37, 99, 235, 0.18) 0%,
        rgba(168, 85, 247, 0.08) 50%,
        transparent 70%);
    animation: coreBreathe1 6s ease-in-out infinite;
}
/* Secondary glow - offset timing, slightly bigger, purple-shifted */
.core-glow-2 {
    width: 280px; height: 280px;
    background: radial-gradient(circle,
        rgba(168, 85, 247, 0.1) 0%,
        rgba(37, 99, 235, 0.04) 50%,
        transparent 70%);
    animation: coreBreathe2 8s ease-in-out infinite 2s;
}
/* Inner ring - slowly rotating, shows "processing" */
.core-ring-inner {
    width: 140px; height: 140px;
    border: 1px solid rgba(37, 99, 235, 0.12);
    animation: coreRotate 20s linear infinite;
}
/* Outer ring - counter-rotating, dashed */
.core-ring-outer {
    width: 220px; height: 220px;
    border: 1px dashed rgba(168, 85, 247, 0.07);
    animation: coreRotate 30s linear infinite reverse;
}
/* Pulse ring - expands outward to show "receiving data" */
.core-ring-pulse {
    width: 100px; height: 100px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: corePulseExpand 4s ease-out infinite;
}

@keyframes coreBreathe1 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
@keyframes coreBreathe2 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.8; }
}
@keyframes coreRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes corePulseExpand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    70% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* --- Trace memory SVG (positioned behind everything) --- */
.trace-lines {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0.4;
}

/* --- Continuous stream lanes (particles always flowing inward) --- */
.stream-lane {
    position: absolute;
    pointer-events: none;
}
.stream-lane span {
    position: absolute;
    width: 3px; height: 3px;
    border-radius: 50%;
    opacity: 0;
}

/* Lane 1: top-left (LinkedIn direction) → center */
.lane-1 { top: 15%; left: 12%; width: 38%; height: 35%; }
.lane-1 span {
    background: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6), 0 0 2px rgba(59, 130, 246, 1);
    animation: flowToCenter 3.5s linear infinite;
}
.lane-1 span:nth-child(1) { animation-delay: 0s; }
.lane-1 span:nth-child(2) { animation-delay: 1.2s; }
.lane-1 span:nth-child(3) { animation-delay: 2.4s; }

/* Lane 2: top-right (Email direction) → center */
.lane-2 { top: 18%; right: 15%; width: 35%; height: 32%; }
.lane-2 span {
    background: rgba(192, 132, 252, 0.9);
    box-shadow: 0 0 8px rgba(192, 132, 252, 0.6), 0 0 2px rgba(192, 132, 252, 1);
    animation: flowToCenterR 4s linear infinite;
}
.lane-2 span:nth-child(1) { animation-delay: 0.3s; }
.lane-2 span:nth-child(2) { animation-delay: 1.6s; }
.lane-2 span:nth-child(3) { animation-delay: 2.9s; }

/* Lane 3: bottom-left (WhatsApp direction) → center */
.lane-3 { bottom: 20%; left: 18%; width: 32%; height: 30%; }
.lane-3 span {
    background: rgba(74, 222, 128, 0.85);
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.5), 0 0 2px rgba(74, 222, 128, 1);
    animation: flowToCenterBL 3.8s linear infinite;
}
.lane-3 span:nth-child(1) { animation-delay: 0.6s; }
.lane-3 span:nth-child(2) { animation-delay: 1.9s; }
.lane-3 span:nth-child(3) { animation-delay: 3.1s; }

/* Lane 4: left (Calls direction) → center */
.lane-4 { top: 42%; left: 8%; width: 42%; height: 16%; }
.lane-4 span {
    background: rgba(96, 165, 250, 0.85);
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.5), 0 0 2px rgba(96, 165, 250, 1);
    animation: flowToCenterL 4.2s linear infinite;
}
.lane-4 span:nth-child(1) { animation-delay: 0.8s; }
.lane-4 span:nth-child(2) { animation-delay: 2.2s; }
.lane-4 span:nth-child(3) { animation-delay: 3.5s; }

/* Lane 5: bottom-right (Video direction) → center */
.lane-5 { bottom: 22%; right: 12%; width: 38%; height: 28%; }
.lane-5 span {
    background: rgba(192, 132, 252, 0.8);
    box-shadow: 0 0 8px rgba(192, 132, 252, 0.4), 0 0 2px rgba(192, 132, 252, 0.9);
    animation: flowToCenterBR 4.5s linear infinite;
}
.lane-5 span:nth-child(1) { animation-delay: 0.4s; }
.lane-5 span:nth-child(2) { animation-delay: 1.8s; }
.lane-5 span:nth-child(3) { animation-delay: 3.2s; }

/* Flow animations - particles travel from edge to center of their lane */
@keyframes flowToCenter {
    0% { top: 0; left: 0; opacity: 0; }
    10% { opacity: 0.9; }
    80% { opacity: 0.7; }
    100% { top: 100%; left: 100%; opacity: 0; }
}
@keyframes flowToCenterR {
    0% { top: 0; right: 0; left: auto; opacity: 0; }
    10% { opacity: 0.9; }
    80% { opacity: 0.7; }
    100% { top: 100%; right: 100%; left: auto; opacity: 0; }
}
@keyframes flowToCenterBL {
    0% { bottom: 0; left: 0; top: auto; opacity: 0; }
    10% { opacity: 0.9; }
    80% { opacity: 0.7; }
    100% { bottom: 100%; left: 100%; top: auto; opacity: 0; }
}
@keyframes flowToCenterL {
    0% { top: 50%; left: 0; opacity: 0; }
    10% { opacity: 0.9; }
    80% { opacity: 0.7; }
    100% { top: 50%; left: 100%; opacity: 0; }
}
@keyframes flowToCenterBR {
    0% { bottom: 0; right: 0; top: auto; left: auto; opacity: 0; }
    10% { opacity: 0.9; }
    80% { opacity: 0.7; }
    100% { bottom: 100%; right: 100%; top: auto; left: auto; opacity: 0; }
}

/* --- Orbit paths (icons still orbit, but slower & more ambient) --- */
.orbit-path {
    position: absolute;
    top: 50%; left: 50%;
    transform-origin: center center;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.orbit-path-1 {
    width: 440px; height: 330px;
    margin-left: -220px; margin-top: -165px;
    animation: orbitSpin1 30s linear infinite;
}
.orbit-path-2 {
    width: 560px; height: 400px;
    margin-left: -280px; margin-top: -200px;
    animation: orbitSpin2 38s linear infinite;
}
.orbit-path-3 {
    width: 500px; height: 370px;
    margin-left: -250px; margin-top: -185px;
    animation: orbitSpin3 34s linear infinite;
}
.orbit-path-4 {
    width: 640px; height: 440px;
    margin-left: -320px; margin-top: -220px;
    animation: orbitSpin4 42s linear infinite;
}
.orbit-path-5 {
    width: 700px; height: 470px;
    margin-left: -350px; margin-top: -235px;
    animation: orbitSpin5 48s linear infinite;
}

@keyframes orbitSpin1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitSpin2 { from { transform: rotate(72deg); } to { transform: rotate(432deg); } }
@keyframes orbitSpin3 { from { transform: rotate(144deg); } to { transform: rotate(-216deg); } }
@keyframes orbitSpin4 { from { transform: rotate(216deg); } to { transform: rotate(576deg); } }
@keyframes orbitSpin5 { from { transform: rotate(288deg); } to { transform: rotate(-72deg); } }

/* --- Orbiting icons - steady glow, no episodic pulse --- */
.orbit-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.orbit-icon svg {
    width: 20px; height: 20px;
    position: relative;
    z-index: 1;
}

/* Counter-rotation to keep icons upright */
.orbit-path-1 .orbit-icon { animation: counterSpin1 30s linear infinite; }
.orbit-path-2 .orbit-icon { animation: counterSpin2 38s linear infinite; }
.orbit-path-3 .orbit-icon { animation: counterSpin3 34s linear infinite; }
.orbit-path-4 .orbit-icon { animation: counterSpin4 42s linear infinite; }
.orbit-path-5 .orbit-icon { animation: counterSpin5 48s linear infinite; }

@keyframes counterSpin1 { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes counterSpin2 { from { transform: rotate(-72deg); } to { transform: rotate(-432deg); } }
@keyframes counterSpin3 { from { transform: rotate(-144deg); } to { transform: rotate(216deg); } }
@keyframes counterSpin4 { from { transform: rotate(-216deg); } to { transform: rotate(-576deg); } }
@keyframes counterSpin5 { from { transform: rotate(-288deg); } to { transform: rotate(72deg); } }

/* Icon positions on their orbit edge + steady colors */
.oi-linkedin {
    top: -24px; left: 50%; margin-left: -24px;
    background: rgba(37, 99, 235, 0.12);
    color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.2);
}
.oi-email {
    top: 50%; right: -24px; margin-top: -24px;
    background: rgba(168, 85, 247, 0.12);
    color: rgba(192, 132, 252, 0.8);
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.2);
}
.oi-whatsapp {
    bottom: -24px; left: 35%; margin-left: -24px;
    background: rgba(22, 163, 106, 0.12);
    color: rgba(74, 222, 128, 0.7);
    box-shadow: 0 0 24px rgba(22, 163, 106, 0.2);
}
.oi-phone {
    top: 50%; left: -24px; margin-top: -24px;
    background: rgba(37, 99, 235, 0.1);
    color: rgba(96, 165, 250, 0.7);
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.15);
}
.oi-zoom {
    top: -24px; left: 28%; margin-left: -24px;
    background: rgba(168, 85, 247, 0.08);
    color: rgba(192, 132, 252, 0.6);
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.12);
}

/* --- Orbit icon labels --- */
.orbit-icon-label {
    position: absolute;
    bottom: -16px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    white-space: nowrap;
}

.hero .container { position: relative; z-index: 1; }

.hero-content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}

.hero-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--primary-blue-light);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.08;
    letter-spacing: -0.025em;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.3rem);
    color: var(--dark-text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.hero-cta .nav-link-secondary {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}
.hero-cta .nav-link-secondary:hover { color: white; }

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.hero-pill i {
    color: var(--primary-blue-light);
    font-size: 0.75rem;
}

/* Integration logos */
.hero-integrations {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--dark-border);
}

.hero-integrations-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.hero-logo-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-base);
}
.hero-logo-item:hover {
    color: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

/* Problem Section */
.problem-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
}

.problem-rows {
    max-width: 800px;
    margin: 0 auto;
}

.problem-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--dark-border);
    align-items: start;
}
.problem-row:last-child { border-bottom: none; }

.problem-observation {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    line-height: 1.5;
}

.problem-example {
    font-size: 1rem;
    color: var(--dark-text-muted);
    line-height: 1.7;
    font-style: italic;
}
}

/* Solution Section - Dark surface variant */
.solution-section {
    background: var(--dark-surface);
    background-image: radial-gradient(ellipse at 80% 30%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
}

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

.solution-card {
    background: var(--dark-surface-2);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--dark-border);
    transition: var(--transition-base);
}
.solution-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.08);
}

.solution-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
}

.solution-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: white;
}

.solution-card p {
    font-size: 0.925rem;
    color: var(--dark-text-muted);
    margin: 0;
    line-height: 1.65;
}

.solution-tagline {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark-text-muted);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Insight Section - 3 cards + closing line
   =================================== */
.insight-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 70% 30%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
}

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

.insight-card {
    background: var(--dark-surface);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--dark-border);
    transition: var(--transition-base);
}
.insight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.08);
}

.insight-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: white;
    background: var(--gradient-primary);
}

.insight-card h3 {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.insight-card p {
    font-size: 1rem;
    color: var(--dark-text-muted);
    margin: 0;
    line-height: 1.7;
}

.insight-closing {
    text-align: center;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Cost of Doing Nothing - Numbered list
   =================================== */
.cost-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 80% 20%, rgba(239, 68, 68, 0.03) 0%, transparent 50%),
                       radial-gradient(ellipse at 20% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
}

.cost-list {
    max-width: 720px;
    margin: 0 auto;
}

.cost-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem 0;
    align-items: flex-start;
}

.cost-number {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    color: rgba(239, 68, 68, 0.9);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-top: 0.15rem;
}

.cost-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cost-item-content strong {
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
}

.cost-item-content span {
    color: var(--dark-text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.cost-divider {
    border: none;
    border-top: 1px solid var(--dark-border);
    margin: 0;
}

.cost-closing {
    text-align: center;
    margin-top: 2.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cost-closing p {
    font-size: 1rem;
    color: rgba(239, 68, 68, 0.7);
    font-weight: 500;
    line-height: 1.7;
    font-style: italic;
}

/* ===================================
   Value Section
   =================================== */
.value-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
                       radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.04) 0%, transparent 50%);
}

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

.value-card {
    background: var(--dark-surface);
    border-radius: var(--radius-2xl);
    padding: 2.25rem;
    border: 1px solid var(--dark-border);
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.08);
}

.value-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: white;
    background: var(--gradient-primary);
}

.value-card h3 {
    font-size: clamp(1.0625rem, 2vw, 1.2rem);
    color: white;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.925rem;
    color: var(--dark-text-muted);
    margin: 0;
    line-height: 1.65;
}

/* ===================================
   How It Works - Dark
   =================================== */
.how-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 50% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 55%);
}

.steps-container {
    max-width: 750px;
    margin: 0 auto 4rem;
    position: relative;
}

/* Connecting line between steps */
.steps-container::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 60px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(37, 99, 235, 0.3), rgba(168, 85, 247, 0.3));
    z-index: 0;
}

.step-item {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
    align-items: start;
    position: relative;
    z-index: 1;
}
.step-item:last-child { margin-bottom: 0; }

.step-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
    font-family: var(--font-heading);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    font-size: 1rem;
    color: var(--dark-text-muted);
    margin: 0;
    line-height: 1.65;
}

/* Integration blocks */
.integrations-blocks {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.integration-block {
    text-align: center;
    padding: 2.25rem 2rem;
    background: var(--dark-surface);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--dark-border);
}

.integration-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.integration-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.integration-item-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    padding: 0.45rem 0.9rem;
    background: var(--dark-surface-2);
    border-radius: 999px;
    border: 1px solid var(--dark-border);
    transition: var(--transition-base);
}
.integration-item-logo:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.1);
}

.integration-logo {
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
    color: var(--primary-blue-light);
    opacity: 0.8;
}

.integration-item-more {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark-text-muted);
    font-style: italic;
    padding: 0.45rem 0.9rem;
}

/* Product Section - Dark */
.product-section {
    background: var(--dark-surface);
    background-image: radial-gradient(ellipse at 30% 20%, rgba(168, 85, 247, 0.04) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.feature-showcase.reverse { direction: rtl; }
.feature-showcase.reverse > * { direction: ltr; }

.feature-visual {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.feature-description { padding: 1rem 0; }
.feature-description h3 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
    color: white;
}
.feature-description p {
    font-size: 1.0625rem;
    color: var(--dark-text-muted);
    line-height: 1.7;
}

/* Video Demo Placeholder */
.video-demo-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.video-demo-placeholder {
    aspect-ratio: 16 / 10;
    background: var(--dark-bg);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}
.video-demo-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
}
.video-demo-placeholder:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.12);
}

.video-demo-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition-base);
    position: relative;
    z-index: 1;
}
.video-demo-placeholder:hover .video-demo-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

.video-demo-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
    position: relative;
    z-index: 1;
}

.video-demo-sublabel {
    font-size: 0.85rem;
    color: var(--dark-text-muted);
    margin: 0;
    max-width: 280px;
    text-align: center;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.video-demo-player {
    width: 100%;
    border-radius: var(--radius-2xl);
}

/* ===================================
   Conversation Extraction Demo
   =================================== */
.conversation-extraction-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background: var(--dark-surface);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.conv-conversation-panel {
    padding: 1.25rem;
    border-right: 1px solid var(--dark-border);
    max-height: 420px;
    overflow-y: auto;
}

.conv-conversation-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--dark-border);
}

.conv-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.7rem; flex-shrink: 0;
}

.conv-conversation-info { flex: 1; }
.conv-conversation-name { font-size: 0.8rem; font-weight: 600; color: white; }
.conv-conversation-role { font-size: 0.7rem; color: var(--dark-text-muted); }

.conv-channel-badge {
    font-size: 0.6rem; padding: 0.2rem 0.5rem;
    background: rgba(22, 163, 106, 0.15); color: #4ade80;
    border-radius: 999px; font-weight: 600;
}

.conv-messages-container {
    display: flex; flex-direction: column; gap: 0.5rem;
}

.conv-message {
    max-width: 90%; padding: 0.5rem 0.75rem;
    border-radius: 10px; font-size: 0.72rem; line-height: 1.45;
}
.conv-recruiter { background: var(--dark-surface-2); color: var(--dark-text-muted); align-self: flex-start; }
.conv-candidate { background: rgba(37, 99, 235, 0.12); color: #93c5fd; align-self: flex-end; }
.conv-candidate.highlighted { background: rgba(37, 99, 235, 0.2); border: 1px solid rgba(37, 99, 235, 0.4); }
.conv-message-time { font-size: 0.55rem; color: var(--dark-text-muted); margin-top: 0.15rem; }

.conv-extraction-indicator {
    display: flex; align-items: center; justify-content: center;
    padding: 0 0.5rem; background: var(--dark-surface-2);
}
.conv-triangle {
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid var(--primary-blue);
    opacity: 0.4;
}

.conv-context-panel { padding: 1.25rem; max-height: 420px; overflow-y: auto; }
.conv-context-header { margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--dark-border); }
.conv-context-profile { display: flex; align-items: center; gap: 0.5rem; }
.conv-context-avatar {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--gradient-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.7rem; flex-shrink: 0;
}
.conv-context-info { flex: 1; }
.conv-context-name { font-size: 0.8rem; font-weight: 600; color: white; }
.conv-context-role { font-size: 0.7rem; color: var(--dark-text-muted); }
.conv-context-metadata { display: flex; gap: 0.4rem; margin-top: 0.25rem; }
.conv-context-metadata-item {
    font-size: 0.6rem; padding: 0.1rem 0.4rem;
    background: var(--dark-surface-2); border-radius: 999px; color: var(--dark-text-muted);
}
.conv-context-items { display: flex; flex-direction: column; gap: 0.5rem; }
.conv-context-item {
    padding: 0.6rem; background: var(--dark-surface-2);
    border-radius: 8px; border-left: 3px solid var(--primary-blue);
}
.conv-context-category {
    font-size: 0.55rem; text-transform: uppercase;
    letter-spacing: 0.05em; font-weight: 700;
    color: var(--primary-blue); margin-bottom: 0.2rem;
}
.conv-context-title { font-size: 0.72rem; font-weight: 600; color: white; margin-bottom: 0.15rem; }
.conv-context-quote { font-size: 0.65rem; color: var(--dark-text-muted); font-style: italic; margin-bottom: 0.15rem; }
.conv-context-source { font-size: 0.55rem; color: var(--dark-text-muted); }

/* ===================================
   HireUp Notification Card
   =================================== */
.hireup-notification-card {
    width: 100%; max-width: 480px; margin: 0 auto;
    background: var(--dark-surface); border: 1px solid var(--dark-border);
    border-radius: var(--radius-2xl); padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hireup-card-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.25rem;
}
.hireup-header-left { display: flex; align-items: center; gap: 0.5rem; }
.hireup-bell-icon { color: var(--primary-blue); width: 18px; height: 18px; }
.hireup-header-title { font-size: 1rem; font-weight: 600; color: white; margin: 0; }
.hireup-status-pill {
    background: var(--dark-surface-2); color: var(--dark-text-muted);
    padding: 4px 10px; border-radius: 999px;
    font-size: 0.7rem; font-weight: 500;
    animation: hireupStatusEmphasis 5s ease-in-out infinite;
}

.hireup-candidate-row {
    display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1rem;
}
.hireup-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gradient-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.75rem; flex-shrink: 0;
}
.hireup-candidate-info { flex: 1; }
.hireup-candidate-name { font-size: 0.875rem; font-weight: 600; color: white; margin-bottom: 1px; }
.hireup-candidate-meta { font-size: 0.75rem; color: var(--dark-text-muted); }
.hireup-timestamp { font-size: 0.75rem; color: var(--dark-text-muted); flex-shrink: 0; }

.hireup-claim-sentence {
    font-size: 0.875rem; color: var(--dark-text); line-height: 1.5; margin-bottom: 0.75rem;
}

.hireup-quoted-message {
    background: var(--dark-surface-2); border-left: 3px solid var(--dark-border);
    padding: 0.75rem; border-radius: 6px; margin-bottom: 1.25rem;
    position: relative;
}
.hireup-quote-icon { font-size: 1.5rem; color: var(--dark-text-muted); line-height: 0; margin-bottom: 0.25rem; font-family: Georgia, serif; }
.hireup-quote-text { font-size: 0.8rem; color: var(--dark-text-muted); line-height: 1.5; margin: 0; }

.hireup-action-button {
    width: 100%; background: var(--gradient-primary); color: white;
    border: none; padding: 0.75rem; border-radius: var(--radius-lg);
    font-size: 0.875rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 0.375rem; transition: var(--transition-base);
}
.hireup-action-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.hireup-action-button svg { width: 14px; height: 14px; }

@keyframes hireupStatusEmphasis {
    0%, 30% { background: var(--dark-surface-2); color: var(--dark-text-muted); }
    50% { background: #a855f7; color: #fff; }
    70%, 100% { background: var(--dark-surface-2); color: var(--dark-text-muted); }
}

/* ===================================
   Outreach Sequence Demo
   =================================== */
.outreach-container { width: 100%; max-width: 600px; margin: 0 auto; }

.outreach-sequence-wrapper { position: relative; height: 600px; }

.outreach-connector {
    position: absolute; left: 37px; top: 36px; width: 2px; height: 0;
    background: var(--secondary-purple); z-index: 1;
    animation: outreachLineGrow 12s ease-in-out infinite;
}

@keyframes outreachLineGrow {
    0%, 8.33% { height: 0; }
    66.67%, 100% { height: 360px; }
}

.outreach-step {
    position: absolute; left: 0; right: 0;
    background: var(--dark-surface); border: 1px solid var(--dark-border);
    border-radius: var(--radius-2xl); padding: 1.25rem;
    transition: var(--transition-base);
}
.outreach-step.outreach-email { top: 0; }
.outreach-step.outreach-whatsapp { top: 360px; }

.outreach-step-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.outreach-step-number {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary-blue); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; font-weight: 600; flex-shrink: 0;
    position: relative; z-index: 2;
}
.outreach-step-info { flex: 1; }
.outreach-step-label { font-size: 0.95rem; font-weight: 600; color: white; margin-bottom: 2px; }
.outreach-step-timing { font-size: 0.8rem; color: var(--dark-text-muted); }

.outreach-message-body {
    background: var(--dark-surface-2); border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg); padding: 1rem;
    font-size: 0.85rem; line-height: 1.6; color: var(--dark-text);
    margin-left: 48px; margin-bottom: 0.75rem;
    overflow: hidden; word-wrap: break-word;
}

.outreach-email .outreach-message-body {
    min-height: 200px; max-height: 200px; height: 200px;
    overflow: hidden; display: flex; flex-direction: column;
}

.outreach-whatsapp .outreach-message-body { padding: 0.75rem 1rem; }

.outreach-message-line { margin-bottom: 0.625rem; }
.outreach-message-line:last-child { margin-bottom: 0; }

.outreach-placeholder {
    color: var(--primary-blue-light); background: rgba(37, 99, 235, 0.12);
    padding: 1px 5px; border-radius: 3px; font-weight: 500;
}
.outreach-personalized {
    color: var(--secondary-purple-light); background: rgba(168, 85, 247, 0.12);
    padding: 1px 5px; border-radius: 3px; font-weight: 500;
}

.outreach-step.outreach-email { animation: outreachEmailHighlight 12s ease-in-out infinite; }
.outreach-step.outreach-whatsapp { animation: outreachWhatsappHighlight 12s ease-in-out infinite; }

@keyframes outreachEmailHighlight {
    0%, 8.33%, 66.67%, 75% { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.3); }
    78%, 100% { background: var(--dark-surface); border-color: var(--dark-border); }
}
@keyframes outreachWhatsappHighlight {
    0%, 75% { background: var(--dark-surface); border-color: var(--dark-border); }
    78%, 91.67% { background: rgba(37, 99, 235, 0.08); border-color: rgba(37, 99, 235, 0.3); }
    95%, 100% { background: var(--dark-surface); border-color: var(--dark-border); }
}
.outreach-whatsapp .outreach-message-body {
    opacity: 0;
    animation: outreachWhatsappMessageAppear 12s steps(1) infinite;
}
@keyframes outreachWhatsappMessageAppear {
    0%, 75% { opacity: 0; }
    78%, 100% { opacity: 1; }
}

/* ===================================
   Impact Section - Dark with glow
   =================================== */
.impact-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 60% 40%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    color: white;
    overflow: hidden;
}

.impact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.impact-card {
    background: var(--dark-surface);
    padding: 2.25rem 1.5rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 1px solid var(--dark-border);
    transition: var(--transition-base);
}
.impact-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.impact-stat {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.impact-card:first-child .impact-stat { font-size: clamp(1.5rem, 3vw, 2rem); }

.impact-label {
    font-size: 0.925rem; font-weight: 600;
    color: white; margin-bottom: 0.75rem;
}

.impact-card p {
    font-size: 0.85rem; color: var(--dark-text-muted);
    margin: 0; line-height: 1.55;
}

/* Compact variant for early signals */
.impact-metrics-compact { gap: 1.25rem; }
.impact-card-sm {
    padding: 1.75rem 1.25rem;
}
.impact-card-sm .impact-stat {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.impact-disclaimer {
    font-size: 0.85rem; color: var(--dark-text-muted);
    font-style: italic; text-align: center;
    max-width: 700px; margin: 0 auto;
}

/* Pricing Section - Dark surface */
.pricing-section {
    background: var(--dark-surface);
    background-image: radial-gradient(ellipse at 40% 60%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
}

.pricing-header {
    text-align: center; max-width: 700px; margin: 0 auto 3rem;
}
.pricing-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem; color: white;
}
.pricing-header p { color: var(--dark-text-muted); font-size: 1.05rem; line-height: 1.7; }

.pricing-comparison-layout {
    display: flex; gap: 1.5rem; align-items: flex-start;
}

.pricing-features-sidebar {
    flex-shrink: 0; width: 200px;
    background: var(--dark-surface-2);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--dark-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: visible;
}

.features-header {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--dark-border);
    background: var(--dark-surface-2);
    height: 10rem;
    display: flex; align-items: flex-start;
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}
.features-header h4 { font-size: 1rem; font-weight: 600; color: white; margin: 0; }

.feature-row {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--dark-border);
    height: 4.25rem;
    display: flex; align-items: center;
}
.feature-row:last-child { border-bottom: none; }
.feature-row-cta { height: 5rem; }

.feature-name {
    font-size: 0.875rem; color: var(--dark-text);
    font-weight: 500; display: flex; align-items: center;
}

.pricing-plans-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; flex: 1;
}

.pricing-plan-bubble {
    background: var(--dark-surface-2);
    border-radius: var(--radius-2xl);
    border: 2px solid var(--dark-border);
    box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.3);
    display: flex; flex-direction: column;
    transition: var(--transition-base);
    overflow: hidden;
}
.pricing-plan-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}
.pricing-plan-bubble.plan-highlight {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.15), 0 0 80px rgba(168, 85, 247, 0.08);
    position: relative;
}

.plan-bubble-header {
    display: flex; flex-direction: column; gap: 0.5rem;
    padding: 1.25rem;
    background: var(--dark-surface-2);
    border-bottom: 1px solid var(--dark-border);
    height: 10rem; align-items: center; text-align: center;
}
.pricing-plan-bubble.plan-highlight .plan-bubble-header {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(168, 85, 247, 0.08));
}

.plan-badges-row { display: flex; gap: 0.5rem; min-height: 1.6rem; justify-content: center; }
.plan-bubble-header h3 {
    font-size: 1.35rem; font-weight: 600;
    color: white; margin: 0; line-height: 1.2;
}
/* EarlyBird and price-original styles removed - no longer used */
.plan-bubble-price-row {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.plan-bubble-price {
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.price-amount { font-size: 2rem; font-weight: 700; color: var(--primary-blue-light); line-height: 1; }
/* early-bird-badge-vertical styles removed */
.price-period { font-size: 0.8rem; color: var(--dark-text-muted); display: block; text-align: center; }
.popular-badge {
    display: inline-flex; padding: 0.25rem 0.6rem;
    border-radius: 999px; background: var(--gradient-primary);
    color: #ffffff; font-weight: 700; font-size: 0.65rem;
    letter-spacing: 0.08em; text-transform: uppercase;
}

.plan-bubble-features { display: flex; flex-direction: column; flex: 1; }
.feature-value-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--dark-border);
    font-size: 0.875rem; color: var(--dark-text-muted);
    font-weight: 500; text-align: center;
    display: flex; align-items: center; justify-content: center;
    height: 4.25rem;
}
.feature-value-item:last-child { border-bottom: none; }
.feature-value-cta {
    padding: 1.25rem; height: 5rem;
    background: var(--dark-surface-2);
}

.check-mark { color: var(--secondary-purple); font-weight: 700; font-size: 1.1rem; }
.status-addon { color: var(--primary-blue); font-weight: 600; }
.status-limited { color: var(--dark-text-muted); font-weight: 500; }

.info-tooltip {
    appearance: none; border: none;
    background: rgba(37, 99, 235, 0.2); color: var(--primary-blue-light);
    cursor: help; margin-left: 0.35rem; padding: 0;
    font-weight: 700; font-size: 0.65rem;
    border-radius: 50%; width: 1.2rem; height: 1.2rem;
    display: inline-flex; align-items: center; justify-content: center;
    transition: var(--transition-base); position: relative;
}
.info-tooltip:hover { background: var(--gradient-primary); color: #fff; transform: scale(1.1); }
.info-tooltip::after {
    content: attr(data-tooltip);
    position: absolute; bottom: calc(100% + 0.6rem);
    left: 50%; transform: translateX(-50%);
    background: var(--dark-surface-2); color: #fff;
    padding: 0.6rem 0.8rem; border-radius: var(--radius-lg);
    font-size: 0.8rem; font-weight: 500; line-height: 1.45;
    white-space: normal; width: 250px;
    box-shadow: var(--shadow-xl); opacity: 0;
    pointer-events: none; transition: opacity 0.2s ease;
    z-index: 1000; text-align: left;
}
.info-tooltip::before {
    content: ""; position: absolute;
    bottom: calc(100% + 0.15rem); left: 50%;
    transform: translateX(-50%);
    border-width: 7px; border-style: solid;
    border-color: var(--dark-surface-2) transparent transparent transparent;
    opacity: 0; transition: opacity 0.2s ease; z-index: 1000;
}
.info-tooltip:hover::after, .info-tooltip:hover::before { opacity: 1; }
.pricing-plan-bubble .btn { width: 100%; }

/* ===================================
   Founder Section - Dark, compact
   =================================== */
.founder-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 45%);
}

.founder-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem; max-width: 700px; margin: 0 auto;
}

.founder-card {
    display: flex; align-items: center; gap: 1.25rem;
    background: var(--dark-surface);
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--dark-border);
    transition: var(--transition-base);
}
.founder-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.08);
}

.founder-image {
    width: 64px; height: 64px;
    border-radius: 50%; object-fit: cover; flex-shrink: 0;
    border: 2px solid var(--dark-border);
}

.founder-info { flex: 1; }
.founder-card h3 { font-size: 1.05rem; margin-bottom: 0.15rem; color: white; }
.founder-role { font-size: 0.85rem; color: var(--primary-blue-light); font-weight: 600; margin-bottom: 0.3rem; }
.founder-intro { font-size: 0.8rem; color: var(--dark-text-muted); margin-bottom: 0.4rem; font-style: italic; line-height: 1.4; }

.founder-linkedin {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(37, 99, 235, 0.2); color: var(--primary-blue-light);
    font-size: 0.8rem; transition: var(--transition-base);
}
.founder-linkedin:hover {
    background: var(--primary-blue); color: white; transform: scale(1.1);
}

/* ===================================
   CTA Section - Dark with subtle gradient glow
   =================================== */
.cta-section {
    background: var(--dark-surface);
    background-image:
        radial-gradient(ellipse at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    color: white; text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white; margin-bottom: 1rem;
}
.cta-subtitle {
    font-size: 1.15rem; color: var(--dark-text-muted);
    margin-bottom: 2.5rem; line-height: 1.7;
}

.cta-benefits {
    display: flex; justify-content: center;
    gap: 1.25rem; flex-wrap: wrap;
    max-width: 800px; margin: 0 auto 2.5rem;
}
.cta-benefit {
    display: flex; align-items: center; gap: 0.625rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 0.75rem 1.25rem; border-radius: 999px;
}
.cta-benefit i { font-size: 1rem; color: var(--primary-blue-light); }
.cta-benefit span { color: var(--dark-text); font-weight: 500; font-size: 0.9rem; }

.cta-buttons {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.cta-buttons .btn-secondary {
    background: transparent; color: var(--dark-text);
    border-color: var(--dark-border);
}
.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Contact Section - Dark */
.contact-section {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.04) 0%, transparent 45%);
}

.contact-wrapper {
    display: grid; grid-template-columns: 1fr 1.5fr;
    gap: 3.5rem; max-width: 1000px; margin: 0 auto;
}

.contact-info h3 { font-size: 1.75rem; margin-bottom: 0.75rem; color: white; }
.contact-info > p { font-size: 0.95rem; color: var(--dark-text-muted); line-height: 1.7; margin-bottom: 1.5rem; }

.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-method { display: flex; gap: 1rem; align-items: start; }
.contact-method i {
    width: 44px; height: 44px; border-radius: var(--radius-lg);
    background: var(--gradient-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.contact-method strong { display: block; color: white; margin-bottom: 0.15rem; font-weight: 600; font-size: 0.95rem; }
.contact-method p { margin: 0; color: var(--dark-text-muted); font-size: 0.9rem; }

.contact-form-wrapper {
    background: var(--dark-surface); padding: 2.25rem;
    border-radius: var(--radius-2xl); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--dark-border);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-weight: 600; color: var(--dark-text); font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
    padding: 0.8rem 1rem; border: 2px solid var(--dark-border);
    border-radius: var(--radius-lg); font-family: var(--font-body);
    font-size: 0.95rem; color: white;
    transition: var(--transition-base); background: var(--dark-surface-2);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* ===================================
   Footer - Dark
   =================================== */
.footer {
    background: var(--dark-bg);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.03) 0%, transparent 40%);
    color: white; padding: 4rem 0 2rem;
    border-top: 1px solid var(--dark-border);
}

.footer-content {
    display: grid; grid-template-columns: 1.5fr 1fr;
    gap: 3rem; margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex; flex-direction: column;
    gap: 0.75rem; align-items: flex-start;
}
.footer-logo {
    height: 60px; width: auto;
    max-width: 250px; max-height: 60px;
    margin-bottom: 1rem; object-fit: contain; display: block;
}
.footer-tagline { font-size: 1rem; color: rgba(255, 255, 255, 0.85); margin: 0 0 1rem 0; font-weight: 500; }

.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.footer-column h4 {
    font-size: 0.9rem; margin-bottom: 0.875rem; color: white;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-column ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-column a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; transition: var(--transition-base); }
.footer-column a:hover { color: white; }

.footer-bottom {
    padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.08); text-align: center;
}
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; }

.footer-compliance-prominent {
    display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.5rem;
}
.compliance-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); font-weight: 500; }
.compliance-badge i { font-size: 1rem; color: rgba(255, 255, 255, 0.9); }
.compliance-divider { color: rgba(255, 255, 255, 0.3); font-size: 0.9rem; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social-link {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08); color: white;
    font-size: 1.1rem; transition: var(--transition-base);
}
.footer-social-link:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }

/* ===================================
   Tab Step Numbers (Solution Section)
   =================================== */
.tab-step-number {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    letter-spacing: -4px;
    font-family: var(--font-heading);
}

/* ===================================
   How It Works (Vente-style alternating blocks)
   =================================== */
.how-it-works-section {
    background: var(--dark-surface);
    background-image: radial-gradient(ellipse at 30% 20%, rgba(168, 85, 247, 0.04) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 50%);
}

.hiw-blocks {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

.hiw-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hiw-block > * { min-width: 0; }

.hiw-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}
.hiw-text .tab-step-number { margin-bottom: 4px; }
.hiw-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}
.hiw-desc {
    font-size: 1.05rem;
    color: var(--dark-text);
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}
.hiw-copy {
    font-size: 1rem;
    color: var(--dark-text-muted);
    line-height: 1.7;
    margin: 0;
}

.hiw-visual {
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-width: 0;
}
.hiw-visual .os-card {
    width: 100%;
    max-width: 520px;
    min-height: 480px;
}

/* Text-right blocks: card appears first in DOM but sit left; text sits right.
   Grid order controls which side each lands on. */
.hiw-text-left .hiw-text { grid-column: 1; grid-row: 1; }
.hiw-text-left .hiw-visual { grid-column: 2; grid-row: 1; }
.hiw-text-right .hiw-visual { grid-column: 1; grid-row: 1; }
.hiw-text-right .hiw-text { grid-column: 2; grid-row: 1; }

@media (max-width: 900px) {
    .hiw-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hiw-text-left .hiw-text,
    .hiw-text-right .hiw-text {
        grid-column: 1; grid-row: 1;
    }
    .hiw-text-left .hiw-visual,
    .hiw-text-right .hiw-visual {
        grid-column: 1; grid-row: 2;
    }
    .hiw-visual .os-card { min-height: auto; }
    .hiw-blocks { gap: 4rem; }
    .hiw-title { font-size: 1.5rem; }
}

/* ===================================
   Value Section
   =================================== */
.value-section {
    background: var(--dark-bg);
    position: relative;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-base);
}
.value-card:hover {
    border-color: rgba(168, 85, 247, 0.25);
    transform: translateY(-2px);
}
.value-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
}
.value-card-copy {
    font-size: 0.975rem;
    color: var(--dark-text-muted);
    line-height: 1.7;
    margin: 0;
}
.value-card-icon {
    display: block;
    font-size: 24px;
    color: rgb(139, 92, 246);
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .value-grid { grid-template-columns: 1fr; }
    .value-card { padding: 1.5rem; }
}

/* ===================================
   Operating System Cards
   =================================== */
.os-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.os-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.os-card-header { display: flex; flex-direction: column; gap: 0.4rem; }
.os-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
.os-card-desc {
    font-size: 0.9rem;
    color: var(--dark-text-muted);
    line-height: 1.55;
    margin: 0;
}

.os-card-divider {
    height: 1px;
    background: var(--dark-border);
    width: 100%;
}
.os-inner-divider { margin: 1rem 0; }

.os-card-body { flex: 1; display: flex; flex-direction: column; }

/* Card 1 - Sync */
.os-sync-body { justify-content: center; }
.os-sync-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 1.25rem;
}
.os-sync-col { display: flex; flex-direction: column; gap: 0.5rem; }
.os-sync-vdivider { background: var(--dark-border); width: 1px; }
.os-col-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--dark-text-muted);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.os-sender-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}
.os-whatsapp-bubble {
    background: var(--dark-surface-2);
    border-left: 2px solid #25d366;
    border-radius: var(--radius-md);
    padding: 0.75rem 0.875rem;
}
.os-whatsapp-bubble p {
    font-size: 0.82rem;
    color: var(--dark-text);
    line-height: 1.5;
    margin: 0;
}
.os-timestamp {
    font-size: 0.7rem;
    color: var(--dark-text-muted);
}

.os-ats-rows { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 0.25rem; }
.os-ats-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    background: var(--dark-surface-2);
    border-radius: var(--radius-md);
    border: 1px solid var(--dark-border);
}
.os-ats-label { font-size: 0.75rem; color: var(--dark-text-muted); }
.os-ats-value { font-size: 0.78rem; color: white; font-weight: 500; text-align: right; }
.os-sync-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulse-dot 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.os-card-footer {
    margin: 0 -1.75rem -1.75rem;
    padding: 0.75rem 1.75rem;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: var(--dark-text-muted);
}
.os-card-footer i { font-size: 0.78rem; }

/* Card 2 - Intelligence */
.os-intel-body {
    justify-content: center;
}
.os-intel-body .hireup-notification-card {
    max-width: 100%;
    padding: 1.25rem;
}

/* Card 3 - Search and Match */
.os-search-body { gap: 0.75rem; }
.os-search-bar {
    position: relative;
    background: var(--dark-surface-2);
    border: 1px solid var(--dark-border);
    border-radius: 999px;
    padding: 0.75rem 2.75rem 0.75rem 1rem;
    font-size: 0.82rem;
    color: var(--dark-text);
}
.os-search-text { color: rgba(255, 255, 255, 0.75); }
.os-search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--dark-text-muted);
    font-size: 0.85rem;
}

.os-search-results {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.5rem;
}
.os-result-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    background: var(--dark-surface-2);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 0.625rem 0.75rem;
}
.os-result-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.os-avatar-purple { background: #a855f7; }
.os-avatar-blue { background: #3b82f6; }
.os-avatar-teal { background: #14b8a6; }
.os-result-info { min-width: 0; }
.os-result-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}
.os-result-role { color: var(--dark-text-muted); font-weight: 400; }
.os-result-sub {
    font-size: 0.72rem;
    color: var(--dark-text-muted);
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.os-result-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-border);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.68rem;
    color: var(--dark-text-muted);
    white-space: nowrap;
}
.os-search-caption {
    text-align: center;
    font-size: 0.75rem;
    color: var(--dark-text-muted);
    margin: 0.75rem 0 0;
}

/* Card 4 - Outreach */
.os-outreach-body { gap: 0.5rem; }
.os-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}
.os-flow-node {
    background: var(--dark-surface-2);
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: white;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    text-align: center;
}

/* Top-level Send Email node: constrained width, centered */
#os-card-outreach > .os-card-body > .os-flow > .os-flow-node:first-child,
.os-flow > .os-flow-node:first-child {
    width: fit-content;
    max-width: 220px;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}
.os-flow-node.os-node-muted {
    border-color: var(--dark-border);
    color: var(--dark-text-muted);
    opacity: 0.7;
}
.os-flow-node.os-node-alert {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    justify-content: center;
}
.os-flow-icon { color: var(--secondary-purple-light); font-size: 0.85rem; }
.os-flow-node.os-node-muted .os-flow-icon { color: var(--dark-text-muted); }
.os-flow-label { flex: 0 1 auto; text-align: center; }
.os-flow-dots { color: var(--dark-text-muted); font-weight: 600; letter-spacing: 1px; }

.os-flow-line {
    width: 2px;
    height: 16px;
    border-left: 2px dashed rgba(139, 92, 246, 0.35);
}

.os-flow-branches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
    align-items: start;
}
.os-flow-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
}
.os-flow-subbranches {
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.os-flow-pill {
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    align-self: center;
    text-align: center;
}
.os-pill-red { background: #ef4444; }
.os-pill-green { background: #22c55e; }
.os-pill-neutral {
    background: var(--dark-surface-2);
    color: var(--dark-text-muted);
    border: 1px solid var(--dark-border);
}

/* Outreach message preview */
.os-message-preview { display: flex; flex-direction: column; gap: 0.625rem; }
.os-preview-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--dark-text-muted);
    text-transform: uppercase;
    font-weight: 600;
}
.os-message-card {
    background: var(--dark-surface-2);
    border-left: 2px solid var(--secondary-purple);
    border-radius: var(--radius-md);
    padding: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.os-message-text {
    font-size: 0.8rem;
    color: var(--dark-text);
    line-height: 1.55;
    margin: 0;
}
.os-message-tag {
    align-self: flex-start;
    background: var(--secondary-purple);
    color: white;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 500;
}
.os-preview-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}
.os-approved-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 500;
}
.os-send-btn {
    background: var(--secondary-purple);
    color: white;
    border: none;
    padding: 6px 18px;
    border-radius: var(--radius-md);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}
.os-send-btn:hover { background: #9333ea; transform: translateY(-1px); }

@media (max-width: 900px) {
    .os-cards { grid-template-columns: 1fr; }
    .os-card { min-height: auto; }
}
@media (max-width: 768px) {
    /* Shrink the Outreach flow diagram so it never overflows on mobile */
    #os-card-outreach .os-flow-label { font-size: 11px; }
    #os-card-outreach .os-flow-node { padding: 6px 10px; }
    #os-card-outreach .os-flow-branches { gap: 0.3rem; }
    #os-card-outreach .os-flow-subbranches { gap: 0.2rem; }
    #os-card-outreach .os-flow-icon { font-size: 0.75rem; }
    #os-card-outreach .os-flow-pill { font-size: 0.65rem; padding: 2px 8px; }
    #os-card-outreach .os-flow-dots { display: none; }
}
@media (max-width: 560px) {
    .os-sync-grid { grid-template-columns: 1fr; }
    .os-sync-vdivider { display: none; }
    .os-result-row { grid-template-columns: auto 1fr; }
    .os-result-pill { grid-column: 2; justify-self: start; margin-top: 4px; }
}
@media (max-width: 480px) {
    /* Further compress the Outreach flow to prevent clipping on narrow screens */
    #os-card-outreach .os-flow-branches { gap: 8px; }
    #os-card-outreach .os-flow-subbranches { gap: 6px; }
    #os-card-outreach .os-flow-label { font-size: 10px; }
    #os-card-outreach .os-flow-node { padding: 4px 8px; gap: 0.25rem; overflow-wrap: anywhere; }
    #os-card-outreach .os-flow-pill { font-size: 10px; padding: 2px 6px; overflow-wrap: anywhere; }
    #os-card-outreach .os-flow-icon { font-size: 0.7rem; }
    #os-card-outreach .os-flow-line { height: 10px; }
    #os-card-outreach .os-flow > .os-flow-node:first-child { max-width: 180px; }
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1200px) {
    .pricing-comparison-layout { flex-direction: column; }
    .pricing-features-sidebar { width: 100%; }
    .feature-row {
        display: inline-block; padding: 0.6rem 0.8rem;
        margin-right: 0.4rem; margin-bottom: 0.4rem;
        border: 1px solid rgba(148, 163, 184, 0.15);
        border-radius: var(--radius-md); min-height: auto; height: auto;
    }
    .features-header { height: auto; padding: 1.25rem; }
    .pricing-plans-row { grid-template-columns: repeat(2, 1fr); }
    .plan-bubble-header { height: auto; padding: 1.25rem; }
    .feature-value-item { height: auto; padding: 0.8rem 1rem; }
    .feature-value-cta { height: auto; }
    .feature-row-cta { height: auto; }
}

@media (max-width: 1024px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 700px; margin: 0 auto; }
    .hero-cta { justify-content: center; }
    .hero-visual { margin-top: 2rem; }
    .hero-infographic { max-width: 500px; margin: 0 auto; }

    .feature-showcase, .feature-showcase.reverse {
        grid-template-columns: 1fr; direction: ltr; gap: 2.5rem;
    }
    .contact-wrapper { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .insight-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }

    /* Scale down orbits on tablet */
    .orbit-system { transform: scale(0.75); }
}

@media (max-width: 768px) {
    :root { --section-padding: 64px 0; }

    /* Hide orbit animation on mobile - text needs full space */
    .orbit-system { display: none; }

    .problem-row { grid-template-columns: 1fr; gap: 0.75rem; }
    .insight-grid { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .impact-metrics { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .founder-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .pricing-plans-row { grid-template-columns: 1fr; gap: 1rem; }

    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 7vw, 2.75rem); }
    .hero-cta { flex-direction: column; align-items: center; gap: 0.75rem; }
    .hero-cta .btn { width: 100%; max-width: 320px; }

    .cta-benefits { flex-direction: column; align-items: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }

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

    .conversation-extraction-container { grid-template-columns: 1fr; }
    .conv-extraction-indicator { padding: 0.5rem; }
    .conv-triangle {
        border-top: 10px solid transparent; border-bottom: 0;
        border-left: 8px solid transparent; border-right: 8px solid transparent;
        border-top-color: var(--primary-blue);
    }
    .conv-conversation-panel { border-right: none; border-bottom: 1px solid var(--dark-border); }
}

/* ===================================
   Solution Tabs - added v3.4
   =================================== */
.solution-tabs {
    margin-top: 3rem;
}

.solution-tab-nav {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 0;
    margin-bottom: 2.5rem;
}

.solution-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--dark-text-muted);
    font-family: var(--font-body);
    font-size: 0.925rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    margin-bottom: -1px;
    letter-spacing: 0.01em;
}

.solution-tab-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}

.solution-tab-btn.active {
    color: white;
    border-bottom-color: var(--primary-blue-light);
}

.solution-tab-panels {
    max-width: 780px;
}

.solution-tab-panel {
    display: none;
}

.solution-tab-panel.active {
    display: block;
}

.tab-panel-content p {
    font-size: 1.05rem;
    color: var(--dark-text-muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 65ch;
}

.tab-panel-content p:last-child {
    margin-bottom: 0;
}

.tab-panel-note {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem !important;
    color: rgba(59, 130, 246, 0.85) !important;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    margin-top: 1.25rem;
    line-height: 1.5 !important;
}

.tab-panel-note i {
    font-size: 0.875rem;
    flex-shrink: 0;
    color: var(--primary-blue-light);
}

/* ===================================
   Hero pill text (below logos row) - v3.4
   =================================== */
.hero-pill-text {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.25rem;
    font-size: 0.825rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.hero-pill-text i {
    color: var(--primary-blue-light);
    font-size: 0.75rem;
}

/* ===================================
   Merged Contact Section - v3.4
   =================================== */
.contact-cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.75rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact-benefits .cta-benefit {
    border-radius: var(--radius-lg);
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.15rem; }

    .container { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }

    .nav-links {
        display: none; position: absolute; top: 100%;
        left: 0; right: 0; background: var(--dark-bg);
        flex-direction: column; padding: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        gap: 0; z-index: 1000;
        border-top: 1px solid var(--dark-border);
    }
    .nav.nav-light .nav-links { background: white; border-top: 1px solid rgba(0,0,0,0.06); }
    .nav.nav-light .nav-links .nav-link { border-bottom-color: var(--bg-lighter); }
    .nav-links.active { display: flex; }
    .nav-link {
        padding: 1rem 1.5rem; border-bottom: 1px solid var(--dark-border); width: 100%;
    }
    .nav-link::after { display: none; }

    .nav-cta {
        display: none; position: absolute; top: 100%;
        left: 0; right: 0; background: var(--dark-bg);
        flex-direction: column; padding: 1rem 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        gap: 0.75rem; z-index: 999;
    }
    .nav.nav-light .nav-cta { background: white; }
    .nav-cta.active { display: flex; }
    .nav-cta .nav-link-secondary {
        padding: 0.5rem 1rem; text-align: center;
        border: 1px solid var(--dark-border); border-radius: var(--radius-md);
    }
    .nav-cta .btn { width: 100%; text-align: center; }
    .nav-toggle { display: flex; }

    .step-item { flex-direction: column; gap: 1rem; }
    .steps-container::before { display: none; }
    .impact-metrics { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }

    .founder-card { flex-direction: column; text-align: center; }

    .outreach-sequence-wrapper { height: 580px; }
    .outreach-step.outreach-whatsapp { top: 340px; }
    .outreach-message-body { margin-left: 40px; }
}