:root {
  --bg: #fbf8f2;
  --surface: #ffffff;
  --surface-soft: #f4f7f1;
  --primary: #145c3a;
  --primary-deep: #0b3d28;
  --primary-soft: #eaf4e8;
  --primary-line: #bfd8b6;
  --blue: #2b76bd;
  --text: #111111;
  --muted: #666d68;
  --light: #8b928d;
  --line: rgba(20, 92, 58, 0.14);
  --shadow-sm: 0 10px 30px rgba(22, 58, 38, 0.08);
  --shadow-lg: 0 28px 70px rgba(22, 58, 38, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(191, 216, 182, 0.28), transparent 30rem),
    var(--bg);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(43, 118, 189, 0.4);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: #fff;
  background: var(--primary-deep);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(20, 92, 58, 0.08);
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 6px 18px rgba(20, 92, 58, 0.15);
}

.brand__name {
  display: grid;
  line-height: 1.08;
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-deep);
}

.brand__name small {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}

.desktop-nav a {
  padding: 9px 12px;
  color: #3f4842;
  font-size: 14px;
  font-weight: 650;
  border-radius: 10px;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--primary);
  background: var(--primary-soft);
}

.release-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--primary-deep);
  background: #fff;
  border: 1px solid var(--primary-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
}

.release-status::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #d89b25;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(216, 155, 37, 0.12);
}

.mobile-menu {
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  list-style: none;
  color: var(--primary-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::before {
  content: "☰";
  font-size: 22px;
  line-height: 1;
}

.mobile-menu[open] summary::before {
  content: "×";
  font-size: 27px;
}

.mobile-menu__panel {
  position: absolute;
  top: 68px;
  right: 20px;
  width: min(300px, calc(100vw - 40px));
  display: grid;
  gap: 4px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu__panel a,
.mobile-menu__panel span {
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
}

.mobile-menu__panel a:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.mobile-menu__panel span {
  margin-top: 4px;
  color: var(--primary);
  background: var(--primary-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: 60px;
  background: radial-gradient(circle, rgba(43, 118, 189, 0.12), transparent 68%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 7px 12px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(20, 92, 58, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero h1 span {
  display: block;
  margin-top: 13px;
  color: var(--primary);
  font-size: 0.35em;
  letter-spacing: 0.01em;
}

.hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #4f5852;
  font-size: clamp(17px, 2vw, 20px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 760;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(20, 92, 58, 0.2);
}

.button--primary:hover {
  background: var(--primary-deep);
}

.button--secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--primary-line);
}

.hero__note {
  margin: 18px 0 0;
  color: var(--light);
  font-size: 13px;
}

.hero-card {
  position: relative;
  justify-self: end;
  width: min(100%, 500px);
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-card__photo {
  aspect-ratio: 1.18;
  width: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.hero-card__result {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  margin-top: 16px;
  padding: 6px 4px 2px;
}

.hero-card__result small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
}

.hero-card__result strong {
  color: var(--primary-deep);
  font-size: 21px;
}

.hero-card__result span {
  color: var(--primary);
  font-size: 14px;
  font-weight: 760;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: rgba(234, 244, 232, 0.64);
  border-block: 1px solid rgba(20, 92, 58, 0.06);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.section-heading p,
.page-hero__lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -24px;
  padding-bottom: 52px;
}

.metric {
  min-height: 136px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.metric strong {
  display: block;
  color: var(--primary-deep);
  font-size: 29px;
  line-height: 1.2;
}

.metric span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

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

.feature-card {
  min-height: 270px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-card__number,
.step-card__number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
}

.feature-card h3,
.step-card h3,
.privacy-card h3,
.support-card h2,
.support-card h3 {
  margin: 23px 0 8px;
  color: var(--primary-deep);
  font-size: 22px;
  line-height: 1.3;
}

.feature-card p,
.step-card p,
.privacy-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 16.66%;
  right: 16.66%;
  top: 37px;
  height: 1px;
  background: var(--primary-line);
}

.step-card {
  position: relative;
  padding: 17px 26px 26px;
  background: transparent;
}

.step-card__number {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  border: 6px solid var(--bg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.step-card h3,
.step-card p {
  text-align: center;
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  align-items: center;
  gap: 28px;
}

.phone-preview {
  position: relative;
  padding: 11px;
  background: #171b18;
  border: 1px solid rgba(11, 61, 40, 0.16);
  border-radius: 38px;
  box-shadow: var(--shadow-lg);
}

.phone-preview img {
  width: 100%;
  border-radius: 29px;
}

.preview-copy {
  padding-left: 14px;
}

.preview-copy h2 {
  margin: 0;
  color: var(--primary-deep);
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.preview-copy p {
  margin: 18px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 31px;
  color: #38423c;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 12px;
}

.preview-caption {
  margin-top: 24px;
  color: var(--light);
  font-size: 12px;
}

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

.privacy-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.privacy-card h3 {
  margin-top: 0;
}

.privacy-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.3fr);
  align-items: center;
  gap: 32px;
  background: var(--primary-deep);
}

.privacy-card--wide h3,
.privacy-card--wide p {
  color: #fff;
}

.privacy-card--wide p {
  opacity: 0.82;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin-inline: auto;
}

.accuracy-note {
  max-width: 860px;
  margin: 0 auto 24px;
  padding: clamp(24px, 4vw, 34px);
  color: #f7fbf8;
  background:
    radial-gradient(circle at top right, rgba(139, 197, 158, 0.2), transparent 42%),
    linear-gradient(135deg, var(--primary-deep), #1f704b);
  border: 1px solid rgba(20, 92, 58, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.accuracy-note .eyebrow {
  margin-bottom: 10px;
  color: #c9ead4;
}

.accuracy-note h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(23px, 3vw, 31px);
  line-height: 1.28;
}

.accuracy-note p {
  margin: 0;
  color: rgba(247, 251, 248, 0.86);
}

.accuracy-note p + p {
  margin-top: 12px;
}

.accuracy-note .accuracy-note__contact {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.accuracy-note__contact a {
  color: #d7f5e1;
  font-weight: 750;
  overflow-wrap: anywhere;
}

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

.faq-list summary {
  position: relative;
  padding: 18px 35px 18px 0;
  cursor: pointer;
  list-style: none;
  color: var(--primary-deep);
  font-weight: 750;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 13px;
  color: var(--primary);
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 40px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.16), transparent 18rem),
    var(--primary-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
}

.cta-panel p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel .button {
  color: var(--primary-deep);
  background: #fff;
}

.page-hero {
  padding: 72px 0 44px;
}

.page-hero__inner {
  max-width: 820px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  color: var(--light);
  font-size: 13px;
}

.document-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  align-items: start;
  gap: 34px;
  padding-bottom: 92px;
}

.document {
  min-width: 0;
  padding: clamp(24px, 5vw, 52px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.document section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.document h2 {
  margin: 0 0 12px;
  color: var(--primary-deep);
  font-size: 23px;
  line-height: 1.35;
}

.document p,
.document li {
  color: #414b45;
}

.document p {
  margin: 0;
}

.document p + p,
.document ul,
.document ol {
  margin-top: 13px;
}

.document a,
.support-card a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document-nav {
  position: sticky;
  top: 100px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.document-nav strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-deep);
}

.document-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 13px;
}

.document-nav a:hover {
  color: var(--primary);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 92px;
}

.support-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.support-card h2,
.support-card h3 {
  margin-top: 0;
}

.support-card--wide {
  grid-column: 1 / -1;
}

.support-email {
  display: inline-flex;
  margin-top: 18px;
  padding: 12px 16px;
  color: var(--primary-deep) !important;
  background: var(--primary-soft);
  border: 1px solid var(--primary-line);
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none !important;
}

.notice {
  margin-top: 20px;
  padding: 16px 18px;
  color: #3f4a43;
  background: var(--surface-soft);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  font-size: 14px;
}

.site-footer {
  padding: 48px 0 32px;
  color: #667068;
  background: #f3f2ed;
  border-top: 1px solid rgba(20, 92, 58, 0.08);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 36px;
}

.site-footer__brand p {
  max-width: 480px;
  margin: 14px 0 0;
  font-size: 14px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  font-size: 14px;
}

.site-footer__links a:hover {
  color: var(--primary);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(20, 92, 58, 0.1);
  font-size: 12px;
}

.icp-link {
  color: inherit;
  text-decoration: none;
}

.icp-link:hover {
  color: var(--primary);
}

.site-footer__filings {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.public-security-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.public-security-link .public-security-icon {
  width: 18px;
  height: 20px;
  flex: 0 0 auto;
  margin: 0;
  border-radius: 0;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.error-card {
  width: min(100%, 650px);
  padding: clamp(32px, 8vw, 70px);
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.error-card img {
  width: 92px;
  height: 92px;
  margin: 0 auto 24px;
  border-radius: 24px;
}

.error-code {
  margin: 0;
  color: var(--primary);
  font-size: clamp(62px, 15vw, 112px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.06em;
}

.error-card h1 {
  margin: 18px 0 8px;
  color: var(--primary-deep);
  font-size: 28px;
}

.error-card p {
  margin: 0 0 26px;
  color: var(--muted);
}

.error-page__icp {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.error-page__filings {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .site-header > .container > .release-status {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding-top: 58px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-card {
    justify-self: center;
  }

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

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

  .feature-card {
    min-height: 0;
  }

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

  .preview-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 0 0 16px;
  }

  .document-layout {
    grid-template-columns: 1fr;
  }

  .document-nav {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand__name {
    font-size: 17px;
  }

  .hero {
    padding: 48px 0 58px;
  }

  .hero h1 {
    font-size: clamp(43px, 15vw, 64px);
  }

  .hero h1 span {
    font-size: 0.38em;
  }

  .hero__grid {
    gap: 38px;
  }

  .hero-card {
    padding: 12px;
    border-radius: 27px;
  }

  .hero-card__photo {
    border-radius: 20px;
  }

  .hero-card__result {
    padding-inline: 4px;
  }

  .hero-card__result strong {
    font-size: 18px;
  }

  .metrics,
  .privacy-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 0;
  }

  .section {
    padding: 66px 0;
  }

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

  .process-grid::before {
    left: 21px;
    right: auto;
    top: 40px;
    bottom: 40px;
    width: 1px;
    height: auto;
  }

  .step-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    padding: 12px 0;
  }

  .step-card__number {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .step-card h3,
  .step-card p {
    text-align: left;
  }

  .step-card h3 {
    margin: 2px 0 5px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .preview-copy {
    grid-column: auto;
  }

  .phone-preview {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .privacy-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .cta-panel .button {
    width: 100%;
  }

  .page-hero {
    padding: 54px 0 34px;
  }

  .document {
    padding: 24px 20px;
  }

  .document-nav {
    display: none;
  }

  .support-card--wide {
    grid-column: auto;
  }

  .support-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

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

  .site-footer__bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
