:root {
    --hr-bg: #fffdf8;
    --hr-surface: #ffffff;
    --hr-surface-soft: #fff8cf;
    --hr-text: #221c22;
    --hr-muted: #6f646d;
    --hr-line: #eadce3;
    --hr-primary: #65dbff;
    --hr-primary-dark: #168bab;
    --hr-pink: #ff74b1;
    --hr-pink-soft: #ffb4d5;
    --hr-yellow: #ffeb76;
    --hr-blue-soft: #a6eaff;
    --hr-green: #218b67;
    --hr-red: #d84d79;
    --hr-warning: #8a6500;
    --hr-shadow: 8px 8px 0 rgba(34, 28, 34, .09);
    --hr-radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.hr-body {
    margin: 0;
    min-height: 100vh;
    color: var(--hr-text);
    background: var(--hr-bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
.hr-shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.hr-muted { color: var(--hr-muted); }
.hr-optional { color: var(--hr-muted); font-weight: 500; font-size: .82em; }

.hr-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(231, 224, 235, .85);
    background: rgba(251, 250, 252, .88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.hr-header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.hr-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.3rem; font-weight: 850; letter-spacing: -.04em; }
.hr-brand img { filter: drop-shadow(0 8px 16px rgba(120, 87, 255, .24)); }
.hr-brand span span { color: var(--hr-pink); }
.hr-nav { display: flex; align-items: center; gap: 22px; }
.hr-nav a, .hr-nav-button { border: 0; background: none; text-decoration: none; color: var(--hr-muted); font-size: .92rem; font-weight: 700; padding: 8px 0; }
.hr-nav a:hover, .hr-nav a.active, .hr-nav-button:hover { color: var(--hr-text); }
.hr-nav a.active { position: relative; }
.hr-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: 1px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--hr-pink), var(--hr-primary)); }
.hr-nav form { margin: 0; }
.hr-nav .hr-nav-cta { color: #fff; background: linear-gradient(135deg, var(--hr-pink), var(--hr-primary)); padding: 11px 18px; border-radius: 999px; box-shadow: 0 10px 28px rgba(120, 87, 255, .22); }
.hr-menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--hr-line); border-radius: 12px; background: #fff; }

.hr-hero { overflow: hidden; position: relative; padding: 94px 0 112px; background:
    radial-gradient(circle at 13% 7%, rgba(255, 91, 125, .15), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(120, 87, 255, .17), transparent 31%),
    linear-gradient(180deg, #fff 0%, #faf7fc 100%);
}
.hr-hero::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px solid rgba(120, 87, 255, .12); border-radius: 50%; right: -150px; bottom: -170px; }
.hr-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr); align-items: center; gap: 84px; }
.hr-eyebrow { display: inline-block; color: var(--hr-primary); text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 850; }
.hr-hero h1 { margin: 18px 0 22px; max-width: 760px; font-size: clamp(3.2rem, 7vw, 6.4rem); line-height: .95; letter-spacing: -.065em; }
.hr-hero h1 em { font-style: normal; color: transparent; background: linear-gradient(120deg, var(--hr-pink), var(--hr-primary)); background-clip: text; -webkit-background-clip: text; }
.hr-hero-copy > p { max-width: 680px; color: var(--hr-muted); font-size: 1.15rem; }
.hr-hero-actions, .hr-form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hr-trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 24px; color: var(--hr-muted); font-size: .9rem; }
.hr-btn { appearance: none; border: 1px solid transparent; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 11px 20px; text-decoration: none; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.hr-btn:hover { transform: translateY(-2px); }
.hr-btn-primary { color: #fff; background: linear-gradient(135deg, var(--hr-pink), var(--hr-primary)); box-shadow: 0 13px 30px rgba(120, 87, 255, .22); }
.hr-btn-primary:hover { box-shadow: 0 17px 36px rgba(120, 87, 255, .3); }
.hr-btn-secondary { background: #fff; border-color: var(--hr-line); color: var(--hr-text); }
.hr-btn-light { background: #fff; color: var(--hr-primary-dark); }
.hr-btn-small { min-height: 40px; padding: 8px 14px; border-radius: 11px; font-size: .87rem; }
.hr-btn-block { width: 100%; }
.hr-link-danger { border: 0; background: none; color: var(--hr-red); font-weight: 800; padding: 8px 4px; }

.hr-demo-stack { position: relative; min-height: 540px; display: grid; place-items: center; }
.hr-demo-card { position: relative; z-index: 2; width: min(100%, 390px); padding: 28px; border: 1px solid rgba(231, 224, 235, .8); border-radius: 34px; background: rgba(255,255,255,.95); box-shadow: var(--hr-shadow); transform: rotate(2deg); }
.hr-demo-card-back { position: absolute; z-index: 1; height: 470px; transform: translate(22px, 22px) rotate(8deg); background: linear-gradient(135deg, rgba(255,91,125,.15), rgba(120,87,255,.18)); }
.hr-demo-top { display: flex; justify-content: space-between; align-items: flex-start; }
.hr-avatar { display: inline-grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: linear-gradient(135deg, #fbe0e7, #ddd5ff); color: var(--hr-primary-dark); font-weight: 900; }
.hr-avatar-xl { width: 74px; height: 74px; font-size: 1.2rem; }
.hr-avatar-xxl { width: 110px; height: 110px; font-size: 1.7rem; border: 5px solid rgba(255,255,255,.85); box-shadow: 0 16px 36px rgba(31,20,44,.16); }
.hr-status-dot { color: var(--hr-green); background: #ecfbf5; border-radius: 999px; padding: 6px 10px; font-size: .78rem; font-weight: 800; }
.hr-demo-card h2 { margin: 28px 0 2px; font-size: 2.15rem; letter-spacing: -.04em; }
.hr-demo-description { margin: 22px 0 28px; color: var(--hr-muted); }
.hr-demo-actions { display: flex; justify-content: center; gap: 22px; }
.hr-round { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; font-size: 1.9rem; font-weight: 500; box-shadow: 0 10px 24px rgba(31,20,44,.1); }
.hr-round-pass { color: var(--hr-red); background: #fff; }
.hr-round-like { color: #fff; background: linear-gradient(135deg, var(--hr-pink), var(--hr-primary)); }

.hr-section { padding: 96px 0; }
.hr-section-compact { padding: 54px 0 88px; }
.hr-section-soft { background: var(--hr-surface-soft); }
.hr-section-heading { max-width: 670px; margin-bottom: 42px; }
.hr-section-heading h2, .hr-cta-box h2 { margin: 8px 0 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.06; letter-spacing: -.05em; }
.hr-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hr-step { padding: 28px; border: 1px solid var(--hr-line); border-radius: var(--hr-radius); background: #fff; }
.hr-step > span { color: var(--hr-pink); font-weight: 900; font-size: .85rem; letter-spacing: .1em; }
.hr-step h3 { margin: 26px 0 8px; font-size: 1.35rem; }
.hr-step p { margin: 0; color: var(--hr-muted); }
.hr-role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hr-role-card { padding: 40px; border: 1px solid var(--hr-line); border-radius: 30px; background: #fff; }
.hr-role-card-accent { color: #fff; border-color: transparent; background: linear-gradient(135deg, #ff6483, #7055ee); box-shadow: var(--hr-shadow); }
.hr-role-icon { font-size: 2rem; }
.hr-role-card h2 { margin: 18px 0 10px; font-size: 2rem; letter-spacing: -.04em; }
.hr-role-card p { color: var(--hr-muted); }
.hr-role-card-accent p { color: rgba(255,255,255,.82); }
.hr-role-card a { font-weight: 850; color: var(--hr-primary); }
.hr-role-card-accent a { color: #fff; }
.hr-cta-section { padding: 0 0 96px; }
.hr-cta-box { min-height: 230px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 50px; border-radius: 34px; color: #fff; background: #241d32; overflow: hidden; position: relative; }
.hr-cta-box::after { content: "♥"; position: absolute; right: 9%; top: -45%; font-size: 20rem; color: rgba(255,255,255,.04); transform: rotate(-12deg); }
.hr-cta-box .hr-eyebrow { color: #ff9cb1; }
.hr-cta-box > * { position: relative; z-index: 1; }

.hr-page-head { padding: 58px 0 42px; background: linear-gradient(180deg, #fff, #faf7fc); border-bottom: 1px solid var(--hr-line); }
.hr-page-head h1 { margin: 8px 0 5px; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.06em; }
.hr-page-head p { margin: 0; color: var(--hr-muted); font-size: 1.05rem; }
.hr-page-head-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.hr-alert-wrap { padding-top: 16px; }
.hr-alert { padding: 14px 17px; border-radius: 14px; margin-bottom: 9px; border: 1px solid transparent; }
.hr-alert ul { margin: 8px 0 0 20px; }
.hr-alert-success { color: #126445; background: #eafaf3; border-color: #bdebd8; }
.hr-alert-warning { color: #774b02; background: #fff7e3; border-color: #f3d99e; }
.hr-alert-danger { color: #8d2435; background: #fff0f3; border-color: #f6c8d1; }
.hr-alert-match { color: #4c2ac2; background: #f2eeff; border-color: #d9ceff; display: flex; justify-content: space-between; gap: 20px; }
.hr-alert-match a { font-weight: 850; }

.hr-auth-section { min-height: calc(100vh - 150px); display: grid; place-items: center; padding: 72px 20px; background:
    radial-gradient(circle at 20% 5%, rgba(255,91,125,.14), transparent 30%),
    radial-gradient(circle at 85% 90%, rgba(120,87,255,.15), transparent 30%);
}
.hr-auth-card { width: min(100%, 510px); padding: 38px; border: 1px solid var(--hr-line); border-radius: 28px; background: rgba(255,255,255,.95); box-shadow: var(--hr-shadow); }
.hr-auth-card-wide { width: min(100%, 780px); }
.hr-auth-heading { margin-bottom: 26px; }
.hr-auth-heading h1 { margin: 8px 0 4px; font-size: 2.4rem; letter-spacing: -.055em; }
.hr-auth-heading p, .hr-auth-bottom { color: var(--hr-muted); }
.hr-auth-bottom { text-align: center; margin: 22px 0 0; }
.hr-auth-bottom a { color: var(--hr-primary); font-weight: 850; }

.hr-form { display: grid; gap: 18px; }
.hr-form label { display: grid; gap: 7px; color: var(--hr-text); font-size: .92rem; font-weight: 800; }
.hr-form input, .hr-form textarea, .hr-form select, .hr-filter-bar input, .hr-filter-bar select {
    width: 100%; border: 1px solid var(--hr-line); border-radius: 13px; background: #fff; color: var(--hr-text); padding: 12px 14px; outline: none; font-weight: 500; transition: border-color .18s ease, box-shadow .18s ease;
}
.hr-form textarea { resize: vertical; min-height: 110px; }
.hr-form input:focus, .hr-form textarea:focus, .hr-form select:focus, .hr-filter-bar input:focus, .hr-filter-bar select:focus { border-color: rgba(120,87,255,.75); box-shadow: 0 0 0 4px rgba(120,87,255,.1); }
.hr-form small { color: var(--hr-muted); font-weight: 500; }
.hr-form small a { color: var(--hr-primary); font-weight: 800; }
.hr-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hr-checkbox { grid-template-columns: auto 1fr !important; align-items: center; justify-content: start; gap: 9px !important; }
.hr-checkbox input { width: 18px; height: 18px; padding: 0; }
.hr-checkbox-card { border: 1px solid var(--hr-line); border-radius: 13px; padding: 12px 14px; align-self: end; min-height: 50px; }
.hr-form-page { max-width: 900px; }
.hr-form-card { padding: 34px; border: 1px solid var(--hr-line); border-radius: 25px; background: #fff; box-shadow: 0 16px 44px rgba(35,24,49,.06); }
.hr-form-section-title { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-top: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--hr-line); }
.hr-form-section-title:first-child { margin-top: 0; }
.hr-form-section-title h2 { margin: 0; font-size: 1.35rem; }
.hr-form-section-title span { color: var(--hr-muted); font-size: .8rem; }
.hr-role-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hr-role-switch label { position: relative; min-height: 112px; padding: 18px; border: 1px solid var(--hr-line); border-radius: 16px; cursor: pointer; align-content: center; }
.hr-role-switch label.selected { border-color: var(--hr-primary); background: #f4f0ff; box-shadow: 0 0 0 3px rgba(120,87,255,.1); }
.hr-role-switch input { position: absolute; opacity: 0; pointer-events: none; }
.hr-role-switch strong { font-size: 1rem; }
.hr-role-switch span { color: var(--hr-muted); font-weight: 500; }

.hr-profile-nudge { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px; margin-bottom: 24px; border: 1px solid #f3d99e; border-radius: 18px; background: #fff8e8; }
.hr-profile-nudge p { margin: 2px 0 0; color: var(--hr-muted); }
.hr-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hr-stat-card { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid var(--hr-line); border-radius: 22px; background: #fff; }
.hr-stat-card span { color: var(--hr-muted); font-weight: 700; }
.hr-stat-card strong { font-size: 2.7rem; letter-spacing: -.05em; }
.hr-dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.hr-panel-card { padding: 25px; border: 1px solid var(--hr-line); border-radius: 22px; background: #fff; }
.hr-panel-icon { font-size: 1.8rem; }
.hr-panel-card h2 { font-size: 1.25rem; margin: 17px 0 8px; }
.hr-panel-card p { color: var(--hr-muted); min-height: 78px; }
.hr-panel-card a { color: var(--hr-primary); font-weight: 850; }

.hr-job-grid, .hr-match-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hr-job-list-card, .hr-match-card { display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--hr-line); border-radius: 22px; background: #fff; }
.hr-card-topline { display: flex; justify-content: space-between; align-items: center; color: var(--hr-muted); font-size: .8rem; }
.hr-job-list-card h2, .hr-match-card h2 { margin: 20px 0 2px; font-size: 1.4rem; letter-spacing: -.035em; }
.hr-job-list-card > p:not(.hr-muted) { color: var(--hr-muted); }
.hr-card-actions { margin-top: auto; padding-top: 20px; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; }
.hr-badge { display: inline-flex; width: fit-content; align-items: center; padding: 5px 9px; border-radius: 999px; font-size: .72rem; font-weight: 850; }
.hr-badge-live { color: #147451; background: #e9fbf3; }
.hr-badge-muted { color: #756f7d; background: #efedf1; }
.hr-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.hr-chip { display: inline-flex; padding: 6px 10px; border: 1px solid #e1d9f1; border-radius: 999px; color: #5e45b5; background: #f6f3ff; font-size: .78rem; font-weight: 800; }
.hr-pagination { margin-top: 30px; }
.hr-pagination nav > div:first-child { display: none; }
.hr-pagination nav > div:last-child { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.hr-pagination nav span, .hr-pagination nav a { text-decoration: none; }
.hr-pagination svg { width: 18px; }

.hr-swipe-page { min-height: calc(100vh - 76px); padding: 44px 0 86px; background:
    radial-gradient(circle at 10% 10%, rgba(255,91,125,.09), transparent 27%),
    radial-gradient(circle at 90% 20%, rgba(120,87,255,.1), transparent 28%);
}
.hr-swipe-shell { max-width: 950px; }
.hr-swipe-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.hr-swipe-heading h1 { margin: 6px 0 0; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.hr-counter { color: var(--hr-muted); font-weight: 800; white-space: nowrap; }
.hr-filter-bar { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; margin-bottom: 14px; padding: 12px; border: 1px solid var(--hr-line); border-radius: 16px; background: rgba(255,255,255,.9); }
.hr-selected-job { margin: 10px 0 18px; color: var(--hr-muted); font-size: .9rem; }
.hr-swipe-stage { display: grid; justify-items: center; }
.hr-swipe-card { position: relative; width: min(100%, 700px); max-height: 680px; overflow-y: auto; touch-action: pan-y; border: 1px solid var(--hr-line); border-radius: 30px; background: #fff; box-shadow: var(--hr-shadow); user-select: none; transform-origin: center bottom; will-change: transform; }
.hr-swipe-card.is-dragging { cursor: grabbing; }
.hr-swipe-cover { min-height: 215px; display: flex; align-items: center; gap: 24px; padding: 34px; color: #fff; }
.hr-job-cover { background: linear-gradient(135deg, #281f37, #7959f8); }
.hr-candidate-cover { background: linear-gradient(135deg, #ff6584, #7658ef); }
.hr-company-mark { display: grid; place-items: center; flex: 0 0 auto; width: 100px; height: 100px; border-radius: 25px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.28); font-size: 2rem; font-weight: 900; }
.hr-profile-photo { width: 112px; height: 112px; flex: 0 0 auto; object-fit: cover; border-radius: 50%; border: 5px solid rgba(255,255,255,.84); box-shadow: 0 16px 36px rgba(31,20,44,.18); }
.hr-swipe-cover .hr-badge { color: #fff; background: rgba(255,255,255,.17); }
.hr-swipe-cover h2 { margin: 12px 0 2px; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; letter-spacing: -.055em; }
.hr-swipe-cover p { margin: 7px 0 0; color: rgba(255,255,255,.82); font-weight: 700; }
.hr-swipe-content { padding: 28px 34px 34px; }
.hr-swipe-content h3 { margin: 25px 0 7px; font-size: 1.05rem; }
.hr-swipe-content p { color: #5e5866; }
.hr-swipe-content details { margin-top: 22px; padding: 15px; border: 1px solid var(--hr-line); border-radius: 14px; }
.hr-swipe-content summary { cursor: pointer; font-weight: 850; }
.hr-meta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hr-meta-row span { padding: 7px 10px; border-radius: 10px; background: #f5f2f7; color: #655f6d; font-size: .82rem; font-weight: 750; }
.hr-salary { margin-top: 18px; font-size: 1.35rem; font-weight: 900; color: var(--hr-primary-dark); }
.hr-salary small { color: var(--hr-muted); font-size: .72rem; font-weight: 700; }
.hr-inline-link { display: inline-flex; margin-top: 20px; color: var(--hr-primary); font-weight: 850; }
.hr-swipe-stamp { position: absolute; z-index: 5; top: 33px; padding: 7px 13px; border: 4px solid currentColor; border-radius: 8px; opacity: 0; font-size: 1.2rem; font-weight: 950; letter-spacing: .08em; transform: rotate(-10deg); pointer-events: none; }
.hr-swipe-stamp-like { left: 25px; color: #27c183; }
.hr-swipe-stamp-pass { right: 25px; color: #ff5d75; transform: rotate(10deg); }
.hr-swipe-actions { display: flex; align-items: center; justify-content: center; gap: 26px; margin-top: 24px; }
.hr-swipe-actions form { margin: 0; }
.hr-swipe-button { width: 72px; height: 72px; border: 0; border-radius: 50%; background: #fff; font-size: 2.1rem; line-height: 1; box-shadow: 0 15px 35px rgba(38,25,53,.13); transition: transform .18s ease, box-shadow .18s ease; }
.hr-swipe-button:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 40px rgba(38,25,53,.18); }
.hr-swipe-button-pass { color: var(--hr-red); border: 1px solid #f6d4da; }
.hr-swipe-button-like { color: #fff; background: linear-gradient(135deg, var(--hr-pink), var(--hr-primary)); }
.hr-key-hint { color: #aaa2b1; font-size: .75rem; font-weight: 800; letter-spacing: .12em; }

.hr-empty { max-width: 650px; margin: 30px auto; padding: 60px 30px; text-align: center; border: 1px dashed #d8cfe0; border-radius: 28px; background: rgba(255,255,255,.72); }
.hr-empty > div { font-size: 2.5rem; }
.hr-empty h2 { margin: 15px 0 5px; font-size: 1.7rem; }
.hr-empty p { color: var(--hr-muted); margin-bottom: 22px; }

.hr-match-card { gap: 14px; }
.hr-match-visual { display: flex; align-items: center; justify-content: space-between; }
.hr-match-visual img { width: 74px; height: 74px; object-fit: cover; border-radius: 50%; }
.hr-match-visual > span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--hr-pink), var(--hr-primary)); }
.hr-match-card h2 { margin-top: 10px; }
.hr-match-card > div:nth-child(2) > p { margin: 4px 0; }
.hr-match-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--hr-line); display: flex; justify-content: space-between; gap: 12px; color: var(--hr-muted); font-size: .82rem; }
.hr-match-footer a { color: var(--hr-primary); font-weight: 850; text-decoration: none; }
.hr-match-detail-section { padding: 64px 0 92px; }
.hr-match-celebration { display: flex; align-items: center; gap: 25px; margin-bottom: 30px; padding: 34px; border-radius: 28px; color: #fff; background: linear-gradient(135deg, #ff6584, #7557ee); box-shadow: var(--hr-shadow); }
.hr-match-celebration > span { display: grid; place-items: center; flex: 0 0 auto; width: 82px; height: 82px; border-radius: 50%; background: rgba(255,255,255,.18); font-size: 2.2rem; }
.hr-match-celebration .hr-eyebrow { color: #ffe2e8; }
.hr-match-celebration h1 { margin: 6px 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.055em; }
.hr-match-celebration p { margin: 0; color: rgba(255,255,255,.86); }
.hr-detail-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; }
.hr-detail-card { padding: 28px; border: 1px solid var(--hr-line); border-radius: 22px; background: #fff; }
.hr-detail-card h2 { margin-top: 0; }
.hr-detail-card dl { display: grid; grid-template-columns: 90px 1fr; gap: 10px 18px; margin: 22px 0; }
.hr-detail-card dt { color: var(--hr-muted); font-weight: 700; }
.hr-detail-card dd { margin: 0; font-weight: 800; overflow-wrap: anywhere; }
.hr-detail-card dd a { color: var(--hr-primary); }
.hr-detail-card .hr-btn { margin: 5px 5px 0 0; }
.hr-back-link { display: inline-flex; margin-top: 24px; color: var(--hr-primary); font-weight: 850; }

.hr-footer { border-top: 1px solid var(--hr-line); background: #fff; }
.hr-footer-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--hr-muted); font-size: .84rem; }
.hr-footer a { font-weight: 800; color: var(--hr-text); }

@media (max-width: 980px) {
    .hr-menu-button { display: inline-grid; place-items: center; }
    .hr-nav { position: absolute; left: 20px; right: 20px; top: 68px; display: none; flex-direction: column; align-items: stretch; gap: 3px; padding: 14px; border: 1px solid var(--hr-line); border-radius: 16px; background: #fff; box-shadow: var(--hr-shadow); }
    .hr-nav.open { display: flex; }
    .hr-nav a, .hr-nav-button { width: 100%; text-align: left; padding: 11px 12px; border-radius: 9px; }
    .hr-nav .hr-nav-cta { text-align: center; }
    .hr-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hr-demo-stack { min-height: 500px; }
    .hr-steps, .hr-dashboard-grid, .hr-job-grid, .hr-match-grid { grid-template-columns: 1fr 1fr; }
    .hr-filter-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .hr-shell { width: min(100% - 24px, 1160px); }
    .hr-header-inner { min-height: 68px; }
    .hr-brand img { width: 34px; height: 34px; }
    .hr-hero { padding: 65px 0 80px; }
    .hr-hero h1 { font-size: clamp(3rem, 16vw, 5rem); }
    .hr-hero-grid { gap: 24px; }
    .hr-demo-stack { min-height: 430px; }
    .hr-demo-card { padding: 23px; }
    .hr-demo-card-back { height: 390px; }
    .hr-section { padding: 70px 0; }
    .hr-steps, .hr-role-grid, .hr-stat-grid, .hr-dashboard-grid, .hr-job-grid, .hr-match-grid, .hr-detail-grid { grid-template-columns: 1fr; }
    .hr-role-card, .hr-cta-box { padding: 30px; }
    .hr-cta-box, .hr-page-head-inner, .hr-profile-nudge { align-items: flex-start; flex-direction: column; }
    .hr-cta-box .hr-btn { width: 100%; }
    .hr-form-grid, .hr-role-switch { grid-template-columns: 1fr; }
    .hr-auth-card, .hr-form-card { padding: 24px; }
    .hr-page-head { padding: 43px 0 32px; }
    .hr-swipe-page { padding-top: 28px; }
    .hr-swipe-heading { align-items: flex-start; flex-direction: column; }
    .hr-filter-bar { grid-template-columns: 1fr; }
    .hr-swipe-cover { min-height: 240px; padding: 25px; align-items: flex-start; flex-direction: column; gap: 16px; }
    .hr-swipe-cover h2 { font-size: 2.5rem; }
    .hr-company-mark { width: 75px; height: 75px; border-radius: 20px; font-size: 1.4rem; }
    .hr-avatar-xxl, .hr-profile-photo { width: 88px; height: 88px; }
    .hr-swipe-content { padding: 24px; }
    .hr-swipe-card { max-height: 630px; border-radius: 24px; }
    .hr-swipe-button { width: 64px; height: 64px; }
    .hr-match-celebration { padding: 25px; align-items: flex-start; flex-direction: column; }
    .hr-match-celebration > span { width: 60px; height: 60px; }
    .hr-footer-inner { padding: 22px 0; align-items: flex-start; flex-direction: column; gap: 6px; }
    .hr-alert-match { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* Registration and e-mail verification */
.hr-field-help {
    display: block;
    color: var(--hr-muted);
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.45;
}

.hr-field-error,
.hr-client-error {
    display: block;
    min-height: 0;
    color: var(--hr-red) !important;
    font-size: .78rem;
    font-weight: 750 !important;
    line-height: 1.4;
}

.hr-client-error:empty { display: none; }

.hr-form input[aria-invalid="true"],
.hr-form textarea[aria-invalid="true"],
.hr-form select[aria-invalid="true"] {
    border-color: rgba(226, 77, 99, .8);
    background: #fff8f9;
    box-shadow: 0 0 0 4px rgba(226, 77, 99, .08);
}

.hr-btn:disabled,
.hr-resend-button:disabled {
    cursor: not-allowed;
    opacity: .62;
    transform: none !important;
    box-shadow: none;
}

.hr-auth-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #ddd4ec;
    border-radius: 14px;
    background: #f8f5ff;
}

.hr-auth-note > span { font-size: 1.2rem; }
.hr-auth-note p { margin: 0; color: var(--hr-muted); font-size: .84rem; line-height: 1.55; }

.hr-verify-card { text-align: center; }
.hr-verification-icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,91,125,.16), rgba(120,87,255,.19));
    font-size: 2rem;
    box-shadow: 0 15px 35px rgba(75, 52, 106, .1);
}

.hr-auth-heading-center { text-align: center; }
.hr-auth-heading-center p { overflow-wrap: anywhere; }
.hr-code-label { text-align: left; }
.hr-verify-code {
    height: 70px;
    text-align: center;
    font-size: clamp(1.65rem, 7vw, 2.35rem) !important;
    font-weight: 900;
    letter-spacing: .32em;
    padding-left: calc(18px + .32em) !important;
    color: var(--hr-primary-dark);
    font-variant-numeric: tabular-nums;
}

.hr-verify-code::placeholder { color: #c9bfd3; }

.hr-resend-box {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--hr-line);
}

.hr-resend-box p { margin: 0 0 8px; color: var(--hr-muted); font-size: .84rem; }
.hr-resend-box form { margin: 0; }
.hr-resend-button {
    border: 0;
    padding: 7px 10px;
    background: transparent;
    color: var(--hr-primary);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 720px) {
    .hr-auth-section { padding-inline: 12px; }
    .hr-verify-code { letter-spacing: .22em; padding-left: calc(16px + .22em) !important; }
}

/* =========================================================
   HRtinder Palette Edition — flat, editorial and scroll-safe
   Palette: #ff74b1 #ffb4d5 #ffeb76 #a6eaff #65dbff
   ========================================================= */

body.hr-body {
    position: relative;
    padding-top: 8px;
    background: var(--hr-bg);
}

body.hr-body::before {
    content: "";
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: 8px;
    background: linear-gradient(
        90deg,
        #ff74b1 0 20%,
        #ffb4d5 20% 40%,
        #ffeb76 40% 60%,
        #a6eaff 60% 80%,
        #65dbff 80% 100%
    );
}

.hr-header {
    top: 8px;
    border-bottom: 2px solid var(--hr-text);
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hr-header-inner { min-height: 68px; }
.hr-brand img { filter: none; }
.hr-brand span span { color: #e94191; }
.hr-nav a.active::after { height: 4px; background: var(--hr-pink); }
.hr-nav .hr-nav-cta {
    color: var(--hr-text);
    border: 2px solid var(--hr-text);
    background: var(--hr-yellow);
    box-shadow: 4px 4px 0 var(--hr-text);
}

.hr-btn {
    border-width: 2px;
    border-color: var(--hr-text);
    border-radius: 11px;
    box-shadow: 4px 4px 0 var(--hr-text);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.hr-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--hr-text);
}

.hr-btn-primary {
    color: var(--hr-text);
    background: var(--hr-pink);
    box-shadow: 4px 4px 0 var(--hr-text);
}

.hr-btn-primary:hover { box-shadow: 6px 6px 0 var(--hr-text); }
.hr-btn-secondary { color: var(--hr-text); border-color: var(--hr-text); background: #fff; }
.hr-btn-light { color: var(--hr-text); border-color: var(--hr-text); background: var(--hr-yellow); }

.hr-hero {
    background:
        linear-gradient(90deg, rgba(255,116,177,.14) 0 20%, transparent 20% 100%),
        #fffdf8;
}

.hr-hero::after {
    width: 290px;
    height: 290px;
    right: -110px;
    bottom: -120px;
    border: 28px solid var(--hr-yellow);
    border-radius: 0;
    transform: rotate(12deg);
}

.hr-hero h1 em {
    color: var(--hr-primary-dark);
    background: none;
    -webkit-text-fill-color: initial;
}

.hr-demo-card,
.hr-step,
.hr-role-card,
.hr-stat-card,
.hr-panel-card,
.hr-job-list-card,
.hr-match-card,
.hr-detail-card,
.hr-form-card,
.hr-auth-card {
    border: 2px solid var(--hr-text);
    box-shadow: var(--hr-shadow);
}

.hr-demo-card { transform: rotate(1deg); }
.hr-demo-card-back {
    border: 2px solid var(--hr-text);
    background: var(--hr-blue-soft);
    transform: translate(18px, 18px) rotate(5deg);
}

.hr-avatar {
    color: var(--hr-text);
    background: var(--hr-yellow);
    border: 2px solid var(--hr-text);
}

.hr-round { border: 2px solid var(--hr-text); box-shadow: 4px 4px 0 var(--hr-text); }
.hr-round-like { color: var(--hr-text); background: var(--hr-pink); }
.hr-section-soft { background: #fff8cf; }
.hr-step:nth-child(1) { border-top: 12px solid var(--hr-pink); }
.hr-step:nth-child(2) { border-top: 12px solid var(--hr-yellow); }
.hr-step:nth-child(3) { border-top: 12px solid var(--hr-primary); }
.hr-step > span { color: var(--hr-text); }
.hr-role-card-accent { color: var(--hr-text); background: var(--hr-blue-soft); }
.hr-role-card-accent p { color: var(--hr-muted); }
.hr-role-card-accent a { color: var(--hr-text); }
.hr-cta-box {
    color: var(--hr-text);
    border: 2px solid var(--hr-text);
    background: var(--hr-pink-soft);
    box-shadow: 8px 8px 0 var(--hr-text);
}
.hr-cta-box::after { color: rgba(34,28,34,.06); }
.hr-cta-box .hr-eyebrow { color: var(--hr-text); }

.hr-page-head {
    border-bottom: 2px solid var(--hr-text);
    background:
        linear-gradient(90deg, var(--hr-pink-soft) 0 11%, transparent 11% 100%),
        #fff;
}

.hr-eyebrow { color: #b82d78; }
.hr-alert-match { color: var(--hr-text); border-color: var(--hr-text); background: var(--hr-blue-soft); }
.hr-alert-success { color: var(--hr-text); border-color: #79cdb3; background: #dff8ef; }
.hr-alert-warning { color: var(--hr-text); border-color: #d3b82f; background: #fff6bd; }
.hr-alert-danger { color: var(--hr-text); border-color: #e988ab; background: #fff0f7; }

.hr-auth-section {
    background:
        linear-gradient(135deg, transparent 0 70%, rgba(255,235,118,.55) 70% 100%),
        linear-gradient(90deg, rgba(166,234,255,.45) 0 8%, transparent 8% 100%),
        #fffdf8;
}

.hr-auth-note { border: 2px solid var(--hr-text); background: var(--hr-blue-soft); }
.hr-verification-icon { color: var(--hr-text); border: 2px solid var(--hr-text); background: var(--hr-yellow); box-shadow: 5px 5px 0 var(--hr-text); }
.hr-role-switch label.selected { border: 2px solid var(--hr-text); background: var(--hr-pink-soft); box-shadow: 4px 4px 0 var(--hr-text); }
.hr-form input:focus,
.hr-form textarea:focus,
.hr-form select:focus,
.hr-filter-bar input:focus,
.hr-filter-bar select:focus {
    border-color: var(--hr-text);
    box-shadow: 0 0 0 4px rgba(101,219,255,.35);
}

.hr-chip {
    color: var(--hr-text);
    border: 1px solid var(--hr-text);
    background: var(--hr-blue-soft);
}

.hr-chip:nth-child(3n + 2) { background: var(--hr-pink-soft); }
.hr-chip:nth-child(3n) { background: var(--hr-yellow); }
.hr-badge-live { color: var(--hr-text); background: var(--hr-yellow); }
.hr-badge-muted { color: var(--hr-text); background: #ece7ea; }
.hr-panel-card:nth-child(1) { border-top: 12px solid var(--hr-primary); }
.hr-panel-card:nth-child(2) { border-top: 12px solid var(--hr-pink); }
.hr-panel-card:nth-child(3) { border-top: 12px solid var(--hr-yellow); }
.hr-stat-card:nth-child(3n + 1) { background: #effbff; }
.hr-stat-card:nth-child(3n + 2) { background: #fff2f8; }
.hr-stat-card:nth-child(3n) { background: #fffbe1; }

.hr-swipe-page {
    min-height: calc(100vh - 76px);
    padding: 42px 0 88px;
    background:
        linear-gradient(90deg, rgba(255,180,213,.24) 0 9%, transparent 9% 91%, rgba(166,234,255,.25) 91% 100%),
        var(--hr-bg);
}

.hr-swipe-shell { max-width: 980px; }
.hr-swipe-heading { padding-bottom: 18px; border-bottom: 2px solid var(--hr-text); }
.hr-counter {
    padding: 6px 10px;
    color: var(--hr-text);
    border: 1px solid var(--hr-text);
    border-radius: 999px;
    background: var(--hr-yellow);
}

.hr-filter-bar {
    margin: 18px 0 20px;
    border: 2px solid var(--hr-text);
    border-radius: 15px;
    background: #fff;
    box-shadow: 5px 5px 0 var(--hr-blue-soft);
}

.hr-swipe-card {
    width: min(100%, 760px);
    max-height: none;
    overflow: visible;
    border: 2px solid var(--hr-text);
    border-radius: 22px;
    background: #fff;
    box-shadow: 10px 10px 0 var(--hr-blue-soft);
    touch-action: pan-y;
}

.hr-swipe-card.is-expanded { box-shadow: 10px 10px 0 var(--hr-pink-soft); }

.hr-swipe-cover {
    min-height: 178px;
    padding: 28px 30px;
    color: var(--hr-text);
    border-bottom: 2px solid var(--hr-text);
}

.hr-job-cover {
    background: linear-gradient(90deg, var(--hr-primary) 0 16%, var(--hr-blue-soft) 16% 100%);
}

.hr-candidate-cover {
    background: linear-gradient(90deg, var(--hr-pink) 0 16%, var(--hr-pink-soft) 16% 100%);
}

.hr-swipe-cover.no-photo { padding-left: 22%; }
.hr-swipe-cover.has-photo { padding-left: 30px; }
.hr-swipe-cover-text { min-width: 0; }
.hr-profile-photo {
    width: 100px;
    height: 100px;
    border: 2px solid var(--hr-text);
    border-radius: 18px;
    box-shadow: 5px 5px 0 rgba(34,28,34,.18);
}

.hr-swipe-cover .hr-badge { color: var(--hr-text); background: var(--hr-yellow); }
.hr-swipe-cover h2 {
    margin-top: 10px;
    color: var(--hr-text);
    font-size: clamp(1.75rem, 4.5vw, 3.2rem);
    overflow-wrap: anywhere;
}
.hr-swipe-cover p { color: rgba(34,28,34,.75); }
.hr-swipe-content { padding: 26px 30px 30px; }
.hr-swipe-content p { color: #5e535b; }
.hr-meta-row span {
    color: var(--hr-text);
    border: 1px solid var(--hr-text);
    background: #fff;
}
.hr-meta-row span:nth-child(2) { background: var(--hr-blue-soft); }
.hr-meta-row span:nth-child(3) { background: var(--hr-yellow); }
.hr-salary { color: #168bab; }

.hr-card-preview h3 { margin-top: 22px; }
.hr-card-preview p { margin-bottom: 0; }
.hr-card-details[hidden] { display: none; }
.hr-card-details { padding-top: 6px; }
.hr-swipe-card.is-expanded .hr-card-preview { display: none; }
.hr-card-details h3 { padding-top: 5px; border-top: 1px dashed #cdbbc5; }

.hr-card-expand {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
    padding: 13px 15px;
    color: var(--hr-text);
    border: 2px solid var(--hr-text);
    border-radius: 10px;
    background: var(--hr-yellow);
    font-weight: 900;
    box-shadow: 4px 4px 0 var(--hr-text);
}

.hr-card-expand:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--hr-text); }
.hr-card-expand-icon { font-size: 1.2rem; transition: transform .18s ease; }
.hr-card-expand[aria-expanded="true"] .hr-card-expand-icon { transform: rotate(180deg); }
.hr-company-note { margin-top: 24px; padding: 2px 16px 16px; border: 2px solid var(--hr-text); border-radius: 12px; background: #fff8cf; }

.hr-swipe-button {
    border: 2px solid var(--hr-text);
    box-shadow: 5px 5px 0 var(--hr-text);
}
.hr-swipe-button:hover { box-shadow: 7px 7px 0 var(--hr-text); }
.hr-swipe-button-pass { color: var(--hr-text); border-color: var(--hr-text); background: #fff; }
.hr-swipe-button-like { color: var(--hr-text); background: var(--hr-pink); }
.hr-swipe-stamp-like { color: #137c5b; }
.hr-swipe-stamp-pass { color: #bd315f; }

.hr-profile-photo-editor {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px;
    border: 2px solid var(--hr-text);
    border-radius: 14px;
    background: var(--hr-blue-soft);
    box-shadow: 5px 5px 0 var(--hr-text);
}

.hr-profile-photo-editor[hidden] { display: none; }
.hr-profile-photo-editor img {
    width: 92px;
    height: 92px;
    flex: 0 0 auto;
    object-fit: cover;
    border: 2px solid var(--hr-text);
    border-radius: 16px;
    background: #fff;
}
.hr-profile-photo-editor strong { font-size: 1.05rem; }
.hr-profile-photo-editor p { margin: 3px 0 0; color: var(--hr-muted); }
.hr-form-save-note {
    padding: 12px 14px;
    border-left: 7px solid var(--hr-primary);
    background: #effbff;
    color: var(--hr-muted);
    font-size: .88rem;
    font-weight: 700;
}

.hr-match-card:nth-child(5n + 1) { border-top: 12px solid var(--hr-pink); }
.hr-match-card:nth-child(5n + 2) { border-top: 12px solid var(--hr-pink-soft); }
.hr-match-card:nth-child(5n + 3) { border-top: 12px solid var(--hr-yellow); }
.hr-match-card:nth-child(5n + 4) { border-top: 12px solid var(--hr-blue-soft); }
.hr-match-card:nth-child(5n) { border-top: 12px solid var(--hr-primary); }
.hr-match-visual.no-photo { justify-content: flex-end; }
.hr-match-visual img {
    border: 2px solid var(--hr-text);
    border-radius: 16px;
}
.hr-match-visual > span { color: var(--hr-text); border: 2px solid var(--hr-text); background: var(--hr-pink); }
.hr-match-footer a { color: #116f8b; }
.hr-match-celebration {
    color: var(--hr-text);
    border: 2px solid var(--hr-text);
    background: var(--hr-pink-soft);
    box-shadow: 8px 8px 0 var(--hr-text);
}
.hr-match-celebration .hr-eyebrow,
.hr-match-celebration p { color: var(--hr-text); }
.hr-match-celebration > .hr-match-heart {
    color: var(--hr-text);
    border: 2px solid var(--hr-text);
    background: var(--hr-yellow);
}
.hr-match-person-photo {
    width: 92px;
    height: 92px;
    flex: 0 0 auto;
    object-fit: cover;
    border: 2px solid var(--hr-text);
    border-radius: 18px;
    background: #fff;
}
.hr-detail-card dd a,
.hr-back-link,
.hr-inline-link,
.hr-panel-card a,
.hr-auth-bottom a,
.hr-form small a,
.hr-resend-button { color: #116f8b; }

.hr-footer { border-top: 2px solid var(--hr-text); background: #fff; }

@media (max-width: 980px) {
    .hr-nav { border: 2px solid var(--hr-text); box-shadow: 6px 6px 0 var(--hr-text); }
}

@media (max-width: 720px) {
    body.hr-body { padding-top: 6px; }
    body.hr-body::before { height: 6px; }
    .hr-header { top: 6px; }
    .hr-swipe-page {
        background:
            linear-gradient(90deg, rgba(255,180,213,.18) 0 4%, transparent 4% 96%, rgba(166,234,255,.18) 96% 100%),
            var(--hr-bg);
    }
    .hr-swipe-cover,
    .hr-swipe-cover.no-photo,
    .hr-swipe-cover.has-photo {
        min-height: 0;
        padding: 22px;
        align-items: flex-start;
    }
    .hr-job-cover { background: var(--hr-blue-soft); border-left: 14px solid var(--hr-primary); }
    .hr-candidate-cover { background: var(--hr-pink-soft); border-left: 14px solid var(--hr-pink); }
    .hr-profile-photo { width: 82px; height: 82px; border-radius: 14px; }
    .hr-swipe-card { max-height: none; overflow: visible; border-radius: 17px; box-shadow: 6px 6px 0 var(--hr-blue-soft); }
    .hr-swipe-content { padding: 22px; }
    .hr-card-expand { box-shadow: 3px 3px 0 var(--hr-text); }
    .hr-profile-photo-editor { align-items: flex-start; flex-direction: column; }
    .hr-profile-photo-editor img { width: 84px; height: 84px; }
    .hr-match-celebration { gap: 16px; }
    .hr-match-person-photo { width: 78px; height: 78px; }
}

.hr-nav .hr-nav-avatar {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--hr-text);
    border-radius: 10px;
    background: #fff;
    box-shadow: 3px 3px 0 var(--hr-yellow);
}

.hr-nav-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 980px) {
    .hr-nav .hr-nav-avatar {
        width: 46px;
        height: 46px;
        margin: 4px 10px 8px;
        padding: 0;
    }
}
