:root {
  --paper: #f5f3ec;
  --white: #fffefa;
  --ink: #242822;
  --muted: #686b61;
  --line: #d8d9ce;
  --accent: #c7482b;
  --accent-dark: #a6341c;
  --green: #e4e8dc;
  --radius: 4px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a,
button {
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
[hidden] {
  display: none !important;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 650;
}
p {
  line-height: 1.8;
}
em {
  font-style: normal;
}
button {
  color: inherit;
}
.shell {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.mono,
.eyebrow,
.service-number,
.steps > li > span {
  font-variant-numeric: tabular-nums;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 88px;
}
.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  white-space: nowrap;
}
.brand > span {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.2;
}
.brand small {
  display: block;
  font-size: 10px;
  font-weight: 450;
  letter-spacing: 0.16em;
  margin-top: 6px;
  color: var(--muted);
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  font-size: 13px;
  position: relative;
  padding-block: 14px;
}
.nav a:hover,
.nav a[aria-current] {
  color: var(--accent);
}
.nav a[aria-current]:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--accent);
}
.header-cta {
  background: var(--ink);
  color: var(--white);
  padding: 12px 19px;
  font-size: 13px;
  display: inline-flex;
  gap: 28px;
  border-radius: var(--radius);
}
.header-cta:hover {
  background: var(--accent);
}
.menu-toggle {
  display: none;
}
.eyebrow {
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.12em;
  color: var(--muted);
  line-height: 1.5;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 2px;
}
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: 70px 68px;
}
.hero h1 {
  font-size: clamp(32px, 3.65vw, 50px);
  letter-spacing: -0.06em;
  line-height: 1.5;
  margin-top: 25px;
  margin-bottom: 23px;
  word-break: keep-all;
}
.hero h1 em {
  color: var(--accent);
  position: relative;
}
.hero-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 15px 21px;
  font-size: 14px;
  font-weight: 550;
  min-height: 50px;
}
.button span {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
}
.button-primary,
.button-dark {
  background: var(--accent);
  color: white;
}
.button-primary:hover,
.button-dark:hover {
  background: var(--accent-dark);
}
.button-outline {
  border-color: #afb2a6;
  background: transparent;
}
.button-outline:hover {
  background: var(--green);
  border-color: var(--ink);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: white;
}
.micro-copy {
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
}
.micro-copy span {
  margin: 0 9px;
  color: #8c8f81;
}
.match-board {
  background: #e8e9e0;
  padding: 20px 24px 13px;
  position: relative;
  border: 1px solid #d8dace;
}
.board-top,
.board-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: var(--muted);
}
.board-top {
  margin-bottom: 21px;
}
.mono {
  font-size: 9px;
  letter-spacing: 0.12em;
}
.board-brief {
  background: var(--white);
  padding: 19px 22px;
  border: 1px solid #d5d7c9;
  box-shadow: 4px 5px 0 #d8dbce;
}
.board-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--muted);
}
.mini-mark {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
}
.example-label {
  margin-left: auto;
  font-size: 9px;
  border: 1px solid var(--line);
  padding: 2px 5px;
}
.board-brief h2 {
  font-size: 28px;
  line-height: 1.45;
  margin: 16px 0 20px;
  letter-spacing: -0.04em;
}
.brief-tags {
  display: flex;
  gap: 8px;
}
.brief-tags span {
  font-size: 10px;
  background: var(--paper);
  padding: 5px 9px;
}
.match-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 84px;
}
.connector-line {
  width: 30px;
  height: 1px;
  background: #b8bdaf;
}
.match-connector p {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}
.match-connector p span {
  display: block;
  font-size: 9px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
}
.connector-arrow {
  margin-left: 16px;
  font-size: 27px;
  font-weight: 300;
  color: var(--accent);
}
.board-creator {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 20px 16px;
  border: 1px solid #c9ccbe;
}
.board-creator h3 {
  font-size: 15px;
  margin-top: 6px;
}
.board-creator p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.creator-symbol {
  width: 45px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #efe0cf;
  flex-shrink: 0;
}
.creator-symbol span {
  width: 25px;
  height: 29px;
  border-radius: 50% 50% 0 0;
  background: var(--accent);
  position: relative;
  transform: translateY(6px);
}
.creator-symbol span:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #efe0cf;
  top: -11px;
  left: 6px;
}
.creator-arrow {
  margin-left: auto;
  font-size: 24px;
}
.board-bottom {
  margin-top: 17px;
  font-size: 9px;
}
.platform-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.platform-strip > .shell {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 77px;
}
.platform-strip > .shell > span {
  color: var(--muted);
  font-size: 11px;
}
.platform-names {
  display: flex;
  gap: 37px;
  align-items: center;
  flex: 1;
}
.platform-names b {
  font-family: Arial, sans-serif;
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: 650;
}
.platform-names .platform-x {
  font-size: 24px;
}
.section {
  padding-block: 76px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 30px;
}
.section-heading h2,
.workflow h2,
.faq-section h2 {
  font-size: 31px;
  line-height: 1.45;
  letter-spacing: -0.04em;
  margin-top: 13px;
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  padding-block: 9px;
  border-bottom: 1px solid var(--ink);
}
.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.task-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.filters {
  display: flex;
  gap: 5px;
  overflow: auto;
  padding: 5px 1px;
}
.filter {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 10px 14px;
  white-space: nowrap;
  font-size: 12px;
  border-radius: var(--radius);
  min-height: 40px;
}
.filter:hover {
  color: var(--ink);
  background: var(--green);
}
.filter.active {
  background: var(--ink);
  color: white;
}
.task-toolbar > p {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}
.task-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.empty-state {
  grid-column: 1/-1;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 35px 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: 187px;
}
.empty-symbol {
  flex-shrink: 0;
  width: 62px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid #c9cdbf;
  background: var(--green);
  font-size: 38px;
  color: var(--ink);
  transform: rotate(-5deg);
}
.empty-state h3 {
  font-size: 21px;
  margin-top: 7px;
  margin-bottom: 8px;
}
.empty-state p:not(.eyebrow) {
  font-size: 12px;
  color: var(--muted);
  max-width: 610px;
}
.empty-state > .text-link {
  margin-left: auto;
  flex-shrink: 0;
}
.empty-state .eyebrow {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.empty-state button {
  background: transparent;
}
.board-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 17px;
  font-size: 10px;
  color: var(--muted);
}
.board-note a:hover {
  color: var(--accent);
}
.task-card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  gap: 12px;
}
.task-tag {
  font-size: 11px;
  color: var(--accent);
}
.task-card h3 {
  font-size: 20px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.task-card > p {
  font-size: 12px;
  color: var(--muted);
  white-space: pre-line;
  overflow-wrap: anywhere;
}
.task-meta {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.task-meta strong {
  font-size: 16px;
}
.task-meta span {
  font-size: 10px;
  color: var(--muted);
}
.task-apply {
  color: var(--accent);
  font-size: 12px;
  overflow-wrap: anywhere;
}
.task-apply:hover {
  text-decoration: underline;
}
.task-contact {
  font-size: 12px;
  overflow-wrap: anywhere;
}
.contact-copy {
  border: 1px solid var(--line);
  font-size: 11px;
  padding: 7px 10px;
  margin-top: 8px;
  background: var(--paper);
}
.services-section {
  background: #ebece3;
  border-block: 1px solid var(--line);
}
.section-description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
}
.service-list {
  border-top: 1px solid #b9beaf;
  margin-top: 38px;
}
.service-row {
  display: grid;
  grid-template-columns: 42px 1.1fr 1.2fr 0.85fr;
  align-items: center;
  gap: 25px;
  padding-block: 29px;
  border-bottom: 1px solid #c9cebe;
}
.service-number {
  font-size: 12px;
  color: var(--accent);
}
.service-title h3 {
  font-size: 23px;
  margin-bottom: 9px;
  letter-spacing: -0.025em;
}
.service-title > span {
  font-size: 10px;
  color: var(--muted);
}
.service-row > p {
  font-size: 13px;
  color: var(--muted);
  max-width: 340px;
}
.service-row > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  padding-block: 12px;
}
.service-row > a span {
  font-size: 25px;
}
.service-row > a:hover {
  color: var(--accent);
}
.workflow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.workflow-intro > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin: 23px 0;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 23px;
  padding-block: 23px;
  border-bottom: 1px solid var(--line);
}
.steps li:first-child {
  border-top: 1px solid var(--line);
}
.steps > li > span {
  font-size: 12px;
  color: var(--accent);
  padding-top: 5px;
}
.steps h3 {
  font-size: 18px;
}
.steps p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 440px;
}
.creator-band {
  background: var(--ink);
  color: var(--paper);
  padding-block: 54px;
}
.creator-band > .shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.creator-band .eyebrow {
  color: #b3b9a6;
}
.creator-band h2 {
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1.5;
  margin-top: 18px;
}
.creator-band p:not(.eyebrow) {
  font-size: 13px;
  color: #c3c8ba;
  margin-bottom: 23px;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  font-size: 15px;
  line-height: 1.6;
  padding-block: 23px;
  font-weight: 550;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  font-size: 23px;
  color: var(--muted);
  font-weight: 400;
}
details[open] > summary:after {
  content: "−";
  color: var(--accent);
}
details[open] > summary {
  color: var(--accent);
}
details > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 23px;
  max-width: 660px;
}
details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.closing {
  border-top: 1px solid var(--line);
  padding-block: 42px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.closing h2 {
  font-size: 29px;
  margin-top: 12px;
  letter-spacing: -0.04em;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: #ecece4;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 36px;
}
.footer-top > p {
  font-size: 14px;
  line-height: 1.85;
}
.footer-top > p > span {
  color: var(--muted);
  font-size: 11px;
}
.footer-contact {
  font-size: 12px;
  display: flex;
  gap: 30px;
  align-items: center;
}
.footer-contact:hover {
  color: var(--accent);
}
.footer-bottom {
  border-top: 1px solid #d4d6ca;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
  gap: 25px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 25px;
}
.footer-bottom a:hover {
  color: var(--accent);
}
.page-hero {
  padding-block: 40px 44px !important;
  min-height: 0 !important;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}
.breadcrumb a:hover {
  color: var(--accent);
}
.page-hero h1 {
  font-size: 40px;
  letter-spacing: -0.05em;
  line-height: 1.4;
  margin-top: 15px;
  margin-bottom: 15px;
}
.page-hero h1 em {
  color: var(--accent);
}
.page-hero .hero-text {
  max-width: 630px;
  font-size: 14px;
}
.page-hero .eyebrow {
  font-size: 10px;
}
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 55px;
  padding-block: 44px 76px;
  align-items: start;
}
.task-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
}
.form-section {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0 0 30px;
  padding: 23px 0 0;
  min-width: 0;
}
.form-section legend {
  font-size: 16px;
  font-weight: 650;
  padding-right: 16px;
}
.form-section legend span {
  font-size: 10px;
  color: var(--accent);
  margin-right: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 21px 20px;
}
.form-grid > label,
.field-label {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-weight: 550;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.required {
  color: var(--accent);
  font-size: 11px;
}
.form-grid input:not([type="checkbox"]),
.form-grid select,
.form-grid textarea {
  display: block;
  width: 100%;
  min-width: 0;
  color: var(--ink);
  border: 1px solid #bfc3b5;
  background: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.5;
  min-height: 46px;
}
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #797c71;
}
.form-grid textarea {
  resize: vertical;
  min-height: 115px;
}
.field-help,
.form-hint {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
}
.platform-field {
  padding: 0;
  border: 0;
  min-width: 0;
  margin: 0;
}
.platform-field legend {
  font-size: 13px;
  margin-bottom: 10px;
  font-weight: 550;
}
.platform-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.platform-choices label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  border: 1px solid #bfc3b5;
  padding: 11px 10px;
  cursor: pointer;
  border-radius: var(--radius);
  min-width: 0;
}
.platform-choices label:has(input:checked) {
  border-color: var(--accent);
  background: #fbefe7;
  color: var(--accent-dark);
}
input[type="checkbox"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
}
.form-check {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px !important;
  align-items: flex-start;
  font-size: 12px !important;
  line-height: 1.8;
  font-weight: 400 !important;
}
.form-check input {
  margin-top: 4px;
}
.form-check a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.form-actions > span {
  font-size: 11px;
  color: var(--muted);
}
.form-status {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 16px;
  color: var(--accent-dark);
  scroll-margin-top: 110px;
  overflow-wrap: anywhere;
}
.form-status:empty {
  display: none;
}
.form-status[data-state="success"] {
  padding: 16px;
  background: var(--green);
  color: var(--ink);
}
.form-status[data-state="error"] {
  padding: 16px;
  border-left: 2px solid var(--accent);
  background: #fbefe7;
}
.form-status a {
  text-decoration: underline;
}
.form-aside {
  position: sticky;
  top: 120px;
}
.form-aside .eyebrow {
  font-size: 10px;
}
.form-aside h2 {
  font-size: 23px;
  line-height: 1.5;
  margin-block: 15px 22px;
}
.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aside-list li {
  padding-block: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 550;
}
.aside-list span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
}
.aside-note {
  padding: 19px;
  margin-top: 24px;
  background: var(--green);
  font-size: 12px;
  color: var(--muted);
}
.aside-note a {
  color: var(--ink);
  text-decoration: underline;
}
.form-intro {
  margin-bottom: 26px;
  font-size: 12px;
  color: var(--muted);
}
.form-fallback {
  background: #fbefe7;
  border: 1px solid var(--accent);
  padding: 18px;
  font-size: 13px;
  margin-block: 20px;
}
.form-fallback a {
  text-decoration: underline;
}
.about {
  padding-block: 40px 70px !important;
}
.about-copy {
  max-width: 820px;
  font-size: 15px;
  line-height: 1.95;
}
.about-copy p {
  margin-bottom: 23px;
  color: var(--muted);
}
.about-copy strong {
  font-size: 18px;
  font-weight: 650;
  color: var(--ink);
}
.about-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.about-copy .legal-note {
  font-size: 12px;
  border-left: 2px solid var(--accent);
  padding: 16px 22px;
  background: #edece3;
}
.privacy {
  padding-block: 15px 65px !important;
}
.privacy-grid {
  max-width: 850px;
}
.privacy-grid details {
  border-bottom: 1px solid var(--line);
}
.privacy-grid summary {
  font-size: 16px;
}
.notice {
  font-size: 13px;
  margin-top: 20px;
}
.notice a {
  text-decoration: underline;
}
@media (min-width: 1450px) {
  .hero {
    gap: 95px;
  }
  .hero h1 {
    font-size: 51px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 24px;
  }
  .nav {
    gap: 18px;
  }
  .hero {
    gap: 35px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .board-brief h2 {
    font-size: 25px;
  }
  .platform-strip > .shell {
    gap: 28px;
  }
  .platform-names {
    gap: 27px;
  }
  .platform-note {
    display: none;
  }
  .form-layout {
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 240px;
  }
  .service-row {
    gap: 17px;
    grid-template-columns: 28px 1fr 1fr 0.8fr;
  }
  .service-title h3 {
    font-size: 21px;
  }
  .workflow,
  .creator-band > .shell {
    gap: 65px;
  }
  .faq-section {
    gap: 45px;
  }
}
@media (max-width: 900px) {
  .header-inner {
    height: 76px;
    gap: 20px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    margin: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 12px 32px 20px;
    box-shadow: 0 12px 15px #2428220a;
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav a {
    padding: 15px 0;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    width: 40px;
    height: 42px;
    background: transparent;
    border: 1px solid #bdc1b3;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: var(--radius);
  }
  .menu-toggle > span {
    width: 17px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.18s;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-block: 50px;
  }
  .hero h1 {
    font-size: 29px;
  }
  .hero-actions {
    gap: 9px;
    flex-wrap: wrap;
  }
  .hero .button {
    font-size: 12px;
    padding: 12px 14px;
    gap: 19px;
  }
  .micro-copy {
    font-size: 10px;
  }
  .micro-copy span {
    margin: 0 3px;
  }
  .match-board {
    padding: 16px;
  }
  .board-brief {
    padding: 16px;
  }
  .board-brief h2 {
    font-size: 24px;
  }
  .board-top > .mono {
    display: none;
  }
  .board-creator {
    padding: 15px 10px;
    gap: 10px;
  }
  .board-creator h3 {
    font-size: 13px;
  }
  .creator-arrow {
    display: none;
  }
  .platform-names {
    gap: 22px;
  }
  .platform-names b {
    font-size: 16px;
  }
  .section {
    padding-block: 57px;
  }
  .section-heading h2,
  .workflow h2,
  .faq-section h2 {
    font-size: 27px;
  }
  .task-toolbar {
    display: block;
  }
  .task-toolbar > p {
    margin-top: 6px;
  }
  .task-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .empty-state {
    padding: 26px;
    gap: 22px;
    flex-wrap: wrap;
  }
  .empty-state > div:nth-child(2) {
    flex: 1;
    min-width: 210px;
  }
  .empty-state > .text-link {
    margin-left: 84px;
  }
  .service-row {
    grid-template-columns: 24px 1fr 1.1fr;
  }
  .service-row > a {
    grid-column: 2/-1;
    padding-block: 0;
    justify-content: flex-start;
  }
  .service-title > span {
    line-height: 1.9;
    display: block;
  }
  .service-row > p {
    font-size: 12px;
  }
  .workflow,
  .creator-band > .shell {
    gap: 45px;
  }
  .creator-band h2 {
    font-size: 28px;
  }
  .footer-top {
    gap: 25px;
    flex-wrap: wrap;
  }
  .footer-contact {
    margin-left: auto;
  }
  .form-layout {
    grid-template-columns: 1fr;
  }
  .form-aside {
    position: static;
    max-width: 650px;
  }
  .form-aside h2 {
    margin-block: 12px;
  }
  .aside-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 90px;
  }
  .shell {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 72px;
    gap: 12px;
  }
  .brand {
    gap: 8px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .brand > span {
    font-size: 18px;
  }
  .brand small {
    font-size: 8px;
    letter-spacing: 0.1em;
    margin-top: 5px;
  }
  .header-cta {
    padding: 10px 12px;
    gap: 10px;
    font-size: 11px;
  }
  .header-cta span {
    font-size: 14px;
  }
  .menu-toggle {
    width: 35px;
    height: 37px;
  }
  .nav {
    top: 71px;
    padding-inline: 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 37px 32px;
  }
  .hero h1 {
    font-size: clamp(26px, 7.4vw, 40px);
    letter-spacing: -0.055em;
    line-height: 1.55;
    margin-top: 21px;
    margin-bottom: 17px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero-text {
    font-size: 13px;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .hero .button {
    font-size: 13px;
    min-height: 47px;
    padding: 13px 16px;
    gap: 25px;
  }
  .micro-copy {
    font-size: 10px;
    margin-top: 17px;
  }
  .micro-copy span {
    margin: 0 7px;
  }
  .match-board {
    padding: 18px 20px 15px;
  }
  .board-top {
    margin-bottom: 18px;
  }
  .board-top > .mono {
    display: block;
    font-size: 8px;
  }
  .board-brief {
    padding: 16px 20px;
  }
  .board-brief h2 {
    font-size: 25px;
    margin-block: 12px 15px;
  }
  .match-connector {
    height: 73px;
  }
  .board-creator {
    padding: 18px 14px;
  }
  .board-creator h3 {
    font-size: 14px;
  }
  .creator-arrow {
    display: block;
  }
  .platform-strip > .shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-block: 21px;
  }
  .platform-strip > .shell > span {
    font-size: 10px;
  }
  .platform-names {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }
  .platform-names b {
    font-size: 15px;
  }
  .platform-names .platform-x {
    font-size: 20px;
  }
  .section {
    padding-block: 46px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 21px;
  }
  .section-heading h2,
  .workflow h2,
  .faq-section h2 {
    font-size: 25px;
  }
  .section-heading .text-link {
    font-size: 11px;
    padding-bottom: 5px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .task-toolbar {
    margin-bottom: 17px;
  }
  .filter {
    padding: 9px 12px;
    min-height: 40px;
  }
  .filters {
    margin-inline: -2px;
  }
  .task-grid {
    grid-template-columns: 1fr;
  }
  .empty-state {
    padding: 24px 20px;
    gap: 19px;
    align-items: flex-start;
  }
  .empty-symbol {
    width: 43px;
    height: 54px;
    font-size: 28px;
  }
  .empty-state > div:nth-child(2) {
    min-width: 165px;
  }
  .empty-state h3 {
    font-size: 18px;
  }
  .empty-state p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.9;
  }
  .empty-state > .text-link {
    margin-left: 62px;
  }
  .board-note {
    font-size: 9px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .section-description {
    font-size: 12px;
  }
  .service-list {
    margin-top: 28px;
  }
  .service-row {
    grid-template-columns: 22px 1fr;
    gap: 14px;
    padding-block: 26px;
  }
  .service-title h3 {
    font-size: 22px;
  }
  .service-title > span {
    font-size: 11px;
  }
  .service-row > p {
    grid-column: 2/-1;
    font-size: 13px;
    max-width: 100%;
  }
  .service-row > a {
    margin-top: 3px;
    font-size: 11px;
  }
  .service-row > a span {
    margin-left: auto;
    font-size: 23px;
  }
  .workflow {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .workflow-intro > p {
    margin-block: 17px;
    font-size: 12px;
  }
  .steps li {
    padding-block: 21px;
    gap: 12px;
    grid-template-columns: 34px 1fr;
  }
  .steps h3 {
    font-size: 17px;
  }
  .creator-band {
    padding-block: 40px;
  }
  .creator-band > .shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .creator-band h2 {
    font-size: 27px;
  }
  .creator-band p:not(.eyebrow) {
    font-size: 12px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .faq-section h2 br {
    display: none;
  }
  summary {
    font-size: 14px;
    gap: 15px;
    padding-block: 20px;
  }
  details > p {
    font-size: 12px;
  }
  .closing {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 29px 42px;
    gap: 24px;
  }
  .closing h2 {
    font-size: 26px;
  }
  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
    padding-block: 30px;
  }
  .footer-top .brand > span {
    font-size: 20px;
  }
  .footer-contact {
    margin-left: 0;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 18px;
    font-size: 10px;
  }
  .footer-bottom > span:last-child {
    width: 100%;
    font-size: 9px;
  }
  .footer-bottom nav {
    gap: 18px;
  }
  .page-hero {
    padding-block: 25px 30px !important;
  }
  .page-hero h1 {
    font-size: 31px;
    line-height: 1.45;
  }
  .page-hero .hero-text {
    font-size: 13px;
  }
  .breadcrumb {
    margin-bottom: 23px;
    font-size: 10px;
  }
  .form-layout {
    padding-block: 28px 46px;
    gap: 35px;
  }
  .task-form {
    padding: 22px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .platform-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .form-section {
    padding-top: 20px;
    margin-bottom: 25px;
  }
  .form-section legend {
    font-size: 15px;
  }
  .form-grid input:not([type="checkbox"]),
  .form-grid textarea,
  .form-grid select {
    font-size: 16px;
  }
  .form-grid > label {
    font-size: 12px;
  }
  .field-help {
    font-size: 11px;
  }
  .form-actions {
    gap: 12px;
  }
  .form-actions > .button {
    width: 100%;
  }
  .form-actions > span {
    width: 100%;
    text-align: center;
  }
  .aside-list {
    display: block;
  }
  .aside-list li {
    padding-block: 14px;
  }
  .about {
    padding-block: 28px 44px !important;
  }
  .about-copy {
    font-size: 14px;
  }
  .about-copy strong {
    font-size: 17px;
  }
  .privacy-grid summary {
    font-size: 14px;
  }
  .privacy {
    padding-bottom: 40px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
.value-tool-promo{background:#17211b;color:#fff}.value-tool-inner{min-height:300px;display:grid;grid-template-columns:1.2fr .8fr auto;gap:48px;align-items:center;padding-top:54px;padding-bottom:54px}.value-tool-inner h2{margin:10px 0 16px;font-size:clamp(36px,4vw,58px);line-height:1.05;letter-spacing:-.05em}.value-tool-inner>div:first-child>p:last-child{max-width:540px;color:#bdc8c1;line-height:1.75}.value-tool-ticket{padding:28px;border:1px solid rgba(255,255,255,.22);background:#213129;box-shadow:10px 10px 0 #dff25a;transform:rotate(1.5deg)}.value-tool-ticket span,.value-tool-ticket small{display:block;color:#b8c6be;font-size:12px}.value-tool-ticket strong{display:block;margin:14px 0;font-size:48px;color:#dff25a}.value-tool-inner .button{white-space:nowrap}@media(max-width:900px){.value-tool-inner{grid-template-columns:1fr}.value-tool-ticket{max-width:360px}.value-tool-inner>a{justify-self:start}}
