:root {
  --canvas: #f7faf8;
  --mist: #e7f3ee;
  --foam: #d8f0e7;
  --paper: #ffffff;
  --ink: #10251f;
  --soft-ink: #334842;
  --muted: #66776f;
  --line: #dbe7e1;
  --green: #0f6b57;
  --green-deep: #093b31;
  --coral: #ff6f59;
  --blue: #2f6bff;
  --lilac: #eee8ff;
  --sun: #f4c95d;
  --shadow: 0 28px 80px rgba(15, 58, 48, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background:
    linear-gradient(120deg, rgba(216, 240, 231, 0.72), rgba(247, 250, 248, 0.2) 42%),
    linear-gradient(180deg, #f8fbf9 0%, #eef5f1 100%);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-shell {
  width: min(100% - 32px, 1440px);
  margin: 18px auto 54px;
}

.hero {
  position: relative;
  min-height: 800px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(216, 240, 231, 0.92)),
    var(--mist);
  border: 1px solid rgba(15, 107, 87, 0.16);
  border-radius: 8px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(15, 107, 87, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(15, 107, 87, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(120deg, transparent 0%, black 24%, black 76%, transparent 100%);
}

.nav {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 84px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 37, 31, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(15, 58, 48, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-weight: 900;
}

.brand-symbol {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, var(--green), var(--green-deep));
  border-radius: 8px;
  font-size: 17px;
  box-shadow: inset 0 -8px 16px rgba(255, 255, 255, 0.08);
}

.nav-links,
.nav-actions,
.quick-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  color: var(--soft-ink);
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--green-deep);
  background: var(--foam);
}

.nav-links a.current,
.current-button {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.nav-actions {
  justify-content: flex-end;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  color: var(--green-deep);
  background: #fff;
  border: 1px solid rgba(15, 107, 87, 0.2);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.button.dark {
  color: #fff;
  background: var(--green-deep);
  border-color: var(--green-deep);
  box-shadow: 0 12px 30px rgba(9, 59, 49, 0.18);
}

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

.hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.86fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: 660px;
  padding: 50px 28px 26px;
}

.hero-copy {
  max-width: 760px;
}

.notice,
.section-kicker,
.card-label {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--soft-ink);
  font-size: 19px;
  line-height: 1.8;
}

.search-card {
  max-width: 700px;
  margin-top: 34px;
}

.search-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 8px 8px 8px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 107, 87, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.search-line input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 18px;
  font-weight: 900;
}

.search-line button {
  min-height: 50px;
  padding: 0 22px;
  color: #fff;
  background: var(--green-deep);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.quick-tags {
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  min-height: 38px;
  padding: 0 14px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 107, 87, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.tag.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.hero-cards {
  position: relative;
  min-height: 540px;
}

.profile-card,
.match-card,
.source-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 37, 31, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-card {
  z-index: 2;
  right: 74px;
  top: 16px;
  width: 330px;
  padding: 10px;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.profile-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 14px;
  color: #fff;
  background: rgba(9, 59, 49, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.profile-caption strong,
.profile-caption span {
  display: block;
}

.profile-caption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.card-label {
  display: block;
  margin: 4px 0 8px;
  color: var(--muted);
  text-align: center;
}

.match-card {
  left: 0;
  top: 106px;
  width: 312px;
  padding: 26px;
  transform: rotate(-4deg);
}

.match-card strong {
  display: block;
  color: var(--coral);
  font-size: 88px;
  line-height: 0.9;
}

.match-card p {
  margin: 8px 0 18px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
}

.match-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-card li {
  padding: 9px 10px;
  color: var(--soft-ink);
  background: var(--mist);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.match-card li:nth-child(2) {
  background: #fff1ec;
}

.match-card li:nth-child(3) {
  background: #edf2ff;
}

.source-card {
  right: 0;
  bottom: 40px;
  width: 310px;
  padding: 24px;
  transform: rotate(3deg);
}

.source-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 24px;
}

.source-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.tilt-left {
  transform: rotate(1.5deg);
}

.finder-panel,
.jobs-section,
.learning-section {
  padding: 76px 34px;
  background: rgba(255, 255, 255, 0.78);
}

.system-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  border-top: 1px solid rgba(15, 107, 87, 0.1);
  border-bottom: 1px solid rgba(15, 107, 87, 0.1);
}

.system-strip article {
  min-height: 170px;
  padding: 22px;
  background: var(--mist);
  border: 1px solid rgba(15, 107, 87, 0.12);
  border-radius: 8px;
}

.system-strip article:nth-child(2) {
  background: #edf2ff;
  border-color: rgba(47, 107, 255, 0.16);
}

.system-strip article:nth-child(3) {
  background: #fff1ec;
  border-color: rgba(255, 111, 89, 0.18);
}

.system-strip article:nth-child(4) {
  background: var(--lilac);
  border-color: rgba(128, 93, 220, 0.18);
}

.system-strip span {
  display: inline-grid;
  min-width: 38px;
  height: 28px;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.system-strip article:nth-child(2) span {
  background: var(--blue);
}

.system-strip article:nth-child(3) span {
  background: var(--coral);
}

.system-strip article:nth-child(4) span {
  color: var(--green-deep);
  background: var(--sun);
}

.system-strip strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.system-strip p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.panel-head h2,
.section-title h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

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

.feature-card {
  min-height: 430px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 58, 48, 0.06);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.feature-card h3 {
  margin: 22px 18px 10px;
  color: var(--green-deep);
  font-size: 21px;
  line-height: 1.28;
}

.feature-card p {
  margin: 0 18px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.jobs-section,
.learning-section {
  border-top: 1px solid var(--line);
}

.section-title {
  margin-bottom: 28px;
}

.job-list {
  display: grid;
  gap: 12px;
}

.job-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 90px 52px;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.job-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 58, 48, 0.1);
}

.company-badge {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
}

.company-badge.red {
  background: var(--coral);
}

.company-badge.blue {
  background: var(--blue);
}

.company-badge.green {
  background: var(--green);
}

.job-row h3 {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 18px;
}

.job-row p {
  margin: 0;
  color: var(--muted);
}

.job-score {
  color: var(--green);
  font-size: 23px;
  font-weight: 900;
}

.icon-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.icon-button.is-saved {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 18px;
}

.course-card,
.mentor-card {
  min-height: 320px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 58, 48, 0.06);
}

.course-card {
  display: flex;
  flex-direction: column;
}

.dark-card {
  color: #fff;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

.course-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--green-deep);
  background: var(--foam);
  border-radius: 8px;
}

.course-card h3,
.mentor-card h3 {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1.24;
}

.dark-card h3 {
  color: #fff;
}

.course-card p,
.mentor-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.course-card span {
  display: block;
  margin-top: auto;
  padding: 12px 14px;
  color: var(--green-deep);
  background: var(--mist);
  border-radius: 8px;
  font-weight: 900;
}

.dark-card span {
  color: var(--green-deep);
  background: var(--foam);
}

.mentor-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 20px;
  align-items: stretch;
}

.mentor-card ol {
  display: grid;
  gap: 10px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentor-card li {
  padding: 14px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mentor-card strong,
.mentor-card span {
  display: block;
}

.mentor-card strong {
  color: var(--coral);
}

.mentor-card span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.45;
}

.split-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.split-title > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.match-lab,
.company-section,
.progress-section,
.trust-section,
.final-cta {
  padding: 76px 34px;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line);
}

.match-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 18px;
}

.profile-builder,
.match-explain {
  min-height: 340px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 58, 48, 0.06);
}

.profile-builder h3 {
  margin: 0 0 18px;
  color: var(--green-deep);
  font-size: 22px;
}

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

.field-grid label {
  min-height: 76px;
  padding: 14px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.field-grid span,
.company-card span,
.board-column > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.field-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--green-deep);
  font-size: 16px;
}

.intent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.intent {
  min-height: 38px;
  padding: 0 12px;
  color: var(--soft-ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.intent.active {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.match-explain {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(216, 240, 231, 0.72), rgba(255, 255, 255, 0.92)),
    #fff;
}

.match-score {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 58%, transparent 59%),
    conic-gradient(var(--green) 0 94%, var(--line) 94% 100%);
}

.match-score span,
.match-score strong {
  grid-area: 1 / 1;
  text-align: center;
}

.match-score span {
  margin-top: -18px;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}

.match-score strong {
  margin-top: 42px;
  max-width: 110px;
  font-size: 12px;
  line-height: 1.3;
}

.match-explain ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.match-explain li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 107, 87, 0.12);
  border-radius: 8px;
  color: var(--soft-ink);
  font-weight: 800;
}

.match-explain svg {
  color: var(--green);
}

.ranking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 18px;
}

.ranking-tab {
  min-height: 40px;
  padding: 0 14px;
  color: var(--soft-ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

.ranking-tab.active {
  color: #fff;
  background: var(--green-deep);
  border-color: var(--green-deep);
}

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

.company-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.company-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 58, 48, 0.06);
}

.company-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.company-card > div {
  padding: 18px;
}

.company-card h3 {
  margin: 8px 0;
  color: var(--green-deep);
  font-size: 21px;
}

.company-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.company-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
}

.company-card dl div {
  padding: 10px;
  background: var(--canvas);
  border-radius: 8px;
}

.company-card dt {
  color: var(--muted);
  font-size: 12px;
}

.company-card dd {
  margin: 5px 0 0;
  color: var(--green-deep);
  font-weight: 900;
}

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

.board-column {
  min-height: 260px;
  padding: 14px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.board-column > span {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 15px;
}

.board-card {
  padding: 13px;
  margin-bottom: 10px;
  color: var(--soft-ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 850;
  line-height: 1.45;
}

.board-card.highlight {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, #093b31, #145a4c);
  color: #fff;
}

.trust-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.trust-copy p:not(.section-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.trust-section .section-kicker {
  color: var(--foam);
}

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

.source-grid span {
  display: grid;
  min-height: 64px;
  place-items: center;
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  font-weight: 900;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--mist);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 24px 34px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer strong {
  color: var(--green-deep);
}

.page-nav {
  margin-bottom: 18px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 24px;
  align-items: end;
  padding: 64px 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(216, 240, 231, 0.92)),
    var(--mist);
  border: 1px solid rgba(15, 107, 87, 0.16);
  border-radius: 8px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.16;
}

.compact-hero {
  grid-template-columns: 1fr;
  min-height: 280px;
}

.hero-mini-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-mini-card span {
  color: var(--muted);
  font-weight: 900;
}

.hero-mini-card strong {
  display: block;
  margin: 8px 0;
  color: var(--coral);
  font-size: 58px;
  line-height: 1;
}

.hero-mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.workspace-section,
.full-section,
.mentor-section,
.parent-section {
  padding: 54px 34px;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--line);
}

.workspace-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
}

.profile-editor,
.recommendation-panel,
.mentor-profile,
.mentor-plan,
.parent-card,
.study-plan {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(15, 58, 48, 0.06);
}

.profile-editor h2,
.recommendation-panel h2,
.study-plan h2,
.mentor-plan h2,
.parent-card h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: 26px;
  line-height: 1.18;
}

.profile-editor label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.profile-editor label span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.profile-editor input {
  min-height: 44px;
  padding: 0 12px;
  color: var(--green-deep);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  font-weight: 850;
}

.full-width {
  width: 100%;
  margin-top: 18px;
}

.recommendation-panel {
  display: grid;
  gap: 14px;
}

.recommend-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 52px;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.recommend-card.top {
  background: linear-gradient(90deg, rgba(216, 240, 231, 0.78), #fff);
  border-color: rgba(15, 107, 87, 0.22);
}

.recommend-score {
  color: var(--green);
  font-size: 28px;
  font-weight: 900;
}

.company-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.company-chip.blue {
  background: var(--blue);
}

.recommend-card h3 {
  margin: 10px 0 6px;
  color: var(--green-deep);
  font-size: 19px;
}

.recommend-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.recommend-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommend-card li {
  padding: 6px 9px;
  color: var(--soft-ink);
  background: var(--canvas);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.expanded-list {
  margin-bottom: 24px;
}

.ranking-summary,
.parent-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ranking-summary article,
.parent-metrics article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.ranking-summary strong,
.parent-metrics strong {
  display: block;
  color: var(--green);
  font-size: 34px;
  line-height: 1;
}

.ranking-summary span,
.parent-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

.learning-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.study-plan {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.study-plan ol,
.mentor-plan ol,
.alert-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.study-plan li,
.mentor-plan li,
.alert-list li {
  padding: 14px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.study-plan strong,
.mentor-plan strong,
.alert-list strong {
  display: block;
  color: var(--coral);
}

.study-plan span,
.mentor-plan span,
.alert-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.mentor-grid,
.parent-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
}

.mentor-profile {
  overflow: hidden;
  padding: 0;
}

.mentor-profile img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.mentor-profile div {
  padding: 20px;
}

.mentor-profile span {
  color: var(--muted);
  font-weight: 900;
}

.mentor-profile h3 {
  margin: 8px 0;
  color: var(--green-deep);
  font-size: 24px;
}

.mentor-profile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.parent-metrics {
  margin-bottom: 18px;
}

.compact-board {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1060px) {
  .nav,
  .hero-body,
  .feature-grid,
  .job-row,
  .system-strip,
  .workflow-grid,
  .mentor-card,
  .match-layout,
  .match-explain,
  .company-grid,
  .board,
  .trust-section,
  .page-hero,
  .workspace-layout,
  .learning-dashboard,
  .study-plan,
  .mentor-grid,
  .parent-layout,
  .ranking-summary,
  .parent-metrics,
  .compact-board,
  .recommend-card {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-cards {
    min-height: 620px;
  }

  .panel-head,
  .split-title,
  .final-cta {
    display: grid;
  }

  .job-score {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 18px, 1440px);
    margin-top: 9px;
  }

  .hero {
    padding: 12px;
  }

  .nav {
    min-height: auto;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .nav-links a {
    justify-content: center;
    padding: 0 10px;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-body {
    padding: 34px 8px 12px;
  }

  h1 {
    font-size: 27px;
  }

  .lead {
    font-size: 16px;
  }

  .search-line {
    grid-template-columns: auto 1fr;
  }

  .search-line button {
    grid-column: 1 / -1;
  }

  .hero-cards {
    min-height: 690px;
  }

  .profile-card {
    width: 260px;
    right: 14px;
    top: 0;
  }

  .match-card {
    width: 260px;
    top: 230px;
  }

  .source-card {
    width: 260px;
    right: 10px;
    bottom: 18px;
  }

  .finder-panel,
  .jobs-section,
  .learning-section,
  .match-lab,
  .company-section,
  .progress-section,
  .trust-section,
  .final-cta,
  .workspace-section,
  .full-section,
  .mentor-section,
  .parent-section,
  .page-hero {
    padding: 46px 12px;
  }

  .job-row {
    gap: 12px;
  }
}
