/* === LANDING PAGE — Creative & Conversion-focused === */
body { overflow-x: hidden; overflow-y: auto; height: auto; }
html { overflow-x: hidden; }

/* ============================== */
/* NAVIGATION                     */
/* ============================== */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: 72px;
    background: rgba(245, 244, 241, 0.88); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
    display: flex; align-items: center;
    transform: translateY(-100%); animation: navSlide 0.6s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes navSlide { to { transform: translateY(0); } }

.logo-img { height: 110px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5%;
    min-width: 0;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--text-muted); font-size: 14px;
    font-weight: 500; transition: color 0.2s; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px;
    background: var(--text-dark); transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-auth { display: flex; align-items: center; gap: 16px; }
.nav-login {
    text-decoration: none; color: var(--text-muted); font-size: 14px;
    font-weight: 500; transition: color 0.2s;
}
.nav-login:hover { color: var(--text-dark); }

/* ============================== */
/* HAMBURGER (mobile only)        */
/* ============================== */
.hamburger {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; position: fixed; right: 20px; top: 17px;
    width: 42px; height: 42px; box-sizing: border-box;
    flex-shrink: 0; z-index: 1010;
}
.hb-line {
    display: block; position: absolute; left: 0;
    height: 2px; background: var(--text-dark); border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hb-line-1 { width: 100%; top: 0; }
.hb-line-2 { width: 60%; top: 50%; transform: translateY(-50%); }
.hb-line-3 { width: 80%; bottom: 0; }

/* Open state */
.hamburger.is-open .hb-line-1 { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.is-open .hb-line-2 { width: 0; opacity: 0; }
.hamburger.is-open .hb-line-3 { width: 100%; bottom: auto; top: 50%; transform: translateY(-50%) rotate(-45deg); }

/* ============================== */
/* MOBILE MENU                    */
/* ============================== */
.mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 1001;
    pointer-events: none;
}
.mobile-menu.is-open {
    pointer-events: auto;
}

.mm-overlay {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.3); backdrop-filter: blur(4px);
    opacity: 0; transition: opacity 0.35s ease;
}
.mobile-menu.is-open .mm-overlay { opacity: 1; }

.mm-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 280px; max-width: 80vw;
    background: var(--bg-surface);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    padding: 90px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex; flex-direction: column; gap: 0;
    overflow-y: auto;
}
.mobile-menu.is-open .mm-panel { transform: translateX(0); }

.mm-links { display: flex; flex-direction: column; gap: 0; }
.mm-link {
    display: block; padding: 16px 0;
    text-decoration: none; color: var(--text-dark);
    font-size: 16px; font-weight: 500;
    border-bottom: 1px solid var(--border-soft);
    transition: color 0.2s;
}
.mm-link:hover { color: var(--accent-green); }
.mm-link-muted { color: var(--text-muted); font-size: 14px; }

.mm-divider {
    height: 1px; background: var(--border-soft); margin: 8px 0;
}

.mm-actions {
    display: flex; flex-direction: column; gap: 12px;
    padding-top: 8px;
}
.mm-cta {
    text-align: center; width: 100%;
    padding: 12px 20px; font-size: 14px;
}

/* ============================== */
/* BUTTONS                        */
/* ============================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; font-size: 15px; font-weight: 500; text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer;
    border-radius: 8px; font-family: var(--font-sans); border: none;
}
.btn-primary { background: var(--text-dark); color: #FFFFFF; border: 1px solid var(--text-dark); }
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-nav { padding: 10px 20px; font-size: 13px; }

.btn-glow {
    background: var(--text-dark); color: #FFFFFF; position: relative;
    box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.3);
}
.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(17, 17, 17, 0.25), 0 0 0 1px rgba(17, 17, 17, 0.1);
}
.btn-glow::after {
    content: ''; position: absolute; inset: -2px; border-radius: 10px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(0, 184, 148, 0.15));
    z-index: -1; opacity: 0; transition: opacity 0.4s;
}
.btn-glow:hover::after { opacity: 1; }

.btn-ghost {
    background: transparent; color: var(--text-dark);
    border: 1px solid var(--border-dark);
}
.btn-ghost:hover {
    border-color: var(--text-dark); background: var(--bg-surface);
    transform: translateY(-2px);
}

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

/* ============================== */
/* HERO — Pipeline Reveal         */
/* ============================== */
.hero {
    position: relative; background: var(--bg-app); overflow: hidden;
    padding: 140px 0 80px; min-height: 100vh;
    display: flex; align-items: center;
}

/* Subtle dot-grid background */
.hero-grid-bg {
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, var(--border-soft) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

.hero-layout {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px;
    align-items: center;
}

/* Pill */
.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; background: var(--bg-surface);
    border: 1px solid var(--border-soft); border-radius: 100px;
    font-size: 11px; font-weight: 500; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 1px;
}
.pill-dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--accent-green);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(14,121,60,0.3); }
    50% { box-shadow: 0 0 0 5px rgba(14,121,60,0); }
}

/* Pill ticker */
.pill-ticker {
    position: relative;
    display: inline-grid;
    overflow: hidden;
    height: 1.2em;
}
.pill-tick {
    grid-area: 1 / 1;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    visibility: hidden;
}
.pill-tick.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Hero copy */
.hero-left { max-width: 520px; }
.hero h1 {
    font-size: clamp(32px, 4vw, 52px); line-height: 1.1;
    margin: 24px 0 20px; color: var(--text-dark);
}
.hero h1 .tl { display: block; }
.hero h1 .tl-em { color: var(--text-light); }
.hero h1 .tl-em em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-green), #00B894);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 440px; line-height: 1.65;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: nowrap; margin-top: 32px; align-items: center; }
.hero-ctas .btn { white-space: nowrap; padding: 10px 22px; font-size: 14px; }

/* Proof strip */
.proof-strip { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.proof-avatars { display: flex; }
.proof-av {
    width: 30px; height: 30px; border-radius: 50%; color: #FFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 600; border: 2px solid var(--bg-app);
    margin-left: -8px;
}
.proof-av:first-child { margin-left: 0; }
.proof-text { font-size: 13px; color: var(--text-light); }

/* ============================== */
/* PIPELINE SCENE (hero right)    */
/* ============================== */
.hero-right { position: relative; }

.pipeline-scene {
    display: flex; align-items: stretch; gap: 0;
    position: relative; padding: 20px 0;
}

/* Pipeline cards */
.pipe-card {
    flex: 1; min-width: 0;
    background: var(--bg-surface);
    border: 1px solid var(--border-soft);
    border-radius: 10px; padding: 14px 12px;
    opacity: 0; transform: translateY(16px) scale(0.96);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: relative;
}
.pipe-card.pipe-active {
    opacity: 1; transform: translateY(0) scale(1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.pipe-card-label {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 10px;
    white-space: nowrap;
}
.pipe-card-label i { color: var(--accent-green); width: 12px; height: 12px; }

/* Connectors */
.pipe-connector {
    display: flex; align-items: center; justify-content: center;
    width: 28px; flex-shrink: 0;
    opacity: 0; transition: opacity 0.4s ease;
}
.pipe-connector.pipe-conn-active { opacity: 1; }
.pipe-arrow-svg { width: 28px; height: 20px; }
.pipe-dash {
    stroke-dashoffset: 40;
    animation: none;
}
.pipe-conn-active .pipe-dash {
    animation: dashFlow 1.5s linear infinite;
}
@keyframes dashFlow {
    to { stroke-dashoffset: 0; }
}

/* === Card 1: CV lines === */
.pipe-cv-lines { display: flex; flex-direction: column; gap: 6px; }
.pcv-head { display: flex; gap: 8px; align-items: center; margin-bottom: 2px; }
.pcv-avatar {
    width: 26px; height: 26px; border-radius: 6px;
    background: linear-gradient(135deg, #E8E7E2, #D4D3CE);
    flex-shrink: 0;
}
.pcv-meta { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.pcv-line {
    height: 6px; border-radius: 3px; background: var(--border-soft);
}
.pcv-line-name { width: 70%; }
.pcv-line-role { width: 50%; height: 5px; }
.pcv-line-full { width: 100%; }
.pcv-line-80 { width: 80%; }
.pcv-line-60 { width: 60%; }

/* Shimmer on CV lines when active */
.pipe-active .pcv-line {
    background: linear-gradient(90deg, var(--border-soft) 25%, #e0dfda 50%, var(--border-soft) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === Card 2: AI Analysis bars === */
.pipe-ai-content { display: flex; flex-direction: column; gap: 7px; }
.pai-skill-row { display: flex; align-items: center; gap: 6px; }
.pai-skill-name {
    font-size: 10px; font-weight: 600; color: var(--text-dark);
    min-width: 36px; white-space: nowrap;
}
.pai-bar {
    flex: 1; height: 5px; background: var(--border-soft);
    border-radius: 3px; overflow: hidden;
}
.pai-fill {
    height: 100%; border-radius: 3px; width: 0%;
    background: linear-gradient(90deg, var(--accent-green), #00B894);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.pai-tags { display: flex; gap: 3px; flex-wrap: wrap; margin-top: 2px; }
.pai-tag {
    padding: 2px 6px; border-radius: 3px; font-size: 9px; font-weight: 600; white-space: nowrap;
}
.pai-tag-g { background: #E8F5ED; color: var(--accent-green); }
.pai-tag-o { background: #FDF3EB; color: var(--accent-orange); }

/* === Card 3: Verdict === */
.pipe-verdict-content { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pvd-score-ring { position: relative; width: 50px; height: 50px; }
.pvd-ring { width: 100%; height: 100%; }
.pvd-ring-fill { transition: stroke-dashoffset 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.pvd-ring-num {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: var(--accent-green);
}
.pvd-reco { text-align: center; }
.pvd-badge {
    display: inline-block; padding: 3px 10px; border-radius: 5px;
    background: #E8F5ED; color: var(--accent-green);
    font-size: 11px; font-weight: 600;
    opacity: 0; transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pvd-badge-show { opacity: 1; transform: scale(1); }
.pvd-reason {
    display: block; font-size: 10px; color: var(--text-muted);
    margin-top: 4px; white-space: nowrap;
    opacity: 0; transition: opacity 0.4s 0.15s ease;
}
.pvd-reason-show { opacity: 1; }

/* Scan line */
.pipe-scan-line {
    position: absolute; top: 0; bottom: 0; left: 0; width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-green), transparent);
    opacity: 0; pointer-events: none;
    box-shadow: 0 0 12px rgba(14,121,60,0.3);
}
.pipe-scan-active {
    opacity: 1;
    animation: scanSweep 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes scanSweep {
    0% { left: 0; opacity: 0.8; }
    100% { left: 100%; opacity: 0; }
}

/* ============================== */
/* MOCKUP SECTION                 */
/* ============================== */
.mockup-section { padding: 0 0 100px; }

.mockup-window {
    background: var(--bg-surface); border: 1px solid var(--border-soft);
    border-radius: 14px; overflow: hidden;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.04),
        0 16px 40px rgba(0,0,0,0.06),
        0 40px 80px rgba(0,0,0,0.04);
    max-width: 1060px; margin: 0 auto;
    transform: perspective(1200px) rotateX(1deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-bar {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 20px; background: #1a1a1a; color: #999;
    font-size: 13px;
}
.mockup-dots { display: flex; gap: 7px; }
.mockup-dots span {
    width: 12px; height: 12px; border-radius: 50%; background: #333;
}
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }
.mockup-bar-title { display: flex; align-items: center; gap: 8px; color: #888; }

.mockup-body { display: grid; grid-template-columns: 260px 1fr; min-height: 340px; }

/* Sidebar */
.mockup-sidebar {
    padding: 20px; border-right: 1px solid var(--border-soft);
    background: var(--bg-app);
}
.ms-title {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 16px;
}
.ms-card {
    padding: 14px; border: 1px solid var(--border-soft); border-radius: 10px;
    margin-bottom: 10px; background: var(--bg-surface);
    transition: all 0.3s;
}
.ms-active { border-color: #6C5CE7; background: #f8f5ff; }
.ms-card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.ms-avatar {
    width: 32px; height: 32px; border-radius: 8px; color: #FFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.ms-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.ms-role { font-size: 11px; color: var(--text-muted); }
.ms-score-row { display: flex; align-items: center; gap: 8px; }
.ms-bar { flex: 1; height: 5px; background: var(--border-soft); border-radius: 4px; overflow: hidden; }
.ms-fill { height: 100%; border-radius: 4px; transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1); }
.ms-pct { font-size: 12px; font-weight: 700; min-width: 32px; text-align: right; }

/* Main panel */
.mockup-main { padding: 28px 32px; }
.mm-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: #6C5CE7;
    background: #f3e8ff; padding: 5px 12px; border-radius: 6px; margin-bottom: 16px;
}
.mm-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; font-family: var(--font-sans); }
.mm-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.mm-text strong { color: var(--text-dark); }

.mm-skills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.mm-skill {
    padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 500;
}
.mm-skill-match { background: #E8F5ED; color: var(--accent-green); }
.mm-skill-partial { background: #FDF3EB; color: var(--accent-orange); }
.mm-skill-miss { background: #FEE2E2; color: var(--accent-red); }

.mm-reco {
    display: flex; gap: 10px; align-items: flex-start;
    padding: 14px; background: var(--bg-app); border: 1px solid var(--border-soft);
    border-radius: 8px; font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.mm-reco i { flex-shrink: 0; margin-top: 2px; color: #6C5CE7; }
.mm-reco strong { color: var(--text-dark); }

/* ============================== */
/* POSITIONING SECTION            */
/* ============================== */
.positioning { padding: 120px 0; }

.pos-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    position: relative;
}
.pos-grid::before {
    content: ''; position: absolute; left: 50%; top: 10%; bottom: 10%;
    width: 1px; background: var(--border-soft);
}

.pos-label {
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-muted); margin-bottom: 20px;
}
.pos-label-accent { color: var(--accent-green); }

.pos-left h2, .pos-right h2 {
    font-size: clamp(24px, 2.5vw, 34px); margin-bottom: 20px; line-height: 1.2;
}
.pos-right h2 em {
    font-style: italic;
    background: linear-gradient(135deg, #6C5CE7, #00B894);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pos-left p, .pos-right p {
    font-size: 15px; color: var(--text-muted); line-height: 1.65;
}
.pos-right p strong { -webkit-text-fill-color: var(--text-dark); }

/* ============================== */
/* FEATURES SECTION               */
/* ============================== */
.features { padding: 120px 0; background: var(--bg-surface); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }
.section-header p { font-size: 16px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }

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

.feat-card {
    padding: 36px 28px; border: 1px solid var(--border-soft); border-radius: 14px;
    background: var(--bg-app); position: relative; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.feat-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feat-icon-green { background: #E8F5ED; color: var(--accent-green); }
.feat-icon-blue { background: #EAF1FE; color: #0A52C6; }
.feat-icon-orange { background: #FDF3EB; color: var(--accent-orange); }

.feat-num {
    font-family: var(--font-serif); font-size: 14px; color: var(--text-light);
    margin-bottom: 8px;
}
.feat-card h3 {
    font-size: 20px; margin-bottom: 12px; font-family: var(--font-sans); font-weight: 600;
}
.feat-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }

/* Feature demos */
.feat-demo {
    padding: 20px; background: var(--bg-surface); border: 1px solid var(--border-soft);
    border-radius: 10px;
}

.fd-tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; padding: 3px 8px; border-radius: 4px; margin-bottom: 10px;
}
.fd-green { color: var(--accent-green); background: #E8F5ED; }
.fd-orange { color: var(--accent-orange); background: #FDF3EB; }

.fd-title { font-weight: 600; font-size: 13px; color: var(--text-dark); margin-bottom: 8px; }
.fd-quote {
    font-family: var(--font-serif); font-style: italic; font-size: 13px;
    color: var(--text-muted); border-left: 2px solid var(--border-dark);
    padding-left: 12px; margin-bottom: 10px; line-height: 1.5;
}
.fd-note {
    font-size: 12px; color: var(--accent-green); font-weight: 500;
    min-height: 16px;
}
.fd-question {
    font-family: var(--font-serif); font-style: italic; font-size: 13px;
    color: var(--text-dark); line-height: 1.5; min-height: 40px;
}

/* Compare demo */
.fd-compare { display: flex; flex-direction: column; gap: 10px; }
.fd-cand {
    display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-dark);
}
.fd-av {
    width: 28px; height: 28px; border-radius: 6px; color: #FFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.fd-cand span { min-width: 60px; font-size: 12px; }
.fd-bar { flex: 1; height: 6px; background: var(--border-soft); border-radius: 4px; overflow: hidden; }
.fd-fill { height: 100%; border-radius: 4px; }
.fd-cand strong { font-size: 12px; min-width: 30px; text-align: right; }

/* ============================== */
/* STEPS (How it works)           */
/* ============================== */
.steps-section { padding: 100px 0; }

.steps-track {
    display: flex; justify-content: center; gap: 0; position: relative;
    max-width: 800px; margin: 0 auto;
}
.steps-line {
    position: absolute; top: 28px; left: 16%; right: 16%;
    height: 2px; background: var(--border-soft);
}
.steps-line::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, #6C5CE7, #00B894);
    transform: scaleX(0); transform-origin: left;
    animation: lineGrow 1.5s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.step {
    flex: 1; text-align: center; position: relative; z-index: 1;
    padding: 0 20px;
}
.step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--bg-surface); border: 2px solid var(--border-soft);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 20px; font-weight: 600;
    color: var(--text-dark); margin: 0 auto 20px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.step.is-visible .step-num {
    border-color: var(--text-dark); background: var(--text-dark); color: #FFF;
}
.step h3 { font-size: 18px; margin-bottom: 8px; font-family: var(--font-sans); font-weight: 600; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ============================== */
/* TARGET SECTION                 */
/* ============================== */
.target {
    padding: 120px 0; background: var(--bg-surface);
    border-top: 1px solid var(--border-soft);
}

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

.target-card {
    padding: 36px 28px; border: 1px solid var(--border-soft); border-radius: 14px;
    background: var(--bg-app); transition: transform 0.4s, box-shadow 0.4s;
}
.target-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }

.tc-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--bg-surface); border: 1px solid var(--border-soft);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--text-dark);
}
.target-card h3 { font-size: 18px; margin-bottom: 10px; font-family: var(--font-sans); font-weight: 600; }
.target-card > p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 24px; }

.tc-stat {
    display: flex; align-items: baseline; gap: 8px;
    padding-top: 20px; border-top: 1px solid var(--border-soft);
}
.tc-big {
    font-family: var(--font-serif); font-size: 32px; font-weight: 600;
    color: var(--text-dark);
}
.tc-label { font-size: 13px; color: var(--text-muted); }

/* ============================== */
/* TRUST / SCORING EQUITABLE      */
/* ============================== */
.trust-section {
    padding: 100px 0;
    border-top: 1px solid var(--border-soft);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.trust-card {
    padding: 32px 24px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    background: var(--bg-surface);
    transition: transform 0.4s, box-shadow 0.4s;
}
.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.trust-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: #e8f5e9; border: 1px solid #c8e6c9;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--accent-green);
}
.trust-card h3 {
    font-size: 18px; margin-bottom: 10px;
    font-family: var(--font-sans); font-weight: 600;
}
.trust-card > p {
    font-size: 14px; color: var(--text-muted); line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================== */
/* CTA FINAL                      */
/* ============================== */
.final-cta {
    background: var(--text-dark); color: var(--bg-app);
    padding: 120px 5%; text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(108,92,231,0.12), transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(0,184,148,0.08), transparent 60%);
    pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }

.cta-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px; font-size: 13px; color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}
.cta-badge i { color: #FFBD2E; }

.final-cta h2 {
    color: #FFFFFF; margin-bottom: 20px;
    font-size: clamp(28px, 4vw, 44px); line-height: 1.15;
}
.final-cta p {
    color: rgba(255,255,255,0.55); font-size: 17px;
    max-width: 520px; margin: 0 auto 40px; line-height: 1.6;
}

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

.final-cta .btn-glow {
    background: #FFFFFF; color: var(--text-dark);
    box-shadow: 0 0 40px rgba(255,255,255,0.1);
}
.final-cta .btn-glow:hover {
    box-shadow: 0 8px 40px rgba(255,255,255,0.2);
}
.final-cta .btn-glow::after {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 184, 148, 0.2));
}

/* ============================== */
/* FOOTER                         */
/* ============================== */
footer {
    padding: 40px 0; border-top: 1px solid var(--border-soft);
    background: var(--bg-surface); font-size: 14px;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { text-decoration: none; display: flex; align-items: center; }
.footer-logo { height: 76px; width: auto; }
.footer-copy { color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-dark); }

/* ============================== */
/* ANIMATIONS                     */
/* ============================== */
.anim-pop {
    opacity: 0; transform: translateY(20px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-pop.is-visible { opacity: 1; transform: translateY(0) scale(1); }

.anim-fade {
    opacity: 0; transform: translateY(24px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-fade.is-visible { opacity: 1; transform: translateY(0); }

.anim-title {
    opacity: 0;
    transition: opacity 0.8s ease;
}
.anim-title.is-visible { opacity: 1; }
.anim-title .title-line {
    display: block; opacity: 0; transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-title.is-visible .title-line:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.anim-title.is-visible .title-line:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }

.anim-rise {
    opacity: 0; transform: perspective(1200px) rotateX(4deg) translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-rise.is-visible { opacity: 1; transform: perspective(1200px) rotateX(1deg) translateY(0); }

.anim-card {
    opacity: 0; transform: translateY(32px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--card-delay, 0s);
}
.anim-card.is-visible { opacity: 1; transform: translateY(0); }

.anim-slide-right {
    opacity: 0; transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-slide-right.is-visible { opacity: 1; transform: translateX(0); }

.anim-slide-left {
    opacity: 0; transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.anim-slide-left.is-visible { opacity: 1; transform: translateX(0); }

.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ============================== */
/* RESPONSIVE                     */
/* ============================== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pos-grid { grid-template-columns: 1fr; gap: 48px; }
    .pos-grid::before { display: none; }
    .target-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links { display: none !important; }
    .nav-auth { display: none !important; }
    .nav-cta-desktop { display: none !important; }
    .hamburger { display: flex; align-items: center; justify-content: center; position: fixed; right: 14px; top: 20px; width: 28px; height: 20px; padding: 0; }
    .mobile-menu { display: block; }
    .logo-img { height: 96px; }
    .nav-inner { gap: 12px; padding: 0 8px; }

    .hero { padding: 110px 0 60px; min-height: auto; }
    .hero-layout { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-left { max-width: 100%; margin: 0 auto; }
    .hero-sub { margin: 0 auto; }
    .hero h1 { font-size: 32px; }
    .hero-sub { font-size: 15px; }
    .hero-ctas { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .hero-ctas .btn { font-size: 14px; padding: 12px 20px; }
    .hero-ctas .btn-ghost {
        background: none; border: none; padding: 8px 4px;
        font-size: 13px; color: var(--text-muted); text-decoration: underline;
        text-underline-offset: 3px;
    }
    .hero-ctas .btn-ghost:hover { color: var(--text-dark); background: none; transform: none; box-shadow: none; }
    .proof-strip { justify-content: center; }

    .pipeline-scene { flex-direction: column; align-items: center; gap: 0; }
    .pipe-card { width: 100%; max-width: 280px; }
    .pipe-connector { transform: rotate(90deg); width: 24px; height: 40px; }

    .mockup-body { grid-template-columns: 1fr; }
    .mockup-sidebar { border-right: none; border-bottom: 1px solid var(--border-soft); }

    .steps-track { flex-direction: column; gap: 32px; }
    .steps-line { display: none; }

    .final-cta { padding: 80px 5%; }
    .final-cta h2 { font-size: 28px; }
    .final-cta p { font-size: 15px; }
    .cta-buttons .btn { width: 100%; }

    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 0 40px; }
    .hero h1 { font-size: 26px; }
    .pipe-card { padding: 12px 10px; }
    .pipe-card-label { font-size: 9px; }
    .btn { padding: 10px 16px; font-size: 13px; }
    .btn-lg { padding: 12px 20px; font-size: 14px; }
    .hero-ctas .btn { padding: 10px 16px; font-size: 13px; }
    .mockup-main { padding: 20px; }
    .feat-card { padding: 28px 20px; }
    .target-card { padding: 28px 20px; }
}
