:root {
  --text: #050505;
  --muted: #666666;
  --subtle: #9a9a9a;
  --line: #e9e9e9;
  --panel: #ffffff;
  --soft: #f7f7f5;
  --mint-soft: #d9f8ef;
  --mint: #5bc9ae;
  --blue-soft: #e8f5ff;
  --blue: #79bdf4;
  --purple: #9b72d9;
  --peach-soft: #ffe1d8;
  --orange-soft: #ffe5bd;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.06);
  --radius-card: 16px;
  --radius-modal: 22px;
  --radius-pill: 999px;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 48px));
  height: 82px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
}

.brand svg {
  width: 42px;
  height: 42px;
}

.brand-vertiv {
  width: 142px;
}

.brand-vertiv img {
  display: block;
  width: 138px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 700;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 42px;
  border-radius: var(--radius-pill);
  color: #161616;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-link:hover {
  background: #f1f1f1;
}

.nav-link.is-active {
  color: #ffffff;
  background: #000000;
}

.section-anchor {
  scroll-margin-top: 96px;
}

.public-main {
  min-height: calc(100vh - 82px);
}

.public-page {
  min-height: calc(100vh - 82px);
}

.public-page + .public-page {
  margin-top: clamp(120px, 18vh, 180px);
}

.section-separated {
  position: relative;
  padding-top: 0;
}

.section-separated::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  content: "";
  transform: translateX(-50%);
}

.hero,
.job-section,
.growth-section,
.admin-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 80px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 72px 0 84px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  color: #000000;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
}

.role-line {
  display: inline-flex;
  align-items: center;
  margin: 16px 0 26px;
  color: var(--purple);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.25;
}

.typewriter-loop {
  position: relative;
  display: inline-block;
  width: 0;
  max-width: 30ch;
  overflow: hidden;
  white-space: nowrap;
  animation: typewriterReveal 4.8s steps(30, end) infinite;
}

.typewriter-loop::after {
  position: absolute;
  top: 0.08em;
  right: 0;
  width: 2px;
  height: 1.1em;
  background: currentColor;
  content: "";
  animation: caretBlink 780ms steps(1, end) infinite;
}

.hero-text {
  max-width: 590px;
  margin: 0;
  color: #303030;
  font-size: 17px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  color: #ffffff;
  background: #000000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.button-outline {
  color: #000000;
  border: 2px solid #000000;
  background: #ffffff;
}

.button-mint {
  color: #04130f;
  background: var(--mint-soft);
}

.button.small {
  min-height: 36px;
  padding: 0 18px;
  font-size: 13px;
}

.button.full {
  width: 100%;
}

.matcher-card {
  width: min(620px, 100%);
  margin-top: 48px;
  padding: 18px;
  border: 1px solid #f0f0f0;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.matcher-title {
  margin: 0 0 12px 4px;
  color: #4e4e4e;
  font-size: 13px;
  font-weight: 800;
}

.resume-input-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px;
  gap: 12px;
}

.upload-field {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid #d8d8d8;
  border-radius: var(--radius-pill);
  color: #777777;
  background: #ffffff;
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.matcher-card textarea {
  width: 100%;
  margin-top: 12px;
  padding: 14px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  resize: vertical;
  outline: none;
}

.matcher-card textarea:focus,
.filter-panel input:focus,
.filter-panel select:focus,
.package-preview input:focus,
.package-preview textarea:focus,
.apply-form input:focus,
.apply-form textarea:focus {
  border-color: #111111;
}

.matcher-progress {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.progress-step {
  position: relative;
  display: grid;
  gap: 3px;
  min-height: 52px;
  padding: 9px 11px;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  background: #ffffff;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.progress-step strong {
  color: var(--subtle);
  font-size: 10px;
  letter-spacing: 0;
}

.progress-step em {
  color: #161616;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.progress-step.is-active {
  border-color: rgba(0, 0, 0, 0.16);
  background: var(--blue-soft);
  transform: translateY(-1px);
  animation: progressPulse 1.2s ease-in-out infinite alternate;
}

.progress-step.is-done {
  color: #124534;
  border-color: rgba(91, 201, 174, 0.35);
  background: var(--mint-soft);
}

.progress-step.is-done em {
  color: #124534;
}

.progress-track {
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #ededed;
}

.progress-track::before {
  display: block;
  width: var(--progress, 42%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--blue));
  transition: width 220ms ease;
  content: "";
}

.progress-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.progress-status p {
  margin: 0;
  color: #303030;
  font-weight: 700;
  line-height: 1.45;
}

.progress-status span {
  flex: 0 0 auto;
  color: var(--subtle);
  font-size: 12px;
}

.progress-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.progress-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  color: #333333;
  background: var(--soft);
}

.progress-signals span:nth-child(2) {
  background: var(--mint-soft);
}

.progress-signals span:nth-child(3) {
  background: var(--peach-soft);
}

.progress-signals span:nth-child(4) {
  background: var(--blue-soft);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.portrait-sticker {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 300px;
  height: 430px;
  border: 7px solid var(--mint);
  border-radius: 46% 46% 20% 20%;
  background:
    linear-gradient(#f4d1c5 0 42%, transparent 42%),
    linear-gradient(140deg, #b87797 0 48%, #8d4e68 48% 100%);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.portrait-head {
  position: absolute;
  top: 70px;
  left: 88px;
  width: 118px;
  height: 132px;
  border-radius: 42% 42% 48% 48%;
  background: #f2cdbf;
  box-shadow: inset 0 -16px 0 rgba(176, 98, 82, 0.16);
}

.portrait-hair {
  position: absolute;
  top: 52px;
  left: 68px;
  width: 160px;
  height: 180px;
  border-radius: 48% 52% 42% 48%;
  background: #432d28;
}

.portrait-face {
  position: absolute;
  top: 112px;
  left: 106px;
  display: flex;
  gap: 36px;
}

.portrait-face span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #111111;
}

.portrait-body {
  position: absolute;
  right: 42px;
  bottom: 0;
  left: 42px;
  height: 190px;
  border-radius: 46px 46px 0 0;
  background: #b97598;
}

.mini-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 6px;
  min-width: 130px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.mini-card strong {
  color: var(--muted);
  font-size: 13px;
}

.mini-card span {
  font-size: 28px;
  font-weight: 900;
}

.score-card {
  top: 112px;
  left: 44px;
}

.pipeline-card {
  right: 0;
  bottom: 18px;
}

.section-heading {
  text-align: center;
  margin: 40px 0 44px;
}

.section-heading h2 {
  font-size: 42px;
}

.section-heading h1 {
  margin: 0;
  color: #000000;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.08;
}

.job-section,
.growth-section,
.admin-section {
  padding: 64px 0;
}

.admin-page-main {
  min-height: calc(100vh - 82px);
}

.standalone-admin {
  padding-top: 44px;
}

.job-board {
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.07);
}

.job-overview {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.job-overview h3 {
  margin: 10px 0 14px;
  font-size: 30px;
  line-height: 1.2;
}

.job-overview p {
  max-width: 650px;
  color: #303030;
  line-height: 1.7;
}

.job-kicker {
  margin: 0;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 900;
}

.job-overview dl {
  display: grid;
  gap: 16px;
  min-width: 190px;
  margin: 0;
}

.job-overview dt {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
}

.job-overview dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.ability-tags,
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ability-tags {
  margin: 28px 0 32px;
}

.ability-tags span,
.tool-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  color: #1a4f69;
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.tool-tags span {
  color: #124534;
  background: var(--mint-soft);
}

.divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 10px 0 28px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.divider::before,
.divider::after {
  flex: 1;
  height: 1px;
  background: var(--line);
  content: "";
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  display: grid;
  gap: 12px;
  padding: 0 0 20px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  text-align: left;
  background: #ffffff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.04);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.project-card strong,
.project-card p,
.project-card small {
  margin-right: 18px;
  margin-left: 18px;
}

.project-card strong {
  font-size: 17px;
}

.project-card p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.project-card small {
  font-weight: 900;
}

.project-cover {
  display: block;
  height: 178px;
  background-size: 70px 70px, auto;
}

.cover-a {
  background:
    radial-gradient(circle at 38px 38px, rgba(91, 201, 174, 0.45) 0 14px, transparent 15px),
    linear-gradient(135deg, #eaf8ff, #f5ffff);
}

.cover-b {
  background:
    linear-gradient(90deg, transparent 0 30%, rgba(121, 189, 244, 0.28) 30% 31%, transparent 31%),
    linear-gradient(135deg, #effbf7, #f7f4ff);
}

.cover-c {
  background:
    repeating-linear-gradient(0deg, rgba(155, 114, 217, 0.12) 0 8px, transparent 8px 18px),
    linear-gradient(135deg, #f2ffff, #fff8e8);
}

.growth-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 76px;
  align-items: start;
}

.inline-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.inline-heading span {
  width: 6px;
  height: 28px;
  border-radius: var(--radius-pill);
}

.inline-heading.mint span {
  background: var(--mint-soft);
}

.inline-heading.peach span {
  background: var(--peach-soft);
}

.inline-heading h2 {
  margin: 0;
  font-size: 30px;
}

.feature-project {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.feature-visual {
  padding: 24px;
}

.browser-window {
  position: relative;
  height: 190px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #dbf8ef, #f0ebff) border-box;
  border: 1px solid transparent;
}

.browser-window > span {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 14px 0 0 10px;
  border-radius: 50%;
  background: #d8d8d8;
}

.browser-chart {
  position: absolute;
  inset: 52px 30px 26px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, #d9f8ef 0 34%, transparent 34%),
    linear-gradient(180deg, #e8f5ff, #ffffff);
}

.browser-chart::before,
.browser-chart::after {
  position: absolute;
  content: "";
}

.browser-chart::before {
  inset: 22px 24px auto;
  height: 14px;
  border-radius: var(--radius-pill);
  background: #79bdf4;
  box-shadow:
    0 30px 0 #d9f8ef,
    0 60px 0 #ffe1d8;
}

.browser-chart::after {
  right: 24px;
  bottom: 24px;
  width: 74px;
  height: 74px;
  border: 12px solid var(--mint);
  border-left-color: #e8f5ff;
  border-radius: 50%;
}

.feature-body {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0 24px 24px;
}

.feature-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.feature-body p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

.tool-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.tool-list article {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.tool-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.tool-icon.blue {
  background: var(--blue-soft);
}

.tool-icon.green {
  background: var(--mint-soft);
}

.tool-icon.peach {
  background: var(--peach-soft);
}

.tool-list strong {
  display: block;
}

.tool-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.phone-shell {
  position: relative;
  width: 318px;
  margin: 0 auto;
  padding: 34px 20px 22px;
  border: 9px solid #000000;
  border-radius: 48px;
  background: #ffffff;
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 96px;
  height: 24px;
  border-radius: var(--radius-pill);
  background: #000000;
  transform: translateX(-50%);
}

.phone-content {
  padding-top: 30px;
}

.phone-content h3 {
  margin: 0 0 18px;
  color: #f04964;
  font-size: 30px;
}

.note-card {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 18px;
}

.note-card p {
  margin: 0;
  color: #4c4c4c;
  font-size: 13px;
  line-height: 1.5;
}

.note-card small {
  justify-self: end;
  color: #f04964;
  font-weight: 900;
}

.note-green {
  background: #e7f7ee;
}

.note-blue {
  background: #eef6ff;
}

.note-orange {
  background: #fff0dc;
}

.daily-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.daily-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.daily-metrics span {
  display: grid;
  min-width: 130px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7fbff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.daily-metrics strong {
  color: #111111;
  font-size: 28px;
  line-height: 1;
}

.daily-recommendation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.daily-recommendation-list article {
  padding: 16px;
  border-radius: 16px;
  background: #f9fbf7;
}

.daily-recommendation-list p {
  margin: 8px 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.55;
}

.daily-recommendation-list small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
}

.filter-panel,
.candidate-panel {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.filter-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.filter-panel label,
.package-preview label,
.apply-form label {
  display: grid;
  gap: 8px;
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 900;
}

.filter-panel input,
.filter-panel select,
.package-preview input,
.package-preview textarea,
.apply-form input,
.apply-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dddddd;
  border-radius: 14px;
  outline: none;
  background: #ffffff;
}

.package-preview textarea,
.apply-form textarea {
  padding-top: 12px;
  line-height: 1.55;
  resize: vertical;
}

.filter-hint {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.candidate-panel {
  overflow: hidden;
}

.table-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.table-header strong {
  margin-right: 10px;
  font-size: 18px;
}

.table-header span {
  color: var(--muted);
  font-size: 13px;
}

.text-button {
  border: 0;
  color: #000000;
  background: transparent;
  font-weight: 900;
}

.candidate-list {
  display: grid;
}

.candidate-row {
  display: grid;
  grid-template-columns: 36px minmax(160px, 1fr) 120px 130px 110px 92px;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 16px 24px;
  border-bottom: 1px solid #f2f2f2;
}

.candidate-row:last-child {
  border-bottom: 0;
}

.candidate-main strong {
  display: block;
}

.candidate-main span,
.candidate-meta,
.candidate-score small {
  color: var(--muted);
  font-size: 13px;
}

.candidate-score strong {
  display: block;
  font-size: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: #174d39;
  background: var(--mint-soft);
  font-size: 12px;
  font-weight: 900;
}

.chip.blue {
  color: #1a4f69;
  background: var(--blue-soft);
}

.chip.peach {
  color: #744333;
  background: var(--peach-soft);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 16px;
  color: #ffffff;
  background: #000000;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  width: min(720px, calc(100% - 32px));
  padding: 0;
  border: 0;
  background: transparent;
}

.result-modal {
  width: min(760px, calc(100% - 32px));
}

.apply-modal {
  width: min(760px, calc(100% - 32px));
}

.wide-modal {
  width: min(980px, calc(100% - 32px));
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  overflow: auto;
  background: rgba(0, 0, 0, 0.28);
}

.modal-overlay[hidden] {
  display: none !important;
}

.blurred-modal-overlay {
  backdrop-filter: blur(14px) saturate(0.9);
}

.modal-overlay .modal {
  position: static;
  display: block;
  margin: 0;
  max-height: calc(100dvh - 64px);
  overflow: visible;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
}

.modal-shell {
  padding: 24px;
  border-radius: var(--radius-modal);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.result-modal .modal-shell,
.apply-modal .modal-shell {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(1.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
}

.modal-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
}

.modal-title h3 {
  margin: 0;
  font-size: 22px;
}

.modal-title span {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  background: var(--peach-soft);
  font-size: 12px;
  font-weight: 900;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #000000;
  font-size: 24px;
  line-height: 1;
}

.candidate-profile-card {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
}

.candidate-profile-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.candidate-profile-card h4 {
  margin: 0;
  color: #2882bd;
  font-size: 15px;
}

.candidate-profile-card header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.candidate-profile-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.candidate-profile-item {
  min-width: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7f7f7;
}

.candidate-profile-item span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.candidate-profile-item strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: #161616;
  font-size: 14px;
}

.matrix-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
}

.score-circle {
  display: grid;
  place-items: center;
  align-content: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--peach-soft);
}

.score-circle small {
  color: var(--muted);
  font-size: 12px;
}

.score-circle strong {
  font-size: 34px;
  line-height: 1;
}

.score-circle span {
  font-size: 13px;
  font-weight: 800;
}

.score-bars {
  display: grid;
  gap: 14px;
}

.bar-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.bar-track {
  height: 8px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #ededed;
}

.bar-track span {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  animation: growBar 680ms ease-out both;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.result-grid article {
  min-height: 150px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
}

.result-grid.compact article {
  min-height: 120px;
}

.result-grid h4,
.project-detail h4 {
  margin: 0 0 12px;
  color: #2882bd;
  font-size: 15px;
}

.result-grid p,
.result-grid ul {
  margin: 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.65;
}

.result-grid ul {
  padding-left: 18px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.project-detail {
  display: grid;
  gap: 26px;
}

.project-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border-radius: 16px;
  background: #f6f9ff;
}

.project-detail-head small {
  color: var(--muted);
  font-weight: 900;
}

.project-detail-head h3 {
  margin: 8px 0 0;
  font-size: 24px;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.responsibility-grid article,
.outcome-grid article {
  min-height: 120px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.responsibility-grid article:nth-child(1) {
  background: linear-gradient(#e8f5ff 0 42px, #ffffff 42px);
}

.responsibility-grid article:nth-child(2) {
  background: linear-gradient(#d9f8ef 0 42px, #ffffff 42px);
}

.responsibility-grid article:nth-child(3) {
  background: linear-gradient(#ffe5bd 0 42px, #ffffff 42px);
}

.responsibility-grid article:nth-child(4) {
  background: linear-gradient(#eee6ff 0 42px, #ffffff 42px);
}

.responsibility-grid strong,
.outcome-grid strong {
  display: block;
  margin-bottom: 12px;
}

.responsibility-grid p,
.outcome-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.candidate-detail {
  display: grid;
  gap: 18px;
}

.candidate-detail-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
}

.candidate-card {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
}

.candidate-card h4 {
  margin: 0 0 12px;
}

.candidate-card p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.package-preview {
  display: grid;
  gap: 14px;
}

.attachment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.attachment-list span {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
}

.package-manifest {
  display: grid;
  gap: 12px;
}

.package-manifest article {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
}

.package-manifest p {
  margin: 8px 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.package-manifest small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@keyframes typewriterReveal {
  0%,
  12% {
    width: 0;
  }

  62%,
  86% {
    width: 30ch;
  }

  100% {
    width: 0;
  }
}

@keyframes caretBlink {
  50% {
    opacity: 0;
  }
}

@keyframes loadingBar {
  from {
    transform: translateX(-10%);
  }

  to {
    transform: translateX(150%);
  }
}

@keyframes progressPulse {
  from {
    box-shadow: 0 0 0 rgba(121, 189, 244, 0);
  }

  to {
    box-shadow: 0 8px 18px rgba(121, 189, 244, 0.18);
  }
}

@keyframes growBar {
  from {
    width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .progress-step,
  .progress-track::before {
    transition: none;
  }

  .progress-step.is-active {
    animation: none;
    transform: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 28px, 720px);
    height: auto;
    padding: 12px 0;
    align-items: flex-start;
    gap: 16px;
  }

  .brand-vertiv {
    width: 118px;
    min-width: 118px;
  }

  .brand-vertiv img {
    width: 112px;
  }

  .main-nav {
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .nav-link {
    min-width: max-content;
    padding: 0 16px;
  }

  .hero,
  .job-section,
  .growth-section,
  .admin-section {
    width: min(100% - 28px, 720px);
  }

  .hero,
  .growth-section,
  .admin-layout,
  .job-overview {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 40px;
    padding-top: 42px;
  }

  .hero h1,
  .section-heading h2 {
    font-size: 42px;
  }

  .role-line {
    font-size: 20px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .portrait-sticker {
    right: 50%;
    transform: translateX(50%);
  }

  .project-grid,
  .result-grid,
  .form-grid,
  .daily-recommendation-list,
  .responsibility-grid,
  .outcome-grid,
  .candidate-detail-grid {
    grid-template-columns: 1fr;
  }

  .candidate-row {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .candidate-row > *:nth-child(n + 3) {
    grid-column: 2;
  }

  .matrix-card {
    grid-template-columns: 1fr;
  }

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

  .score-circle {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 112px;
  }

  body {
    overflow-x: hidden;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    width: calc(100% - 24px);
    padding: 10px 0 8px;
    gap: 8px;
  }

  .brand-vertiv {
    width: 116px;
    min-width: 116px;
    height: 34px;
  }

  .brand-vertiv img {
    width: 108px;
  }

  .main-nav {
    width: 100%;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 2px 8px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-link {
    min-width: max-content;
    height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .section-anchor {
    scroll-margin-top: 112px;
  }

  .public-page {
    min-height: auto;
  }

  .public-page + .public-page {
    margin-top: clamp(72px, 12vh, 104px);
  }

  .hero,
  .job-section,
  .growth-section,
  .admin-section {
    width: calc(100% - 24px);
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding: 34px 0 52px;
  }

  .hero h1,
  .section-heading h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  .role-line {
    margin: 12px 0 20px;
    font-size: 19px;
  }

  .typewriter-loop {
    max-width: calc(100vw - 32px);
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .matcher-card {
    margin-top: 30px;
    padding: 14px;
    border-radius: 18px;
  }

  .resume-input-grid {
    grid-template-columns: 1fr;
  }

  .matcher-card textarea {
    min-height: 112px;
  }

  .progress-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-visual {
    min-height: clamp(260px, 74vw, 340px);
  }

  .portrait-sticker {
    right: 50%;
    bottom: -38px;
    transform: translateX(50%) scale(0.72);
    transform-origin: center bottom;
  }

  .mini-card {
    min-width: 112px;
    padding: 13px 15px;
    border-radius: 16px;
  }

  .mini-card span {
    font-size: 22px;
  }

  .score-card {
    top: 22px;
    left: 0;
  }

  .pipeline-card {
    right: 0;
    bottom: 8px;
  }

  .section-heading {
    margin: 18px 0 28px;
  }

  .job-section,
  .growth-section,
  .admin-section {
    padding: 44px 0;
  }

  .job-board {
    padding: 20px;
    border-radius: 22px;
  }

  .job-overview {
    flex-direction: column;
    gap: 22px;
  }

  .job-overview h3 {
    font-size: 26px;
  }

  .job-overview p {
    max-width: none;
  }

  .job-overview dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }

  .project-grid {
    gap: 14px;
  }

  .project-cover {
    height: 132px;
  }

  .growth-section {
    gap: 28px;
  }

  .inline-heading {
    margin-bottom: 20px;
  }

  .inline-heading h2 {
    font-size: 24px;
  }

  .feature-visual {
    padding: 16px;
  }

  .browser-window {
    height: 150px;
  }

  .tool-list article {
    min-height: 74px;
    padding: 16px;
  }

  .phone-shell {
    width: min(318px, 100%);
    border-width: 7px;
  }

  .modal-overlay {
    padding: 10px;
    align-items: start;
  }

  .modal,
  .result-modal,
  .apply-modal,
  .wide-modal {
    width: min(100%, calc(100vw - 20px));
  }

  .modal-overlay .modal {
    max-height: calc(100dvh - 20px);
  }

  .modal-shell {
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    padding: 16px;
    border-radius: 18px;
  }

  .modal-title {
    gap: 12px;
    margin-bottom: 14px;
  }

  .modal-title h3 {
    font-size: 20px;
  }

  .icon-button {
    flex: 0 0 36px;
  }

  .candidate-profile-card,
  .matrix-card,
  .result-grid article {
    padding: 16px;
  }

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

  .matrix-card {
    gap: 18px;
  }

  .bar-row {
    grid-template-columns: 78px minmax(0, 1fr) 30px;
    gap: 8px;
  }

  .result-grid {
    gap: 12px;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .hero-actions,
  .resume-input-grid,
  .feature-body,
  .modal-actions {
    flex-direction: column;
  }

  .resume-input-grid {
    display: flex;
  }

  .progress-steps {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .button,
  .upload-field {
    width: 100%;
  }

  .phone-shell {
    width: min(318px, 100%);
  }

  .modal-shell {
    padding: 18px;
  }
}
