:root {
  --yellow: #ffd100;
  --yellow-soft: #fff8d6;
  --ink: #222;
  --muted: #666873;
  --line: #e9eaed;
  --bg: #f7f8fa;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 12px 38px #22222218;
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 14px;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
button,
select,
input,
textarea {
  outline-offset: 4px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #8b7100;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1 {
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: -0.035em;
}
h2 {
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 16px;
  line-height: 1.5;
}
p {
  line-height: 1.8;
}
small {
  line-height: 1.6;
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  vertical-align: middle;
}
button .icon,
a .icon {
  pointer-events: none;
}
.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;
}
.skip {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 50;
  background: var(--yellow);
  padding: 12px;
}
.skip:focus {
  top: 8px;
}
.sidebar {
  position: fixed;
  width: 208px;
  inset: 0 auto 0 0;
  background: #fff;
  z-index: 20;
  border-right: 1px solid var(--line);
  padding: 27px 18px 18px;
  display: flex;
  flex-direction: column;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -1.1px;
  padding: 0 8px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--yellow);
}
.brand-mark .icon {
  width: 25px;
  height: 25px;
  stroke-width: 2.2;
}
.brand-dot {
  height: 6px;
  width: 6px;
  background: var(--yellow);
  border-radius: 50%;
  align-self: flex-end;
  margin: 0 0 7px -6px;
}
.nav-caption {
  font-size: 11px;
  color: var(--muted);
  margin: 18px 8px 31px;
  white-space: nowrap;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-link {
  padding: 14px 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #666873;
  font-weight: 550;
}
.nav-link .icon {
  width: 22px;
  height: 22px;
}
.nav-link:hover {
  background: var(--bg);
  color: var(--ink);
}
.nav-link.active {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
}
.nav-count {
  margin-left: auto;
  font-size: 11px;
  background: white;
  padding: 2px 6px;
  border-radius: 10px;
}
.sidebar-user {
  border-top: 1px solid var(--line);
  padding: 19px 3px 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-user strong {
  font-size: 13px;
}
.sidebar-user small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
}
.sidebar-user > .icon {
  width: 16px;
  margin-left: auto;
}
.topbar {
  position: fixed;
  left: 208px;
  right: 0;
  top: 0;
  height: 76px;
  background: #fffffff5;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  z-index: 15;
  gap: 20px;
}
.search {
  display: flex;
  align-items: center;
  width: min(440px, 50%);
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 12px;
  gap: 10px;
  height: 40px;
}
.search:focus-within {
  border-color: #c2a015;
  background: white;
}
.search > .icon {
  color: #71737c;
  width: 18px;
}
.search input {
  min-width: 0;
  flex: 1;
  background: none;
  border: 0;
  outline: none;
  height: 100%;
  font-size: 13px;
}
.search input::placeholder {
  color: #747680;
}
.search button {
  background: none;
  border: 0;
  display: grid;
  place-items: center;
  padding: 6px;
  color: #62646c;
}
.search button .icon {
  width: 17px;
}
.top-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}
.demo-label {
  font-size: 11px;
  color: #6a6c76;
  border: 1px solid #e1e3e8;
  padding: 4px 8px;
  border-radius: 5px;
  background: #fff;
  white-space: nowrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 650;
  font-size: 13px;
  line-height: 20px;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.btn .icon {
  width: 17px;
  height: 17px;
}
.btn.primary {
  background: var(--yellow);
  color: #24200b;
}
.btn.primary:hover {
  background: #f0c600;
}
.btn.secondary {
  background: white;
  border-color: #dedfe5;
}
.btn.secondary:hover {
  background: #f5f5f7;
}
.btn.dark {
  background: #242421;
  color: white;
}
.btn.dark:hover {
  background: #44443f;
}
.btn.white {
  background: white;
  color: var(--ink);
}
.btn.small {
  padding: 7px 12px;
  font-size: 12px;
}
.btn.full {
  width: 100%;
}
.btn.danger-btn {
  background: #b93632;
  color: white;
}
.text-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  background: none;
  border: 0;
  font-size: 13px;
  line-height: 1.8;
}
.text-btn:hover {
  text-decoration: underline;
}
.text-btn .icon {
  width: 16px;
}
.danger {
  color: #b53632;
}
.mobile-brand,
.mobile-nav {
  display: none;
}
main {
  margin-left: 208px;
  padding: 108px 36px 20px;
  max-width: 1648px;
  min-height: 100vh;
  outline: none;
}
.underline {
  position: relative;
  white-space: nowrap;
}
.underline:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 5px;
  background: #fff9;
  transform: rotate(-2deg);
  border-radius: 50%;
}
.avatar {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--avatar);
  color: var(--avatar-ink);
  border-radius: 50%;
  font-weight: 650;
  font-size: 12px;
}
.avatar.large {
  width: 46px;
  height: 46px;
  font-size: 14px;
}
.avatar.xl {
  width: 76px;
  height: 76px;
  font-size: 22px;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
}
.section-heading p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}
.section-heading.spaced {
  margin-top: 36px;
}
.section-heading.compact {
  margin-bottom: 20px;
}
.subtle,
.muted {
  color: var(--muted);
  font-size: 12px;
}
.category-tabs {
  display: flex;
  gap: 9px;
  overflow: auto;
  padding: 1px 0 3px;
  margin-bottom: 17px;
  scrollbar-width: none;
}
.category {
  border: 0;
  background: white;
  padding: 10px 17px;
  border-radius: 9px;
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 12px;
  white-space: nowrap;
}
.category .icon {
  width: 16px;
  height: 16px;
}
.category.selected {
  background: #292923;
  color: #fff;
}
.category:hover {
  box-shadow: inset 0 0 0 1px #bfc0c8;
}
.filter-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}
.filters {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.filters > .icon {
  width: 16px;
  color: var(--muted);
}
.filters select {
  background: none;
  border: 0;
  color: #565862;
  font-size: 12px;
  max-width: 140px;
  padding: 5px 0;
  cursor: pointer;
}
.check-inline {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #565862;
  cursor: pointer;
  white-space: nowrap;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: #846b00;
  cursor: pointer;
}
.check-inline input {
  width: 14px;
  height: 14px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.skill-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition:
    box-shadow 0.18s,
    border-color 0.18s;
  min-width: 0;
}
.skill-card:hover {
  border-color: #d2d3d9;
  box-shadow: 0 6px 16px #22222206;
}
.skill-cover {
  display: flex;
  position: relative;
  align-items: center;
  min-height: 122px;
  background: var(--cover);
  color: var(--ink);
  padding: 20px 22px;
  overflow: hidden;
}
.cover-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 76%;
}
.cover-copy small {
  font-size: 9px;
  line-height: 1.6;
  opacity: 0.95;
  white-space: nowrap;
}
.cover-copy strong {
  font-size: 25px;
  letter-spacing: -0.7px;
  margin: 8px 0 5px;
}
.cover-copy > span {
  font-size: 10px;
}
.cover-art {
  position: absolute;
  right: 18px;
  bottom: 22px;
  transform: rotate(-10deg);
  opacity: 0.75;
}
.cover-art > .icon {
  width: 54px;
  height: 54px;
  stroke-width: 1.3;
}
.favorite {
  position: absolute;
  right: 12px;
  top: 10px;
  z-index: 2;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffffbd;
  color: #636371;
}
.favorite .icon {
  width: 16px;
  height: 16px;
}
.favorite:hover {
  background: #fff;
}
.favorite.saved {
  color: #b14155;
  background: white;
}
.favorite.saved .icon {
  fill: #f2dce2;
}
.card-body {
  padding: 18px 20px 0;
}
.person-line {
  display: flex;
  gap: 10px;
  align-items: center;
}
.person-line > div {
  min-width: 0;
}
.person-line strong {
  font-size: 13px;
}
.person-line div > span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}
.person-line .sample {
  margin-left: auto;
}
.sample {
  font-size: 10px;
  font-weight: 400;
  color: #72747d;
  background: #f5f5f7;
  padding: 3px 6px;
  border-radius: 4px;
  white-space: nowrap;
}
.skill-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 19px;
}
.role {
  font-size: 10px;
  line-height: 18px;
  border-radius: 4px;
  padding: 1px 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.role.teach {
  background: #fff4bd;
  color: #735c04;
}
.role.want {
  background: #f0f1f4;
  color: #62646e;
}
.skill-row p {
  font-size: 12px;
  line-height: 1.75;
  min-height: 42px;
}
.skill-row.wanted {
  margin-top: 10px;
}
.skill-row.wanted p {
  font-size: 12px;
  font-weight: 600;
}
.skill-row p small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.7;
}
.card-bottom {
  border-top: 1px solid #f0f1f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 49px;
  gap: 8px;
}
.card-bottom > span {
  font-size: 10px;
  color: #777983;
}
.card-link {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  gap: 6px;
  align-items: center;
}
.card-link .icon {
  width: 15px;
}
.card-link:hover {
  color: #7e6500;
}
.match-reasons {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  background: #fff9df;
  padding: 9px;
  margin-top: 12px;
  border-radius: 7px;
  font-size: 10px;
  line-height: 1.7;
  color: #746114;
}
.match-reasons .icon {
  width: 13px;
  height: 16px;
}
footer {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #7c7e87;
  font-size: 10px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding: 22px 0 10px;
}
footer > span:last-child {
  margin-left: auto;
}
.footer-brand {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #45464d;
}
.page-heading {
  margin: 7px 0 28px;
}
.eyebrow {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.page-heading p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}
.match-summary {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 22px 28px;
  background: var(--yellow-soft);
  border-radius: var(--radius);
  margin-bottom: 30px;
}
.match-summary > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.match-summary > div > span {
  font-size: 11px;
  color: #726219;
}
.match-summary strong {
  font-size: 20px;
}
.match-summary > .icon {
  width: 27px;
  height: 27px;
  color: #9c861f;
}
.match-summary > .btn {
  margin-left: auto;
}
.count-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 10px;
}
.notice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  color: #696650;
  line-height: 1.8;
  padding: 14px 17px;
  background: #f2f1e9;
  border-radius: 10px;
  margin-top: 25px;
}
.notice .icon {
  width: 16px;
  height: 20px;
}
.empty {
  padding: 65px 25px;
  text-align: center;
  background: #fff;
  border: 1px dashed #dcdde3;
  border-radius: 16px;
}
.empty > .icon {
  width: 42px;
  height: 42px;
  color: #b29a37;
  margin-bottom: 18px;
}
.empty h2 {
  margin-bottom: 9px;
}
.empty p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}
.compact-empty {
  padding: 30px;
}
.compact-empty > .icon {
  width: 25px;
  height: 25px;
  margin-bottom: 12px;
}
.compact-empty p {
  margin-bottom: 10px;
}
.back {
  margin: 0 0 18px;
  color: var(--muted);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 22px;
}
.panel h2 {
  font-size: 19px;
  margin-bottom: 13px;
}
.panel > h3 {
  margin: 24px 0 8px;
}
.panel > p:not(.lead) {
  font-size: 13px;
  color: var(--muted);
}
.panel-title {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
}
.panel-title h2 {
  margin: 0;
}
.lead {
  font-size: 17px;
  line-height: 1.85;
  color: #3a3a42;
}
.facts {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.facts > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.facts span {
  color: var(--muted);
  font-size: 11px;
}
.facts strong {
  font-size: 12px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}
.pill {
  display: inline-flex;
  background: #f2f3f6;
  color: #62646e;
  padding: 5px 9px;
  font-size: 11px;
  border-radius: 5px;
}
.pill.yellow {
  background: var(--yellow-soft);
  color: #77600a;
}
.pill.green {
  background: #e7f2ea;
  color: #327247;
}
.review-sample {
  padding: 15px 0 5px;
}
.review-sample + .review-sample {
  border-top: 1px solid var(--line);
  margin-top: 15px;
}
.stars {
  color: #8e7200;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-sample p {
  font-size: 13px;
  margin: 10px 0;
}
.review-sample small {
  color: var(--muted);
  font-size: 11px;
}
.exchange-aside {
  position: sticky;
  top: 102px;
  padding: 24px;
}
.exchange-aside > .eyebrow {
  font-size: 10px;
}
.exchange-aside h2 {
  font-size: 19px;
}
.fine-print {
  font-size: 10px !important;
  line-height: 1.8;
  color: #7a7c85 !important;
  text-align: center;
  margin-top: 14px;
}
.align-left {
  text-align: left;
}
.form-page {
  max-width: 780px;
  margin: 0 auto;
}
.form-page .page-heading {
  margin-top: 0;
}
.steps {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 27px 0;
  gap: 18px;
}
.steps li {
  display: flex;
  flex: 1;
  gap: 9px;
  align-items: center;
  color: #747680;
  font-size: 13px;
}
.steps li:after {
  content: "";
  height: 1px;
  background: #dbdde4;
  flex: 1;
  margin-left: 12px;
}
.steps li:last-child:after {
  display: none;
}
.steps li > span {
  background: #e9eaee;
  color: #747680;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  flex-shrink: 0;
}
.steps li.current {
  color: #222;
  font-weight: 650;
}
.steps li.current > span {
  background: var(--yellow);
  color: #222;
}
.steps li.done > span {
  background: #fff2b2;
  color: #8c7014;
}
.steps .icon {
  width: 15px;
  height: 15px;
}
.form-panel {
  padding: 30px 34px;
}
.form-panel h2 {
  font-size: 23px;
  margin-bottom: 6px;
}
.form-panel > p.subtle {
  margin-bottom: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 22px 0;
  color: #3e3f48;
  font-size: 13px;
  min-width: 0;
}
.field > span {
  font-weight: 600;
}
.field input,
.field select,
.field textarea,
.message-form input {
  width: 100%;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid #d9dbe2;
  border-radius: 9px;
  color: #333540;
  font-weight: 400;
  font-size: 13px;
  min-width: 0;
}
.field textarea {
  min-height: 95px;
  resize: vertical;
  line-height: 1.8;
}
.field small {
  color: var(--muted);
  font-size: 11px;
}
.field input::placeholder,
.field textarea::placeholder,
.message-form input::placeholder {
  color: #747680;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 23px 0;
}
legend {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.choice {
  cursor: pointer;
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.choice span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dedfe5;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 12px;
  color: #62646e;
  transition: background 0.15s;
}
.choice input:checked + span {
  border-color: #d7af00;
  background: #fff8da;
  color: #584800;
}
.choice input:focus-visible + span {
  outline: 3px solid #8b7100;
  outline-offset: 3px;
}
.choice span:hover {
  border-color: #b7b9c3;
}
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  margin-top: 28px;
}
.form-error:empty {
  display: none;
}
.form-error {
  font-size: 13px;
  color: #a02929;
  background: #fff0ef;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.publish-preview {
  padding: 20px;
  background: #fff9df;
  border-radius: 12px;
  margin-top: 26px;
}
.publish-preview .eyebrow {
  color: #806a16;
}
.publish-preview h3 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  flex-wrap: wrap;
}
.publish-preview h3 .icon {
  width: 22px;
  color: #9d8519;
}
.publish-preview p {
  font-size: 12px;
  margin-top: 10px;
  color: #5f572e;
}
.publish-preview small {
  display: block;
  margin-top: 15px;
  color: #7b713f;
}
.form-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.invitation-goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 17px;
  background: #fafaf7;
  border-radius: 9px;
  margin: 0 0 30px;
}
.invitation-goals p {
  font-size: 12px;
  color: var(--muted);
}
.invitation-goals strong {
  display: block;
  margin-bottom: 7px;
  color: #41423f;
  font-size: 12px;
}
.segmented {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  padding-bottom: 13px;
  overflow: auto;
}
.segmented button {
  display: flex;
  gap: 7px;
  align-items: center;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--muted);
  white-space: nowrap;
  font-size: 13px;
}
.segmented button.selected {
  color: #222;
  background: #fff1ac;
  font-weight: 600;
}
.segmented button > span {
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 4px;
  background: #ffffffa8;
}
.exchange-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.exchange-row {
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  background: white;
}
.exchange-row:hover {
  border-color: #ccb245;
}
.exchange-row > .icon {
  color: var(--muted);
  width: 16px;
}
.exchange-row .person-line {
  flex: 1;
}
.exchange-row .person-line strong {
  font-size: 14px;
}
.exchange-row .person-line div > span {
  font-size: 12px;
  margin-top: 6px;
}
.row-progress {
  width: 150px;
}
.row-progress > span {
  font-size: 11px;
  color: var(--muted);
}
.mini-progress {
  height: 4px;
  background: #f0f1f3;
  border-radius: 5px;
  margin-top: 8px;
  overflow: hidden;
}
.mini-progress i {
  display: block;
  height: 100%;
  background: var(--yellow);
}
.status {
  display: inline-flex;
  font-size: 11px;
  padding: 5px 10px;
  background: #f1f2f5;
  color: #656774;
  border-radius: 6px;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
}
.status-pending {
  background: #fff3ce;
  color: #806314;
}
.status-scheduled,
.status-learning {
  background: #e7eefb;
  color: #3c6599;
}
.status-review {
  background: #f0e9fa;
  color: #795398;
}
.status-completed {
  background: #e7f3eb;
  color: #347449;
}
.exchange-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.exchange-heading h1 {
  font-size: 30px;
}
.demo-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff6ce;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.demo-control > div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.demo-control strong {
  font-size: 13px;
}
.demo-control small {
  display: block;
  color: #746325;
  font-size: 11px;
  margin-top: 5px;
}
.demo-control > .icon {
  color: #796314;
}
.lesson {
  display: flex;
  gap: 15px;
  padding: 23px 0;
}
.lesson + .lesson {
  border-top: 1px solid var(--line);
}
.lesson-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #f1f2f5;
  border-radius: 50%;
  color: #6e707a;
  font-size: 12px;
  flex-shrink: 0;
}
.lesson.done .lesson-number {
  background: #e7f3eb;
  color: #3b7850;
}
.lesson-number .icon {
  width: 16px;
  height: 16px;
}
.lesson-main {
  flex: 1;
  min-width: 0;
}
.lesson-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.lesson-title h3 {
  font-size: 15px;
}
.lesson time {
  display: block;
  font-size: 12px;
  color: #747680;
  margin: 8px 0;
}
.lesson p {
  font-size: 13px;
  color: #555762;
}
.lesson .btn {
  margin-top: 14px;
}
.reflection {
  background: #fafaf7;
  font-size: 12px;
  line-height: 1.8;
  color: #62646c;
  border-radius: 8px;
  padding: 10px;
  margin-top: 13px;
}
.agreement {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 18px 10px;
  font-size: 12px;
  margin: 25px 0;
}
.agreement dt {
  color: var(--muted);
}
.agreement dd {
  margin: 0;
  line-height: 1.7;
}
.exchange-aside > .text-btn {
  margin-top: 20px;
}
.messages {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0;
}
.message {
  max-width: 85%;
  align-self: flex-start;
}
.message > span {
  font-size: 11px;
  color: var(--muted);
}
.message > p {
  margin: 6px 0;
  padding: 12px 15px;
  background: #f2f3f6;
  border-radius: 0 12px 12px 12px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.message small {
  font-size: 10px;
  color: var(--muted);
}
.message.mine {
  align-self: flex-end;
  text-align: right;
}
.message.mine > p {
  background: #fff7cf;
  border-radius: 12px 0 12px 12px;
  text-align: left;
}
.message-form {
  display: flex;
  gap: 10px;
}
.message-form .btn {
  flex-shrink: 0;
}
.rating-options {
  display: flex;
  gap: 8px;
}
.rating-options label {
  cursor: pointer;
  flex: 1;
}
.rating-options input {
  position: absolute;
  opacity: 0;
}
.rating-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #e1e2e7;
  padding: 10px 5px;
  border-radius: 9px;
  font-size: 13px;
}
.rating-options .icon {
  width: 15px;
  height: 15px;
}
.rating-options input:checked + span {
  background: #fff4bd;
  border-color: #b99500;
  color: #7e6500;
}
.rating-options input:focus-visible + span {
  outline: 3px solid #8b7100;
}
.rating-options input:checked + span .icon {
  fill: #e2bd35;
}
#review-form > .btn {
  margin-top: 24px;
}
.profile-summary {
  display: flex;
  align-items: center;
  gap: 23px;
}
.profile-summary > div {
  flex: 1;
}
.profile-summary h2 {
  margin-bottom: 7px;
}
.profile-summary p {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.profile-skills {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 24px;
  align-items: center;
  margin: 20px 0 27px;
}
.profile-skills h3 {
  font-size: 20px;
  margin: 12px 0 8px;
}
.profile-skills p {
  color: var(--muted);
  font-size: 13px;
}
.swap-large .icon {
  width: 30px;
  height: 30px;
  color: #aba482;
}
.panel-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}
.panel-actions > .text-btn {
  margin-left: auto;
}
.demo-settings {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
  margin-top: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.demo-settings strong {
  font-size: 13px;
}
.demo-settings p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 7px;
}
.demo-settings > .btn {
  flex-shrink: 0;
}
.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin: 0 0 20px;
}
.search-result .text-btn {
  color: var(--muted);
}
dialog {
  border: 0;
  border-radius: 16px;
  padding: 28px;
  width: min(480px, calc(100% - 32px));
  box-shadow: var(--shadow);
  max-height: 85vh;
  overflow: auto;
  color: var(--ink);
}
dialog::backdrop {
  background: #16181f65;
}
.dialog-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}
.dialog-heading h2 {
  font-size: 20px;
}
.icon-button {
  border: 0;
  background: #f3f4f7;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.icon-button .icon {
  width: 16px;
}
dialog p {
  font-size: 13px;
  color: var(--muted);
}
dialog .full {
  margin-top: 15px;
}
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 15px);
  max-width: calc(100% - 32px);
  background: #292923;
  color: white;
  padding: 13px 20px;
  border-radius: 10px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  font-size: 13px;
  line-height: 1.7;
  transition:
    opacity 0.2s,
    transform 0.2s;
  box-shadow: 0 8px 20px #0002;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (min-width: 1650px) {
  main {
    margin-left: max(208px, calc((100vw - 1440px) / 2));
  }
}
@media (max-width: 1250px) {
  .cover-copy small {
    font-size: 8px;
  }
  .cover-art {
    right: 13px;
  }
  .cover-art > .icon {
    width: 42px;
    height: 42px;
  }
  .card-body {
    padding: 17px 16px 0;
  }
  .skill-cover {
    padding: 20px 17px;
  }
  .card-grid {
    gap: 17px;
  }
  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 285px;
    gap: 18px;
  }
  .panel {
    padding: 22px;
  }
  .demo-control {
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-control > div:last-child {
    align-self: flex-end;
  }
}
@media (max-width: 1100px) {
  .sidebar {
    width: 185px;
    padding-left: 13px;
    padding-right: 13px;
  }
  .brand {
    font-size: 25px;
  }
  .nav-caption {
    font-size: 10px;
  }
  .topbar {
    left: 185px;
    padding: 0 25px;
  }
  main {
    margin-left: 185px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cover-copy small {
    font-size: 10px;
  }
  .cover-art > .icon {
    width: 58px;
    height: 58px;
  }
  .card-body {
    padding: 18px 20px 0;
  }
  .detail-layout {
    grid-template-columns: 1fr;
  }
  .exchange-aside {
    position: static;
  }
  .row-progress {
    width: 100px;
  }
  .top-actions {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .sidebar {
    display: none;
  }
  .topbar {
    left: 0;
    height: 68px;
    padding: 0 24px;
  }
  .mobile-brand {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.8px;
    white-space: nowrap;
  }
  .mobile-brand > .icon {
    background: var(--yellow);
    padding: 4px;
    width: 29px;
    height: 29px;
    border-radius: 8px;
  }
  .search {
    width: auto;
    flex: 1;
    max-width: 380px;
  }
  .top-actions > .demo-label {
    display: none;
  }
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fffffff7;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 20;
    padding: 8px 10px max(8px, env(safe-area-inset-bottom));
  }
  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 4px;
    font-size: 10px;
    color: #72747d;
  }
  .mobile-nav .icon {
    width: 21px;
    height: 21px;
  }
  .mobile-nav a.active {
    color: #222;
    font-weight: 650;
  }
  .mobile-nav a.active .icon {
    background: var(--yellow);
    box-shadow: 0 0 0 5px var(--yellow);
    border-radius: 3px;
  }
  .mobile-nav a.active {
    gap: 7px;
  }
  main {
    margin: 0;
    padding: 94px 24px 85px;
    max-width: none;
  }
  .top-actions .btn {
    padding: 9px 12px;
  }
  .card-grid {
    gap: 20px;
  }
  .cover-art {
    right: 25px;
  }
  .cover-art .icon {
    width: 62px;
    height: 62px;
  }
  #toast {
    bottom: 85px;
  }
  .form-page {
    max-width: 740px;
  }
}
@media (max-width: 650px) {
  .topbar {
    padding: 0 16px;
    gap: 13px;
    height: 64px;
  }
  .mobile-brand {
    font-size: 21px;
    gap: 5px;
  }
  .search {
    height: 35px;
    gap: 6px;
    padding: 0 9px;
  }
  .search input {
    font-size: 11px;
  }
  .search > .icon {
    display: none;
  }
  .search button {
    padding: 2px;
  }
  .top-actions .btn {
    padding: 7px 9px;
  }
  .top-actions .btn > span {
    display: none;
  }
  .top-actions .btn > .icon {
    width: 21px;
    height: 21px;
  }
  main {
    padding: 83px 16px 90px;
  }
  .section-heading {
    gap: 10px;
    margin-bottom: 17px;
  }
  .section-heading h2 {
    font-size: 20px;
  }
  .section-heading p {
    font-size: 11px;
  }
  .desktop-only {
    display: none;
  }
  .category-tabs {
    gap: 7px;
    margin-bottom: 12px;
    margin-right: -16px;
    padding-right: 16px;
  }
  .category {
    padding: 9px 13px;
    font-size: 11px;
    gap: 6px;
  }
  .category > .icon {
    width: 14px;
    height: 14px;
  }
  .filter-line {
    align-items: flex-start;
    margin-bottom: 17px;
  }
  .filters {
    gap: 6px 11px;
    flex: 1;
  }
  .filters > .icon {
    display: none;
  }
  .filters select {
    font-size: 11px;
    max-width: 116px;
  }
  .check-inline {
    font-size: 11px;
  }
  .filter-line > .subtle {
    white-space: nowrap;
    font-size: 10px;
    padding-top: 7px;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .skill-cover {
    min-height: 130px;
    padding: 22px;
  }
  .cover-copy strong {
    font-size: 28px;
  }
  .cover-copy small {
    font-size: 10px;
  }
  .cover-copy > span {
    font-size: 10px;
  }
  .cover-art {
    right: 29px;
  }
  .cover-art .icon {
    width: 65px;
    height: 65px;
  }
  .card-body {
    padding: 19px 22px 0;
  }
  .skill-row p {
    font-size: 13px;
    min-height: auto;
  }
  .skill-row.wanted p {
    font-size: 13px;
  }
  .skill-row p small {
    font-size: 11px;
  }
  .card-bottom {
    min-height: 53px;
  }
  .card-link {
    font-size: 13px;
  }
  .card-bottom > span {
    font-size: 11px;
  }
  .person-line strong {
    font-size: 14px;
  }
  .person-line div > span {
    font-size: 11px;
  }
  footer {
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 25px;
    padding-top: 18px;
    font-size: 9px;
  }
  footer > span:last-child {
    margin-left: 0;
    width: 100%;
    margin-top: 2px;
  }
  .footer-brand {
    font-size: 14px;
  }
  .page-heading {
    margin: 5px 0 22px;
  }
  .page-heading h1 {
    font-size: 28px;
  }
  .page-heading p {
    font-size: 12px;
  }
  .eyebrow {
    font-size: 11px;
  }
  .match-summary {
    gap: 18px;
    padding: 18px;
    flex-wrap: wrap;
  }
  .match-summary strong {
    font-size: 18px;
  }
  .match-summary > .btn {
    font-size: 11px;
    padding: 7px 10px;
  }
  .match-summary > div > span {
    font-size: 10px;
  }
  .notice {
    font-size: 11px;
    padding: 12px;
    gap: 7px;
  }
  .empty {
    padding: 45px 20px;
  }
  .empty h2 {
    font-size: 20px;
  }
  .empty p {
    font-size: 12px;
  }
  .back {
    margin-bottom: 15px;
  }
  .panel {
    padding: 21px 19px;
    margin-bottom: 18px;
  }
  .panel h2 {
    font-size: 19px;
  }
  .detail-layout {
    gap: 0;
  }
  .facts {
    gap: 20px;
  }
  .lead {
    font-size: 15px;
  }
  .exchange-aside {
    margin-top: 0;
  }
  .form-panel {
    padding: 23px 20px;
  }
  .form-panel h2 {
    font-size: 21px;
  }
  .steps {
    gap: 7px;
    margin: 24px 0;
  }
  .steps li {
    font-size: 11px;
    gap: 7px;
  }
  .steps li > span {
    width: 25px;
    height: 25px;
    font-size: 11px;
  }
  .steps li:after {
    margin-left: 4px;
  }
  .field {
    font-size: 12px;
  }
  .choice span {
    font-size: 11px;
    padding: 9px 11px;
  }
  .choice-grid {
    gap: 8px;
  }
  .form-actions {
    gap: 10px;
    align-items: center;
  }
  .form-actions > .subtle {
    font-size: 10px;
    max-width: 110px;
  }
  .form-actions .btn {
    padding: 10px 12px;
    font-size: 12px;
  }
  .form-two {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-two .field {
    margin: 12px 0;
  }
  .invitation-goals {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
  }
  .invitation-goals p {
    font-size: 12px;
  }
  .publish-preview {
    padding: 17px;
  }
  .publish-preview h3 {
    font-size: 17px;
    gap: 10px;
  }
  .exchange-row {
    padding: 19px 16px;
    gap: 10px;
    flex-wrap: wrap;
  }
  .exchange-row .person-line {
    flex-basis: calc(100% - 85px);
  }
  .exchange-row .row-progress {
    order: 3;
    width: 100%;
    padding-left: 45px;
  }
  .exchange-row > .icon {
    display: none;
  }
  .exchange-row .status {
    margin-left: auto;
  }
  .segmented {
    gap: 5px;
  }
  .segmented button {
    font-size: 12px;
    padding: 8px 11px;
  }
  .exchange-heading {
    align-items: flex-start;
  }
  .exchange-heading h1 {
    font-size: 24px;
  }
  .exchange-heading .status {
    margin-top: 30px;
  }
  .demo-control {
    padding: 18px;
    gap: 18px;
  }
  .demo-control strong {
    font-size: 12px;
  }
  .demo-control small {
    font-size: 10px;
    line-height: 1.8;
  }
  .demo-control > div:last-child {
    align-self: stretch;
    display: flex;
  }
  .demo-control .btn {
    font-size: 11px;
    padding: 9px;
    flex: 1;
    white-space: nowrap;
  }
  .section-heading.compact {
    flex-wrap: wrap;
    gap: 4px;
  }
  .section-heading.compact h2 {
    margin-bottom: 5px;
  }
  .lesson {
    gap: 11px;
    padding: 20px 0;
  }
  .lesson-title {
    align-items: flex-start;
  }
  .lesson-title h3 {
    font-size: 13px;
  }
  .lesson-title .pill {
    font-size: 10px;
    padding: 3px 6px;
  }
  .lesson p {
    font-size: 12px;
  }
  .lesson time {
    font-size: 11px;
  }
  .lesson-number {
    width: 25px;
    height: 25px;
  }
  .message {
    max-width: 95%;
  }
  .profile-summary {
    gap: 13px;
    flex-wrap: wrap;
  }
  .profile-summary .avatar.xl {
    width: 58px;
    height: 58px;
    font-size: 19px;
  }
  .profile-summary > div {
    min-width: 170px;
  }
  .profile-summary > .btn {
    margin-left: 71px;
    padding: 7px 12px;
    font-size: 11px;
  }
  .profile-skills {
    gap: 15px;
    grid-template-columns: 1fr 25px 1fr;
  }
  .profile-skills h3 {
    font-size: 18px;
  }
  .profile-skills p {
    font-size: 12px;
  }
  .swap-large .icon {
    width: 24px;
    height: 24px;
  }
  .panel-actions {
    gap: 8px;
  }
  .panel-actions .btn {
    font-size: 11px;
    padding: 9px 12px;
  }
  .panel-actions > .text-btn {
    margin-left: 0;
    width: 100%;
    margin-top: 5px;
    font-size: 12px;
  }
  .demo-settings {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .demo-settings .btn {
    font-size: 12px;
  }
  .profile-summary p {
    font-size: 12px;
  }
  .rating-options {
    gap: 5px;
  }
  .rating-options span {
    font-size: 12px;
  }
  .form-error {
    font-size: 12px;
  }
  dialog {
    padding: 23px;
  }
  .dialog-heading h2 {
    font-size: 19px;
  }
}
@media (max-width: 370px) {
  .match-summary {
    gap: 13px;
  }
  .match-summary > .btn {
    margin-left: 0;
  }
  .topbar {
    gap: 8px;
  }
  .mobile-brand {
    font-size: 18px;
  }
  .mobile-brand > .icon {
    width: 25px;
    height: 25px;
  }
  .filters select {
    max-width: 105px;
  }
  .profile-skills {
    grid-template-columns: 1fr;
  }
  .swap-large {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
/* Final usability pass: improve reading size and keep the primary action reachable. */
.skill-row p,
.skill-row.wanted p {
  font-size: 13px;
}
.skill-row p small {
  font-size: 11px;
}
.person-line div > span {
  font-size: 11px;
}
.card-bottom > span {
  font-size: 11px;
}
.cover-copy small {
  font-size: 10px;
  white-space: normal;
  max-width: 180px;
}
.cover-copy > span {
  font-size: 11px;
}
.mobile-invite {
  display: none;
}
.card-grid:has(> .skill-card:only-child) {
  grid-template-columns: minmax(0, 480px);
}
.profile-summary p,
.review-sample p,
.lesson p {
  font-size: 14px;
}
.match-reasons {
  font-size: 11px;
}
.search-result {
  overflow-wrap: anywhere;
}
@media (max-width: 650px) {
  .mobile-invite {
    display: block;
    position: fixed;
    bottom: 78px;
    left: 16px;
    right: 16px;
    z-index: 18;
    padding: 8px;
    background: #ffffffed;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: 0 5px 20px #2221;
  }
  main[data-view="person"] {
    padding-bottom: 158px;
  }
  .skill-row p,
  .skill-row.wanted p {
    font-size: 14px;
  }
  .profile-summary p,
  .review-sample p,
  .lesson p {
    font-size: 13px;
  }
  .card-grid:has(> .skill-card:only-child) {
    grid-template-columns: minmax(0, 1fr);
  }
}
.save-notice {
  margin: 0 0 22px;
  background: #fff2d8;
  color: #735816;
}
.save-notice[hidden] {
  display: none;
}
.field-error {
  color: #a02929;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 10px;
}
[aria-invalid="true"] {
  border-color: #b93632 !important;
}
.choice input[aria-invalid="true"] + span {
  border-color: #b93632;
}
.field:has([aria-invalid="true"]),
fieldset:has([aria-invalid="true"]) {
  scroll-margin-top: 100px;
}
@media (max-width: 650px) {
  .top-actions .btn {
    min-width: 36px;
    min-height: 36px;
  }
}
.preparation summary {
  cursor: pointer;
  font-weight: 600;
  line-height: 1.6;
}
.guide-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 8px 20px 0;
}
.guide-steps p,
.guide-note,
.preparation p,
.preparation li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 13px;
}
.guide-note {
  border-top: 1px solid var(--line);
  margin: 16px 20px 0;
  padding: 12px 0;
}
.agenda {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.agenda li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.agenda li:first-child { padding-top: 0; }
.agenda li:last-child { border-bottom: 0; padding-bottom: 0; }
.agenda-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: start;
  height: 56px;
  background: var(--yellow-soft);
  border-radius: 10px;
  font-size: 21px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.agenda-time small { font-size: 10px; font-weight: 400; }
.agenda h3 { margin: 0 0 5px; font-size: 15px; }
.agenda p { margin: 0; color: var(--muted); line-height: 1.8; }
.preparation { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 16px; }
.preparation h3 { margin: 18px 0 8px; font-size: 14px; }
.preparation ul { padding-left: 20px; }
.preparation li + li { margin-top: 7px; }
.invitation-existing { align-items: flex-start; }
.invitation-existing p { margin: 6px 0; }
.invitation-existing .text-btn { display: flex; margin-top: 6px; }
@media (max-width: 650px) {
  .guide-steps { grid-template-columns: 1fr; gap: 16px; padding: 8px 16px 0; }
  .guide-steps p { margin: 6px 0; }
  .guide-note { margin: 12px 16px 0; font-size: 12px; }
  .agenda li { grid-template-columns: 42px minmax(0, 1fr); gap: 13px; }
  .agenda-time { height: 50px; font-size: 19px; }
  .agenda h3 { font-size: 14px; }
  .agenda p{ font-size: 13px; }
}

/* One decision surface per page; detail stays available through native disclosure. */
.discovery-intro {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 25px 28px 17px;
  margin-bottom: 28px;
}
.intro-heading { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.intro-heading h1 { font-size: 29px; line-height: 1.35; }
.intro-heading .btn { flex-shrink: 0; }
.intro-skills { display: flex; align-items: center; gap: 20px; margin-top: 19px; }
.intro-skills > span { color: #60510d; font-size: 12px; }
.intro-skills strong { color: var(--ink); margin-left: 10px; font-size: 14px; }
.intro-skills > .icon { width: 18px; color: #7b6817; flex-shrink: 0; }
.intro-skills > a { margin-left: auto; font-size: 12px; }
.intro-help { margin-top: 15px; border-top: 1px solid #22222218; padding-top: 11px; }
.intro-help > summary { cursor: pointer; color: #5e500c; font-size: 12px; width: fit-content; }
.intro-help .guide-steps { padding: 18px 0 0; }
.intro-help .guide-note { margin: 12px 0 0; border-color: #22222218; }
.intro-help p { color: #514814; }
.partner-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0 0 24px; }
.partner-identity { display: flex; gap: 14px; align-items: center; min-width: 0; }
.partner-identity h1 { font-size: 28px; margin: 0 0 4px; }
.partner-identity p { color: var(--muted); margin: 0; font-size: 13px; }
.partner-identity .sample { margin-left: 10px; }
.partner-header .btn { flex-shrink: 0; }
 .partner-offer { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.partner-offer > div + div { border-left: 1px solid var(--line); padding-left: 28px; }
.partner-offer h2 { font-size: 27px; margin: 9px 0; }
.partner-offer p { font-size: 16px; line-height: 1.8; margin-bottom: 12px; }
.partner-offer small { font-size: 12px; color: var(--muted); }
.course-summary { padding-top: 8px; padding-bottom: 8px; }
.course-summary > .detail-section:first-child { border-top: 0; }





.detail-section { border-top: 1px solid var(--line); padding: 0; }
.detail-section > summary { position: relative; padding: 17px 0; cursor: pointer; font-weight: 600; font-size: 14px; }
.detail-section > summary > span { float: right; font-weight: 400; font-size: 12px; color: var(--muted); }
.detail-section h3 { font-size: 14px; margin: 17px 0 7px; }
.detail-section p, .preparation-list { font-size: 14px; line-height: 1.9; color: var(--muted); }
.detail-section[open] { padding-bottom: 18px; }
.detail-section .agenda { margin-top: 10px; }
.detail-section .agenda h3 { margin-top: 0; }
.preparation-list { padding-left: 20px; }
.preparation-list li + li { margin-top: 7px; }
.partner-exchange > p { line-height: 1.8; }
.availability { margin: 0; }
.availability h3 { font-size: 14px; margin-bottom: 6px; }
.availability .tag-list { margin-top: 10px; }
.availability > small { display: block; margin-top: 9px; color: var(--muted); font-size: 11px; }
.partner-exchange .match-note { font-size: 13px; background: var(--bg); padding: 12px; border-radius: 8px; margin: 20px 0 16px; }
.detail-disclosure { font-size: 12px; color: var(--muted); margin-top: 4px; }
@media (max-width: 650px) {
  .discovery-intro { padding: 20px 18px 12px; margin-bottom: 23px; }
  .intro-heading { display: block; }
  .intro-heading h1 { font-size: 23px; }
  .intro-heading .btn { margin-top: 15px; font-size: 12px; padding: 9px 12px; }
  .intro-skills { gap: 12px; flex-wrap: wrap; margin-top: 16px; }
  .intro-skills > span { font-size: 11px; max-width: calc(50% - 22px); }
  .intro-skills strong { display: block; margin: 3px 0 0; font-size: 13px; overflow-wrap: anywhere; }
  .intro-skills > a { margin-left: auto; }
  .intro-help { margin-top: 12px; }
  .intro-help .guide-steps { gap: 15px; }
  .partner-header { margin-bottom: 19px; gap: 10px; }
  .partner-identity { gap: 10px; }
  .partner-identity h1 { font-size: 23px; }
  .partner-identity p { font-size: 11px; }
  .partner-identity .sample { margin-left: 5px; }
  .partner-header .btn { padding: 8px 10px; font-size: 12px; }
  .partner-layout { gap: 0; }
  .partner-layout .panel { padding: 21px; }
  .partner-offer { padding: 20px; gap: 17px; }
  .partner-offer > div + div { padding-left: 17px; }
  .partner-offer h2 { font-size: 22px; }
  .partner-offer p { font-size: 13px; }
  .partner-offer small { font-size: 11px; }
  .partner-layout .course-summary { padding-top: 4px; padding-bottom: 4px; }

  .detail-section > summary { font-size: 13px; }
  .detail-section > summary > span { font-size: 11px; }
  .detail-section p, .preparation-list { font-size: 13px; }
  .partner-exchange .desktop-invite { display: none; }
  .detail-disclosure { line-height: 1.8; }
}
