:root {
  --orange-700: #c83b00;
  --orange-650: #dc4600;
  --orange-600: #ef5100;
  --orange-500: #ff6500;
  --orange-300: #ff9b55;
  --orange-100: #fff0e6;
  --orange-50: #fff8f3;
  --ink: #151515;
  --muted: #66625f;
  --line: #eadfd7;
  --paper: #ffffff;
  --warm: #f8f5f2;
  --radius-lg: 26px;
  --radius-md: 16px;
  --shadow-soft: 0 18px 50px rgba(117, 49, 10, 0.08);
  --shell: min(1200px, calc(100% - 40px));
  font-family:
    "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.18;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(42px, 5vw, 76px);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
}

h3 {
  font-size: 24px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  color: #fff;
  background: var(--orange-700);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #1f6fff;
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(234, 223, 215, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #4a4643;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.site-nav a.active {
  color: var(--orange-650);
}

.account-actions {
  display: flex;
  gap: 10px;
}

.mobile-account-actions {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: 22px;
}

.btn {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding-inline: 19px;
  border-radius: 10px;
  font-size: 14px;
}

.btn-primary {
  color: #fff;
  background: var(--orange-650);
  border-color: var(--orange-650);
  box-shadow: 0 12px 24px rgba(220, 70, 0, 0.2);
}

.btn-primary:hover {
  background: var(--orange-700);
  box-shadow: 0 16px 30px rgba(200, 59, 0, 0.26);
}

.btn-secondary,
.btn-ghost {
  color: var(--orange-700);
  background: #fff;
  border-color: var(--orange-500);
}

.btn-white {
  color: var(--orange-700);
  background: #fff;
}

.btn-block {
  width: 100%;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--orange-650);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #fff;
  opacity: 0.82;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-grid {
  position: relative;
  min-height: 500px;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 49%;
  padding-block: 86px;
}

.hero-copy h1 {
  font-size: clamp(48px, 4vw, 62px);
  white-space: nowrap;
}

.hero-copy h1 em {
  display: inline;
  color: var(--orange-600);
  font-style: normal;
  white-space: nowrap;
}

.hero-copy > p {
  max-width: 480px;
  margin-bottom: 34px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats {
  position: relative;
  z-index: 3;
  min-height: 116px;
  margin-top: -36px;
  padding: 26px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.stat {
  min-height: 58px;
  padding-inline: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  color: var(--orange-600);
  font-size: 26px;
}

.stat strong,
.stat small {
  display: block;
}

.stat strong {
  margin-bottom: 4px;
  font-size: clamp(20px, 2vw, 30px);
}

.stat small {
  color: var(--muted);
}

.section {
  padding-block: 90px;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading.centered {
  text-align: center;
}

.role-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.role-card {
  min-height: 380px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  overflow: hidden;
  background: var(--orange-50);
  border: 1px solid #f2ded1;
  border-radius: var(--radius-lg);
}

.role-card img {
  width: 120%;
  max-width: none;
  margin-left: -12%;
}

.role-tag,
.article-tag {
  display: inline-flex;
  min-height: 30px;
  padding: 0 11px;
  align-items: center;
  color: var(--orange-700);
  background: #fff;
  border: 1px solid #ffd8bf;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.role-copy h3 {
  margin: 14px 0 8px;
  font-size: 32px;
}

.role-copy p {
  margin-bottom: 18px;
}

.role-copy ul,
.auth-promo ul {
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  list-style: none;
}

.role-copy li i,
.auth-promo li i {
  margin-right: 6px;
  color: var(--orange-600);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-700);
  font-weight: 800;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.format-item {
  padding: 30px 24px;
  display: flex;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.format-item:last-child {
  border-right: 0;
}

.format-icon,
.step-icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--orange-650);
  background: var(--orange-100);
  border-radius: 14px;
  font-size: 22px;
}

.format-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.format-item p {
  margin-bottom: 0;
  font-size: 14px;
}

.assurance {
  min-height: 150px;
  padding: 34px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--orange-50);
  border: 1px solid #f0ddcf;
  border-radius: var(--radius-lg);
}

.assurance-lead {
  display: flex;
  align-items: center;
  gap: 18px;
}

.assurance-lead .eyebrow {
  margin-bottom: 6px;
}

.assurance-lead h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.assurance-shield {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange-650);
  border-radius: 20px;
  font-size: 30px;
}

.assurance-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 26px;
  color: #3f3935;
  font-weight: 700;
}

.assurance-points i {
  margin-right: 7px;
  color: var(--orange-650);
}

.news-partners {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
}

.row-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.row-heading a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--orange-700);
  font-weight: 750;
}

.announcement-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.announcement-list li {
  border-top: 1px solid var(--line);
}

.announcement-list a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.announcement-list time {
  color: #9a8f88;
  font-size: 13px;
}

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

.partner-list span {
  min-height: 56px;
  display: grid;
  place-items: center;
  color: #4d4844;
  background: var(--warm);
  border-radius: 10px;
  font-weight: 750;
}

.cta {
  min-height: 170px;
  margin-bottom: 90px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background: var(--orange-600);
  border-radius: var(--radius-lg);
}

.cta h2 {
  margin-bottom: 8px;
}

.cta p {
  margin-bottom: 0;
  color: #fff;
  opacity: 0.86;
}

.site-footer {
  color: #fff;
  background: #1b1918;
}

.footer-grid {
  padding-block: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand img {
  width: 160px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-contact p {
  color: #c9c2bd;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-grid strong {
  margin-bottom: 6px;
}

.footer-grid a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: #d3ccc7;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 18px 20px;
  color: #a79f99;
  text-align: center;
  border-top: 1px solid #302d2b;
  font-size: 13px;
}

.service-widget {
  position: fixed;
  z-index: 150;
  right: 24px;
  bottom: 24px;
}

.service-toggle {
  width: 58px;
  height: 58px;
  color: #fff;
  background: var(--orange-650);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(184, 59, 0, 0.3);
  font-size: 22px;
  cursor: pointer;
}

.service-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 280px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.service-panel p {
  margin-bottom: 18px;
}

.service-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.subhero,
.page-intro {
  overflow: hidden;
  background: var(--orange-50);
}

.subhero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.subhero-grid > div {
  padding-block: 70px;
}

.subhero-grid p {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 18px;
}

.subhero-grid img {
  width: 110%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.step-item {
  position: relative;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}

.step-item:last-child {
  border-right: 0;
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #f0ded2;
  font-size: 34px;
  font-weight: 850;
}

.step-item h3 {
  margin: 24px 0 8px;
  font-size: 20px;
}

.step-item p {
  margin-bottom: 0;
}

.page-intro {
  padding-block: 88px;
}

.page-intro h1 {
  margin-bottom: 12px;
}

.page-intro p {
  max-width: 620px;
  margin-bottom: 0;
}

.content-layout,
.faq-layout,
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

.filter-nav,
.help-nav,
.legal-nav {
  position: sticky;
  top: 106px;
  display: grid;
  border-top: 1px solid var(--line);
}

.filter-nav button,
.help-nav a,
.legal-nav a {
  min-height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  color: #5d5752;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

.filter-nav button.active,
.help-nav a.active,
.legal-nav a:hover {
  color: var(--orange-700);
  font-weight: 800;
  background: var(--orange-50);
}

.article-list {
  display: grid;
}

.article-list article {
  min-height: 170px;
  padding: 30px 8px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.article-list h2 {
  margin: 12px 0 8px;
  font-size: 26px;
}

.article-list h2 a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.article-list p {
  margin-bottom: 0;
}

.article-list time {
  flex: 0 0 auto;
  color: #948a83;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-grid article {
  min-height: 300px;
  padding: 38px;
  background: var(--orange-50);
  border: 1px solid #f0ded2;
  border-radius: var(--radius-lg);
}

.contact-grid article > span,
.contact-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange-650);
  border-radius: 18px;
  font-size: 26px;
}

.contact-grid h2 {
  margin: 28px 0 10px;
  font-size: 28px;
}

.contact-banner {
  min-height: 270px;
  margin-bottom: 90px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--warm);
  border-radius: var(--radius-lg);
}

.contact-mark {
  width: 110px;
  height: 110px;
  border-radius: 30px;
  font-size: 42px;
}

.auth-main {
  min-height: calc(100vh - 76px);
  padding: 70px 20px;
  display: grid;
  place-items: center;
  background: var(--orange-50);
}

.auth-shell {
  width: min(960px, 100%);
  min-height: 610px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.auth-promo {
  padding: 58px 48px;
  color: #fff;
  background: var(--orange-600);
}

.auth-promo h1 {
  font-size: 46px;
}

.auth-promo p {
  color: #fff;
  opacity: 0.88;
}

.auth-promo ul {
  margin-top: 40px;
}

.auth-promo li i {
  color: #fff;
}

.auth-form {
  padding: 52px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.auth-form h2 {
  margin-bottom: 18px;
  font-size: 32px;
}

.auth-form label,
.auth-form legend {
  font-size: 14px;
  font-weight: 750;
}

.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"] {
  min-height: 50px;
  width: 100%;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8cec7;
  border-radius: 10px;
}

.auth-form fieldset {
  padding: 0;
  margin: 0 0 4px;
  border: 0;
}

.role-choice {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.role-choice label,
.agreement-check {
  min-height: 48px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-50);
  border: 1px solid #f0ded2;
  border-radius: 10px;
}

.role-choice input,
.agreement-check input {
  width: 20px;
  height: 20px;
  accent-color: var(--orange-650);
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.captcha-row button {
  min-height: 50px;
  padding-inline: 18px;
  color: var(--orange-700);
  background: var(--orange-50);
  border: 1px solid var(--orange-500);
  border-radius: 10px;
  cursor: pointer;
}

.form-helper {
  min-height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  color: var(--orange-700);
  background: transparent;
  border: 0;
  justify-self: end;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--orange-700);
  font-size: 13px;
}

.auth-switch {
  margin: 6px 0 0;
  text-align: center;
}

.auth-switch a,
.agreement-check a {
  color: var(--orange-700);
  font-weight: 750;
}

.agreement-check a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.auth-switch a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-list summary {
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 17px;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary {
  color: var(--orange-700);
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 22px 22px;
  margin: 0;
}

.legal-content {
  max-width: 780px;
}

.legal-note {
  padding: 18px 20px;
  margin-bottom: 30px;
  color: var(--orange-700);
  background: var(--orange-50);
  border-left: 4px solid var(--orange-500);
}

.legal-content section {
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}

.legal-content h2 {
  font-size: 25px;
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100% - 32px, 920px);
  }

  .header-inner {
    grid-template-columns: 150px 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 20px;
  }

  .role-card {
    padding: 30px;
    grid-template-columns: 1fr;
  }

  .role-card img {
    max-height: 210px;
    width: 100%;
    margin: 0;
    object-fit: contain;
  }

  .format-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-item:nth-child(2),
  .step-item:nth-child(2) {
    border-right: 0;
  }

  .format-item:nth-child(-n + 2),
  .step-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .assurance-points {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .brand img {
    width: 132px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .account-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    padding: 10px 16px 20px;
    display: none;
    align-items: stretch;
    justify-content: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(47, 28, 17, 0.08);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    min-height: 50px;
    padding-inline: 12px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-account-actions {
    padding-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-account-actions a {
    justify-content: center;
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-grid,
  .subhero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy,
  .subhero-grid > div {
    padding: 56px 0 16px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    white-space: normal;
  }

  .hero-copy > p,
  .subhero-grid p {
    font-size: 16px;
  }

  .hero-art {
    position: relative;
    inset: auto;
    min-height: 300px;
  }

  .hero-art img {
    height: auto;
    width: 100%;
    margin: 0;
    object-fit: contain;
  }

  .subhero-grid img {
    max-height: 330px;
    width: 100%;
    object-fit: contain;
  }

  .stats {
    margin-top: 0;
    padding: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    padding: 16px 12px;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .role-grid,
  .news-partners,
  .contact-grid,
  .footer-grid,
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .content-layout,
  .faq-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .filter-nav,
  .help-nav,
  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .article-list article {
    flex-direction: column;
  }

  .auth-promo {
    display: none;
  }

  .auth-form {
    padding: 36px 28px;
  }

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

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-lg: 20px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy,
  .subhero-grid > div {
    padding-top: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-art {
    min-height: 240px;
  }

  .stats {
    border-radius: 14px;
  }

  .stat-icon {
    font-size: 20px;
  }

  .stat strong {
    font-size: 19px;
  }

  .stat small {
    font-size: 12px;
  }

  .section {
    padding-block: 60px;
  }

  .role-card {
    min-height: 0;
    padding: 26px 22px 18px;
  }

  .role-card img {
    max-height: 180px;
  }

  .format-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .format-item {
    padding: 20px 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .format-icon,
  .step-icon {
    width: 44px;
    height: 44px;
  }

  .format-item p {
    display: none;
  }

  .step-item {
    padding: 24px 16px;
  }

  .step-number {
    display: none;
  }

  .assurance {
    padding: 26px 22px;
  }

  .assurance-shield {
    width: 58px;
    height: 58px;
  }

  .assurance-lead h2 {
    font-size: 24px;
  }

  .assurance-points {
    display: grid;
    gap: 14px;
  }

  .news-partners {
    gap: 10px;
  }

  .partner-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    margin-bottom: 60px;
    padding: 30px 24px;
  }

  .footer-grid {
    padding-block: 44px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .service-widget {
    right: 14px;
    bottom: 14px;
  }

  .service-toggle {
    width: 52px;
    height: 52px;
  }

  .service-panel {
    width: min(280px, calc(100vw - 28px));
  }

  .page-intro {
    padding-block: 58px;
  }

  .contact-grid article {
    min-height: 0;
    padding: 30px 26px;
  }

  .contact-banner {
    min-height: 0;
    margin-bottom: 60px;
    padding: 34px 26px;
  }

  .contact-mark {
    display: none;
  }

  .auth-main {
    padding: 24px 12px;
  }

  .auth-shell {
    min-height: 0;
  }

  .auth-form {
    padding: 32px 22px;
  }

  .role-choice {
    grid-template-columns: 1fr;
  }

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

  .captcha-row button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Go 模板内容页与现有表单行为的兼容层 */
.none{display:none}.alert-msg{display:none;min-height:24px;color:var(--orange-700);font-size:13px}.alert-msg .alert-text{color:inherit}
.filter-nav a{min-height:52px;padding:0 14px;display:flex;align-items:center;border-bottom:1px solid var(--line);color:#5d5752}
.filter-nav a.active{color:var(--orange-700);font-weight:800;background:var(--orange-50)}
.pager-nav{padding-top:28px;display:flex;justify-content:space-between;gap:16px}
.empty-state{padding:40px 0}.article-detail{max-width:900px;font-size:16px;line-height:1.9;overflow-wrap:anywhere}
.article-detail img{height:auto!important}.article-detail table{width:100%!important;max-width:100%!important}
.role-choice button{min-height:48px;padding:10px 14px;color:var(--ink);background:var(--orange-50);border:1px solid #f0ded2;border-radius:10px;cursor:pointer}
.role-choice button.active{color:#fff;background:var(--orange-650);border-color:var(--orange-650)}
.auth-form input[type=text],.auth-form input[type=password]{min-height:50px;width:100%;padding:0 15px;color:var(--ink);background:#fff;border:1px solid #d8cec7;border-radius:10px}
.captcha-row button img{max-width:120px;max-height:44px}.codeTime{display:none}.form-helper{justify-self:end}
.orange-legal{max-width:900px}.orange-legal p,.orange-legal li{font-size:16px;line-height:1.95}.orange-legal ul{padding:0;list-style:none}
.contact-index{font-size:15px!important;font-weight:850}
.missing-detail{min-height:520px;display:flex;align-items:center}.missing-detail .shell{padding-block:60px}.missing-detail p{max-width:620px;margin-bottom:28px}
body>.container-fluid{width:auto;padding:0}.row-banner{display:none}
@media(max-width:820px){.article-detail{padding-inline:4px}.orange-legal p,.orange-legal li{font-size:15px}.pager-nav{flex-wrap:wrap}}

/* daily-stats-v1 */
.stats-enhanced .stat {
  transition: opacity .42s ease, transform .42s ease, border-color .2s ease;
}
.stat-delta {
  min-height: 18px;
  margin-top: 6px;
  display: block;
  color: var(--orange-650);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}
.stats-enhanced .stat[data-stat-key] {
  opacity: 0;
  transform: translateY(10px);
}
.stats-enhanced.is-visible .stat[data-stat-key] {
  opacity: 1;
  transform: translateY(0);
}
.stats-enhanced.is-visible .stat[data-stat-key]:nth-child(2) {
  transition-delay: .1s;
}
.stats-enhanced.is-visible .stat[data-stat-key]:nth-child(3) {
  transition-delay: .2s;
}
@media (hover:hover) and (pointer:fine) {
  .stats.is-visible .stat:hover {
    transform: translateY(-2px);
  }
}
@media (max-width:560px) {
  .stat-delta {
    margin-top: 4px;
    font-size: 10px;
  }
}
@media (prefers-reduced-motion:reduce) {
  .stats-enhanced .stat[data-stat-key],
  .stats-enhanced.is-visible .stat[data-stat-key] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
