:root {
  --ink: #102229;
  --ink-soft: #31464e;
  --muted: #65767d;
  --muted-2: #87969b;
  --teal: #0d7777;
  --teal-dark: #075b5d;
  --teal-deep: #0c3036;
  --mint: #eaf6f3;
  --mint-strong: #d5ebe6;
  --sky: #eef8fa;
  --sand: #f8f6f2;
  --coral: #e98568;
  --coral-soft: #fbe9e2;
  --line: #dce7e8;
  --white: #ffffff;
  --shadow-sm: 0 12px 34px rgba(26, 60, 68, .09);
  --shadow: 0 28px 80px rgba(26, 60, 68, .15);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --max: 1280px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 56px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -70px; z-index: 500; padding: 12px 18px; border-radius: 10px; background: var(--ink); color: #fff; transition: top .2s; }
.skip-link:focus { top: 14px; }
.eyebrow { margin: 0 0 18px; color: var(--teal); font-size: .74rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }

.site-nav { position: fixed; z-index: 80; inset: 0 0 auto; border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s; }
.site-nav.scrolled { background: rgba(255, 255, 255, .9); border-color: rgba(220, 231, 232, .85); box-shadow: 0 8px 28px rgba(21, 50, 56, .05); backdrop-filter: blur(18px); }
.nav-inner { height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; font-size: 1.08rem; font-weight: 850; letter-spacing: -.04em; white-space: nowrap; }
.brand em { color: var(--teal); font-style: normal; }
.brand-mark { position: relative; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; overflow: hidden; background: var(--teal); transform: rotate(-3deg); }
.brand-mark i { position: absolute; width: 14px; height: 5px; border-radius: 10px; background: #fff; }
.brand-mark i:first-child { transform: translate(-4px, -3px) rotate(44deg); }
.brand-mark i:last-child { transform: translate(4px, 3px) rotate(-44deg); opacity: .72; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .9rem; color: var(--ink-soft); }
.nav-links a { position: relative; padding-block: 10px; }
.nav-links a::after { content: ""; position: absolute; inset: auto 0 5px; height: 1px; background: var(--teal); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn { min-height: 44px; border: 0; border-radius: 999px; padding: 11px 19px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 780; font-size: .9rem; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(13, 119, 119, .18); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 14px 30px rgba(13, 119, 119, .24); }
.btn-ghost { background: rgba(255, 255, 255, .68); border: 1px solid var(--line); }
.btn-large { min-height: 54px; padding-inline: 25px; }
.icon-btn { border: 1px solid var(--line); background: #fff; cursor: pointer; }
.mobile-menu-btn { display: none; width: 44px; height: 44px; border-radius: 50%; padding: 12px; }
.mobile-menu-btn span { display: block; width: 18px; height: 1px; margin: 5px auto; background: var(--ink); transition: transform .2s; }

.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; padding: 126px 0 60px; background: linear-gradient(135deg, #fff 0%, #fff 53%, #eef8f6 100%); }
.hero-glow { position: absolute; right: -140px; top: 80px; width: 560px; height: 560px; border-radius: 50%; background: rgba(105, 201, 186, .16); filter: blur(16px); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: center; }
.hero-copy { padding: 30px 0; }
.hero-copy h1 { max-width: 670px; margin: 0 0 28px; font-size: clamp(3.65rem, 7.1vw, 7rem); line-height: .9; letter-spacing: -.07em; }
.hero-copy h1 em { display: block; color: var(--teal); font-style: normal; }
.hero-lede { max-width: 520px; margin: 0 0 28px; color: var(--muted); font-size: 1.08rem; transition: opacity .22s, transform .22s; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.text-link { padding: 12px 3px; color: var(--teal); font-size: .91rem; font-weight: 800; }
.hero-state { display: flex; gap: 24px; margin-top: 66px; }
.hero-state button { position: relative; border: 0; padding: 13px 0; background: transparent; color: var(--muted-2); font-size: .78rem; font-weight: 750; cursor: pointer; }
.hero-state button span { margin-right: 8px; font-size: .69rem; }
.hero-state button::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; border-radius: 5px; background: var(--line); transition: background .25s, transform .25s; }
.hero-state button.active { color: var(--ink); }
.hero-state button.active::after { background: var(--teal); transform: scaleX(1.02); }
.hero-media { position: relative; min-height: 650px; }
.hero-image-wrap { position: absolute; inset: 0 0 0 2%; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); background: var(--mint); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; transition: transform 1.2s var(--ease); }
.hero-media:hover .hero-image-wrap img { transform: scale(1.025); }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9, 41, 45, .23)); pointer-events: none; }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255, 255, 255, .82); border-radius: 17px; padding: 14px 16px; background: rgba(255, 255, 255, .92); box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); animation: float 6s ease-in-out infinite; }
.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: var(--muted); font-size: .72rem; }
.match-card { left: -25px; top: 13%; }
.message-card { right: -26px; bottom: 14%; animation-delay: -2.5s; }
.message-card strong { max-width: 210px; font-size: .79rem; }
.card-icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--mint); color: var(--teal); font-weight: 900; }
.avatar { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--mint-strong); color: var(--teal-dark); font-size: .73rem; font-weight: 850; }
.avatar-coral { background: var(--coral-soft); color: #a5482e; }
.image-caption { position: absolute; z-index: 2; left: 36px; right: 36px; bottom: 22px; display: flex; justify-content: space-between; color: rgba(255, 255, 255, .9); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { min-height: 94px; display: grid; grid-template-columns: 1.5fr repeat(5, auto); align-items: center; gap: 28px; color: #7c8b90; font-size: .8rem; }
.trust-grid p { margin: 0; color: var(--ink); font-size: .92rem; font-weight: 700; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

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

@media (max-width: 1050px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .site-nav.menu-open { background: rgba(255,255,255,.98); border-color: var(--line); }
  .site-nav.menu-open .nav-links { position: absolute; top: 82px; left: 28px; right: 28px; display: grid; gap: 2px; border: 1px solid var(--line); border-radius: 17px; padding: 12px; background: #fff; box-shadow: var(--shadow); }
  .site-nav.menu-open .nav-links a { border-radius: 10px; padding: 11px 12px; }
  .site-nav.menu-open .nav-links a:hover { background: var(--mint); }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero { padding-top: 116px; }
  .hero-copy { max-width: 760px; }
  .hero-copy h1 { max-width: 760px; }
  .hero-media { min-height: 600px; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); padding-block: 24px; }
  .trust-grid p { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .nav-inner { height: 72px; gap: 12px; }
  .site-nav.menu-open .nav-links { top: 72px; left: 15px; right: 15px; }
  .mobile-menu-btn { display: block; order: 2; }
  .nav-actions { order: 1; margin-left: auto; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-primary { min-height: 40px; padding: 9px 14px; }
  .hero { min-height: auto; padding: 108px 0 42px; }
  .hero-copy h1 { font-size: clamp(3.45rem, 17vw, 5rem); }
  .hero-copy h1 em { display: inline; }
  .hero-state { margin-top: 42px; gap: 18px; }
  .hero-media { min-height: 470px; margin: 8px 0 10px; }
  .hero-image-wrap { inset-left: 0; }
  .hero-image-wrap img { object-position: 58% center; }
  .floating-card { padding: 11px 12px; }
  .match-card { left: -6px; top: 8%; }
  .message-card { right: -5px; bottom: 10%; }
  .message-card strong { max-width: 168px; font-size: .7rem; }
  .image-caption { left: 20px; right: 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* Marketing sections */
.section { padding: 120px 0; }
.section h2, .image-band h2, .contact-panel h2 { margin: 0; font-size: clamp(2.8rem, 5.8vw, 5.8rem); line-height: .98; letter-spacing: -.057em; }
.section h2 em, .image-band h2 em, .contact-panel h2 em { color: var(--teal); font-style: normal; }
.section-lede { max-width: 650px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.72; }
.section-heading { display: grid; grid-template-columns: 1.18fr .82fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.story-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 90px; align-items: center; }
.story-media { position: relative; min-height: 680px; }
.portrait-frame { position: absolute; inset: 0 10% 7% 0; overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); }
.portrait-frame img { width: 100%; height: 116%; object-fit: cover; object-position: 51% center; will-change: transform; }
.story-stat { position: absolute; z-index: 2; right: 0; bottom: 0; min-width: 215px; border: 8px solid #fff; border-radius: 24px; padding: 22px 24px; background: var(--mint); box-shadow: var(--shadow-sm); }
.story-stat strong, .story-stat span { display: block; }
.story-stat strong { color: var(--teal); font-size: 1.8rem; letter-spacing: -.04em; }
.story-stat span { color: var(--muted); font-size: .82rem; }
.story-note { position: absolute; z-index: 2; left: 24px; top: 24px; display: flex; align-items: center; gap: 9px; border-radius: 999px; padding: 10px 14px; background: rgba(255, 255, 255, .92); box-shadow: var(--shadow-sm); color: var(--ink-soft); font-size: .76rem; font-weight: 760; backdrop-filter: blur(10px); }
.pulse-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }
.pulse-dot::after { content: ""; position: absolute; inset: -4px; border: 1px solid var(--teal); border-radius: 50%; animation: pulse 2.2s infinite; }
.story-copy h2 { margin-bottom: 28px; }
.feature-list { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid var(--line); }
.feature-row { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.feature-row > span { color: var(--teal); font-size: .74rem; font-weight: 850; letter-spacing: .12em; }
.feature-row h3 { margin: 0 0 4px; font-size: 1.02rem; }
.feature-row p { margin: 0; color: var(--muted); font-size: .92rem; }
.sand-section { background: var(--sand); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #dcdedb; }
.process-card { min-height: 345px; padding: 28px 26px 28px 0; border-right: 1px solid #dcdedb; margin-right: 26px; }
.process-card:last-child { border: 0; margin-right: 0; }
.process-num { color: var(--teal); font-size: .69rem; font-weight: 850; letter-spacing: .16em; }
.process-icon { width: 48px; height: 48px; margin: 55px 0 28px; display: grid; place-items: center; border-radius: 15px; background: var(--white); color: var(--teal); box-shadow: var(--shadow-sm); font-size: 1.35rem; }
.process-card h3 { margin: 0 0 10px; font-size: 1.28rem; letter-spacing: -.03em; }
.process-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.image-band { position: relative; min-height: 700px; overflow: hidden; display: grid; align-items: center; color: #fff; }
.image-band-bg { position: absolute; inset: -10% 0; background-image: linear-gradient(90deg, rgba(5, 35, 40, .91) 0%, rgba(5, 35, 40, .72) 40%, rgba(5, 35, 40, .19) 100%), url("assets/interview-conversation.png"); background-size: cover; background-position: center 42%; background-attachment: fixed; }
.image-band-content { position: relative; z-index: 1; padding-block: 100px; }
.eyebrow-light { color: #83d9c9; }
.image-band h2 { margin-bottom: 38px; color: #fff; }
.image-band h2 em { color: #82d8c8; }
.btn-light { background: #fff; color: var(--teal-deep); box-shadow: 0 15px 35px rgba(0, 0, 0, .14); }
.platform-section { overflow: hidden; background: #fff; }
.platform-tabs { width: max-content; max-width: 100%; display: flex; gap: 5px; border: 1px solid var(--line); border-radius: 999px; padding: 5px; background: var(--sand); }
.platform-tabs button { border: 0; border-radius: 999px; padding: 11px 18px; background: transparent; color: var(--muted); font-size: .82rem; font-weight: 780; cursor: pointer; transition: background .2s, box-shadow .2s, color .2s; }
.platform-tabs button.active { background: #fff; color: var(--ink); box-shadow: 0 5px 15px rgba(21, 50, 56, .08); }
.dashboard-stage { margin-top: 30px; border-radius: 28px; padding: 16px; background: #0d242a; box-shadow: 0 35px 90px rgba(12, 43, 49, .23); }
.preview-window { min-width: 930px; min-height: 590px; display: grid; grid-template-columns: 210px 1fr; overflow: hidden; border-radius: 18px; background: #f6f9f8; animation: panelIn .42s var(--ease); }
.preview-window[hidden] { display: none; }
.preview-sidebar { padding: 24px 18px; display: flex; flex-direction: column; background: #12333a; color: #c9d8d9; }
.preview-sidebar.manager-tone { background: #252d42; }
.preview-logo { display: flex; align-items: center; gap: 7px; color: #fff; font-size: .73rem; font-weight: 820; letter-spacing: -.025em; }
.preview-logo i { width: 21px; height: 21px; border-radius: 7px; background: var(--teal); box-shadow: inset 0 0 0 6px rgba(255,255,255,.12); }
.preview-logo b { color: #6ed1be; }
.preview-sidebar nav { display: grid; gap: 3px; margin-top: 35px; }
.preview-sidebar nav span { display: flex; justify-content: space-between; border-radius: 9px; padding: 10px 11px; font-size: .72rem; }
.preview-sidebar nav span.active { background: rgba(255, 255, 255, .09); color: #fff; }
.preview-sidebar nav b { min-width: 18px; height: 18px; padding: 0 5px; border-radius: 20px; display: grid; place-items: center; background: var(--teal); color: #fff; font-size: .59rem; }
.preview-profile { display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 13px 8px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.preview-profile strong, .preview-profile small { display: block; }
.preview-profile strong { color: #fff; font-size: .68rem; }
.preview-profile small { color: #9db0b2; font-size: .59rem; }
.preview-main { padding: 30px; overflow: hidden; }
.preview-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.preview-top small { color: var(--muted); font-size: .68rem; }
.preview-top h3 { margin: 3px 0 0; font-size: 1.48rem; letter-spacing: -.04em; }
.preview-bell { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--coral); font-size: .57rem; background: #fff; }
.preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.preview-stats > div { min-height: 110px; border: 1px solid #e0e8e6; border-radius: 13px; padding: 15px; background: #fff; }
.preview-stats span, .preview-stats small, .preview-stats strong { display: block; }
.preview-stats span, .preview-stats small { color: var(--muted); font-size: .62rem; }
.preview-stats strong { margin: 11px 0 7px; font-size: 1.5rem; letter-spacing: -.04em; }
.preview-stats strong.smaller { font-size: 1.22rem; }
.preview-stats i { display: block; height: 5px; overflow: hidden; border-radius: 10px; background: var(--line); }
.preview-stats i b { display: block; height: 100%; border-radius: inherit; background: var(--teal); }
.preview-columns { display: grid; grid-template-columns: 1fr 230px; gap: 14px; margin-top: 14px; }
.preview-list, .preview-agenda { border: 1px solid #e0e8e6; border-radius: 13px; padding: 15px; background: #fff; }
.preview-label { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: .7rem; }
.preview-label span { color: var(--teal); font-size: .61rem; font-weight: 760; }
.preview-list article { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid #edf1f0; }
.preview-list article strong, .preview-list article small { display: block; }
.preview-list article strong { font-size: .68rem; }
.preview-list article small { color: var(--muted); font-size: .56rem; }
.preview-list article em { border-radius: 30px; padding: 4px 7px; background: var(--mint); color: var(--teal); font-size: .58rem; font-style: normal; font-weight: 850; }
.job-logo { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; font-size: .58rem; font-weight: 850; }
.job-logo.teal { background: var(--teal); }.job-logo.coral { background: var(--coral); }.job-logo.navy { background: #37435f; }
.preview-agenda { display: flex; flex-direction: column; }
.agenda-date { width: 54px; height: 58px; margin: 14px 0 11px; display: grid; place-items: center; align-content: center; border-radius: 13px; background: var(--mint); color: var(--teal); }
.agenda-date b { font-size: 1.25rem; line-height: 1; }.agenda-date span { font-size: .5rem; font-weight: 850; letter-spacing: .12em; }
.preview-agenda > strong { font-size: .7rem; }.preview-agenda > small { color: var(--muted); font-size: .57rem; }
.mini-people { display: flex; margin: 13px 0 8px; }.mini-people .avatar { width: 26px; height: 26px; margin-right: -6px; border: 2px solid #fff; font-size: .48rem; }
.preview-agenda button { margin-top: auto; border: 0; border-radius: 8px; padding: 9px; background: var(--teal); color: #fff; font-size: .61rem; font-weight: 800; }
.donut { width: 74px; height: 74px; margin: 13px 0; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--teal) 0 68%, var(--mint) 68%); position: relative; }
.donut::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #fff; }.donut span { position: relative; z-index: 1; color: var(--teal); font-size: .76rem; font-weight: 850; }
.pipeline-dots { display: flex; gap: 5px; margin: 14px 0; }.pipeline-dots i { width: 24%; height: 5px; border-radius: 10px; background: var(--teal); }.pipeline-dots i:nth-child(3) { background: #8ecdc2; }.pipeline-dots i:nth-child(4) { background: var(--line); }
.platform-actions { display: flex; justify-content: center; gap: 12px; margin-top: 38px; }
.audience-section { padding-top: 30px; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; }
.audience-card { min-height: 650px; padding: 58px; display: flex; flex-direction: column; }
.audience-card h2 { margin: 56px 0 24px; font-size: clamp(2.6rem, 4.7vw, 4.8rem); }
.audience-card > p { max-width: 520px; margin: 0; color: inherit; opacity: .76; }
.audience-card ul { display: grid; gap: 10px; margin: 36px 0; padding: 0; list-style: none; }
.audience-card li::before { content: "✓"; margin-right: 10px; color: var(--teal); font-weight: 900; }
.audience-top { display: flex; justify-content: space-between; }
.audience-top > span { opacity: .42; font-size: .75rem; font-weight: 850; }
.audience-card .text-link { margin-top: auto; width: max-content; }
.candidate-card { border-radius: 30px 0 0 30px; background: var(--teal-deep); color: #fff; }
.candidate-card h2 em { color: #7ed6c6; }.candidate-card .eyebrow { color: #7ed6c6; }.candidate-card li::before { color: #7ed6c6; }
.manager-card { border: 1px solid var(--line); border-left: 0; border-radius: 0 30px 30px 0; background: #fff; }
.light-link { color: #8ce2d1; }
.stories-section { background: var(--sand); }
.stories-grid { display: grid; grid-template-columns: 1fr 1fr 1.05fr; gap: 18px; }
.quote-card { min-height: 390px; border: 1px solid #e6e8e4; border-radius: 24px; padding: 30px; display: flex; flex-direction: column; background: #fff; }
.quote-card blockquote { margin: 32px 0; font-size: 1.15rem; line-height: 1.55; letter-spacing: -.018em; }
.stars { color: #d89b3c; font-size: .78rem; letter-spacing: .14em; }
.quote-person { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.quote-person strong, .quote-person small { display: block; }.quote-person strong { font-size: .82rem; }.quote-person small { color: var(--muted); font-size: .71rem; }
.quote-feature { background: var(--teal); color: #fff; }
.quote-feature blockquote { margin-top: 42px; font-size: 1.55rem; line-height: 1.4; }
.quote-feature a { margin-top: auto; color: #fff; font-size: .83rem; font-weight: 800; }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 92px; }
.faq-grid h2 { margin-bottom: 25px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; border: 0; padding: 23px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: transparent; text-align: left; font-weight: 800; cursor: pointer; }
.faq-item button i { color: var(--teal); font-size: 1.25rem; font-style: normal; font-weight: 400; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .34s var(--ease); }
.faq-answer p { max-width: 680px; margin: 0 0 24px; color: var(--muted); }
.faq-item.open .faq-answer { max-height: 220px; }
.contact-section { padding-top: 40px; background: linear-gradient(#fff, var(--mint)); }
.contact-panel { overflow: hidden; display: grid; grid-template-columns: .92fr 1.08fr; border-radius: 34px; background: #fff; box-shadow: var(--shadow); }
.contact-copy { padding: 68px; background: var(--teal-deep); color: #fff; }
.contact-copy .eyebrow { color: #82d8c8; }.contact-copy h2 em { color: #82d8c8; }
.contact-copy > p:not(.eyebrow) { max-width: 480px; margin: 28px 0 40px; color: #b6c8ca; }
.contact-roles { display: flex; flex-wrap: wrap; gap: 8px; }.contact-roles span { border: 1px solid rgba(255,255,255,.16); border-radius: 99px; padding: 8px 11px; color: #ced9da; font-size: .7rem; }
.contact-form { padding: 68px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-content: center; }
.contact-form label, .drawer-form label { display: grid; gap: 7px; }
.contact-form label > span, .drawer-form label > span { color: var(--ink-soft); font-size: .72rem; font-weight: 780; }
.contact-form input, .contact-form select, .drawer-form input { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; outline: none; background: #fff; }
.contact-form input:focus, .contact-form select:focus, .drawer-form input:focus { border-color: #80bdb5; box-shadow: 0 0 0 4px rgba(13,119,119,.08); }
.contact-form .full { grid-column: 1 / -1; }
.form-note { margin: -4px 0 0; color: var(--muted-2); font-size: .69rem; text-align: center; }
.site-footer { padding: 78px 0 30px; background: var(--teal-deep); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1fr .8fr 1.4fr; gap: 50px; align-items: start; padding-bottom: 58px; }
.footer-brand { width: max-content; }
.footer-top > p { margin: 0; color: #a6bbbd; font-size: 1rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-links div { display: grid; align-content: start; gap: 10px; }.footer-links strong { margin-bottom: 4px; color: #fff; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }.footer-links a { color: #a6bbbd; font-size: .8rem; }
.footer-bottom { padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: #86a0a3; font-size: .7rem; }

/* Marketing drawer and feedback */
.signup-drawer { position: fixed; z-index: 150; inset: 0; pointer-events: none; }
.signup-drawer.open { pointer-events: auto; }
.drawer-scrim { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(5, 25, 30, .4); opacity: 0; backdrop-filter: blur(3px); transition: opacity .35s; cursor: default; }
.signup-drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel { position: absolute; inset: 0 0 0 auto; width: min(540px, 94vw); overflow: auto; padding: 86px 48px 42px; background: #fff; box-shadow: -30px 0 80px rgba(20, 55, 62, .22); transform: translateX(104%); transition: transform .46s var(--ease); }
.signup-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close { position: absolute; right: 28px; top: 24px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: 1.35rem; cursor: pointer; }
.drawer-panel h2 { margin: 0 0 17px; font-size: clamp(2.55rem, 5vw, 4rem); line-height: .98; letter-spacing: -.055em; }
.drawer-copy { color: var(--muted); }
.drawer-role-toggle { display: flex; gap: 5px; margin: 26px 0 22px; border-radius: 13px; padding: 4px; background: var(--sand); }
.drawer-role-toggle button { flex: 1; border: 0; border-radius: 10px; padding: 10px; background: transparent; color: var(--muted); font-size: .75rem; font-weight: 780; cursor: pointer; }
.drawer-role-toggle button.active { background: #fff; color: var(--ink); box-shadow: 0 4px 13px rgba(21,50,56,.08); }
.drawer-form { display: grid; gap: 13px; }
.drawer-divider { height: 36px; display: flex; align-items: center; gap: 10px; color: var(--muted-2); font-size: .69rem; }
.drawer-divider::before, .drawer-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.google-btn { min-height: 51px; border: 1px solid var(--line); border-radius: 13px; display: grid; grid-template-columns: 28px 1fr 20px; align-items: center; padding: 10px 14px; background: #fff; font-size: .81rem; font-weight: 780; text-align: center; transition: box-shadow .2s, border-color .2s; }
.google-btn:hover { border-color: #c2d4d5; box-shadow: var(--shadow-sm); }
.google-g { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; border: 1px solid #e2e6e8; color: #4285f4; font-family: Arial, sans-serif; font-weight: 800; }
.prototype-note { margin: 18px 0; border-radius: 11px; padding: 12px; background: var(--sand); color: var(--muted); font-size: .67rem; }
.prototype-note strong { color: var(--ink); }
.drawer-demo-link { color: var(--teal); font-size: .78rem; font-weight: 820; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 24px; max-width: min(480px, calc(100vw - 30px)); border-radius: 14px; padding: 13px 17px; background: var(--ink); color: #fff; box-shadow: var(--shadow); font-size: .78rem; opacity: 0; transform: translate(-50%, 25px); pointer-events: none; transition: opacity .25s, transform .25s var(--ease); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
@keyframes pulse { 0% { transform: scale(.7); opacity: .8; } 80%, 100% { transform: scale(1.8); opacity: 0; } }
@keyframes panelIn { from { opacity: .45; transform: translateY(8px); } to { opacity: 1; transform: none; } }

@media (max-width: 1050px) {
  .section { padding: 96px 0; }
  .section-heading, .story-grid, .faq-grid, .contact-panel { grid-template-columns: 1fr; gap: 45px; }
  .story-media { min-height: 600px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-card:nth-child(2) { border-right: 0; margin-right: 0; }
  .process-card:nth-child(-n+2) { border-bottom: 1px solid #dcdedb; }
  .dashboard-stage { overflow-x: auto; }
  .audience-grid { grid-template-columns: 1fr; }
  .candidate-card { border-radius: 30px 30px 0 0; }
  .manager-card { border-left: 1px solid var(--line); border-top: 0; border-radius: 0 0 30px 30px; }
  .stories-grid { grid-template-columns: 1fr 1fr; }.quote-feature { grid-column: 1 / -1; }
  .contact-copy, .contact-form { padding: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; }.footer-links { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .section { padding: 76px 0; }
  .section h2, .image-band h2, .contact-panel h2 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  .section-heading { margin-bottom: 42px; }
  .story-media { min-height: 470px; }.portrait-frame { inset-right: 4%; }.story-stat { min-width: 185px; padding: 16px 18px; }
  .process-grid { grid-template-columns: 1fr; }.process-card { min-height: 270px; margin: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid #dcdedb; }.process-card:last-child { border-bottom: 0; }.process-icon { margin: 35px 0 22px; }
  .image-band { min-height: 620px; }.image-band-bg { background-attachment: scroll; background-position: 36% center; }
  .platform-tabs { width: 100%; }.platform-tabs button { flex: 1; padding-inline: 10px; }
  .dashboard-stage { margin-inline: -15px; border-radius: 0; padding: 12px; }.preview-window { min-width: 850px; }
  .platform-actions { align-items: stretch; flex-direction: column; }.platform-actions .btn { width: 100%; }
  .audience-card { min-height: 610px; padding: 38px 28px; }.audience-card h2 { margin-top: 42px; }.audience-card ul { font-size: .88rem; }
  .stories-grid { grid-template-columns: 1fr; }.quote-feature { grid-column: auto; }.quote-card { min-height: 340px; }
  .faq-grid { gap: 36px; }
  .contact-section { padding-top: 20px; }.contact-panel { border-radius: 25px; }.contact-copy, .contact-form { padding: 36px 25px; }.contact-form { grid-template-columns: 1fr; }.contact-form .full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; }.footer-links { grid-template-columns: 1fr 1fr; }.footer-bottom { flex-direction: column; gap: 8px; }
  .drawer-panel { padding: 80px 24px 30px; }
}

/* Sign-in prototype */
.login-page { min-height: 100svh; background: #f7faf9; }
.login-shell { min-height: 100svh; display: grid; grid-template-columns: minmax(440px, .9fr) minmax(560px, 1.1fr); }
.login-visual { position: sticky; top: 0; height: 100svh; overflow: hidden; background: var(--teal-deep); }
.login-visual > img { width: 100%; height: 100%; object-fit: cover; object-position: 63% center; }
.login-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,35,40,.16), rgba(5,35,40,.2) 45%, rgba(5,35,40,.86)); }
.login-brand { position: absolute; z-index: 2; left: 42px; top: 36px; color: #fff; }
.login-quote { position: absolute; z-index: 2; left: 48px; right: 48px; bottom: 48px; color: #fff; }
.login-quote p { max-width: 580px; margin: 0 0 15px; font-size: clamp(1.8rem, 3.2vw, 3.6rem); line-height: 1.08; letter-spacing: -.045em; }
.login-quote span { color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.login-panel { min-height: 100svh; display: grid; place-items: center; padding: 64px 34px; background: #fff; }
.login-panel-inner { width: min(520px, 100%); }
.login-back { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 40px; color: var(--muted); font-size: .78rem; font-weight: 730; }
.prototype-flag { width: max-content; max-width: 100%; margin-bottom: 22px; border: 1px solid #d9ebe7; border-radius: 999px; padding: 7px 11px; display: flex; align-items: center; gap: 8px; background: var(--mint); color: var(--teal-dark); font-size: .66rem; font-weight: 820; letter-spacing: .04em; text-transform: uppercase; }
.prototype-flag span { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(13,119,119,.1); }
.login-panel h1 { margin: 0 0 18px; font-size: clamp(3rem, 5vw, 5rem); line-height: .93; letter-spacing: -.062em; }
.login-panel h1 em { color: var(--teal); font-style: normal; }
.login-intro { margin: 0 0 26px; color: var(--muted); font-size: .94rem; }
.login-role { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.login-role button { min-height: 82px; border: 1px solid var(--line); border-radius: 15px; padding: 13px; display: flex; align-items: center; gap: 11px; background: #fff; text-align: left; cursor: pointer; transition: border .2s, box-shadow .2s, background .2s; }
.login-role button.active { border-color: #8bc8bf; background: #f4fbf9; box-shadow: 0 0 0 3px rgba(13,119,119,.07); }
.role-icon { flex: 0 0 auto; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; background: var(--mint); color: var(--teal); font-size: 1.1rem; }
.login-role strong, .login-role small { display: block; }
.login-role strong { margin-bottom: 2px; font-size: .78rem; }
.login-role small { color: var(--muted); font-size: .62rem; }
.google-signin { width: 100%; min-height: 54px; border: 1px solid #cbd6d8; border-radius: 13px; padding: 10px 14px; display: grid; grid-template-columns: 30px 1fr 20px; align-items: center; background: #fff; font-size: .85rem; font-weight: 780; cursor: pointer; transition: box-shadow .2s, border-color .2s; }
.google-signin:hover { border-color: #aac0c3; box-shadow: var(--shadow-sm); }
.login-divider { display: flex; align-items: center; gap: 12px; margin: 22px 0; color: var(--muted-2); font-size: .68rem; }
.login-divider::before, .login-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.email-login { display: grid; gap: 13px; }
.email-login label { display: grid; gap: 7px; }
.email-login label span { color: var(--ink-soft); font-size: .7rem; font-weight: 780; }
.email-login input { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; outline: none; }
.email-login input:focus { border-color: #80bdb5; box-shadow: 0 0 0 4px rgba(13,119,119,.08); }
.login-terms { margin: 18px 0; color: var(--muted-2); font-size: .65rem; text-align: center; }
.auth-disclaimer { border-left: 3px solid #eadfd6; border-radius: 13px; padding: 14px; display: grid; gap: 3px; background: #fffaf6; color: #756a63; font-size: .68rem; }
.auth-disclaimer strong { color: #5a4236; }
.google-modal { position: fixed; z-index: 350; inset: 0; display: grid; place-items: center; padding: 18px; opacity: 0; pointer-events: none; transition: opacity .24s; }
.google-modal.open { opacity: 1; pointer-events: auto; }
.modal-scrim { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(15,28,32,.45); backdrop-filter: blur(4px); }
.google-dialog { position: relative; z-index: 1; width: min(450px, 100%); border: 1px solid #dfe4e6; border-radius: 22px; padding: 35px 38px 28px; background: #fff; box-shadow: 0 35px 100px rgba(15, 28, 32, .26); transform: translateY(14px) scale(.98); transition: transform .3s var(--ease); }
.google-modal.open .google-dialog { transform: none; }
.modal-close { position: absolute; right: 16px; top: 15px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #f4f6f6; cursor: pointer; font-size: 1.2rem; }
.google-wordmark { display: flex; justify-content: center; margin: 4px 0 22px; font-family: Arial, sans-serif; font-size: 1.35rem; font-weight: 700; letter-spacing: -.06em; }
.google-wordmark span:nth-child(1), .google-wordmark span:nth-child(4) { color: #4285f4; }
.google-wordmark span:nth-child(2), .google-wordmark span:nth-child(6) { color: #ea4335; }
.google-wordmark span:nth-child(3) { color: #fbbc05; }
.google-wordmark span:nth-child(5) { color: #34a853; }
.google-dialog h2 { margin: 0; text-align: center; font-size: 1.48rem; font-weight: 500; letter-spacing: -.02em; }
.google-dialog > p { margin: 7px 0 23px; color: #5f6368; text-align: center; font-size: .8rem; }
.google-account { width: 100%; border: 0; border-top: 1px solid #e1e4e6; padding: 14px 4px; display: grid; grid-template-columns: 42px 1fr; gap: 11px; align-items: center; background: #fff; text-align: left; cursor: pointer; }
.google-account:hover { background: #f8fafb; }
.google-account strong, .google-account small { display: block; }
.google-account strong { font-size: .78rem; font-weight: 570; }
.google-account small { color: #5f6368; font-size: .68rem; }
.other-user { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid #dadddf; border-radius: 50%; color: #5f6368; }
.google-other-form { border-top: 1px solid #e1e4e6; padding: 18px 4px 8px; }
.google-other-form label { display: grid; gap: 7px; }
.google-other-form label span { color: #5f6368; font-size: .68rem; }
.google-other-form input { width: 100%; min-height: 48px; border: 1px solid #aeb4b8; border-radius: 4px; padding: 12px; }
.google-next { float: right; margin-top: 14px; border: 0; border-radius: 4px; padding: 9px 18px; background: #1a73e8; color: #fff; font-weight: 700; cursor: pointer; }
.google-fineprint { clear: both; padding-top: 19px; margin-bottom: 0 !important; border-top: 1px solid #edf0f1; font-size: .61rem !important; line-height: 1.5; }
.auth-transition { position: fixed; z-index: 450; inset: 0; display: grid; place-content: center; place-items: center; gap: 10px; background: var(--teal-deep); color: #fff; opacity: 0; pointer-events: none; transition: opacity .3s; }
.auth-transition.open { opacity: 1; pointer-events: auto; }
.transition-mark { margin-bottom: 12px; animation: loginPulse 1s infinite alternate; }
.transition-mark .brand-mark { width: 58px; height: 58px; border-radius: 18px; }
.auth-transition strong { font-size: 1rem; }
.auth-transition > span { color: #93abad; font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; }
@keyframes loginPulse { to { transform: scale(1.08); } }

@media (max-width: 920px) {
  .login-shell { grid-template-columns: 1fr; }
  .login-visual { position: relative; height: 350px; }
  .login-quote p { font-size: 2rem; }
  .login-panel { padding-block: 55px; }
}
@media (max-width: 560px) {
  .login-visual { height: 260px; }
  .login-brand { left: 20px; top: 20px; }
  .login-quote { left: 20px; right: 20px; bottom: 20px; }
  .login-quote p { font-size: 1.35rem; }
  .login-quote span { font-size: .62rem; }
  .login-panel { padding: 40px 20px; }
  .login-back { margin-bottom: 30px; }
  .login-role { grid-template-columns: 1fr; }
  .google-dialog { padding: 32px 22px 24px; }
}

/* Dashboard shell */
.dashboard-page { min-height: 100svh; overflow-x: hidden; background: #f5f8f7; color: var(--ink); }
.app-shell { min-height: 100svh; }
.app-sidebar { position: fixed; z-index: 100; inset: 0 auto 0 0; width: 248px; padding: 24px 18px 17px; display: flex; flex-direction: column; background: #12333a; color: #cad8da; box-shadow: 12px 0 35px rgba(10,35,40,.06); }
.manager-sidebar { background: #252d42; }
.sidebar-head { display: flex; align-items: center; }
.app-brand { margin: 0; color: #fff; font-size: .9rem; }
.app-brand .brand-mark { width: 30px; height: 30px; border-radius: 9px; }
.sidebar-close { display: none; margin-left: auto; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: transparent; color: #fff; font-size: 1.2rem; }
.workspace-label { margin: 28px 10px 9px; color: #789397; font-size: .61rem; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.app-nav { display: grid; gap: 3px; }
.app-nav button { width: 100%; min-height: 42px; border: 0; border-radius: 10px; padding: 9px 10px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 7px; background: transparent; color: #b8c9cb; text-align: left; font-size: .77rem; font-weight: 680; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.app-nav button:hover { background: rgba(255,255,255,.05); color: #fff; transform: translateX(2px); }
.app-nav button.active { background: rgba(255,255,255,.1); color: #fff; }
.nav-symbol { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; color: #81c8bd; font-size: 1rem; }
.app-nav button.active .nav-symbol { background: var(--teal); color: #fff; }
.app-nav b { min-width: 21px; height: 21px; border-radius: 20px; padding-inline: 6px; display: grid; place-items: center; background: rgba(255,255,255,.09); color: #acc0c2; font-size: .58rem; }
.app-nav b.coral-count { background: var(--coral); color: #fff; }
.profile-meter, .hiring-tip { margin-top: auto; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; padding: 14px; background: rgba(255,255,255,.035); }
.profile-meter > div { display: flex; justify-content: space-between; color: #dae4e5; font-size: .68rem; }
.profile-meter > i { height: 5px; margin: 10px 0; display: block; overflow: hidden; border-radius: 20px; background: rgba(255,255,255,.1); }
.profile-meter > i b { display: block; height: 100%; border-radius: inherit; background: #72c9ba; }
.profile-meter button, .hiring-tip button { border: 0; padding: 0; background: transparent; color: #74cdbc; font-size: .63rem; font-weight: 780; cursor: pointer; }
.hiring-tip > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: rgba(125,218,202,.12); color: #79d0c1; }
.hiring-tip strong { display: block; margin: 9px 0 4px; color: #fff; font-size: .7rem; }
.hiring-tip p { margin: 0 0 9px; color: #9baab6; font-size: .61rem; line-height: 1.55; }
.sidebar-user { margin-top: 14px; padding: 13px 5px 0; border-top: 1px solid rgba(255,255,255,.08); display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 9px; }
.sidebar-user strong, .sidebar-user small { display: block; max-width: 125px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sidebar-user strong { color: #fff; font-size: .7rem; }.sidebar-user small { color: #82999c; font-size: .55rem; }.sidebar-user > a { color: #799396; font-size: .8rem; }
.sidebar-overlay { position: fixed; z-index: 90; inset: 0; border: 0; background: rgba(8,28,33,.4); opacity: 0; pointer-events: none; transition: opacity .2s; }
.app-main { min-height: 100svh; margin-left: 248px; padding: 96px 30px 52px; }
.app-topbar { position: fixed; z-index: 70; top: 0; right: 0; left: 248px; height: 72px; padding: 0 30px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.app-search { width: min(460px, 46vw); height: 40px; display: grid; grid-template-columns: 30px 1fr auto; align-items: center; border: 1px solid #e0e8e7; border-radius: 11px; padding-inline: 10px; background: #f8faf9; color: var(--muted); }
.app-search input { min-width: 0; border: 0; outline: 0; background: transparent; font-size: .73rem; }.app-search kbd { border: 1px solid var(--line); border-radius: 5px; padding: 2px 5px; background: #fff; color: var(--muted-2); font-size: .55rem; }
.topbar-action { position: relative; width: 40px; height: 40px; margin-left: auto; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }.topbar-action i { position: absolute; right: 8px; top: 7px; width: 6px; height: 6px; border: 2px solid #fff; border-radius: 50%; background: var(--coral); }
.topbar-user { min-height: 45px; border: 0; border-radius: 11px; padding: 4px 8px; display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 8px; background: transparent; text-align: left; cursor: pointer; }.topbar-user strong, .topbar-user small { display: block; }.topbar-user strong { font-size: .68rem; }.topbar-user small { color: var(--muted); font-size: .56rem; }.topbar-user b { color: var(--muted); font-size: .66rem; }
.app-menu, .mobile-app-brand { display: none; }
.dashboard-view { width: min(1370px, 100%); margin-inline: auto; animation: viewIn .35s var(--ease); }
.dashboard-view[hidden] { display: none; }
.view-heading { min-height: 108px; margin-bottom: 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; }
.view-heading > div > p { margin: 0 0 4px; color: var(--teal); font-size: .65rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.manager-dashboard .view-heading > div > p { color: #5e6e9c; }
.view-heading h1 { margin: 0 0 7px; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.055em; }
.view-heading > div > span { color: var(--muted); font-size: .83rem; }
.view-heading > .btn { margin-top: 11px; }
.compact-heading { min-height: 88px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric-card { min-height: 196px; border: 1px solid #dfe8e6; border-radius: 17px; padding: 18px; display: flex; flex-direction: column; background: #fff; box-shadow: 0 8px 26px rgba(25,55,61,.035); }
.metric-head { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: .67rem; }.metric-head i { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 9px; background: var(--mint); color: var(--teal); font-style: normal; }
.metric-main { display: flex; align-items: flex-end; gap: 9px; margin: 18px 0 8px; }.metric-main strong { font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1; letter-spacing: -.055em; }.metric-main em { margin-bottom: 3px; color: var(--muted); font-size: .61rem; font-style: normal; }.metric-main em.trend { border-radius: 20px; padding: 3px 6px; background: var(--mint); color: var(--teal); font-weight: 760; }
.metric-card > small { color: var(--muted); font-size: .62rem; }.metric-card > button { width: max-content; margin-top: auto; border: 0; padding: 0; background: transparent; color: var(--teal); font-size: .63rem; font-weight: 780; cursor: pointer; }
.profile-metric .metric-main { align-items: center; justify-content: space-between; }.profile-metric .ring { width: 48px; height: 48px; }
.ring { position: relative; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--teal) 0 84%, var(--line) 84%); }.ring::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; background: #fff; }.ring > span { position: relative; z-index: 1; }
.interview-metric { background: linear-gradient(145deg,#fff,#f1faf8); }
.dashboard-columns, .manager-overview-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(275px, .65fr); gap: 16px; margin-top: 16px; }
.panel-card, .summary-card, .data-card, .activity-card { border: 1px solid #dfe8e6; border-radius: 17px; background: #fff; box-shadow: 0 8px 26px rgba(25,55,61,.035); }
.panel-card, .data-card, .activity-card { padding: 20px; }
.card-heading { min-height: 42px; display: flex; justify-content: space-between; gap: 20px; }
.card-heading h2 { margin: 0 0 3px; font-size: .92rem; letter-spacing: -.02em; }.card-heading p { margin: 0; color: var(--muted); font-size: .62rem; }.card-heading > button { align-self: flex-start; border: 0; padding: 4px; background: transparent; color: var(--teal); font-size: .63rem; font-weight: 760; cursor: pointer; }
.card-heading.compact { min-height: 36px; }.right-stack { display: grid; gap: 16px; }.summary-card { padding: 18px; }
.role-list-list { margin-top: 8px; }
.role-row { min-height: 92px; display: grid; grid-template-columns: 42px 1fr auto 30px; align-items: center; gap: 12px; border-top: 1px solid #edf2f1; }.role-row:first-child { border-top: 0; }
.role-info > strong, .role-info > span { display: block; }.role-info > strong { font-size: .75rem; }.role-info > span { margin: 3px 0 7px; color: var(--muted); font-size: .61rem; }.role-info > div { display: flex; flex-wrap: wrap; gap: 5px; }.role-info b { border-radius: 20px; padding: 3px 6px; background: #f4f7f6; color: #708087; font-size: .52rem; font-weight: 680; }
.match-score { min-width: 43px; text-align: right; }.match-score strong, .match-score span { display: block; }.match-score strong { color: var(--teal); font-size: .81rem; }.match-score span { color: var(--muted); font-size: .5rem; }.save-btn { width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--muted); cursor: pointer; }.save-btn.saved, [data-save-role].saved { color: var(--coral); background: var(--coral-soft); }
.date-tile { width: 54px; height: 58px; margin: 12px 0 10px; border-radius: 13px; display: grid; place-items: center; align-content: center; background: var(--mint); color: var(--teal); }.date-tile strong { font-size: 1.35rem; line-height: 1; }.date-tile span { font-size: .5rem; font-weight: 850; letter-spacing: .12em; }
.next-card > h3 { margin: 0 0 2px; font-size: .79rem; }.next-card > p { margin: 0 0 11px; color: var(--muted); font-size: .6rem; }.time-line { display: flex; align-items: center; gap: 8px; border-block: 1px solid #edf2f1; padding: 10px 0; font-size: .64rem; }.participant-line { display: flex; justify-content: space-between; align-items: center; margin: 10px 0; }.participant-line > div { display: flex; }.participant-line .avatar { width: 27px; height: 27px; margin-right: -6px; border: 2px solid #fff; font-size: .48rem; }.participant-line small { color: var(--muted); font-size: .55rem; }.full-btn { width: 100%; min-height: 39px; padding: 8px 13px; font-size: .66rem; }
.inbox-card { padding-bottom: 9px; }.message-preview { width: 100%; border: 0; border-top: 1px solid #edf2f1; padding: 11px 0; display: grid; grid-template-columns: 34px 1fr auto; gap: 8px; align-items: center; background: transparent; text-align: left; cursor: pointer; }.message-preview .avatar { width: 32px; height: 32px; font-size: .58rem; }.message-preview strong, .message-preview small { display: block; }.message-preview strong { font-size: .64rem; }.message-preview small { max-width: 170px; overflow: hidden; color: var(--muted); font-size: .53rem; text-overflow: ellipsis; white-space: nowrap; }.message-preview time { color: var(--muted-2); font-size: .5rem; }
.activity-card, .roles-snapshot { margin-top: 16px; }.activity-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 22px; }.activity-track::before { content: ""; position: absolute; left: 7%; right: 7%; top: 14px; height: 2px; background: var(--line); }.activity-track article { position: relative; z-index: 1; display: grid; grid-template-columns: 30px 1fr; gap: 8px; background: linear-gradient(90deg,#fff 0,#fff 70%,transparent); }.activity-track i { width: 30px; height: 30px; display: grid; place-items: center; border: 2px solid var(--line); border-radius: 50%; background: #fff; color: var(--muted); font-size: .62rem; font-style: normal; font-weight: 800; }.activity-track article.done i { border-color: var(--teal); background: var(--teal); color: #fff; }.activity-track article.active i { border-color: var(--teal); color: var(--teal); }.activity-track strong, .activity-track small { display: block; }.activity-track strong { font-size: .65rem; }.activity-track small { color: var(--muted); font-size: .54rem; }
@keyframes viewIn { from { opacity: .55; transform: translateY(7px); } to { opacity: 1; transform: none; } }

/* Dashboard detail views */
.filter-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.filter-pills button { border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; background: #fff; color: var(--muted); font-size: .65rem; font-weight: 720; cursor: pointer; }
.filter-pills button.active { border-color: var(--teal); background: var(--mint); color: var(--teal); }
.job-grid-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.job-card { min-height: 480px; border: 1px solid #dfe8e6; border-radius: 18px; padding: 21px; display: flex; flex-direction: column; background: #fff; box-shadow: 0 8px 26px rgba(25,55,61,.035); transition: transform .2s, box-shadow .2s; }
.job-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }.job-card.featured { border-color: #a8d7d0; background: linear-gradient(155deg,#fff,#f3fbf9); }
.job-card-top { display: flex; justify-content: space-between; }.job-card-top > button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--muted); cursor: pointer; }
.job-logo-logo { width: 45px; height: 45px; border-radius: 13px; display: grid; place-items: center; background: var(--teal); color: #fff; font-size: .68rem; font-weight: 850; }.job-logo-logo.teal { background: var(--teal); }.job-logo-logo.coral { background: var(--coral); }.job-logo-logo.navy { background: #37435f; }
.match-label { margin: 28px 0 8px !important; color: var(--teal) !important; font-size: .6rem !important; font-weight: 850; letter-spacing: .12em; }
.job-card h2 { margin: 0 0 7px; font-size: 1.16rem; letter-spacing: -.035em; }.job-card > p { margin: 0; color: var(--muted); font-size: .69rem; }.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }.job-tags span, .candidate-skills span { border-radius: 30px; padding: 5px 8px; background: #f1f5f4; color: var(--ink-soft); font-size: .57rem; }.job-card hr { width: 100%; height: 1px; margin: 22px 0 14px; border: 0; background: var(--line); }.job-card ul { margin: 0; padding: 0; display: grid; gap: 7px; color: var(--muted); font-size: .66rem; list-style: none; }.job-card li::before { content: "✓"; margin-right: 7px; color: var(--teal); font-weight: 850; }.job-card-actions { display: flex; gap: 7px; margin-top: auto; }.job-card-actions .btn { flex: 1; min-height: 41px; font-size: .68rem; }
.status-summary { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 16px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }.status-summary > div { padding: 17px 20px; border-right: 1px solid var(--line); }.status-summary > div:last-child { border: 0; }.status-summary strong, .status-summary span { display: block; }.status-summary strong { font-size: 1.4rem; letter-spacing: -.04em; }.status-summary span { color: var(--muted); font-size: .6rem; }
.table-toolbar { display: flex; align-items: center; justify-content: space-between; }.table-toolbar .filter-pills { margin: 0; }.table-sort, .candidate-toolbar button { border: 1px solid var(--line); border-radius: 9px; padding: 8px 10px; background: #fff; color: var(--muted); font-size: .61rem; cursor: pointer; }
.responsive-table { overflow-x: auto; }
.responsive-table table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: .66rem; }
.responsive-table th { padding: 17px 12px 10px; color: var(--muted-2); font-size: .56rem; font-weight: 760; letter-spacing: .08em; text-align: left; text-transform: uppercase; }.responsive-table td { padding: 14px 12px; border-top: 1px solid #ebf0ef; color: var(--ink-soft); }.responsive-table td:first-child { display: flex; align-items: center; gap: 10px; }.responsive-table td:first-child strong, .responsive-table td:first-child small { display: block; }.responsive-table td:first-child strong { color: var(--ink); font-size: .67rem; }.responsive-table td:first-child small, .responsive-table td > small { color: var(--muted); font-size: .55rem; }.responsive-table td > button { border: 0; background: transparent; color: var(--teal); font-size: .61rem; font-weight: 750; cursor: pointer; }
.status-pill { width: max-content; border-radius: 30px; padding: 5px 8px; display: inline-block; font-size: .55rem; }.status-pill.interview { background: var(--mint); color: var(--teal); }.status-pill.review { background: var(--coral-soft); color: #a34f38; }.status-pill.screening { background: #edf0f8; color: #52618c; }.status-pill.saved { background: #f1f3f3; color: var(--muted); }.sand-logo { background: #a38a6f; }

/* Messaging */
.messaging-shell { height: min(720px, calc(100svh - 225px)); min-height: 560px; display: grid; grid-template-columns: 305px 1fr; overflow: hidden; border: 1px solid #dfe8e6; border-radius: 18px; background: #fff; box-shadow: 0 8px 26px rgba(25,55,61,.035); }
.conversation-list { overflow-y: auto; border-right: 1px solid var(--line); background: #fbfcfc; }.conversation-search { height: 63px; margin: 0 14px; display: grid; grid-template-columns: 24px 1fr; align-items: center; color: var(--muted); }.conversation-search input { min-width: 0; height: 36px; border: 1px solid var(--line); border-radius: 10px; padding: 9px 10px; background: #fff; font-size: .67rem; outline: none; }
.conversation { position: relative; width: 100%; min-height: 84px; border: 0; border-top: 1px solid #edf1f0; padding: 13px 13px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; background: transparent; text-align: left; cursor: pointer; }.conversation.active { background: var(--mint); box-shadow: inset 3px 0 var(--teal); }.conversation > span:nth-child(2) strong, .conversation > span:nth-child(2) small, .conversation > span:nth-child(2) em { display: block; }.conversation strong { font-size: .67rem; }.conversation small { margin: 1px 0 5px; color: var(--muted); font-size: .54rem; }.conversation em { max-width: 170px; overflow: hidden; color: var(--muted); font-size: .56rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }.conversation time { align-self: start; padding-top: 3px; color: var(--muted-2); font-size: .5rem; }.conversation > i { position: absolute; right: 14px; bottom: 17px; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }
.avatar-navy { background: #e4e8f1; color: #455273; }
.chat-panel { min-width: 0; display: grid; grid-template-rows: 64px 58px 1fr auto; }
.chat-head { padding: 0 18px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }.chat-person { display: flex; align-items: center; gap: 10px; }.chat-person strong, .chat-person small { display: block; }.chat-person strong { font-size: .72rem; }.chat-person small { color: var(--muted); font-size: .55rem; }.chat-person small i { display: inline-block; width: 6px; height: 6px; margin-right: 3px; border-radius: 50%; background: #39a978; }.chat-head > div:last-child { display: flex; gap: 6px; }.chat-head button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--muted); cursor: pointer; }
.context-banner { margin: 8px 14px; border-radius: 11px; padding: 8px 12px; display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 9px; background: #f2f8f7; }.context-banner .job-logo { width: 34px; height: 34px; }.context-banner small, .context-banner strong { display: block; }.context-banner small { color: var(--muted); font-size: .49rem; }.context-banner strong { font-size: .61rem; }.context-banner button { border: 0; background: transparent; color: var(--teal); font-size: .56rem; font-weight: 760; cursor: pointer; }
.message-thread { overflow-y: auto; padding: 8px 22px 18px; background: linear-gradient(#fff,#fbfdfc); scroll-behavior: smooth; }.thread-day { display: flex; align-items: center; gap: 10px; margin: 5px 0 18px; color: var(--muted-2); font-size: .53rem; }.thread-day::before, .thread-day::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.bubble-row { display: flex; gap: 8px; margin-bottom: 15px; }.bubble-row > .avatar { width: 31px; height: 31px; margin-top: 4px; font-size: .53rem; }.bubble-row > div { max-width: min(540px, 78%); }.bubble-row p { margin: 0; border-radius: 5px 14px 14px 14px; padding: 10px 13px; background: #eef4f3; color: var(--ink-soft); font-size: .68rem; line-height: 1.55; }.bubble-row time { display: block; margin-top: 4px; color: var(--muted-2); font-size: .49rem; }.bubble-row.mine { justify-content: flex-end; }.bubble-row.mine > div { display: grid; justify-items: end; }.bubble-row.mine p { border-radius: 14px 5px 14px 14px; background: var(--teal); color: #fff; }.message-file { width: min(310px, 100%); margin-top: 6px; border: 1px solid var(--line); border-radius: 11px; padding: 8px; display: grid; grid-template-columns: 34px 1fr 25px; align-items: center; gap: 8px; background: #fff; }.message-file > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 8px; background: var(--coral-soft); color: #a64931; font-size: .5rem; font-weight: 820; }.message-file strong, .message-file small { display: block; }.message-file strong { font-size: .57rem; }.message-file small { color: var(--muted); font-size: .49rem; }.message-file button { border: 0; background: transparent; color: var(--teal); cursor: pointer; }
.message-composer { min-height: 70px; margin: 0 14px 14px; border: 1px solid var(--line); border-radius: 13px; display: grid; grid-template-columns: auto 1fr 38px; align-items: end; gap: 8px; padding: 10px; background: #fff; }.composer-tools { display: flex; gap: 4px; }.composer-tools button, .send-message { width: 34px; height: 34px; border: 0; border-radius: 9px; background: #f2f5f4; color: var(--muted); cursor: pointer; }.message-composer label { min-width: 0; }.message-composer textarea { width: 100%; max-height: 110px; min-height: 33px; border: 0; padding: 8px 4px; outline: 0; resize: none; font-size: .68rem; }.send-message { background: var(--teal); color: #fff; font-size: 1rem; }.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Calendar and files */
.calendar-layout { display: grid; grid-template-columns: 1.45fr .55fr; gap: 16px; }.calendar-card, .schedule-card { border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 8px 26px rgba(25,55,61,.035); }.calendar-card { padding: 23px; }.calendar-card header { height: 44px; display: flex; align-items: center; justify-content: space-between; }.calendar-card header h2 { margin: 0; font-size: .95rem; }.calendar-card header button { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--muted); cursor: pointer; }.calendar-week, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); }.calendar-week { margin-top: 16px; border-bottom: 1px solid var(--line); }.calendar-week span { padding: 10px; color: var(--muted-2); font-size: .54rem; font-weight: 760; text-align: center; text-transform: uppercase; }.calendar-days span { position: relative; min-height: 67px; border-right: 1px solid #edf1f0; border-bottom: 1px solid #edf1f0; padding: 9px; color: var(--ink-soft); font-size: .65rem; }.calendar-days span:nth-child(7n) { border-right: 0; }.calendar-days span.outside { color: #bdc6c8; }.calendar-days span.today { color: var(--teal); font-weight: 850; }.calendar-days span.today::before { content: ""; position: absolute; inset: 4px auto auto 4px; width: 27px; height: 27px; border-radius: 50%; background: var(--mint); z-index: -1; }.calendar-days span.has-event i { position: absolute; left: 9px; right: 9px; bottom: 8px; height: 5px; border-radius: 6px; background: var(--teal); }.calendar-days span.selected { background: #f2faf8; }
.schedule-stack { display: grid; gap: 16px; }.schedule-card { padding: 20px; }.schedule-card.highlight { background: linear-gradient(155deg,#fff,#f0faf8); border-color: #b8dcd6; }.schedule-card .status-label { margin: 0 0 15px; color: var(--teal); font-size: .55rem; font-weight: 850; letter-spacing: .12em; }.schedule-date { width: 54px; height: 57px; border-radius: 12px; display: grid; place-items: center; align-content: center; background: var(--teal); color: #fff; }.schedule-date strong { font-size: 1.25rem; line-height: 1; }.schedule-date span { font-size: .47rem; font-weight: 850; }.schedule-card h2 { margin: 13px 0 2px; font-size: .94rem; }.schedule-card h3 { margin: 4px 0; font-size: .78rem; }.schedule-card > p:not(.status-label) { margin: 0 0 12px; color: var(--muted); font-size: .62rem; }.schedule-card ul { margin: 15px 0; padding: 13px 0; border-block: 1px solid var(--line); display: grid; gap: 7px; color: var(--ink-soft); font-size: .62rem; list-style: none; }.subtle-button, .text-button { width: 100%; margin-top: 7px; border: 0; padding: 8px; background: transparent; color: var(--teal); font-size: .61rem; font-weight: 760; cursor: pointer; }
.upload-zone { min-height: 190px; border: 1px dashed #a9c8c4; border-radius: 18px; display: grid; place-items: center; align-content: center; gap: 5px; background: linear-gradient(135deg,#f8fcfb,#f2faf8); text-align: center; }.upload-zone.dragging { border-color: var(--teal); background: var(--mint); }.upload-icon { width: 42px; height: 42px; margin-bottom: 3px; display: grid; place-items: center; border-radius: 13px; background: var(--mint-strong); color: var(--teal); font-size: 1.15rem; }.upload-zone h2 { margin: 0; font-size: .85rem; }.upload-zone p { margin: 0 0 8px; color: var(--muted); font-size: .59rem; }.upload-zone .btn { min-height: 37px; font-size: .62rem; }
.file-summary { display: grid; grid-template-columns: repeat(4, 1fr); margin: 16px 0; border: 1px solid var(--line); border-radius: 15px; background: #fff; }.file-summary > div { padding: 15px 18px; border-right: 1px solid var(--line); }.file-summary > div:last-child { border: 0; }.file-summary strong, .file-summary span { display: block; }.file-summary strong { font-size: 1.06rem; }.file-summary span { color: var(--muted); font-size: .56rem; }.file-card-list [data-file-list] { margin-top: 8px; }.file-card-list article { min-height: 68px; border-top: 1px solid #edf1f0; display: grid; grid-template-columns: 40px 1fr auto 32px; gap: 10px; align-items: center; }.file-type { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; font-size: .5rem; font-weight: 820; }.file-type.pdf { background: var(--coral-soft); color: #a74c35; }.file-type.doc { background: #e8eef8; color: #4e628d; }.file-type.img { background: var(--mint); color: var(--teal); }.file-card-list article strong, .file-card-list article small { display: block; }.file-card-list article strong { font-size: .65rem; }.file-card-list article small { color: var(--muted); font-size: .54rem; }.file-card-list article > b { border-radius: 20px; padding: 5px 8px; font-size: .52rem; }.file-card-list article > b.verified { background: var(--mint); color: var(--teal); }.file-card-list article > b.shared { background: #eef1f7; color: #53618b; }.file-card-list article > button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }

/* Candidate profile */
.profile-layout { display: grid; grid-template-columns: 265px 1fr; gap: 16px; align-items: start; }.profile-summary-card, .profile-form > section { border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 8px 26px rgba(25,55,61,.035); }.profile-summary-card { position: sticky; top: 92px; padding: 25px; text-align: center; }.large-avatar { width: 78px; height: 78px; margin: 0 auto 13px; display: grid; place-items: center; border-radius: 23px; background: linear-gradient(145deg,var(--coral-soft),#f4d1c5); color: #9d4b35; font-size: 1.2rem; font-weight: 850; }.profile-summary-card h2 { margin: 0; font-size: 1.05rem; }.profile-summary-card > p { margin: 3px 0; color: var(--ink-soft); font-size: .65rem; }.profile-summary-card > span { color: var(--muted); font-size: .57rem; }.profile-meter + .sidebar-user {}
.profile-summary-card .profile-meter {}.profile-summary-card .ring { width: 42px; height: 42px; }.profile-summary-card .profile-strength {}
.profile-summary-card .profile-ring { margin: 22px 0; padding: 14px 0; display: flex; align-items: center; justify-content: center; gap: 10px; border-block: 1px solid var(--line); }.profile-summary-card .profile-ring strong { color: var(--teal); font-size: .65rem; }.profile-summary-card ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; text-align: left; }.profile-summary-card li { color: var(--muted); font-size: .61rem; }.profile-summary-card li::before { content: "○"; margin-right: 8px; color: var(--line); }.profile-summary-card li.done { color: var(--ink-soft); }.profile-summary-card li.done::before { content: "✓"; color: var(--teal); font-weight: 850; }
.profile-form { display: grid; gap: 16px; }.profile-form > section { padding: 22px; }.form-section-head { min-height: 48px; display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }.form-section-head h2 { margin: 0 0 3px; font-size: .9rem; }.form-section-head p { margin: 0; color: var(--muted); font-size: .59rem; }.form-section-head > span { border-radius: 20px; padding: 5px 8px; background: var(--mint); color: var(--teal); font-size: .49rem; font-weight: 820; }.form-section-head > button { border: 0; background: transparent; color: var(--teal); font-size: .61rem; font-weight: 780; cursor: pointer; }.profile-form label, .role-modal form label { display: grid; gap: 6px; }.profile-form label > span, .role-modal form label > span { color: var(--ink-soft); font-size: .61rem; font-weight: 720; }.profile-form input, .profile-form select, .profile-form textarea, .role-modal input, .role-modal select, .role-modal textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; background: #fff; color: var(--ink); outline: none; font-size: .68rem; }.profile-form input:focus, .profile-form select:focus, .profile-form textarea:focus, .role-modal input:focus, .role-modal select:focus, .role-modal textarea:focus { border-color: #80bdb5; box-shadow: 0 0 0 3px rgba(13,119,119,.07); }.full-label, .full-label input {}.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 8px; }.profile-form .full label {}
.profile-form .full-label {}.profile-form .full-label input {}.profile-form .full-label textarea {}.profile-form .full-label select {}.profile-form label.full-label {}.profile-form > section > label { margin-top: 10px; }.profile-form > section > label + label { margin-top: 12px; }
.skill-list {}.skill-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }.skill-pills span, .skill-pills > button { border: 1px solid var(--line); border-radius: 30px; padding: 6px 9px; background: #f5f8f7; color: var(--ink-soft); font-size: .56rem; }.skill-pills span button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }.skill-pills > button { background: #fff; color: var(--teal); cursor: pointer; }.experience-row { min-height: 72px; border-top: 1px solid #edf1f0; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 10px; }.experience-row strong, .experience-row p, .experience-row small { display: block; }.experience-row strong { font-size: .66rem; }.experience-row p { margin: 1px 0; color: var(--ink-soft); font-size: .59rem; }.experience-row small { color: var(--muted); font-size: .53rem; }.experience-row > button { border: 0; background: transparent; color: var(--teal); font-size: .58rem; cursor: pointer; }

/* Hiring workspace */
.manager-dashboard { --workspace-accent: #54658e; }
.manager-dashboard .app-nav button.active .nav-symbol { background: #4f6087; }
.manager-dashboard .metric-head i { background: #eef0f7; color: #53618a; }
.manager-dashboard .metric-main em.trend { background: #eef0f7; color: #52618a; }
.manager-overview-grid { grid-template-columns: minmax(0, 1.85fr) minmax(275px, .6fr); }
.pipeline-card { overflow: hidden; }
.mini-kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.kanban-column { border-radius: 12px; padding: 9px; background: #f5f7f7; }
.kanban-column > header, .full-kanban > section > header { display: flex; justify-content: space-between; padding: 4px 3px 9px; color: var(--muted); font-size: .53rem; letter-spacing: .07em; }
.kanban-column > header span, .full-kanban > section > header span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #e5ebea; font-size: .5rem; }
.kanban-column article { min-height: 116px; margin-bottom: 8px; border: 1px solid #e1e8e7; border-radius: 10px; padding: 10px; background: #fff; box-shadow: 0 4px 12px rgba(25,55,61,.03); }
.kanban-column article:last-child { margin-bottom: 0; }
.kanban-column article.highlight-candidate, .full-kanban article.highlight-candidate { border-color: #99cfc6; box-shadow: inset 3px 0 var(--teal); }
.candidate-card-head { display: flex; align-items: center; gap: 8px; }
.candidate-card-head .avatar { width: 31px; height: 31px; font-size: .5rem; }
.candidate-card-head strong, .candidate-card-head small { display: block; }
.candidate-card-head strong { font-size: .61rem; }
.candidate-card-head small { color: var(--teal); font-size: .5rem; font-weight: 740; }
.kanban-column article > p { margin: 9px 0; color: var(--muted); font-size: .52rem; }
.tiny-tags, .candidate-skills { display: flex; flex-wrap: wrap; gap: 4px; }
.tiny-tags span { border-radius: 20px; padding: 3px 5px; background: var(--mint); color: var(--teal); font-size: .45rem; }
.candidate-focus { text-align: center; }
.large-avatar.small-large { width: 58px; height: 58px; margin-bottom: 8px; border-radius: 18px; font-size: .85rem; }
.candidate-focus h3 { margin: 0; font-size: .8rem; }
.candidate-focus p { margin: 2px 0 10px; color: var(--muted); font-size: .55rem; }
.mini-pipeline { width: 115px; height: 5px; border-radius: 10px; overflow: hidden; background: var(--line); }
.mini-pipeline i { display: block; height: 100%; border-radius: inherit; background: #5c6c96; }
.manager-status strong { color: #405077; }
.role-management-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.managed-role { min-height: 390px; border: 1px solid var(--line); border-radius: 18px; padding: 21px; display: flex; flex-direction: column; background: #fff; box-shadow: 0 8px 26px rgba(25,55,61,.035); }
.managed-role.priority { border-color: #aab5d2; background: linear-gradient(145deg,#fff,#f7f8fc); }
.managed-role-head { display: grid; grid-template-columns: 45px 1fr auto; align-items: start; }
.managed-role-head > span:nth-child(2) { width: max-content; margin-left: 9px; border-radius: 20px; padding: 4px 7px; font-size: .49rem; font-weight: 820; }
.priority-label { background: var(--coral-soft); color: #a44e37; }
.active-label { background: #eef0f7; color: #52618b; }
.managed-role-head > button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.managed-role h2 { margin: 28px 0 4px; font-size: 1.08rem; letter-spacing: -.03em; }
.managed-role > p { margin: 0; color: var(--muted); font-size: .64rem; }
.role-metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin: 23px 0; padding: 15px 0; border-block: 1px solid var(--line); }
.role-metrics > div { border-right: 1px solid var(--line); text-align: center; }
.role-metrics > div:last-child { border: 0; }
.role-metrics strong, .role-metrics span { display: block; }
.role-metrics strong { font-size: 1.05rem; }
.role-metrics span { color: var(--muted); font-size: .5rem; }
.role-progress > span { height: 6px; display: block; overflow: hidden; border-radius: 10px; background: #e7eceb; }
.role-progress > span b { display: block; height: 100%; border-radius: inherit; background: #59698f; }
.role-progress small { display: block; margin-top: 7px; color: var(--muted); font-size: .54rem; }
.managed-role-actions { display: flex; gap: 7px; margin-top: auto; }
.managed-role-actions .btn { flex: 1; min-height: 40px; font-size: .64rem; }
.candidate-toolbar { display: flex; align-items: flex-start; justify-content: space-between; }
.candidate-toolbar > div:last-child { display: flex; gap: 4px; }
.candidate-toolbar > div:last-child button.active { background: #eef0f7; color: #4d5c82; }
.full-kanban { min-width: 950px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; padding-bottom: 5px; }
.full-kanban > section { min-height: 515px; border-radius: 14px; padding: 10px; background: #edf1f1; }
.full-kanban article { min-height: 164px; margin-bottom: 9px; border: 1px solid #dfe6e5; border-radius: 11px; padding: 12px; background: #fff; box-shadow: 0 4px 14px rgba(25,55,61,.04); }
.full-kanban article > p { margin: 11px 0; color: var(--muted); font-size: .57rem; }
.full-kanban article footer { margin-top: 18px; padding-top: 9px; border-top: 1px solid #edf1f0; display: flex; justify-content: space-between; color: var(--muted); font-size: .51rem; }
.full-kanban article footer button { border: 0; padding: 0; background: transparent; color: var(--teal); font-size: .52rem; font-weight: 750; cursor: pointer; }
.interview-chip { border-radius: 8px; padding: 7px; background: #eef0f7; color: #52618b; font-size: .54rem; }
.manager-calendar .calendar-days span.has-event i { background: #59698f; }
.candidate-focus.horizontal { display: flex; align-items: center; gap: 12px; text-align: left; }
.candidate-focus.horizontal .large-avatar { margin: 0; }
.candidate-focus.horizontal h2 { margin: 0; }
.candidate-focus.horizontal p { margin: 3px 0; }
.compact-interview { display: grid; grid-template-columns: 46px 1fr; gap: 9px; align-items: center; padding: 11px 0; border-top: 1px solid var(--line); }
.compact-interview > span { color: #55648b; font-size: .51rem; font-weight: 800; }
.compact-interview strong, .compact-interview small { display: block; }
.compact-interview strong { font-size: .62rem; }
.compact-interview small { color: var(--muted); font-size: .52rem; }
.compact-upload { min-height: 118px; grid-template-columns: 50px 1fr auto; justify-items: start; align-content: center; padding: 24px; text-align: left; }
.compact-upload .upload-icon { margin: 0; }
.compact-upload .btn { min-width: 120px; }
.settings-layout { display: grid; grid-template-columns: 220px 1fr; gap: 16px; align-items: start; }
.settings-nav { border: 1px solid var(--line); border-radius: 16px; padding: 8px; display: grid; background: #fff; }
.settings-nav button { border: 0; border-radius: 9px; padding: 11px 12px; background: transparent; color: var(--muted); text-align: left; font-size: .64rem; cursor: pointer; }
.settings-nav button.active { background: #eef0f7; color: #48577d; font-weight: 760; }
.settings-card { border: 1px solid var(--line); border-radius: 18px; padding: 23px; background: #fff; }
.team-list article { min-height: 68px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 39px 1fr auto 40px; gap: 10px; align-items: center; }
.team-list strong, .team-list small { display: block; }
.team-list strong { font-size: .65rem; }
.team-list small { color: var(--muted); font-size: .54rem; }
.team-list article > b { border-radius: 20px; padding: 5px 8px; background: #eef0f7; color: #55638a; font-size: .5rem; }
.team-list article > button { border: 0; background: transparent; color: var(--muted); font-size: .58rem; cursor: pointer; }
.pending-member { opacity: .75; }
.integration-note { margin-top: 25px; border-radius: 13px; padding: 15px; display: grid; grid-template-columns: 38px 1fr auto; gap: 11px; align-items: center; background: #f7f8fb; }
.integration-note > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 10px; background: #e8ebf3; color: #53618a; }
.integration-note strong { font-size: .66rem; }
.integration-note p { margin: 2px 0 0; color: var(--muted); font-size: .54rem; }
.integration-note .btn { min-height: 37px; font-size: .59rem; }

/* Role creation modal */
.role-modal { position: fixed; z-index: 320; inset: 0; display: grid; place-items: center; padding: 18px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.role-modal.open { opacity: 1; pointer-events: auto; }
.role-modal > section { position: relative; z-index: 1; width: min(540px, 100%); max-height: calc(100svh - 35px); overflow-y: auto; border-radius: 22px; padding: 34px; background: #fff; box-shadow: 0 35px 100px rgba(15,28,32,.26); transform: translateY(12px) scale(.985); transition: transform .28s var(--ease); }
.role-modal.open > section { transform: none; }
.role-modal h2 { margin: 0 0 7px; font-size: 2.2rem; letter-spacing: -.05em; }
.role-modal > section > p:not(.eyebrow) { margin: 0 0 20px; color: var(--muted); font-size: .72rem; }
.role-modal form { display: grid; gap: 13px; }
.role-modal form > small { color: var(--muted-2); font-size: .57rem; text-align: center; }

@media (max-width: 1200px) {
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-columns, .manager-overview-grid { grid-template-columns: 1fr; }
  .right-stack { grid-template-columns: 1fr 1fr; }
  .job-grid-grid, .role-management-grid { grid-template-columns: 1fr 1fr; }
  .mini-kanban { overflow-x: auto; grid-template-columns: repeat(3, minmax(210px, 1fr)); }
}

@media (max-width: 900px) {
  .app-sidebar { transform: translateX(-102%); transition: transform .3s var(--ease); }
  body.sidebar-open .app-sidebar { transform: translateX(0); }
  body.sidebar-open .sidebar-overlay { opacity: 1; pointer-events: auto; }
  .sidebar-close { display: block; }
  .app-main { margin-left: 0; }
  .app-topbar { left: 0; }
  .app-menu { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 10px; display: block; background: #fff; }
  .app-menu span { display: block; width: 17px; height: 1px; margin: 5px auto; background: var(--ink); }
  .mobile-app-brand { display: flex; align-items: center; gap: 8px; margin-right: auto; }
  .mobile-app-brand .brand-mark { width: 28px; height: 28px; border-radius: 8px; }
  .mobile-app-brand strong { font-size: .73rem; letter-spacing: -.03em; }.mobile-app-brand em { color: var(--teal); font-style: normal; }
  .app-search { display: none; }
  .settings-layout { grid-template-columns: 1fr; }
  .settings-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .app-main { padding: 88px 15px 40px; }
  .app-topbar { height: 68px; padding: 0 15px; }
  .topbar-user > span:nth-child(2), .topbar-user > b { display: none; }
  .topbar-user { display: block; min-height: 40px; padding: 2px; }
  .view-heading { min-height: auto; margin-bottom: 24px; flex-direction: column; }
  .view-heading h1 { font-size: clamp(2.35rem, 12vw, 3.5rem); }
  .view-heading > .btn { width: 100%; margin-top: 2px; }
  .metric-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .metric-card { min-height: 180px; padding: 15px; }
  .metric-main strong { font-size: 2rem; }
  .right-stack { grid-template-columns: 1fr; }
  .panel-card, .data-card, .activity-card { padding: 16px; }
  .role-row { grid-template-columns: 38px 1fr auto; gap: 9px; padding: 8px 0; }
  .role-row .save-btn { display: none; }.role-info > div { display: none; }
  .activity-track { min-width: 650px; }
  .activity-card { overflow-x: auto; }
  .job-grid-grid, .role-management-grid { grid-template-columns: 1fr; }
  .status-summary, .file-summary { grid-template-columns: 1fr 1fr; }.status-summary > div:nth-child(2), .file-summary > div:nth-child(2) { border-right: 0; }.status-summary > div:nth-child(-n+2), .file-summary > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .table-toolbar { align-items: flex-start; gap: 10px; flex-direction: column; }
  .messaging-shell { height: auto; min-height: 740px; grid-template-columns: 1fr; grid-template-rows: 108px minmax(630px, 1fr); }
  .conversation-list { display: flex; overflow-x: auto; overflow-y: hidden; border-right: 0; border-bottom: 1px solid var(--line); }.conversation-search { display: none; }.conversation { min-width: 245px; min-height: 107px; border-top: 0; border-right: 1px solid var(--line); }.conversation.active { box-shadow: inset 0 -3px var(--teal); }.conversation > i { bottom: 18px; }
  .chat-panel { grid-template-rows: 58px 55px minmax(430px, 1fr) auto; }
  .context-banner button { display: none; }.bubble-row > div { max-width: 88%; }.message-composer { grid-template-columns: 1fr 38px; }.composer-tools { display: none; }
  .calendar-layout { grid-template-columns: 1fr; }.calendar-card { padding: 14px; }.calendar-days span { min-height: 50px; padding: 7px; }.calendar-days span.has-event i { left: 6px; right: 6px; bottom: 6px; }
  .file-card-list article { min-height: 78px; grid-template-columns: 38px 1fr 30px; }.file-card-list article > b { display: none; }
  .compact-upload { grid-template-columns: 44px 1fr; }.compact-upload .btn { grid-column: 1 / -1; width: 100%; }
  .profile-layout { grid-template-columns: 1fr; }.profile-summary-card { position: static; }.form-two { grid-template-columns: 1fr; }
  .role-management-grid { grid-template-columns: 1fr; }.full-kanban { min-width: 860px; }.dashboard-view[data-view="candidates"] { overflow-x: auto; }
  .candidate-toolbar { min-width: 860px; }
  .settings-nav { overflow-x: auto; grid-template-columns: repeat(5, minmax(130px, 1fr)); }.team-list article { grid-template-columns: 38px 1fr 35px; }.team-list article > b { display: none; }.integration-note { grid-template-columns: 38px 1fr; }.integration-note .btn { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 480px) {
  .mobile-app-brand strong { display: none; }
  .metric-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 166px; }
  .card-heading { gap: 10px; }
  .status-summary > div, .file-summary > div { padding: 14px; }
  .calendar-week span { padding-inline: 2px; }.calendar-days span { min-height: 43px; }
  .role-modal > section { padding: 28px 20px; }.role-modal .form-two { grid-template-columns: 1fr; }
}
