/* ============================================================
   KATANA Landing Page Styles
   Uses design tokens from design-tokens.css
   ============================================================ */

/* ── Reset overrides for landing page ── */
.landing-page {
    /* Spatial UI Evolution */
    --k-bg-page: #F4F7FC; /* Spatial UI environment base (ui-ux-pro-max) */
    --k-text-primary: #020617; /* High contrast dark navy per ui-ux-pro-max */
    --k-text-secondary: #475569; /* Slightly darker secondary for better contrast */
    --k-radius-2xl: 32px; /* Super rounded corners for bento */
    
    background: var(--k-bg-page);
    background-image: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E"),
        radial-gradient(circle at 80% -20%, rgba(0, 92, 148, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 120%, rgba(3, 159, 192, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--k-font-family, 'Inter', sans-serif);
    color: var(--k-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

/* ============================================================
   KATANA BENTO & GLASS COMPONENTS (Radiance Blend)
   ============================================================ */
.katana-bento-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border-radius: var(--k-radius-2xl, 32px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.04), 
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.katana-bento-card:hover {
    box-shadow: 
        0 32px 80px rgba(0, 92, 148, 0.06), 
        inset 0 1px 1px rgba(255, 255, 255, 1);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.85);
}

.k-glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.04), 
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    border-radius: 32px;
}

.k-ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.5; /* Slightly reduced for a broader, softer spatial effect */
}

.k-ambient-orb.global-light {
    position: fixed;
    width: 120vw;
    height: 120vh;
    top: -10vh;
    left: -10vw;
    background: radial-gradient(circle at 50% 50%, rgba(200, 220, 255, 0.4), transparent 70%);
    z-index: -1;
}

.k-ambient-orb.orb-blue {
    background: #005C94;
}

.k-ambient-orb.orb-cyan {
    background: #039FC0;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--k-radius-xl, 16px);
}

/* ── Container ── */
.lp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    display: flex;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-bottom: 1px solid rgba(0, 92, 148, 0.05);
    transition: background 0.4s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    will-change: transform;
}

.lp-navbar.scrolled {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    box-shadow: 0 1px 32px rgba(0, 92, 148, 0.07), 0 0 0 0.5px rgba(0, 92, 148, 0.04);
}

.lp-navbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-navbar__logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    flex-shrink: 0;
}

.lp-navbar__logo img {
    height: 36px;
    width: auto;
}

.lp-navbar__links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-navbar__links a {
    text-decoration: none;
    color: var(--k-text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: -0.01em;
}

.lp-navbar__links a:hover {
    color: var(--k-primary);
    background: rgba(0, 92, 148, 0.06);
}

.lp-navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.lp-navbar__login {
    text-decoration: none;
    color: var(--k-text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 10px;
    transition: color 0.2s;
}

.lp-navbar__login:hover {
    color: var(--k-primary);
}

/* ── Mobile Menu Toggle ── */
.lp-navbar__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--k-text-primary);
    font-size: 24px;
    line-height: 1;
}

/* ── Mobile Menu ── */
.lp-mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 92, 148, 0.08);
    padding: 16px 24px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.lp-mobile-menu.open {
    display: flex;
}

.lp-mobile-menu a {
    text-decoration: none;
    color: var(--k-text-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.2s;
}

.lp-mobile-menu a:hover {
    background: rgba(0, 92, 148, 0.06);
}

.lp-mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 92, 148, 0.08);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--k-font-family, 'Inter', sans-serif);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.01em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.32, 0.72, 0, 1);
    white-space: nowrap;
    line-height: 1;
}

.lp-btn i {
    font-size: 18px;
}

.lp-btn--sm {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 10px;
}

.lp-btn--md {
    padding: 12px 24px;
    font-size: 14px;
}

.lp-btn--lg {
    padding: 16px 32px;
    font-size: 15px;
    border-radius: 14px;
}

.lp-btn--primary {
    background: var(--k-primary);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 92, 148, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lp-btn--primary:hover {
    background: var(--k-primary-hover);
    box-shadow: 0 4px 16px rgba(0, 92, 148, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.lp-btn--secondary {
    background: var(--k-accent, #039FC0);
    color: #fff;
    box-shadow: 0 2px 8px rgba(3, 159, 192, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lp-btn--secondary:hover {
    background: #028DAD;
    box-shadow: 0 4px 16px rgba(3, 159, 192, 0.32);
    transform: translateY(-1px);
}

.lp-btn--outline {
    background: transparent;
    color: var(--k-primary);
    border: 1.5px solid rgba(0, 92, 148, 0.2);
}

.lp-btn--outline:hover {
    background: rgba(0, 92, 148, 0.04);
    border-color: var(--k-primary);
}

.lp-btn--ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--k-primary);
    border: 1.5px solid rgba(0, 92, 148, 0.12);
    backdrop-filter: blur(4px);
}

.lp-btn--ghost:hover {
    background: #fff;
    border-color: rgba(0, 92, 148, 0.24);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lp-btn--white {
    background: #fff;
    color: var(--k-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.lp-btn--white:hover {
    background: #F4F7F9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.lp-btn--dark {
    background: rgba(0, 92, 148, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
}

.lp-btn--dark:hover {
    background: rgba(0, 92, 148, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   HERO SECTION — Premium Radiance Blend
   ============================================================ */
.lp-hero {
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--k-bg-page);
}

/* ── Floating Orbs — depth & atmosphere ── */
.lp-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    filter: blur(80px);
}

.lp-hero__orb--1 {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(0, 92, 148, 0.12) 0%, transparent 70%);
    animation: orb-drift-1 22s ease-in-out infinite;
}

.lp-hero__orb--2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: -8%;
    background: radial-gradient(circle, rgba(3, 159, 192, 0.10) 0%, transparent 70%);
    animation: orb-drift-2 28s ease-in-out infinite;
}

.lp-hero__orb--3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 45%;
    background: radial-gradient(circle, rgba(0, 92, 148, 0.06) 0%, transparent 60%);
    animation: orb-drift-3 18s ease-in-out infinite;
}

@keyframes orb-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, 20px) scale(1.05); }
    50% { transform: translate(15px, -25px) scale(0.95); }
    75% { transform: translate(20px, 15px) scale(1.02); }
}

@keyframes orb-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.08); }
    66% { transform: translate(-15px, 15px) scale(0.96); }
}

@keyframes orb-drift-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

/* ── Grid Texture Overlay ── */
.lp-hero__grid-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    z-index: 1;
    background-image:
        linear-gradient(rgba(0, 92, 148, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 92, 148, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}

/* ── Edge Glow (top) ── */
.lp-hero__edge-glow {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(0, 92, 148, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ── Hero Content ── */
.lp-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 32px;
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.04), 
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .lp-hero__content {
        padding: 40px 24px;
        border-radius: 24px;
    }
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(0, 92, 148, 0.06);
    border: 1px solid rgba(0, 92, 148, 0.1);
    color: var(--k-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.lp-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--k-primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.lp-hero__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--k-text-primary);
    margin: 0 0 24px;
}

/* Word-split animating title also handled by GSAP */
.lp-hero__title .tr-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.lp-hero__title .tr-word-inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-hero__title.tr-visible .tr-word-inner {
    transform: translateY(0);
    opacity: 1;
}

.lp-hero__title span {
    color: var(--k-primary);
}

.lp-hero__subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #374151;
    letter-spacing: -0.01em;
    margin: 0 auto 40px;
    max-width: 640px;
}

.lp-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ── Brand Watermark — Radiance-style giant text ── */
.lp-hero__brand-watermark {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(100px, 18vw, 280px);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 92, 148, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* ── Trust Bar ── */
.lp-hero__trust {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lp-hero__trust-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--k-text-muted, #8899a6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-hero__trust-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.lp-hero__trust-logos span {
    font-size: 14px;
    font-weight: 500;
    color: var(--k-text-secondary);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lp-hero__trust-logos span:hover {
    opacity: 1;
}

/* ── Hero SVG Illustration (sub-pages) ── */
.lp-hero__svg {
    width: 100%;
    height: auto;
    max-width: 480px;
    display: block;
    margin: 0 auto;
}

/* ============================================================
   SECTION STACKING SYSTEM — Radiance-style card overlay
   ============================================================ */
.lp-stack-section {
    position: relative;
    z-index: 1;
    background: var(--k-bg-page);
    border-radius: 0;
}

/* On desktop, stacking sections get rounded tops when not first */
@media (min-width: 769px) {
    .lp-stack-section + .lp-stack-section {
        border-radius: 40px 40px 0 0;
        margin-top: -40px;
        box-shadow: 0 -8px 48px rgba(0, 0, 0, 0.04);
    }

    .lp-stack-section + .lp-stack-section::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 100px;
        background: radial-gradient(ellipse at center, rgba(0, 92, 148, 0.04) 0%, transparent 70%);
        pointer-events: none;
        border-radius: 40px 40px 0 0;
        z-index: 0;
    }
}

/* Alternate stack background colors */
.lp-section--choose {
    background: #fff;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.lp-section {
    padding: 100px 0;
    position: relative;
}

.lp-section--alt {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(1px);
}

.lp-section__header {
    text-align: center;
    margin-bottom: 64px;
}

.lp-section__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: var(--k-text-primary);
    letter-spacing: -0.05em;
    margin: 0 0 16px;
    line-height: 1.1;
}

.lp-section__subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--k-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* ============================================================
   PLATFORM (Feature Cards)
   ============================================================ */
.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lp-page--cost .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* Worker-income page scoped: 2×2 grid for 4 features */
.lp-page--worker-income .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* ── Salary Gauge Dashboard ────────────────────────── */
.lp-salary-gauge-section { position: relative; overflow: hidden; }

.lp-salary-gauge-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 420px;
}

.lp-salary-gauge__text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.lp-salary-gauge__text .lp-section__title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
}
.lp-salary-gauge__desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--k-text-secondary, #475569);
    max-width: 520px;
    margin-bottom: 32px;
}

/* Stat cards row */
.lp-salary-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}
.lp-salary-stat {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 6px;
}
.lp-salary-stat__value {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    color: var(--k-primary, #005C94);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}
.lp-salary-stat__unit {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--k-secondary, #039FC0);
    line-height: 1;
}
.lp-salary-stat__label {
    width: 100%;
    font-size: 0.82rem;
    color: var(--k-text-secondary, #475569);
    margin-top: 4px;
    line-height: 1.4;
}
.lp-salary-stat__divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(0,92,148,0.15), transparent);
    flex-shrink: 0;
}

/* Gauge visual panel */
.lp-salary-gauge__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lp-salary-gauge__card {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 40px 30px 30px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 8px 40px rgba(0,92,148,0.06), 0 1px 3px rgba(0,0,0,0.04);
}
.lp-salary-gauge__svg {
    width: 100%;
    height: auto;
}

/* Gauge needle */
.lp-gauge-needle {
    will-change: transform;
}

/* Floating badges around gauge card */
.lp-gauge-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(0,92,148,0.08);
    box-shadow: 0 2px 12px rgba(0,92,148,0.06);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--k-primary, #005C94);
    white-space: nowrap;
    animation: lp-gauge-float 5s ease-in-out infinite;
}
.lp-gauge-badge svg { color: var(--k-secondary, #039FC0); }
.lp-gauge-badge--1 { top: 8px; right: -16px; animation-delay: 0s; }
.lp-gauge-badge--2 { bottom: 24px; left: -20px; animation-delay: -1.6s; }
.lp-gauge-badge--3 { bottom: -8px; right: 24px; animation-delay: -3.3s; }

@keyframes lp-gauge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Responsive: tablet */
@media (max-width: 960px) {
    .lp-salary-gauge-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .lp-salary-gauge__text .lp-section__title { text-align: center !important; }
    .lp-salary-gauge__desc { margin-left: auto; margin-right: auto; }
    .lp-salary-stats { justify-content: center; }
    .lp-salary-gauge__text .lp-btn { margin-left: auto; margin-right: auto; }
    .lp-salary-gauge__card { max-width: 340px; margin: 0 auto; }
}

/* Responsive: mobile */
@media (max-width: 640px) {
    .lp-salary-stats { flex-direction: column; gap: 20px; }
    .lp-salary-stat__divider { width: 60px; height: 1px; background: linear-gradient(to right, transparent, rgba(0,92,148,0.15), transparent); }
    .lp-salary-gauge__card { padding: 28px 20px 24px; }
    .lp-gauge-badge--1 { right: 4px; }
    .lp-gauge-badge--2 { left: 4px; }
}

/* ═══════════════════════════════════════════════════════
   WORKER-VALUE PAGE
   ═══════════════════════════════════════════════════════ */

/* Hero Score Dashboard Card */
.lp-score-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border-radius: var(--k-radius-2xl, 24px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.07),
        0 8px 24px rgba(0, 92, 148, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    padding: 28px 32px 24px;
    max-width: 340px;
    position: relative;
    overflow: hidden;
}

.lp-score-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #039FC0, #005C94, #F59E0B);
}

.lp-score-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.lp-score-card__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--k-text-primary, #1a2b3c);
}

.lp-score-card__badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-score-card__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

/* Circular Progress Ring */
.lp-score-ring {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 12px auto 16px;
}

.lp-score-ring__svg {
    width: 100%;
    height: 100%;
}

.lp-score-ring__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-score-ring__number {
    font-size: 2.75rem;
    font-weight: 800;
    color: #005C94;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.lp-score-ring__label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #039FC0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Skill Pills */
.lp-score-card__skills {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.lp-skill-pill {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid;
}

.lp-skill-pill--teal {
    background: rgba(3, 159, 192, 0.08);
    border-color: rgba(3, 159, 192, 0.25);
    color: #039FC0;
}

.lp-skill-pill--navy {
    background: rgba(0, 92, 148, 0.06);
    border-color: rgba(0, 92, 148, 0.2);
    color: #005C94;
}

.lp-skill-pill--amber {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    color: #c97e09;
}

/* Score Card Footer */
.lp-score-card__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 92, 148, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
    color: #039FC0;
}

/* Score card responsive */
@media (max-width: 960px) {
    .lp-score-card { max-width: 300px; margin: 0 auto; }
    .lp-score-ring { width: 160px; height: 160px; }
    .lp-score-ring__number { font-size: 2.25rem; }
}

/* S2: Skills Value — Split Layout */
.lp-skills-value-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lp-skills-value__text .lp-section__title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.25;
}

.lp-skills-value__desc {
    color: var(--k-text-secondary, #566a7f);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-top: 16px;
    max-width: 520px;
}

.lp-skills-value__highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.lp-skills-value__highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--k-text-primary, #1a2b3c);
    font-weight: 500;
}

.lp-skills-value__highlight svg {
    flex-shrink: 0;
}

/* Salary Comparison Card */
.lp-salary-compare-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border-radius: var(--k-radius-2xl, 24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 24px 72px rgba(0, 0, 0, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.lp-salary-compare-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #039FC0, #005C94);
    border-radius: 24px 24px 0 0;
}

.lp-salary-compare__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.lp-salary-compare__label {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--k-text-primary, #1a2b3c);
}

.lp-salary-compare__badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(3, 159, 192, 0.12), rgba(0, 92, 148, 0.08));
    color: #039FC0;
}

/* Bar Group */
.lp-salary-bar-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-salary-bar__label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: var(--k-text-secondary, #566a7f);
}

.lp-salary-bar__amount {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--k-text-primary, #1a2b3c);
    font-variant-numeric: tabular-nums;
}

.lp-salary-bar__amount--highlight {
    color: #039FC0;
    font-size: 1.05rem;
}

.lp-salary-bar__track {
    width: 100%;
    height: 10px;
    background: rgba(0, 92, 148, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

.lp-salary-bar__fill {
    height: 100%;
    border-radius: 8px;
    width: 0%;
    transition: width 1.2s cubic-bezier(0.32, 0.72, 0, 1);
}

.lp-salary-bar__fill--current {
    background: linear-gradient(to right, #94a3b8, #b8c4d0);
}

.lp-salary-bar__fill--market {
    background: linear-gradient(to right, #005C94, #0080b8);
}

.lp-salary-bar__fill--potential {
    background: linear-gradient(to right, #039FC0, #00d4aa);
    box-shadow: 0 2px 12px rgba(3, 159, 192, 0.3);
}

.lp-salary-compare__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 92, 148, 0.08);
    font-size: 0.825rem;
    font-weight: 600;
    color: #039FC0;
}

/* Diagnosis Flow Connector Upgrade */
.lp-page--worker-value .lp-diagnosis-flow__connector,
.lp-diagnosis-flow__connector {
    width: 2px;
    height: 48px;
    margin: 0 auto;
    position: relative;
    background: none;
    overflow: visible;
}

.lp-diagnosis-flow__connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        #039FC0 0px, #039FC0 6px,
        transparent 6px, transparent 12px
    );
    opacity: 0.4;
    animation: connectorDraw 1.5s ease-out forwards;
}

@keyframes connectorDraw {
    from { clip-path: inset(0 0 100% 0); }
    to { clip-path: inset(0 0 0% 0); }
}

/* Responsive: tablet */
@media (max-width: 960px) {
    .lp-skills-value-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .lp-skills-value__text .lp-section__title { text-align: center !important; }
    .lp-skills-value__desc { margin-left: auto; margin-right: auto; }
    .lp-skills-value__highlights { align-items: center; }
    .lp-salary-compare-card { max-width: 400px; margin: 0 auto; }
}

/* Responsive: mobile */
@media (max-width: 640px) {
    .lp-salary-compare-card { padding: 24px 20px; }
    .lp-salary-bar__track { height: 8px; }
}


.lp-feature-card {
    /* Inheriting from spatial glass-panel specs */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    padding: 48px 40px; /* More generous padding */
    border-radius: var(--k-radius-2xl, 32px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.04), 
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lp-feature-card:hover {
    box-shadow: 
        0 32px 80px rgba(0, 92, 148, 0.06), 
        inset 0 1px 1px rgba(255, 255, 255, 1);
    transform: translateY(-4px) scale(1.01);
    background: rgba(255, 255, 255, 0.85);
}

.lp-feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 92, 148, 0.06);
    color: var(--k-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.lp-feature-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--k-text-primary);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.lp-feature-card__desc {
    font-size: 14px;
    color: var(--k-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   SOLUTION (How It Works — Tabbed)
   ============================================================ */
.lp-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.lp-tabs__track {
    display: inline-flex;
    background: rgba(0, 92, 148, 0.04);
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
}

.lp-tabs__btn {
    padding: 10px 24px;
    border-radius: 11px;
    border: none;
    background: transparent;
    color: var(--k-text-secondary);
    font-family: var(--k-font-family, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.01em;
}

.lp-tabs__btn.active {
    background: #fff;
    color: var(--k-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lp-tabs__btn:hover:not(.active) {
    color: var(--k-text-primary);
}

.lp-tab-content {
    display: none;
}

.lp-tab-content.active {
    display: block;
}

/* ── Steps Timeline ── */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.lp-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 92, 148, 0.08), rgba(0, 92, 148, 0.16), rgba(0, 92, 148, 0.08));
    z-index: 0;
}

/* Cost-page scoped: 3-col steps for 3 items */
.lp-page--cost .lp-steps {
    grid-template-columns: repeat(3, 1fr);
}
.lp-page--cost .lp-steps::before {
    left: 16%;
    right: 16%;
}

/* Worker-income page scoped: 3-col steps for 3 items */
.lp-page--worker-income .lp-steps,
.lp-steps--3col {
    grid-template-columns: repeat(3, 1fr);
}
.lp-page--worker-income .lp-steps::before,
.lp-steps--3col::before {
    left: 16%;
    right: 16%;
}

.lp-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-step__number {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: #fff;
    border: 3px solid var(--k-bg-page);
    box-shadow: 0 4px 16px rgba(0, 92, 148, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--k-primary);
    position: relative;
    z-index: 2;
}

.lp-step__number--filled {
    background: var(--k-primary);
    color: #fff;
    border-color: rgba(0, 92, 148, 0.1);
}

.lp-step__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--k-text-primary);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.lp-step__desc {
    font-size: 13px;
    color: var(--k-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lp-lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(0, 92, 148, 0.04);
    border-radius: 10px;
    padding: 3px;
}

.lp-lang-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--k-text-muted, #8899a6);
    font-family: var(--k-font-family, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1.2;
}

.lp-lang-btn:hover {
    color: var(--k-text-primary);
    background: rgba(0, 92, 148, 0.06);
}

.lp-lang-btn.active {
    background: #fff;
    color: var(--k-primary);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.lp-lang-switcher--mobile {
    margin: 4px 0;
    align-self: flex-start;
}

/* ============================================================
   CONTACT US (replaces PRICING)
   ============================================================ */
.lp-contact {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 64px 0;
}

.lp-contact__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--k-text-primary);
    letter-spacing: -0.025em;
    margin: 0 0 16px;
}

.lp-contact__subtitle {
    font-size: 18px;
    color: var(--k-text-secondary);
    line-height: 1.6;
    margin: 0 0 40px;
}

.lp-contact__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   AI DIAGNOSTIC SECTION
   ============================================================ */
.lp-diagnostic {
    background: transparent;
}

.lp-diagnostic__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 64px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border-radius: var(--k-radius-2xl, 32px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.04), 
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.lp-diagnostic__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(0, 92, 148, 0.06);
    color: var(--k-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
}

.lp-diagnostic__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--k-text-primary);
    letter-spacing: -0.025em;
    margin: 0 0 12px;
}

.lp-diagnostic__subtitle {
    font-size: 16px;
    color: var(--k-text-secondary);
    line-height: 1.6;
    margin: 0 0 32px;
}

/* ============================================================
   ABOUT / TESTIMONIALS
   ============================================================ */
.lp-testimonials {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.lp-testimonials__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #002E4F 0%, #005C94 50%, #039FC0 100%);
}

.lp-testimonials__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.lp-testimonials__inner {
    position: relative;
    z-index: 1;
}

.lp-testimonials .lp-section__title {
    color: #fff;
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.lp-testimonial-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--k-radius-2xl, 32px);
    padding: 40px;
}

.lp-testimonial-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.lp-testimonial-card__quote {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.lp-faq {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    border-radius: var(--k-radius-2xl, 32px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.04), 
        inset 0 1px 1px rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.lp-faq-item.open {
    box-shadow: 0 24px 48px -12px rgba(0, 92, 148, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.85);
}

.lp-faq-item__question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--k-text-primary);
    gap: 16px;
}

.lp-faq-item__question i {
    font-size: 20px;
    color: var(--k-text-muted);
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
    flex-shrink: 0;
}

.lp-faq-item.open .lp-faq-item__question i {
    transform: rotate(180deg);
}

.lp-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.32, 0.72, 0, 1), padding 0.35s;
}

.lp-faq-item.open .lp-faq-item__answer {
    max-height: 300px;
}

.lp-faq-item__answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--k-text-secondary);
    line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.lp-cta-banner {
    background: linear-gradient(135deg, var(--k-primary) 0%, #003E64 60%, #001F36 100%);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 159, 192, 0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: hero-orb-drift 18s ease-in-out infinite;
}

.lp-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.lp-cta-banner__inner {
    position: relative;
    z-index: 1;
}

.lp-cta-banner__title {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
}

.lp-cta-banner__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
}

.lp-cta-banner__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER CTA — Radiance-style big typography
   ============================================================ */
.lp-footer-cta {
    background: linear-gradient(135deg, #001F36 0%, #003E64 40%, #005C94 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.lp-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(3, 159, 192, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.lp-footer-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.lp-footer-cta__label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px;
}

.lp-footer-cta__title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin: 0 0 40px;
}

.lp-footer-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
    background: #0B1929;
    padding: 48px 0;
    color: rgba(255, 255, 255, 0.5);
}

.lp-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.lp-footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-footer__brand img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.lp-footer__info {
    font-size: 13px;
    line-height: 1.6;
}

.lp-footer__info p {
    margin: 0;
}

.lp-footer__links {
    display: flex;
    gap: 20px;
}

.lp-footer__links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.lp-footer__links a:hover {
    color: #fff;
}

/* ============================================================
   GATEWAY PAGE — Audience Routing Cards
   ============================================================ */
.lp-gateway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.lp-gateway-group__label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--k-text-muted, #8899a6);
    margin: 0 0 20px;
}

.lp-gateway-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 32px;
    border-radius: var(--k-radius-2xl, 32px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(48px);
    -webkit-backdrop-filter: blur(48px);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lp-gateway-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 2;
}

.lp-gateway-card:hover {
    box-shadow: 0 24px 48px -12px rgba(0, 92, 148, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-4px) scale(1.01);
    background: rgba(255, 255, 255, 0.85);
}

.lp-gateway-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.lp-gateway-card--company .lp-gateway-card__icon {
    background: rgba(0,92,148,0.06);
    color: var(--k-primary, #005C94);
}

.lp-gateway-card--worker .lp-gateway-card__icon {
    background: rgba(3,159,192,0.08);
    color: var(--k-accent, #039FC0);
}

.lp-gateway-card__content {
    flex: 1;
    min-width: 0;
}

.lp-gateway-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--k-text-primary);
    letter-spacing: -0.01em;
}

.lp-gateway-card__desc {
    font-size: 14px;
    color: var(--k-text-secondary);
    margin: 0;
    line-height: 1.5;
}

.lp-gateway-card__arrow {
    font-size: 20px;
    color: var(--k-text-muted, #8899a6);
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

.lp-gateway-card:hover .lp-gateway-card__arrow {
    transform: translateX(4px);
    color: var(--k-primary);
}

/* ── Gateway Card Interior Glow ── */
.lp-gateway-card__glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.lp-gateway-card--company .lp-gateway-card__glow {
    background: conic-gradient(
        from 180deg at 50% 50%,
        rgba(0, 92, 148, 0.06) 0deg,
        rgba(0, 92, 148, 0.02) 90deg,
        rgba(3, 159, 192, 0.06) 180deg,
        rgba(0, 92, 148, 0.02) 270deg,
        rgba(0, 92, 148, 0.06) 360deg
    );
}

.lp-gateway-card--worker .lp-gateway-card__glow {
    background: conic-gradient(
        from 180deg at 50% 50%,
        rgba(3, 159, 192, 0.06) 0deg,
        rgba(3, 159, 192, 0.02) 90deg,
        rgba(0, 92, 148, 0.06) 180deg,
        rgba(3, 159, 192, 0.02) 270deg,
        rgba(3, 159, 192, 0.06) 360deg
    );
}

.lp-gateway-card:hover .lp-gateway-card__glow {
    opacity: 1;
    animation: glow-rotate 8s linear infinite;
}

@keyframes glow-rotate {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}

/* ============================================================
   LIMITED AVAILABILITY — Scarcity Trigger
   ============================================================ */
.lp-limited {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0,92,148,0.03) 0%, rgba(3,159,192,0.05) 100%);
}

.lp-limited__inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 64px 40px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border-radius: var(--k-radius-2xl, 32px);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 
        0 4px 24px -2px rgba(0, 0, 0, 0.03), 
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.lp-limited__inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.lp-limited__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0,92,148,0.06);
    color: var(--k-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.lp-limited__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--k-text-primary);
    letter-spacing: -0.025em;
    margin: 0 0 12px;
}

.lp-limited__desc {
    font-size: 15px;
    color: var(--k-text-secondary);
    line-height: 1.7;
    margin: 0 0 28px;
}

.lp-limited__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.lp-limited__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(0,92,148,0.04);
    border: 1px solid rgba(0,92,148,0.08);
    font-size: 13px;
    font-weight: 600;
    color: var(--k-primary);
    letter-spacing: -0.01em;
}

.lp-limited--worker {
    background: linear-gradient(135deg, rgba(3,159,192,0.04) 0%, rgba(0,92,148,0.03) 100%);
}

.lp-limited--worker .lp-limited__icon {
    background: rgba(3,159,192,0.08);
    color: var(--k-accent, #039FC0);
}

.lp-limited--worker .lp-limited__badge {
    background: rgba(3,159,192,0.06);
    border-color: rgba(3,159,192,0.1);
    color: #028DAD;
}

/* ============================================================
   CANDIDATE PROFILE CARDS
   ============================================================ */
.lp-candidate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-candidate-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: var(--k-radius-2xl, 32px);
    padding: 40px 28px;
    text-align: center;
    box-shadow: 
        0 4px 24px -2px rgba(0, 0, 0, 0.03), 
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lp-candidate-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.lp-candidate-card:hover {
    box-shadow: 
        0 24px 48px -12px rgba(0, 92, 148, 0.08), 
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-4px) scale(1.01);
    background: rgba(255, 255, 255, 0.85);
}

.lp-candidate-card__flag {
    font-size: 36px;
    margin-bottom: 12px;
}

.lp-candidate-card__score {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.lp-candidate-card__score-val {
    font-size: 36px;
    font-weight: 800;
    color: var(--k-primary);
    line-height: 1;
}

.lp-candidate-card__score-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--k-text-muted, #8899a6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-candidate-card__role {
    font-size: 17px;
    font-weight: 700;
    color: var(--k-text-primary);
    margin: 0 0 4px;
}

.lp-candidate-card__location {
    font-size: 13px;
    color: var(--k-text-secondary);
    margin: 0 0 16px;
}

.lp-candidate-card__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.lp-candidate-card__tags span {
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(0,92,148,0.04);
    color: var(--k-primary);
    font-size: 12px;
    font-weight: 600;
}

.lp-candidate-card__exp {
    font-size: 13px;
    color: var(--k-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   DIAGNOSIS FLOW (Vertical Timeline)
   ============================================================ */
.lp-diagnosis-flow {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-diagnosis-flow__step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 0;
}

.lp-diagnosis-flow__num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--k-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.lp-diagnosis-flow__content {
    flex: 1;
    padding-bottom: 8px;
}

.lp-diagnosis-flow__content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--k-text-primary);
    margin: 0 0 6px;
    padding-top: 10px;
}

.lp-diagnosis-flow__content p {
    font-size: 14px;
    color: var(--k-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.lp-diagnosis-flow__connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--k-primary), rgba(0,92,148,0.2));
    margin-left: 23px;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.lp-trust {
    padding: 96px 0;
    background: #fff;
}

.lp-trust__inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.lp-trust__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--k-text-primary);
    letter-spacing: -0.025em;
    margin: 0 0 16px;
}

.lp-trust__desc {
    font-size: 15px;
    color: var(--k-text-secondary);
    line-height: 1.7;
    margin: 0 0 24px;
}

.lp-trust__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-trust__list li {
    font-size: 14px;
    color: var(--k-text-primary);
    font-weight: 500;
    padding-left: 24px;
    position: relative;
}

.lp-trust__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--k-accent, #039FC0);
    font-weight: 700;
}

.lp-trust__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lp-trust__stat {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: none;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 92, 148, 0.03), inset 0 2px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    position: relative;
}

.lp-trust__stat::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.lp-trust__stat:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 64px rgba(0, 92, 148, 0.08), inset 0 2px 0 rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.85);
}

.lp-trust__stat:first-child {
    grid-column: 1 / -1;
}

.lp-trust__stat-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--k-primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.lp-trust__stat-label {
    font-size: 13px;
    color: var(--k-text-secondary);
    font-weight: 600;
}

/* ============================================================
   VALUE GRID (3-column icons + text)
   ============================================================ */
.lp-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lp-value-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.lp-value-item {
    text-align: center;
}

.lp-value-item__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0,92,148,0.06);
    color: var(--k-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.lp-value-item__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--k-text-primary);
    margin: 0 0 6px;
}

.lp-value-item__desc {
    font-size: 14px;
    color: var(--k-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   VALUE LIST (numbered vertical list)
   ============================================================ */
.lp-value-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-value-list__item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0,92,148,0.06);
}

.lp-value-list__item:last-child {
    border-bottom: none;
}

.lp-value-list__num {
    font-size: 16px;
    font-weight: 800;
    color: var(--k-primary);
    opacity: 0.4;
    flex-shrink: 0;
    width: 32px;
    padding-top: 2px;
}

.lp-value-list__item h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--k-text-primary);
    margin: 0 0 6px;
}

.lp-value-list__item p {
    font-size: 14px;
    color: var(--k-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   EXPERIENCE FLOW (horizontal pipeline)
   ============================================================ */
.lp-experience-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.lp-experience-flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
}

.lp-experience-flow__step span {
    font-size: 13px;
    font-weight: 600;
    color: var(--k-text-secondary);
}

.lp-experience-flow__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0,92,148,0.06);
    color: var(--k-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.lp-experience-flow__step--final .lp-experience-flow__icon {
    background: var(--k-primary);
    color: #fff;
}

.lp-experience-flow__arrow {
    color: var(--k-text-muted, #8899a6);
    font-size: 18px;
    padding: 0 4px;
}

/* ============================================================
   WORKER CTA VARIANT
   ============================================================ */
.lp-cta-banner--worker {
    background: linear-gradient(135deg, #039FC0 0%, #005C94 100%);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
        transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="slide-left"] {
    transform: translateX(-32px);
}

[data-animate="slide-left"].visible {
    transform: translateX(0);
}

[data-animate="slide-right"] {
    transform: translateX(32px);
}

[data-animate="slide-right"].visible {
    transform: translateX(0);
}

[data-animate="scale"] {
    transform: scale(0.95);
}

[data-animate="scale"].visible {
    transform: scale(1);
}

/* Staggered delays */
[data-delay="1"] {
    transition-delay: 0.08s;
}

[data-delay="2"] {
    transition-delay: 0.16s;
}

[data-delay="3"] {
    transition-delay: 0.24s;
}

[data-delay="4"] {
    transition-delay: 0.32s;
}

[data-delay="5"] {
    transition-delay: 0.40s;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.lp-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #005C94, #039FC0);
    z-index: 10000;
    transition: width 0.08s linear;
    pointer-events: none;
}

/* ============================================================
   CURSOR GLOW EFFECT
   ============================================================ */
.lp-cursor-glow {
    --glow-x: 50%;
    --glow-y: 50%;
    position: relative;
}

.lp-cursor-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
        600px circle at var(--glow-x) var(--glow-y),
        rgba(0, 92, 148, 0.06),
        transparent 40%
    );
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.lp-cursor-glow:hover::before {
    opacity: 1;
}

/* Ensure card content stays above glow */
.lp-cursor-glow > * {
    position: relative;
    z-index: 1;
}

/* ============================================================
   3D TILT EFFECT
   ============================================================ */
.lp-tilt {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.lp-tilt:hover {
    /* overridden by JS, but CSS fallback */
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

/* ============================================================
   TEXT REVEAL — Word-level
   ============================================================ */
[data-text-reveal] .tr-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

[data-text-reveal] .tr-word-inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-text-reveal].tr-visible .tr-word-inner {
    transform: translateY(0);
    opacity: 1;
}

/* Text reveal character mode */
[data-text-reveal="char"] .tr-char {
    display: inline-block;
    transform: translateY(40%) rotateX(40deg);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom center;
}

[data-text-reveal="char"].tr-visible .tr-char {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
}

/* Whitespace in char mode */
[data-text-reveal="char"] .tr-space {
    display: inline;
    width: 0.3em;
}

/* ============================================================
   SVG STROKE DRAW ANIMATION
   ============================================================ */
[data-svg-draw] rect,
[data-svg-draw] circle,
[data-svg-draw] line,
[data-svg-draw] path {
    stroke-dasharray: var(--dash-length, 1000);
    stroke-dashoffset: var(--dash-length, 1000);
    transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.6s ease;
    opacity: 0;
}

[data-svg-draw].svg-drawn rect,
[data-svg-draw].svg-drawn circle,
[data-svg-draw].svg-drawn line,
[data-svg-draw].svg-drawn path {
    stroke-dashoffset: 0;
    opacity: 1;
}

/* SVG fill elements fade in after stroke */
[data-svg-draw] text {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease 0.8s,
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}

[data-svg-draw].svg-drawn text {
    opacity: 1;
    transform: translateY(0);
}

/* AI circle pulse */
[data-svg-draw].svg-drawn circle {
    animation: svg-ai-pulse 3s ease-in-out infinite 1.5s;
}

@keyframes svg-ai-pulse {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(0, 92, 148, 0)); }
    50% { filter: drop-shadow(0 0 12px rgba(0, 92, 148, 0.15)); }
}

/* ============================================================
   PARALLAX LAYER SYSTEM
   ============================================================ */
[data-parallax] {
    will-change: transform;
    transition: transform 0.1s linear;
}

/* ============================================================
   ENHANCED HOVER SHIMMER ON BUTTONS
   ============================================================ */
.lp-btn--primary,
.lp-btn--secondary {
    position: relative;
    overflow: hidden;
}

.lp-btn--primary::after,
.lp-btn--secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.lp-btn--primary:hover::after,
.lp-btn--secondary:hover::after {
    left: 130%;
}

/* ============================================================
   FLOATING BADGE ANIMATION (enhanced)
   ============================================================ */
.lp-hero__badge {
    animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .lp-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lp-hero__title {
        font-size: 44px;
    }

    .lp-hero__brand-watermark {
        font-size: clamp(80px, 14vw, 160px);
    }

    .lp-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 48px;
    }

    .lp-steps::before {
        display: none;
    }

    .lp-contact__title {
        font-size: 28px;
    }

    .lp-diagnostic__inner {
        padding: 36px 24px;
    }

    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lp-gateway-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lp-candidate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-trust__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .lp-experience-flow {
        flex-direction: column;
    }

    .lp-experience-flow__arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {

    .lp-navbar__links,
    .lp-navbar__actions {
        display: none;
    }

    .lp-navbar__hamburger {
        display: flex;
    }

    .lp-hero {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .lp-hero__title {
        font-size: 36px;
    }

    .lp-hero__subtitle {
        font-size: 16px;
    }

    .lp-hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .lp-hero__brand-watermark {
        font-size: 80px;
        bottom: -2%;
        -webkit-text-stroke: 1px rgba(0, 92, 148, 0.06);
    }

    .lp-hero__trust-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp-hero__orb {
        filter: blur(60px);
    }

    .lp-hero__orb--3 {
        display: none;
    }

    /* Disable stacking on mobile */
    .lp-stack-section + .lp-stack-section {
        border-radius: 0;
        margin-top: 0;
        box-shadow: none;
    }

    .lp-footer-cta {
        padding: 80px 0;
    }

    .lp-contact__actions {
        flex-direction: column;
        align-items: center;
    }

    .lp-contact__actions .lp-btn {
        width: 100%;
    }

    .lp-section {
        padding: 64px 0;
    }

    .lp-section__title {
        font-size: 28px;
    }

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

    .lp-steps {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .lp-cta-banner__title {
        font-size: 28px;
    }

    .lp-cta-banner__subtitle {
        font-size: 16px;
    }

    .lp-footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .lp-candidate-grid {
        grid-template-columns: 1fr;
    }

    .lp-value-grid,
    .lp-value-grid--2col {
        grid-template-columns: 1fr;
    }

    .lp-limited {
        padding: 56px 0;
    }

    .lp-limited__inner {
        padding: 32px 20px;
    }

    .lp-limited__title {
        font-size: 24px;
    }

    .lp-limited__badges {
        flex-direction: column;
        align-items: center;
    }

    .lp-trust__visual {
        grid-template-columns: 1fr;
    }

    .lp-trust__stat:first-child {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .lp-container {
        padding: 0 16px;
    }

    .lp-hero__title {
        font-size: 30px;
    }

    .lp-steps {
        grid-template-columns: 1fr;
    }

    .lp-tabs__track {
        flex-direction: column;
        width: 100%;
    }

    .lp-tabs__btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   VISUAL ENHANCEMENT — SVG Illustrations & Warm Tokens
   ============================================================ */

/* ── Warm Color Tokens ── */
.landing-page {
    --lp-warm-amber: #F59E0B;
    --lp-warm-peach: #FBBF24;
    --lp-warm-rose: #FB923C;
    --lp-warm-soft: rgba(251, 191, 36, 0.08);
    --lp-warm-glow: rgba(245, 158, 11, 0.12);
    --lp-friendly-radius: 20px;
}

/* ── SVG Animation Keyframes ── */
@keyframes lp-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes lp-float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes lp-pulse-soft {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes lp-dash-flow {
    to { stroke-dashoffset: -20; }
}

@keyframes lp-orbit {
    from { transform: rotate(0deg) translateX(24px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(24px) rotate(-360deg); }
}

@keyframes lp-score-fill {
    from { stroke-dashoffset: 251; }
}

@keyframes lp-sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes lp-wave {
    0%, 100% { d: path("M0,32 Q40,20 80,32 T160,32"); }
    50% { d: path("M0,32 Q40,44 80,32 T160,32"); }
}

/* ── Hero Illustration Container ── */
.lp-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.lp-hero__visual svg {
    width: 100%;
    max-width: 420px;
    height: auto;
}

/* ── Interactive Hero: Person + AI Search ── */
.lp-hero__visual--interactive svg {
    max-width: 520px;
    overflow: visible;
}

/* Candidate card entrance */
.ai-candidate-card {
    opacity: 0;
    animation: aiCardIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--card-delay, 0s);
}

@keyframes aiCardIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Card hover — rich glow + stroke brightening */
.ai-card-body {
    transition: filter 0.35s ease;
    cursor: pointer;
}

.ai-candidate-card:hover .ai-card-body {
    filter: drop-shadow(0 4px 16px rgba(0,92,148,0.25))
            drop-shadow(0 0 6px rgba(3,159,192,0.15));
}

/* Card border thickens on hover */
.ai-card-body rect:first-child {
    transition: stroke-width 0.3s ease, stroke-opacity 0.3s ease;
}

.ai-candidate-card:hover .ai-card-body rect:first-child {
    stroke-width: 2.2;
}

/* Score badge glows on hover */
.ai-card-body rect[rx="8"] {
    transition: filter 0.3s ease;
}

.ai-candidate-card:hover .ai-card-body rect[rx="8"] {
    filter: brightness(1.3) drop-shadow(0 0 6px currentColor);
}

/* Connection lines brighten on hover */
.ai-candidate-card > line {
    transition: opacity 0.3s ease, stroke-width 0.3s ease;
}

.ai-candidate-card:hover > line {
    opacity: 0.7 !important;
    stroke-width: 1.8;
}

/* ── AI Lens interactions ── */
.ai-lens {
    transition: filter 0.4s ease;
}

.hero-ai-search-svg:hover .ai-lens {
    filter: drop-shadow(0 0 12px rgba(3,159,192,0.45))
            drop-shadow(0 0 24px rgba(0,92,148,0.2));
}

/* Scan sweep visibility boost on hover */
.ai-scan-sweep {
    transition: opacity 0.4s ease;
}

.hero-ai-search-svg:hover .ai-scan-sweep {
    opacity: 1.5;
}

/* Orbit rings glow on hover */
.hero-ai-search-svg:hover circle[stroke-dasharray] {
    stroke-opacity: 0.4;
    transition: stroke-opacity 0.4s ease;
}

/* Person subtle breathing */
.ai-person {
    animation: aiPersonBreathe 5s ease-in-out infinite;
}

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

.lp-hero--split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.lp-hero--split .lp-hero__content {
    text-align: left;
}

.lp-hero--split .lp-hero__ctas {
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .lp-hero--split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .lp-hero--split .lp-hero__visual {
        order: -1;
        min-height: 180px;
    }
    .lp-hero--split .lp-hero__visual svg {
        max-width: 260px;
    }
    .lp-hero--split .lp-hero__content {
        text-align: center;
    }
    .lp-hero--split .lp-hero__ctas {
        justify-content: center;
    }
}

/* ── Section Spot Illustrations ── */
.lp-section__illust {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.lp-section__illust svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* ── Inline SVG Illustration Base ── */
.lp-illust-inline {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-illust-inline svg {
    width: 100%;
    height: auto;
}

/* ── Feature Card Micro-Illustration ── */
.lp-feature-card__illust {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 92, 148, 0.06) 0%, var(--lp-warm-soft) 100%);
    position: relative;
    overflow: visible;
}

.lp-feature-card__illust svg {
    width: 32px;
    height: 32px;
}

.lp-feature-card:hover .lp-feature-card__illust {
    background: linear-gradient(135deg, rgba(0, 92, 148, 0.10) 0%, var(--lp-warm-glow) 100%);
}

/* ── Avatar Styles ── */
.lp-candidate-card__avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 4px 16px rgba(0, 92, 148, 0.10),
        0 0 0 4px rgba(0, 92, 148, 0.04);
    transition: all 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.lp-candidate-card:hover .lp-candidate-card__avatar {
    box-shadow: 
        0 8px 24px rgba(0, 92, 148, 0.15),
        0 0 0 4px rgba(0, 92, 148, 0.08);
    transform: scale(1.05);
}

/* ── Animated Score Ring ── */
.lp-score-ring {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-score-ring svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.lp-score-ring__track {
    fill: none;
    stroke: rgba(0, 92, 148, 0.08);
    stroke-width: 4;
}

.lp-score-ring__fill {
    fill: none;
    stroke: var(--k-primary, #005C94);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.32, 0.72, 0, 1);
}

.lp-score-ring.animated .lp-score-ring__fill {
    stroke-dashoffset: var(--score-offset, 50);
}

.lp-score-ring__text {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Step Illustration Container ── */
.lp-step__illust {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-step__illust svg {
    width: 100%;
    height: 100%;
}

/* ── Animated Connector Line ── */
.lp-step-connector {
    width: 2px;
    height: 40px;
    margin-left: 23px;
    position: relative;
    overflow: hidden;
}

.lp-step-connector::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--k-primary, #005C94), rgba(0, 92, 148, 0.15));
    animation: lp-connector-flow 2s ease-in-out infinite;
}

@keyframes lp-connector-flow {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* ── Experience Flow Animated Connector ── */
.lp-experience-flow__connector {
    width: 60px;
    height: 2px;
    position: relative;
    flex-shrink: 0;
}

.lp-experience-flow__connector svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── Warmth: Section Warm Tint Alternation ── */
.lp-section--warm {
    background: linear-gradient(135deg, 
        rgba(251, 191, 36, 0.03) 0%, 
        rgba(245, 158, 11, 0.02) 50%,
        rgba(255, 255, 255, 0.5) 100%
    );
}

/* ── Question Hook: Floating Data Badges ── */
.lp-question-hook {
    position: relative;
    overflow: hidden;
}

/* Sweep light — ambient motion across section */
.lp-question-hook::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(3, 159, 192, 0.03) 45%,
        rgba(0, 92, 148, 0.05) 50%,
        rgba(3, 159, 192, 0.03) 55%,
        transparent 60%
    );
    animation: lp-sweep-light 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes lp-sweep-light {
    0% { transform: translateX(-30%); }
    50% { transform: translateX(30%); }
    100% { transform: translateX(-30%); }
}

/* SVG data grid background */
.lp-data-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

.lp-data-grid svg {
    width: 100%;
    height: 100%;
}

/* Mouse-following glow */
.lp-glow-tracker {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(0, 92, 148, 0.12) 0%,
        rgba(3, 159, 192, 0.06) 30%,
        rgba(245, 158, 11, 0.02) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    left: var(--glow-x, 50%);
    top: var(--glow-y, 50%);
    transition: left 200ms cubic-bezier(0.25, 1, 0.5, 1), top 200ms cubic-bezier(0.25, 1, 0.5, 1), opacity 400ms ease;
    will-change: left, top;
    opacity: 0;
}

.lp-float-badges {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.lp-float-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow:
        0 8px 32px rgba(0, 92, 148, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
    color: var(--k-ink-secondary, #4a5568);
    letter-spacing: 0.02em;
    white-space: nowrap;
    animation: lp-float-drift 6s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.lp-float-badge svg {
    flex-shrink: 0;
}

.lp-float-badge--1 {
    top: 18%;
    left: 6%;
    animation-delay: 0s;
    color: #005C94;
}

.lp-float-badge--2 {
    top: 30%;
    right: 5%;
    animation-delay: -2s;
    animation-duration: 7s;
    color: #039FC0;
}

.lp-float-badge--3 {
    bottom: 18%;
    left: 10%;
    animation-delay: -4s;
    animation-duration: 8s;
    color: #b45309;
}

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

/* Ensure section header stays above badges */
.lp-question-hook .lp-section__header {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .lp-float-badge {
        animation: none;
    }
    .lp-data-grid svg animate,
    .lp-data-grid svg animateTransform {
        animation: none;
    }
    .lp-glow-tracker {
        display: none;
    }
    .lp-question-hook::before {
        animation: none;
    }
}

@media (max-width: 768px) {
    .lp-float-badges {
        display: none;
    }
    .lp-data-grid {
        opacity: 0.4;
    }
    .lp-glow-tracker {
        display: none;
    }
}

/* ── Warmth: Friendlier card hover glow ── */
.lp-feature-card:hover,
.lp-candidate-card:hover,
.lp-value-item:hover {
    box-shadow: 
        0 24px 48px -12px rgba(245, 158, 11, 0.06),
        0 16px 40px rgba(0, 92, 148, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* ── Warmth: Softer section dividers ── */
.lp-pain-cards {
    position: relative;
}

.lp-pain-cards::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--k-primary, #005C94), var(--lp-warm-amber));
    opacity: 0.3;
}

/* ── Limited Section Illustration ── */
.lp-limited__illust {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.lp-limited__illust svg {
    width: 64px;
    height: 64px;
}

/* ── CTA Floating Particles ── */
.lp-footer-cta__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.lp-footer-cta__particles .particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: lp-particle-float 6s ease-in-out infinite;
}

@keyframes lp-particle-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.15; }
    50% { transform: translateY(-30px) scale(1.3); opacity: 0.25; }
}

/* ── Pain Card Spot Illustration ── */
.lp-pain-card__illust {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-pain-card__illust svg {
    width: 100%;
    height: 100%;
}

/* ── Floating elements for hero ── */
.lp-hero__float-element {
    position: absolute;
    animation: lp-float-slow 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.lp-hero__float-element:nth-child(2) {
    animation-delay: -2s;
}

.lp-hero__float-element:nth-child(3) {
    animation-delay: -4s;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-hero__float-card {
        animation: none;
    }

    .lp-hero__badge-dot {
        animation: none;
    }

    .lp-hero__orb {
        animation: none;
    }

    .lp-hero__brand-watermark {
        opacity: 0;
    }

    .lp-gateway-card__glow {
        display: none;
    }
}