:root {
  --bg-mint: #dff6f1;
  --bg-mint-strong: #cbeee8;
  --bg-panel: rgba(255, 255, 255, 0.96);
  --bg-panel-soft: rgba(255, 255, 255, 0.82);
  --text-main: #151515;
  --text-subtle: #575757;
  --text-soft: #7b7b7b;
  --brand: #f7c611;
  --brand-deep: #ef9c1d;
  --line: rgba(20, 20, 20, 0.08);
  --shadow-strong: 0 24px 54px rgba(42, 72, 68, 0.15);
  --shadow-soft: 0 14px 34px rgba(42, 72, 68, 0.1);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: min(1200px, calc(100% - 48px));
  --container-narrow: min(1000px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-main);
  font-family:
    'PingFang SC',
    'Microsoft YaHei',
    'Helvetica Neue',
    sans-serif;
  background:
    radial-gradient(circle at 50% 20%, rgba(207, 245, 238, 0.72), transparent 28%),
    radial-gradient(circle at 50% 75%, rgba(221, 247, 242, 0.9), transparent 24%),
    linear-gradient(180deg, #dff6f1 0, #ffffff 240px, #ffffff 82%, #d7f0ec 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.narrow {
  width: var(--container-narrow);
  margin: 0 auto;
}

.app-shell {
  min-height: 100vh;
}

.app-main {
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 24px rgba(20, 20, 20, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0 22px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.brand-copy {
  display: grid;
  gap: 8px;
}

.brand-copy h1 {
  margin: 0;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-copy p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 19px);
  color: #2b2b2b;
}

.brand-divider {
  width: 3px;
  height: 94px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6fd8cf, #8ee0d9);
}

.brand-logo {
  width: 90px;
  height: 93px;
  object-fit: contain;
  flex: none;
}

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

.site-nav--mobile {
  display: grid;
  gap: 10px;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 500;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

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

.site-nav__link.is-active {
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(247, 198, 17, 0.36);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(247, 198, 17, 0.22);
  color: var(--text-main);
}

.menu-toggle .app-icon {
  width: 26px;
  height: 26px;
}

.mobile-drawer {
  width: min(84vw, 360px);
  height: 100%;
  padding: 18px;
}

.mobile-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.mobile-drawer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-drawer__brand img {
  width: 56px;
  height: 56px;
}

.mobile-drawer__brand strong,
.mobile-drawer__brand span {
  display: block;
}

.mobile-drawer__brand strong {
  font-size: 18px;
  line-height: 1.3;
}

.mobile-drawer__brand span {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-subtle);
}

.mobile-drawer__close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.06);
  color: var(--text-main);
}

.site-nav--mobile .site-nav__link {
  width: 100%;
  justify-content: flex-start;
}

.section {
  padding: 34px 0 20px;
}

.section--glow {
  position: relative;
}

.section--glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(204, 244, 237, 0.76), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(204, 244, 237, 0.76), transparent 26%);
  pointer-events: none;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading--center {
  justify-items: center;
  text-align: center;
}

.section-heading--left {
  justify-items: start;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.1;
  font-weight: 600;
}

.section-heading p {
  margin: 0;
  max-width: 920px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-subtle);
}

.page-head {
  padding: 64px 0 10px;
  text-align: center;
}

.page-head h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.08;
  font-weight: 600;
}

.page-head p {
  margin: 0 0 8px;
  color: var(--text-subtle);
  font-size: 18px;
}

.hero-block {
  position: relative;
  margin-bottom: 22px;
}

.hero-backdrop {
  height: 720px;
  background-color: var(--bg-mint);
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-ornament {
  position: absolute;
  top: 280px;
  width: 76px;
  height: 192px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(189, 211, 209, 0.58);
  backdrop-filter: blur(10px);
}

.hero-ornament .app-icon {
  width: 40px;
  height: 40px;
}

.hero-ornament--left {
  left: 36px;
}

.hero-ornament--left .app-icon {
  transform: rotate(180deg);
}

.hero-ornament--right {
  right: 36px;
}

.hero-card-wrap {
  position: relative;
  margin-top: -132px;
  z-index: 2;
}

.hero-card {
  padding: 56px 72px 42px;
  background: var(--bg-panel);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  text-align: center;
}

.hero-card h2 {
  margin: 0 0 20px;
  font-size: clamp(42px, 5vw, 84px);
  line-height: 1.06;
  font-weight: 600;
}

.hero-card p {
  margin: 0 auto;
  max-width: 1120px;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-subtle);
}

.hero-card__button {
  margin-top: 34px;
  min-width: 220px;
  height: 52px;
  font-size: 20px;
  font-weight: 500;
  color: #1b1b1b !important;
}

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

.soft-card,
.news-card,
.disclosure-card,
.contact-info-card,
.mini-card,
.policy-card,
.article-shell,
.showcase-panel,
.map-panel {
  background: var(--bg-panel);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.soft-card {
  overflow: hidden;
}

.soft-card--link {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.soft-card--link:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(42, 72, 68, 0.16);
}

.soft-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: contain;
  padding: 22px;
  background: #effaf7;
}

.soft-card__body {
  padding: 24px 28px 28px;
}

.soft-card__body h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.3;
}

.soft-card__body p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-subtle);
}

.soft-card__body span {
  font-size: 16px;
  color: #8a8a8a;
}

.pager-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 24px 0 6px;
}

.pager-dots span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.22);
}

.pager-dots .is-active {
  background: rgba(20, 20, 20, 0.46);
}

.showcase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.showcase-panel::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(221, 247, 242, 0.38));
  pointer-events: none;
}

.showcase-copy {
  position: relative;
  z-index: 1;
  padding: 28px 30px;
  min-height: 320px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(180deg, rgba(210, 244, 238, 0.6), rgba(210, 244, 238, 0.1));
}

.showcase-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  text-align: center;
  color: #3d3d3d;
}

.showcase-art {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.showcase-art img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.ghost-button {
  min-width: 160px;
  height: 48px;
  border-color: rgba(20, 20, 20, 0.4) !important;
  color: var(--text-main) !important;
}

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

.news-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.news-card--wide {
  grid-column: span 6;
}

.news-card:not(.news-card--wide) {
  grid-column: span 4;
}

.news-card__media {
  background: #ecf3f1;
}

.news-card__media img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
}

.news-card__media--logo {
  display: grid;
  place-items: center;
  min-height: 320px;
  background: #bcebe4;
}

.news-card__media--contain {
  display: grid;
  place-items: center;
  padding: 18px;
}

.news-card__media--contain img {
  object-fit: contain;
}

.news-card__logo {
  width: 180px !important;
  height: 180px;
  object-fit: contain !important;
  filter: drop-shadow(0 18px 30px rgba(31, 77, 72, 0.22));
}

.news-card__body {
  display: grid;
  gap: 18px;
  padding: 28px 30px 24px;
}

.news-card__body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  color: #313131;
}

.news-card__body span {
  font-size: 16px;
  color: #7e7e7e;
}

.policy-card {
  overflow: hidden;
}

.policy-document {
  padding: 44px 52px 42px;
}

.policy-document__source {
  margin-bottom: 12px;
  color: #9f261f;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.policy-document h2 {
  margin: 0 auto;
  max-width: 1080px;
  text-align: center;
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1.24;
}

.policy-document__number {
  margin: 12px 0 26px !important;
  text-align: center;
  color: #535353 !important;
  font-size: 20px !important;
  text-indent: 0 !important;
}

.policy-document__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.policy-document__meta div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.86);
}

.policy-document__meta dt {
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 15px;
}

.policy-document__meta dd {
  margin: 0;
  color: #2f2f2f;
  font-size: 17px;
  line-height: 1.55;
}

.policy-document p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 2;
  color: #363636;
  text-indent: 2em;
}

.quote-banner {
  margin: 34px auto 0;
  max-width: 1320px;
  font-size: clamp(26px, 3vw, 48px);
  line-height: 1.7;
  text-align: center;
  color: #2d2d2d;
}

.policy-news-shell {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

.policy-news-strip {
  padding: 18px 28px;
  background: #9f261f;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.policy-news-card {
  padding: 36px 42px 34px;
}

.policy-news-card h2 {
  margin: 0 0 10px;
  text-align: center;
  font-size: clamp(32px, 3vw, 54px);
  line-height: 1.2;
}

.policy-news-card__subtitle {
  margin: 0;
  text-align: center;
  font-size: 22px !important;
  color: #4b4b4b !important;
}

.policy-news-card__meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 18px 0 26px;
  color: #7b7b7b;
  font-size: 16px;
}

.policy-news-card p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 2;
  color: #363636;
  text-indent: 2em;
}

.feature-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 38px;
  align-items: center;
  padding: 18px 0;
}

.feature-block.is-reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.feature-block.is-reverse .feature-copy {
  order: 2;
}

.feature-block.is-reverse .feature-visual {
  order: 1;
}

.feature-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  color: #3d3d3d;
}

.feature-copy .section-heading {
  margin-bottom: 18px;
}

.feature-copy .section-heading h2 {
  font-size: clamp(28px, 3vw, 46px);
}

.feature-visual {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.feature-visual img {
  width: 100%;
  height: 420px;
  padding: 22px;
  object-fit: cover;
}

.disclosure-list {
  display: grid;
  gap: 26px;
}

.disclosure-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 30px;
}

.disclosure-card__thumb {
  overflow: hidden;
  border-radius: 12px;
}

.disclosure-card__thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.disclosure-card__thumb--contain {
  background: #effaf7;
}

.disclosure-card__thumb--contain img {
  padding: 14px;
  object-fit: contain;
}

.disclosure-card__content {
  min-width: 0;
}

.disclosure-card__content h3 {
  margin: 0 0 16px;
  color: #ff5a17;
  font-size: 32px;
  line-height: 1.2;
}

.disclosure-card__content p {
  margin: 0;
  font-size: 18px;
  line-height: 1.95;
  color: #4c4c4c;
}

.disclosure-card__date {
  align-self: end;
  font-size: 18px;
  color: #585858;
  white-space: nowrap;
}

.article-hero {
  padding: 44px 0 0;
}

.article-shell {
  padding: 72px min(8vw, 96px);
}

.article-toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 28px;
}

.article-header {
  margin-bottom: 36px;
}

.article-header h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 4.6vw, 82px);
  line-height: 1.08;
  font-weight: 600;
}

.article-header span {
  font-size: 18px;
  color: #5f5f5f;
}

.article-body {
  display: grid;
  gap: 34px;
}

.article-body p {
  margin: 0;
  font-size: 21px;
  line-height: 2;
  color: #363636;
  text-indent: 2em;
}

.article-lead {
  font-size: 23px !important;
  line-height: 1.95 !important;
}

.article-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.article-image img {
  width: 100%;
  height: auto;
}

.article-related {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

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

.article-related__card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.article-related__card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-related__body {
  padding: 20px 22px 24px;
}

.article-related__body h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.35;
}

.article-related__body p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-subtle);
  text-indent: 0;
}

.article-related__body span {
  font-size: 15px;
  color: var(--text-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.contact-info-card {
  padding: 46px 34px 36px;
  text-align: center;
}

.contact-info-card .app-icon {
  color: #ff8f07;
}

.contact-info-card h3 {
  margin: 22px 0 14px;
  font-size: 24px;
  font-weight: 500;
}

.contact-info-card p {
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
}

.map-panel {
  padding: 32px;
}

.contact-qr-panel {
  margin-bottom: 34px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
}

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

.contact-qr-card {
  padding: 22px 20px 18px;
  border-radius: var(--radius-md);
  background: rgba(223, 246, 241, 0.48);
  text-align: center;
}

.contact-qr-card img {
  width: 180px;
  height: 180px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.contact-qr-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
}

.contact-qr-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-subtle);
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.map-frame img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.mini-card {
  padding: 34px 30px;
  text-align: center;
}

.mini-card img {
  width: 220px;
  height: 220px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.mini-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
}

.mini-card p {
  margin: 0;
  min-height: 84px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-subtle);
}

.mini-card__button {
  margin-top: 20px;
  min-width: 180px;
  color: #1b1b1b !important;
}

.mini-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 30px;
  align-items: center;
  margin-top: 36px;
  padding: 32px;
  background: var(--bg-panel-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.mini-highlight__copy h3 {
  margin: 0 0 16px;
  font-size: 34px;
}

.mini-highlight__copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-subtle);
}

.mini-highlight__art {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.mini-highlight__art img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.site-footer {
  margin-top: 34px;
  padding: 54px 0 56px;
  background: linear-gradient(180deg, #dff6f1 0, #c8eee8 100%);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.footer-contact {
  display: grid;
  gap: 20px;
}

.footer-contact__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(19px, 1.55vw, 26px);
}

.footer-qrs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-qrs__item {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.footer-qrs__item img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.64);
}

.footer-qrs__item span {
  font-size: clamp(18px, 1.5vw, 26px);
  color: #4d4d4d;
}

.site-footer__records {
  display: flex;
  justify-content: center;
  gap: 18px 28px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  color: #58625f;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.site-footer__records a,
.site-footer__records a:visited,
.site-footer__records a:hover,
.site-footer__records a:active {
  color: rgb(0, 84, 166) !important;
  font-weight: 500;
}

.site-footer__record {
  display: inline-flex;
  align-items: center;
}

.site-footer__record--police {
  gap: 8px;
}

.site-footer__record-badge {
  display: block;
  width: 18px;
  height: auto;
  max-height: 18px;
  flex: none;
  mix-blend-mode: multiply;
}

.app-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
}

.app-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1180px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .software-grid,
  .contact-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-panel,
  .mini-highlight,
  .feature-block,
  .feature-block.is-reverse {
    grid-template-columns: 1fr;
  }

  .feature-block.is-reverse .feature-copy,
  .feature-block.is-reverse .feature-visual {
    order: initial;
  }

  .latest-grid .news-card--wide {
    grid-column: span 12;
  }

  .latest-grid .news-card:not(.news-card--wide) {
    grid-column: span 6;
  }

  .article-related__grid,
  .contact-qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-footer__records {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100%, calc(100% - 26px));
    --container-narrow: min(100%, calc(100% - 26px));
  }

  .site-header {
    position: static;
  }

  .brand-mark {
    flex-wrap: wrap;
    gap: 18px;
  }

  .brand-divider {
    display: none;
  }

  .site-nav--desktop {
    display: none;
  }

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

  .site-nav__link {
    padding: 12px 18px;
    font-size: 16px;
  }

  .hero-backdrop {
    height: 420px;
  }

  .hero-ornament {
    display: none;
  }

  .hero-card-wrap {
    margin-top: -72px;
  }

  .hero-card {
    padding: 34px 24px 28px;
    border-radius: 24px;
  }

  .hero-card p,
  .showcase-copy p,
  .feature-copy p,
  .section-heading p,
  .disclosure-card__content p,
  .mini-highlight__copy p,
  .policy-document p {
    font-size: 16px;
  }

  .policy-document__meta {
    grid-template-columns: 1fr;
  }

  .software-grid,
  .contact-grid,
  .mini-grid,
  .article-related__grid,
  .contact-qr-grid {
    grid-template-columns: 1fr;
  }

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

  .latest-grid .news-card--wide,
  .latest-grid .news-card:not(.news-card--wide) {
    grid-column: span 12;
  }

  .disclosure-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .disclosure-card__date {
    justify-self: start;
  }

  .article-shell {
    padding: 34px 18px;
  }

  .article-body p {
    font-size: 17px;
  }

  .footer-qrs {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 16px 0;
  }

  .brand-copy h1 {
    font-size: 22px;
  }

  .brand-copy p {
    font-size: 14px;
  }

  .brand-logo {
    width: 62px;
    height: 64px;
  }

  .site-nav {
    gap: 8px;
  }

  .mobile-drawer {
    width: 100vw;
  }

  .site-nav__link {
    border-radius: 12px;
    padding: 10px 14px;
  }

  .hero-backdrop {
    height: 320px;
  }

  .hero-card h2,
  .page-head h1,
  .article-header h1,
  .section-heading h2 {
    word-break: break-word;
  }

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

  .soft-card__body,
  .contact-info-card,
  .mini-card,
  .map-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .news-card__body,
  .disclosure-card,
  .showcase-panel,
  .mini-highlight,
  .policy-news-card,
  .policy-document,
  .contact-qr-panel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-contact__item {
    font-size: 16px;
  }

  .footer-qrs {
    grid-template-columns: 1fr;
  }
}
