:root {
  --ink: #050505;
  --text: #2d3035;
  --muted: #686d73;
  --line: #e9eaec;
  --panel: #ffffff;
  --soft: #f7f7f5;
  --soft-blue: #edf8fc;
  --mint: #ccf4e8;
  --mint-strong: #45c6aa;
  --purple: #9668c7;
  --blue: #79b9ea;
  --peach: #ffd9cc;
  --shadow: 0 18px 50px rgba(20, 24, 28, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

button,
textarea {
  font: inherit;
}

section {
  scroll-margin-top: 108px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--ink);
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3.4vw, 58px);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

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

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  color: #3b3d40;
  font-size: 18px;
  font-weight: 850;
}

.nav-links a.active {
  color: #fff;
  background: var(--ink);
}

.section-shell {
  width: min(1320px, calc(100% - 112px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 6vw, 98px);
  min-height: calc(100svh - 160px);
  padding: 70px 0 54px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1,
.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 950;
  line-height: 1.05;
}

.role-line {
  margin: 18px 0 20px;
  color: var(--purple);
  font-size: clamp(30px, 2.45vw, 44px);
  font-weight: 500;
  line-height: 1.12;
  white-space: nowrap;
}

.hero-summary {
  width: min(760px, 100%);
  margin: 0;
  color: #4a4f55;
  font-size: clamp(17px, 1.45vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0 48px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: var(--mint);
}

.matcher-card {
  width: min(720px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.matcher-card label {
  display: block;
  margin: 0 0 10px 4px;
  color: #686d73;
  font-size: 16px;
  font-weight: 900;
}

.matcher-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
}

.matcher-row textarea {
  width: 100%;
  min-height: 64px;
  max-height: 160px;
  padding: 16px 18px;
  resize: vertical;
  border: 1px solid #d7d9dc;
  border-radius: 8px;
  outline: none;
  color: var(--text);
  background: #fafafa;
}

.matcher-row textarea:focus {
  border-color: var(--mint-strong);
  box-shadow: 0 0 0 4px rgba(69, 198, 170, 0.14);
}

.match-button {
  min-width: 176px;
  color: #fff;
  background: var(--ink);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual img {
  width: min(620px, 100%);
  margin: 0 auto;
  filter: drop-shadow(0 22px 30px rgba(31, 39, 44, 0.1));
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1320px, calc(100% - 112px));
  margin: 0 auto 80px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric {
  min-height: 118px;
  padding: 26px;
  background: #fff;
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 950;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 760;
}

.split-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 54px;
  padding: 68px 0 86px;
}

.section-title h2 {
  font-size: clamp(36px, 4.6vw, 64px);
}

.section-title.center {
  text-align: center;
}

.section-title p:last-child {
  max-width: 600px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.education-list {
  display: grid;
  gap: 18px;
}

.timeline-card,
.intern-card,
.skill-panel,
.project-card,
.explore-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.timeline-card {
  padding: 28px;
}

.date {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
}

.timeline-card h3,
.intern-card h3,
.feature-experience h3,
.project-card h3,
.skill-panel h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.28;
}

.timeline-card p,
.intern-card p,
.feature-experience p,
.project-card p,
.skill-panel p {
  margin: 0;
  color: #555b61;
}

.timeline-card ul {
  margin: 16px 0 0;
  padding-left: 1.2em;
  color: #5f656c;
}

.experience-section {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.feature-experience {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  gap: 42px;
  align-items: center;
  margin-top: 42px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-trigger {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.detail-trigger:hover,
.detail-trigger:focus-visible {
  border-color: rgba(69, 198, 170, 0.65);
  box-shadow: 0 18px 48px rgba(27, 40, 45, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.card-hint {
  color: #3388bd;
  font-weight: 900;
}

.inline-detail {
  display: inline-flex;
  margin-left: 8px;
  white-space: nowrap;
}

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

.pill-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: #172320;
  background: var(--mint);
  font-weight: 850;
  text-align: center;
}

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

.intern-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.mini-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: #21475a;
  font-weight: 850;
}

.project-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 54px 0 28px;
  color: #686d73;
  font-weight: 900;
}

.project-divider span {
  height: 1px;
  background: #dcdfe2;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(26, 31, 35, 0.05);
}

.project-card h3 {
  padding: 24px 24px 0;
  font-size: 22px;
}

.project-card p {
  min-height: 88px;
  padding: 8px 24px 18px;
}

.project-hint {
  display: inline-flex;
  margin: 0 24px 26px;
}

.project-visual {
  position: relative;
  height: 188px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0fbff, #e8fbf4);
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.project-visual::before {
  width: 210px;
  height: 210px;
  right: -72px;
  top: -78px;
}

.project-visual::after {
  width: 170px;
  height: 170px;
  left: -64px;
  bottom: -82px;
}

.visual-flow span {
  position: absolute;
  top: 72px;
  width: 86px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(85, 112, 122, 0.12);
}

.visual-flow span:nth-child(1) {
  left: 42px;
}

.visual-flow span:nth-child(2) {
  left: 50%;
  transform: translateX(-50%);
  background: var(--peach);
}

.visual-flow span:nth-child(3) {
  right: 42px;
  background: var(--mint);
}

.visual-quality span,
.visual-payment span,
.visual-customer span,
.visual-push span {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
}

.visual-quality span {
  left: 54px;
  width: 70%;
  height: 14px;
  background: var(--blue);
}

.visual-quality span:nth-child(1) {
  top: 54px;
}

.visual-quality span:nth-child(2) {
  top: 86px;
  width: 48%;
  background: var(--mint-strong);
}

.visual-quality span:nth-child(3) {
  top: 118px;
  width: 64%;
  background: var(--purple);
}

.visual-quality span:nth-child(4) {
  top: 150px;
  width: 38%;
  background: var(--peach);
}

.visual-risk span {
  position: absolute;
  z-index: 1;
  width: 112px;
  height: 112px;
  border: 18px solid var(--mint-strong);
  border-radius: 50%;
}

.visual-risk span:nth-child(1) {
  left: 42px;
  top: 42px;
}

.visual-risk span:nth-child(2) {
  left: 138px;
  top: 42px;
  border-color: var(--blue);
}

.visual-risk span:nth-child(3) {
  left: 234px;
  top: 42px;
  border-color: var(--peach);
}

.visual-payment span {
  width: 108px;
  height: 54px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(85, 112, 122, 0.13);
}

.visual-payment span:nth-child(1) {
  left: 54px;
  top: 48px;
}

.visual-payment span:nth-child(2) {
  left: 154px;
  top: 78px;
  background: var(--mint);
}

.visual-payment span:nth-child(3) {
  left: 254px;
  top: 108px;
  background: #fff;
}

.visual-customer span {
  width: 74px;
  height: 74px;
  background: var(--mint-strong);
}

.visual-customer span:nth-child(1) {
  left: 64px;
  top: 58px;
}

.visual-customer span:nth-child(2) {
  left: 162px;
  top: 86px;
  background: var(--blue);
}

.visual-customer span:nth-child(3) {
  left: 260px;
  top: 58px;
  background: var(--purple);
}

.visual-push span {
  width: 68px;
  height: 68px;
  background: #fff;
  border: 10px solid var(--blue);
}

.visual-push span:nth-child(1) {
  left: 72px;
  top: 78px;
}

.visual-push span:nth-child(2) {
  left: 166px;
  top: 52px;
  border-color: var(--mint-strong);
}

.visual-push span:nth-child(3) {
  left: 260px;
  top: 78px;
  border-color: var(--peach);
}

.skills-section {
  padding: 90px 0;
}

.skills-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.skill-panel {
  padding: 30px;
  min-height: 300px;
}

.skill-bars {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.skill-bars span {
  position: relative;
  display: block;
  padding-top: 18px;
  color: var(--ink);
  font-weight: 850;
}

.skill-bars span::before,
.skill-bars span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 9px;
  border-radius: 999px;
}

.skill-bars span::before {
  width: 100%;
  background: #edf0f2;
}

.skill-bars span::after {
  width: var(--value);
  background: var(--blue);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-cloud span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--mint);
  color: #17332d;
  font-weight: 850;
}

.tag-cloud.peach span {
  background: #fff0eb;
  color: #50332b;
}

.explore-section {
  padding: 88px 0;
  background: var(--ink);
  color: #fff;
}

.explore-layout {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 60px;
  align-items: start;
}

.explore-section .section-title h2,
.explore-section .eyebrow {
  color: #fff;
}

.explore-section .section-title p:last-child {
  color: #c8ccd0;
}

.explore-list {
  display: grid;
  gap: 16px;
}

.explore-list article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.explore-list strong {
  color: #fff;
  font-size: 20px;
}

.explore-list span {
  color: #d7dadd;
}

.workflow-section {
  padding: 86px 0 110px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.workflow-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.workflow-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--ink);
  font-weight: 950;
}

.workflow-grid h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 22px;
}

.workflow-grid p {
  margin: 0;
  color: #555b61;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 28px;
}

.modal[aria-hidden="false"] {
  display: grid;
  place-items: center;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(5px);
}

.match-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(860px, calc(100svh - 56px));
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 8px;
  background: rgba(247, 247, 247, 0.96);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.24);
}

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

.modal-header h2 {
  display: inline;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-left: 12px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--peach);
  color: var(--ink);
  font-weight: 900;
  vertical-align: 5px;
}

.icon-button {
  min-width: 74px;
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.match-matrix {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
}

.score-orb {
  display: grid;
  width: 152px;
  height: 152px;
  place-items: center;
  margin: auto;
  border-radius: 50%;
  background: var(--peach);
  box-shadow: 0 10px 22px rgba(255, 189, 168, 0.32);
  text-align: center;
}

.score-orb span {
  align-self: end;
  color: #5e514e;
  font-weight: 850;
}

.score-orb strong {
  color: var(--ink);
  font-size: 52px;
  line-height: 0.86;
}

.score-orb em {
  align-self: start;
  color: #4f4f4f;
  font-style: normal;
  font-weight: 850;
}

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

.score-row {
  display: grid;
  grid-template-columns: 112px 1fr 42px;
  gap: 16px;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
}

.bar-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf0f2;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.modal-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
}

.modal-grid h3 {
  margin: 0 0 16px;
  color: #3388bd;
  font-size: 20px;
}

.modal-grid ul {
  margin: 0;
  padding-left: 1.2em;
}

.modal-grid li {
  margin: 0 0 10px;
}

.summary-card {
  grid-column: span 2;
}

.summary-card p {
  margin: 0;
}

.detail-dialog {
  width: min(1040px, 100%);
}

.resume-dialog {
  width: min(860px, 100%);
}

.contact-dialog {
  width: min(680px, 100%);
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-grid a {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  border-color: rgba(69, 198, 170, 0.72);
  box-shadow: 0 16px 40px rgba(27, 40, 45, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.contact-grid span {
  color: var(--muted);
  font-weight: 850;
}

.contact-grid strong {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.15;
  word-break: break-all;
}

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

.resume-choice-grid a {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.resume-choice-grid a:hover,
.resume-choice-grid a:focus-visible {
  border-color: rgba(69, 198, 170, 0.72);
  box-shadow: 0 16px 40px rgba(27, 40, 45, 0.1);
  transform: translateY(-2px);
  outline: none;
}

.resume-choice-grid strong {
  color: var(--ink);
  font-size: 22px;
}

.resume-choice-grid span {
  color: #5f656c;
}

.detail-dialog .eyebrow {
  margin-bottom: 8px;
}

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

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

.detail-columns article,
.detail-kpis span {
  border-radius: 8px;
  background: #fff;
}

.detail-columns article {
  padding: 24px;
}

.detail-columns h3 {
  margin: 0 0 14px;
  color: #3388bd;
  font-size: 20px;
}

.detail-columns p,
.detail-columns ul {
  margin: 0;
  color: #3f454b;
}

.detail-columns ul {
  padding-left: 1.2em;
}

.detail-columns li {
  margin-bottom: 10px;
}

.detail-columns li:last-child {
  margin-bottom: 0;
}

.wide-detail {
  grid-column: span 2;
}

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

.detail-kpis span {
  min-height: 96px;
  padding: 18px;
  color: var(--muted);
  font-weight: 850;
}

.detail-kpis strong {
  display: block;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
  margin-bottom: 10px;
}

@media (max-width: 1120px) {
  .site-header,
  .section-shell,
  .metrics-band {
    width: min(100% - 48px, 980px);
  }

  .site-header {
    align-items: flex-start;
    min-height: auto;
    padding: 18px 0;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0 16px;
    font-size: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual img {
    width: min(420px, 82vw);
  }

  .split-section,
  .feature-experience,
  .internship-list,
  .explore-layout {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .skills-layout,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  section {
    scroll-margin-top: 132px;
  }

  .site-header,
  .section-shell,
  .metrics-band {
    width: calc(100% - 28px);
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .nav-links {
    flex: 1;
    width: auto;
  }

  .nav-links a {
    min-height: 40px;
    padding: 0 14px;
    font-size: 15px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
    gap: 20px;
    padding: 24px 0 40px;
  }

  .hero-visual img {
    width: min(270px, 78vw);
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .role-line {
    font-size: clamp(26px, 8vw, 34px);
    white-space: normal;
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
    margin: 26px 0 30px;
  }

  .button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .matcher-row {
    grid-template-columns: 1fr;
  }

  .metrics-band,
  .project-grid,
  .skills-layout,
  .workflow-grid,
  .resume-choice-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 96px;
  }

  .split-section,
  .skills-section,
  .workflow-section {
    padding: 56px 0;
  }

  .experience-section,
  .explore-section {
    padding: 58px 0;
  }

  .feature-experience {
    padding: 26px;
  }

  .pill-grid {
    grid-template-columns: 1fr;
  }

  .project-card p {
    min-height: auto;
  }

  .match-dialog {
    padding: 20px;
  }

  .modal {
    padding: 14px;
  }

  .match-matrix,
  .detail-columns,
  .detail-kpis,
  .modal-grid,
  .score-row {
    grid-template-columns: 1fr;
  }

  .score-row {
    gap: 8px;
  }

  .summary-card {
    grid-column: auto;
  }

  .wide-detail {
    grid-column: auto;
  }
}
