/* =====================================================================
   DooJobs — Front landing page  ·  Clean minimal / light (Stripe-like)
   Self-contained; no legacy WorkScout theme dependency. All classes `lp-`.
   Display: Sora · Body/UI: Inter · Accent: indigo
   ===================================================================== */

:root {
    --lp-font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --lp-display:   'Sora', var(--lp-font);

    --lp-brand:      #4f46e5;   /* indigo-600 */
    --lp-brand-700:  #4338ca;
    --lp-brand-800:  #3730a3;
    --lp-brand-tint: #f3f2ff;   /* indigo-50 */
    --lp-brand-tint2:#eceafe;

    --lp-ink:    #0e1320;   /* headings (near-black, cool) */
    --lp-ink-2:  #2b3242;
    --lp-text:   #4a5263;   /* body */
    --lp-muted:  #5b6475;   /* secondary, AA on white */
    --lp-faint:  #8a92a3;   /* tiny meta */

    --lp-line:   #ececf1;   /* hairline */
    --lp-line-2: #e3e5ee;
    --lp-bg:     #ffffff;
    --lp-soft:   #fafafb;
    --lp-soft-2: #f6f7f9;

    --lp-amber:  #b45309;   /* premium tag text */
    --lp-amber-bg:#fff7ed;
    --lp-amber-bd:#fad9a8;

    --lp-r-sm: 10px;
    --lp-r:    14px;
    --lp-r-lg: 18px;
    --lp-r-xl: 24px;
    --lp-pill: 999px;

    --lp-sh-sm: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.05);
    --lp-sh:    0 4px 14px rgba(16,24,40,.05), 0 1px 3px rgba(16,24,40,.04);
    --lp-sh-lg: 0 16px 40px rgba(16,24,40,.08), 0 4px 10px rgba(16,24,40,.04);
    --lp-sh-search: 0 24px 60px -12px rgba(31,28,135,.18), 0 6px 16px rgba(16,24,40,.06);
    --lp-ring: 0 0 0 3px rgba(79,70,229,.28);

    --lp-container: 1120px;
}

/* ---- Base ----------------------------------------------------- */
body.lp-body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--lp-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--lp-text);
    background: var(--lp-bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.lp-body *, .lp-body *::before, .lp-body *::after { box-sizing: border-box; }
.lp-body h1, .lp-body h2, .lp-body h3, .lp-body h4 {
    margin: 0; color: var(--lp-ink); font-family: var(--lp-display);
    font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
}
.lp-body p { margin: 0; }
/* :where() => 0 specificity, so component rules (.lp-btn-primary, .lp-nav-link…)
   always win the color cascade. Without this, `.lp-body a` (0,1,1) beats a
   single-class button rule (0,1,0) and forces indigo text onto blue buttons. */
:where(.lp-body a) { color: var(--lp-brand-700); text-decoration: none; transition: color .15s ease; }
:where(.lp-body a:hover) { color: var(--lp-brand-800); }
.lp-body img { max-width: 100%; display: block; }
.lp-body ul { margin: 0; padding: 0; list-style: none; }
.lp-body :focus-visible { outline: none; box-shadow: var(--lp-ring); border-radius: 8px; }

.lp-container { width: 100%; max-width: var(--lp-container); margin: 0 auto; padding: 0 28px; }
.lp-narrow { max-width: 860px; }
.lp-visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---- Buttons -------------------------------------------------- */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px; font: inherit; font-weight: 600; font-size: 15px;
    border-radius: var(--lp-pill); border: 1px solid transparent; cursor: pointer;
    transition: background-color .16s ease, color .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
    white-space: nowrap;
}
.lp-btn svg { width: 18px; height: 18px; flex: none; }
.lp-btn-primary { background: var(--lp-brand); color: #fff; box-shadow: 0 1px 2px rgba(16,24,40,.05); }
.lp-btn-primary:hover { background: var(--lp-brand-700); color: #fff; box-shadow: 0 8px 20px -6px rgba(79,70,229,.5); }
.lp-btn-ghost { background: #fff; color: var(--lp-ink-2); border-color: var(--lp-line-2); box-shadow: 0 1px 2px rgba(16,24,40,.04); }
.lp-btn-ghost:hover { background: var(--lp-soft); color: var(--lp-ink); border-color: #d3d6e0; }
.lp-btn-soft { background: var(--lp-brand-tint); color: var(--lp-brand-700); }
.lp-btn-soft:hover { background: var(--lp-brand-tint2); color: var(--lp-brand-800); }
.lp-btn-lg { padding: 14px 28px; font-size: 15.5px; }
.lp-btn-block { width: 100%; }

/* =====================================================================
   NAVBAR  (light, transparent over hero -> solid on scroll)
   ===================================================================== */
.lp-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    background: transparent; border-bottom: 1px solid transparent;
    transition: background-color .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.lp-nav-inner { display: flex; align-items: center; gap: 20px; height: 74px; }
.lp-logo { display: inline-flex; align-items: center; }
.lp-logo img { height: 34px; width: auto; }
.lp-logo .lp-logo-dark { display: none; }

.lp-nav-links { display: flex; align-items: center; gap: 2px; margin-left: 6px; }
.lp-nav-links > li { position: relative; }
.lp-nav-link {
    display: inline-flex; align-items: center; gap: 5px; padding: 9px 13px;
    border-radius: var(--lp-r-sm); color: rgba(255,255,255,.9); font-weight: 500; font-size: 15px;
    transition: background-color .15s ease, color .15s ease;
}
.lp-nav-link:hover { color: #fff; background: rgba(255,255,255,.12); }
.lp-nav-link .lp-caret { width: 13px; height: 13px; opacity: .6; transition: transform .2s ease; }
.lp-has-dd:hover .lp-caret { transform: rotate(180deg); }

.lp-nav-spacer { flex: 1; }
.lp-nav-actions { display: flex; align-items: center; gap: 8px; }

/* Dropdown */
.lp-dd {
    position: absolute; top: calc(100% + 10px); left: -6px; min-width: 250px;
    background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-r);
    box-shadow: var(--lp-sh-lg); padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lp-has-dd:hover .lp-dd, .lp-has-dd:focus-within .lp-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.lp-dd a { display: flex; align-items: center; gap: 11px; padding: 10px 11px; border-radius: 9px; color: var(--lp-ink-2); font-weight: 500; font-size: 14.5px; }
.lp-dd a:hover { background: var(--lp-brand-tint); color: var(--lp-brand-800); }
.lp-dd a svg { width: 18px; height: 18px; color: var(--lp-brand); flex: none; }

/* Language */
.lp-lang { position: relative; }
.lp-lang-btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 11px; border-radius: var(--lp-pill);
    background: transparent; border: 1px solid transparent; color: rgba(255,255,255,.92);
    font: inherit; font-weight: 600; font-size: 13.5px; cursor: pointer; transition: background-color .15s ease;
}
.lp-lang-btn:hover { background: rgba(255,255,255,.12); }
.lp-lang-btn svg { width: 15px; height: 15px; opacity: .7; }
.lp-lang-menu {
    position: absolute; right: 0; top: calc(100% + 8px); min-width: 130px;
    background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-r); box-shadow: var(--lp-sh-lg); padding: 6px;
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lp-lang:hover .lp-lang-menu, .lp-lang:focus-within .lp-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lp-lang-menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--lp-ink-2); font-weight: 500; font-size: 14px; cursor: pointer; }
.lp-lang-menu a:hover { background: var(--lp-brand-tint); color: var(--lp-brand-800); }

.lp-login-link { display: inline-flex; align-items: center; gap: 6px; padding: 9px 12px; color: rgba(255,255,255,.92); font-weight: 600; font-size: 15px; border-radius: var(--lp-r-sm); }
.lp-login-link:hover { color: #fff; background: rgba(255,255,255,.12); }
.lp-login-link svg { width: 17px; height: 17px; }

.lp-burger { display: none; width: 44px; height: 44px; border-radius: var(--lp-r-sm); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); color: #fff; cursor: pointer; align-items: center; justify-content: center; }
.lp-burger svg { width: 22px; height: 22px; }

/* Scrolled -> solid light nav, dark content */
.lp-nav.is-scrolled { background: rgba(255,255,255,.85); -webkit-backdrop-filter: saturate(180%) blur(12px); backdrop-filter: saturate(180%) blur(12px); border-bottom-color: var(--lp-line); box-shadow: 0 1px 0 rgba(16,24,40,.02), 0 6px 24px -12px rgba(16,24,40,.18); }
.lp-nav.is-scrolled .lp-logo .lp-logo-white { display: none; }
.lp-nav.is-scrolled .lp-logo .lp-logo-dark { display: block; }
.lp-nav.is-scrolled .lp-nav-link { color: var(--lp-ink-2); }
.lp-nav.is-scrolled .lp-nav-link:hover { color: var(--lp-ink); background: rgba(15,23,42,.05); }
.lp-nav.is-scrolled .lp-lang-btn { color: var(--lp-ink-2); }
.lp-nav.is-scrolled .lp-lang-btn:hover { background: rgba(15,23,42,.05); }
.lp-nav.is-scrolled .lp-login-link { color: var(--lp-ink-2); }
.lp-nav.is-scrolled .lp-login-link:hover { color: var(--lp-ink); background: rgba(15,23,42,.05); }
.lp-nav.is-scrolled .lp-burger { background: #fff; border-color: var(--lp-line-2); color: var(--lp-ink); }

/* Mobile slide-in */
.lp-mobile { display: none; }
.lp-mobile-backdrop { position: fixed; inset: 0; z-index: 59; background: rgba(12,16,28,.42); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s; border: 0; padding: 0; margin: 0; width: 100%; cursor: pointer; font: inherit; }
.lp-mobile-panel { position: fixed; top: 0; right: 0; bottom: 0; z-index: 60; width: min(86vw, 340px); background: #fff; box-shadow: -10px 0 40px rgba(8,15,30,.16); transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; padding: 18px; overflow-y: auto; }
body.lp-menu-open .lp-mobile-backdrop { opacity: 1; visibility: visible; }
body.lp-menu-open .lp-mobile-panel { transform: translateX(0); }
body.lp-menu-open { overflow: hidden; }
.lp-mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.lp-mobile-head img { height: 30px; }
.lp-mobile-close { width: 42px; height: 42px; border-radius: var(--lp-r-sm); border: 1px solid var(--lp-line); background: var(--lp-soft); color: var(--lp-ink); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.lp-mobile-close svg { width: 20px; height: 20px; }
.lp-mobile-section { padding: 14px 4px 10px; border-bottom: 1px solid var(--lp-line); }
.lp-mobile-section h5 { margin: 0 0 6px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--lp-faint); }
.lp-mobile-section a { display: block; padding: 10px 8px; border-radius: 9px; color: var(--lp-ink-2); font-weight: 500; font-size: 15px; }
.lp-mobile-section a:hover { background: var(--lp-brand-tint); color: var(--lp-brand-800); }
.lp-mobile-cta { margin-top: 16px; display: grid; gap: 10px; }

/* =====================================================================
   HERO  (light, gradient-mesh)
   ===================================================================== */
.lp-hero {
    position: relative; isolation: isolate; overflow: hidden;
    padding: 172px 0 104px;
    background-color: #0b1b3a;
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.lp-hero::before { /* dark navy + indigo/blue glow over the photo */
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
        radial-gradient(1100px 560px at 82% -12%, rgba(79,70,229,.55), transparent 60%),
        radial-gradient(820px 520px at 6% 116%,  rgba(37,99,235,.34), transparent 60%),
        linear-gradient(180deg, rgba(8,15,33,.88) 0%, rgba(8,15,33,.80) 46%, rgba(8,15,33,.94) 100%);
}
.lp-hero::after { /* faint light dot-grid texture, fading down */
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 60%);
    mask-image: linear-gradient(180deg, rgba(0,0,0,.5), transparent 60%);
}
.lp-hero-inner { position: relative; z-index: 1; max-width: 1060px; }
.lp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 8px;
    border-radius: var(--lp-pill); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
    color: #e7ecf7; font-weight: 600; font-size: 13px; margin-bottom: 30px;
}
.lp-hero-eyebrow .lp-chip { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: var(--lp-pill); background: rgba(165,180,252,.22); color: #e6ecff; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; }
.lp-hero-eyebrow .lp-ey-text { padding-right: 6px; }
.lp-hero h1 { color: #fff; font-size: clamp(1.85rem, 2.6vw, 2.5rem); line-height: 1.18; letter-spacing: -0.025em; margin-bottom: 28px; white-space: nowrap; }
.lp-h1-lead { color: #fff; }
.lp-typed-line { white-space: nowrap; }
.lp-grad { background: linear-gradient(100deg, #93b4ff 0%, #c4b5fd 52%, #7dd3fc 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.lp-typed-cursor { color: #a5b4fc; font-weight: 300; margin-left: 1px; -webkit-text-fill-color: #a5b4fc; animation: lp-blink 1.05s steps(1) infinite; }
@keyframes lp-blink { 50% { opacity: 0; } }
.lp-hero-sub { color: rgba(231,237,250,.82); font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.65; max-width: 600px; margin-bottom: 42px; }

/* Hero search */
.lp-search { background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-r-lg); box-shadow: var(--lp-sh-search); padding: 8px; display: flex; align-items: stretch; gap: 4px; max-width: 100%; }
.lp-search-field { position: relative; flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; padding: 10px 16px; border-radius: var(--lp-r); transition: background-color .15s ease, box-shadow .15s ease; }
.lp-search-field:hover { background: var(--lp-soft); }
.lp-search-field + .lp-search-field::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 1px; background: var(--lp-line); }
.lp-search-field label { font-size: 11.5px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--lp-faint); margin-bottom: 3px; }
.lp-search-control { display: flex; align-items: center; gap: 9px; }
.lp-search-control > svg { width: 18px; height: 18px; color: var(--lp-brand); flex: none; }
.lp-search-field input, .lp-search-field select { width: 100%; border: 0; padding: 5px 0; margin: 0; background: transparent; font: inherit; font-size: 15px; color: var(--lp-ink); outline: none; appearance: none; -webkit-appearance: none; }
.lp-search-field select { cursor: pointer; }
/* The global `.lp-body :focus-visible` ring hugs the bare <input>/<select> (which has
   almost no padding), so the focused field looks cramped. Suppress it here and move the
   focus affordance to the whole field segment, which already has comfortable padding. */
.lp-search-field input:focus-visible,
.lp-search-field select:focus-visible { box-shadow: none; border-radius: 0; }
.lp-search-field:focus-within { background: var(--lp-brand-tint); box-shadow: inset 0 0 0 1.5px var(--lp-brand); }
.lp-search-field:focus-within::before,
.lp-search-field:focus-within + .lp-search-field::before { opacity: 0; }
.lp-search-field input::placeholder { color: #aab1bf; }
.lp-search-submit { flex: none; display: flex; }
.lp-search-submit .lp-btn { height: 100%; padding-left: 26px; padding-right: 26px; }

.lp-hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; margin-top: 30px; font-size: 14.5px; color: rgba(231,237,250,.7); }
.lp-hero-meta a { color: #d6def7; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.lp-hero-meta a:hover { color: #fff; }
.lp-hero-meta a svg { width: 15px; height: 15px; color: #a5b4fc; }
.lp-hero-meta .lp-sep { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* =====================================================================
   STATS STRIP
   ===================================================================== */
.lp-stats { position: relative; z-index: 2; margin-top: -34px; }
.lp-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-r-lg); box-shadow: var(--lp-sh); padding: 20px 14px; }
.lp-stat { text-align: center; padding: 6px 18px; }
.lp-stat + .lp-stat { border-left: 1px solid var(--lp-line); }
.lp-stat-num { font-family: var(--lp-display); font-size: clamp(1.7rem, 3vw, 2.25rem); font-weight: 700; color: var(--lp-ink); letter-spacing: -0.03em; }
.lp-stat-num .lp-plus { color: var(--lp-brand); }
.lp-stat-label { color: var(--lp-muted); font-size: 14px; font-weight: 500; margin-top: 2px; }

/* =====================================================================
   SECTION SHELL
   ===================================================================== */
.lp-section { padding: 84px 0; }
.lp-section.lp-soft-bg { background: var(--lp-soft); border-top: 1px solid var(--lp-line); border-bottom: 1px solid var(--lp-line); }
.lp-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.lp-section-head.center { flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px; }
.lp-section-head.center p { margin-left: auto; margin-right: auto; }
.lp-eyebrow { display: inline-block; color: var(--lp-brand-700); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.lp-section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); letter-spacing: -0.03em; }
.lp-section-head p { color: var(--lp-muted); margin-top: 10px; max-width: 540px; font-size: 16px; }
.lp-section-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; white-space: nowrap; color: var(--lp-brand-700); }
.lp-section-link svg { width: 16px; height: 16px; transition: transform .15s ease; }
.lp-section-link:hover svg { transform: translateX(3px); }

/* =====================================================================
   CATEGORIES  (dense horizontal cards)
   ===================================================================== */
.lp-cats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.lp-cat { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 16px 18px; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-r); transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
.lp-cat:hover { border-color: #d4d3f7; box-shadow: var(--lp-sh); transform: translateY(-2px); }
.lp-cat-icon { width: 46px; height: 46px; border-radius: 12px; flex: none; display: inline-flex; align-items: center; justify-content: center; background: var(--lp-brand-tint); color: var(--lp-brand); font-size: 21px; transition: background-color .16s ease, color .16s ease; }
.lp-cat:hover .lp-cat-icon { background: var(--lp-brand); color: #fff; }
.lp-cat-text { min-width: 0; }
.lp-cat-text h3 { font-family: var(--lp-font); font-size: 15.5px; font-weight: 600; color: var(--lp-ink); letter-spacing: -0.01em; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.lp-cat-count { color: var(--lp-faint); font-size: 13px; font-weight: 500; }
.lp-cats-foot { text-align: center; margin-top: 36px; }

/* =====================================================================
   JOBS  (centered curated list — graceful with few items)
   ===================================================================== */
.lp-jobs-wrap { max-width: 860px; margin: 0 auto; }
.lp-job-list { display: grid; gap: 12px; }
.lp-job { position: relative; display: flex; gap: 16px; align-items: center; padding: 18px 20px; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-r); transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
.lp-job:hover { border-color: #d4d3f7; box-shadow: var(--lp-sh); transform: translateY(-2px); }
.lp-job-logo { width: 54px; height: 54px; border-radius: 12px; flex: none; overflow: hidden; border: 1px solid var(--lp-line); background: #fff; display: flex; align-items: center; justify-content: center; }
.lp-job-logo img { width: 100%; height: 100%; object-fit: contain; }
.lp-job-body { min-width: 0; flex: 1; }
.lp-job-title { font-family: var(--lp-font); font-size: 16.5px; font-weight: 600; color: var(--lp-ink); letter-spacing: -0.01em; display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.lp-job-title a { color: var(--lp-ink); }
.lp-job-title a:hover { color: var(--lp-brand-700); }
.lp-job-meta { display: flex; flex-wrap: wrap; gap: 4px 16px; margin-top: 7px; color: var(--lp-muted); font-size: 13.5px; }
.lp-job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.lp-job-meta svg { width: 14px; height: 14px; color: var(--lp-faint); flex: none; }
.lp-job-cta { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--lp-soft-2); color: var(--lp-ink-2); transition: background-color .16s ease, color .16s ease; }
.lp-job:hover .lp-job-cta { background: var(--lp-brand); color: #fff; }
.lp-job-cta svg { width: 18px; height: 18px; }

/* tags */
.lp-tag { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: var(--lp-pill); font-size: 11.5px; font-weight: 600; }
.lp-tag-featured { background: var(--lp-amber-bg); color: var(--lp-amber); border: 1px solid #fad9a8; }
.lp-tag-featured svg { width: 12px; height: 12px; margin-right: 4px; }
.lp-job span.job-type { display: inline-flex; align-items: center; padding: 2px 9px; border-radius: var(--lp-pill); font-size: 11.5px; font-weight: 600; background: var(--lp-soft-2); color: var(--lp-muted); border: 1px solid var(--lp-line); }
.lp-job span.job-type.full-time  { background: #eef2ff; color: #3730a3; border-color: #dfe3ff; }
.lp-job span.job-type.temporary  { background: #fff3e8; color: #8f4108; border-color: #f6d3ad; }
.lp-job span.job-type.internship { background: #e7f8ef; color: #0c6b3a; border-color: #bfe9d2; }
.lp-job span.job-type.freelance  { background: #f3eefe; color: #6d28d9; border-color: #ddd0f7; }

.lp-stretch::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.lp-jobs-foot { text-align: center; margin-top: 32px; }
.lp-jobs-empty { text-align: center; padding: 40px 20px; color: var(--lp-muted); }

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.lp-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.lp-step { position: relative; padding: 4px 4px 4px 0; }
.lp-step-num { width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px; display: inline-flex; align-items: center; justify-content: center; background: var(--lp-brand-tint); color: var(--lp-brand); position: relative; }
.lp-step-num svg { width: 24px; height: 24px; }
.lp-step-num span { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: var(--lp-brand); color: #fff; font-family: var(--lp-font); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 3px #fff; }
.lp-step h3 { font-size: 18px; margin-bottom: 8px; }
.lp-step p { color: var(--lp-muted); font-size: 15px; }
.lp-step:not(:last-child) .lp-step-num::after { content: ""; position: absolute; left: calc(100% + 12px); top: 50%; width: calc(100% + 14px); height: 2px; background: linear-gradient(90deg, var(--lp-line-2), transparent); }

/* =====================================================================
   EMPLOYER CTA  (light tinted panel)
   ===================================================================== */
.lp-cta-band { padding: 0 0 92px; }
.lp-cta-inner { position: relative; overflow: hidden; border: 1px solid var(--lp-line); border-radius: var(--lp-r-xl); padding: 56px 56px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; background: radial-gradient(700px 320px at 88% -20%, rgba(124,58,237,.10), transparent 60%), radial-gradient(600px 300px at 8% 120%, rgba(37,99,235,.08), transparent 60%), var(--lp-brand-tint); }
.lp-cta-text { position: relative; z-index: 1; max-width: 620px; }
.lp-cta-text h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); margin-bottom: 10px; letter-spacing: -0.03em; }
.lp-cta-text p { color: var(--lp-ink-2); font-size: 1.05rem; }
.lp-cta-actions { position: relative; z-index: 1; display: flex; gap: 12px; flex-wrap: wrap; }

/* =====================================================================
   TESTIMONIALS  (centered — graceful with few)
   ===================================================================== */
.lp-testi-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.lp-testi { flex: 1 1 320px; max-width: 380px; display: flex; flex-direction: column; gap: 16px; padding: 28px 26px; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-r-lg); box-shadow: var(--lp-sh-sm); }
.lp-testi-stars { display: inline-flex; gap: 2px; color: #f59e0b; }
.lp-testi-stars svg { width: 17px; height: 17px; }
.lp-testi p { color: var(--lp-ink-2); font-size: 15.5px; line-height: 1.65; flex: 1; }
.lp-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--lp-line); }
.lp-testi-avatar { width: 44px; height: 44px; border-radius: 50%; flex: none; background: var(--lp-brand-tint); display: flex; align-items: center; justify-content: center; color: var(--lp-brand-700); font-family: var(--lp-display); font-weight: 700; font-size: 16px; }
.lp-testi-name { display: block; font-weight: 600; color: var(--lp-ink); font-size: 15px; }
.lp-testi-role { display: block; color: var(--lp-faint); font-size: 13px; }

/* =====================================================================
   FOOTER  (light)
   ===================================================================== */
.lp-footer { background: var(--lp-soft); border-top: 1px solid var(--lp-line); padding: 64px 0 0; }
.lp-footer-top { display: grid; grid-template-columns: minmax(0, 2fr) repeat(4, minmax(0, 1fr)); gap: 36px; padding-bottom: 44px; }
.lp-footer-brand img { height: 34px; margin-bottom: 16px; }
.lp-footer-brand p { color: var(--lp-muted); font-size: 14.5px; max-width: 270px; margin-bottom: 20px; }
.lp-footer-stat { display: inline-flex; align-items: center; gap: 12px; padding: 11px 16px; border-radius: var(--lp-r); background: #fff; border: 1px solid var(--lp-line); }
.lp-footer-stat .lp-fs-num { font-family: var(--lp-display); font-size: 20px; font-weight: 700; color: var(--lp-ink); }
.lp-footer-stat .lp-fs-label { font-size: 12.5px; color: var(--lp-muted); }
.lp-footer-apps { margin-top: 24px; }
.lp-footer-apps-label { display: block; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: var(--lp-ink); margin-bottom: 12px; }
.lp-app-stores { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-store-btn { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px; background: #0e1320; color: #fff; border: 1px solid #0e1320; border-radius: 12px; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease; }
.lp-store-btn:hover { background: #1d2740; border-color: #1d2740; color: #fff; transform: translateY(-2px); box-shadow: var(--lp-sh); }
.lp-store-ico { width: 21px; height: 21px; fill: currentColor; flex: none; }
.lp-store-meta { line-height: 1.18; text-align: left; }
.lp-store-meta small { display: block; font-size: 8.5px; opacity: .72; text-transform: uppercase; letter-spacing: .5px; }
.lp-store-meta strong { display: block; font-size: 12.5px; font-weight: 700; }
.lp-footer-col h4 { color: var(--lp-ink); font-family: var(--lp-font); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.lp-footer-col a { display: block; color: var(--lp-muted); font-size: 14.5px; padding: 6px 0; font-weight: 500; }
.lp-footer-col a:hover { color: var(--lp-brand-700); }
.lp-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid var(--lp-line); }
.lp-footer-bottom p { color: var(--lp-faint); font-size: 13.5px; }
.lp-footer-bottom a { color: var(--lp-muted); }
.lp-foot-lang { position: relative; }
.lp-foot-lang-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--lp-pill); background: #fff; border: 1px solid var(--lp-line); color: var(--lp-ink-2); font: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer; }
.lp-foot-lang-btn:hover { border-color: #d3d6e0; }
.lp-foot-lang-menu { position: absolute; right: 0; bottom: calc(100% + 8px); min-width: 130px; background: #fff; border: 1px solid var(--lp-line); border-radius: var(--lp-r); box-shadow: var(--lp-sh-lg); padding: 6px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .16s ease; }
.lp-foot-lang:hover .lp-foot-lang-menu, .lp-foot-lang:focus-within .lp-foot-lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lp-foot-lang-menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--lp-ink-2); font-size: 14px; font-weight: 500; cursor: pointer; }
.lp-foot-lang-menu a:hover { background: var(--lp-brand-tint); color: var(--lp-brand-800); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
    .lp-cats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lp-footer-top { grid-template-columns: 1fr 1fr 1fr; }
    .lp-footer-brand { grid-column: 1 / -1; }
    /* below desktop: let the headline wrap, but keep the rotating word on its
       own dedicated line so it never toggles 1<->2 lines (no flicker) */
    .lp-hero h1 { white-space: normal; font-size: clamp(1.9rem, 5.4vw, 2.7rem); }
    .lp-h1-lead { display: block; }
    .lp-typed-line { display: inline-block; }
}
@media (max-width: 880px) {
    .lp-nav-links, .lp-nav-actions .lp-login-link, .lp-nav-actions .lp-lang { display: none; }
    .lp-burger { display: inline-flex; }
    .lp-mobile { display: block; }
    .lp-search { flex-direction: column; padding: 12px; gap: 6px; }
    .lp-search-field { padding: 12px 14px; }
    .lp-search-field + .lp-search-field::before { display: none; }
    .lp-search-field + .lp-search-field { border-top: 1px solid var(--lp-line); border-radius: 0; }
    .lp-search-submit .lp-btn { width: 100%; margin-top: 4px; }
    .lp-steps { grid-template-columns: 1fr; gap: 20px; }
    .lp-step:not(:last-child) .lp-step-num::after { display: none; }
}
@media (max-width: 720px) {
    .lp-container { padding: 0 18px; }
    .lp-hero { padding: 130px 0 64px; }
    .lp-section { padding: 60px 0; }
    .lp-stats-grid { grid-template-columns: 1fr; }
    .lp-stat + .lp-stat { border-left: 0; border-top: 1px solid var(--lp-line); }
    .lp-section-head { flex-direction: column; align-items: flex-start; }
    .lp-cta-inner { padding: 36px 26px; }
    .lp-footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
    .lp-cats { grid-template-columns: minmax(0, 1fr); }
    .lp-footer-top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-body *, .lp-body *::before, .lp-body *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .lp-typed-cursor { animation: none; }
}
