:root {
  --forest: #195135;
  --forest-deep: #103d27;
  --leaf: #71d561;
  --leaf-dark: #2f7634;
  --mint: #e4f8f3;
  --cream: #fffcf3;
  --butter: #fce93a;
  --sky: #8bb5ff;
  --coral: #ff8f80;
  --ink: #143d2a;
  --muted: #526b5e;
  --line: #d7eae0;
  --white: #fff;
  --shadow-sm: 0 12px 32px rgba(25, 81, 53, 0.08);
  --shadow-lg: 0 28px 80px rgba(25, 81, 53, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

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

button, select { font: inherit; }

:focus-visible {
  outline: 3px solid var(--leaf-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--forest);
  color: var(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 234, 224, 0.7);
  background: rgba(255, 252, 243, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(25, 81, 53, 0.16);
}

.nav-links, .nav-actions, .language-links, .store-row, .footer-links {
  display: flex;
  align-items: center;
}

.nav-links { gap: 30px; margin-left: auto; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 700; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--forest); }
.nav-actions { gap: 12px; }

.language-select {
  min-width: 112px;
  padding: 9px 32px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--forest);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 76px;
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(1px);
  animation: drift 14s ease-in-out infinite alternate;
}

.hero::before {
  width: 520px;
  height: 520px;
  top: -270px;
  left: -210px;
  background: radial-gradient(circle, rgba(113, 213, 97, 0.21), rgba(113, 213, 97, 0));
}

.hero::after {
  width: 420px;
  height: 420px;
  right: -130px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(139, 181, 255, 0.2), rgba(139, 181, 255, 0));
  animation-delay: -5s;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(113, 213, 97, 0.44);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(228, 248, 243, 0.75);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(113, 213, 97, 0.16);
}

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

h1 {
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 880;
}

h3 {
  margin-bottom: 10px;
  color: var(--forest);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 820;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--white); box-shadow: 0 14px 28px rgba(25, 81, 53, 0.2); }
.button-primary:hover { background: var(--forest-deep); box-shadow: 0 18px 36px rgba(25, 81, 53, 0.24); }
.button-secondary { border-color: var(--line); background: var(--white); color: var(--forest); }
.button-secondary:hover { border-color: var(--leaf); background: var(--mint); }

.hero-visual { position: relative; }

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% -4% -8% 8%;
  z-index: -1;
  border-radius: 42% 58% 58% 42%;
  background: linear-gradient(135deg, rgba(113, 213, 97, 0.26), rgba(228, 248, 243, 0.08));
  animation: breathe 9s ease-in-out infinite;
}

.hero-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
  list-style: none;
}

.trust-line li::before { content: "✓"; margin-right: 7px; color: var(--leaf-dark); font-weight: 900; }

.section { padding: 94px 0; }
.section-mint { background: var(--mint); }
.section-forest { color: rgba(255,255,255,.78); background: var(--forest); }
.section-forest h2, .section-forest h3 { color: var(--white); }
.section-forest .section-lead { color: rgba(255,255,255,.75); }

.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker { margin-bottom: 10px; color: var(--leaf-dark); font-size: 14px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.section-forest .section-kicker { color: #a8ef9e; }
.section-lead { margin-bottom: 0; color: var(--muted); font-size: 18px; }

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

.card {
  padding: 28px;
  border: 1px solid rgba(215, 234, 224, 0.9);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card p { margin-bottom: 0; color: var(--muted); }
.icon-chip {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--forest);
  background: var(--mint);
  font-size: 22px;
  font-weight: 900;
}

.app-preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 42%, rgba(113, 213, 97, .22), transparent 28%),
    linear-gradient(145deg, #fffdf7 0%, #f3fbf4 100%);
}
.app-preview-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image: radial-gradient(rgba(25, 81, 53, .16) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 70%, transparent);
}
.app-preview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  align-items: center;
  gap: 84px;
}
.app-preview-copy { max-width: 620px; }
.preview-points { display: grid; margin-top: 38px; }
.preview-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.preview-point > span {
  padding-top: 3px;
  color: var(--leaf-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.preview-point h3 { margin-bottom: 4px; font-size: 20px; }
.preview-point p { margin-bottom: 0; color: var(--muted); font-size: 16px; }
.app-preview-stage {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
}
.app-preview-stage::before {
  content: "";
  position: absolute;
  width: min(120%, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(113, 213, 97, .34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.94) 0 42%, rgba(228,248,243,.62) 43% 66%, transparent 67%);
  box-shadow: 0 0 0 34px rgba(113, 213, 97, .05);
  animation: preview-pulse 8s ease-in-out infinite;
}
.device-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 350px);
  padding: 9px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 48px;
  background: #153e2b;
  box-shadow: 0 34px 80px rgba(16, 61, 39, .24), 0 10px 24px rgba(16, 61, 39, .18);
  animation: preview-float 7.5s ease-in-out infinite;
}
.device-frame img { width: 100%; height: auto; border-radius: 40px; object-fit: contain; }

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.chart-frame {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-lg);
}

.chart-frame img { width: 100%; height: auto; border-radius: 20px; object-fit: contain; }
.check-list { display: grid; gap: 18px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: var(--muted); }
.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--leaf);
  font-size: 13px;
  font-weight: 900;
}

.steps { counter-reset: steps; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { counter-increment: steps; padding: 28px; border-radius: var(--radius-md); background: rgba(255,255,255,.08); }
.step::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 28px;
  color: #a8ef9e;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}
.step p { margin-bottom: 0; }

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, 1.28fr);
  align-items: center;
  gap: 54px;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.download-brand { display: flex; align-items: center; gap: 18px; }
.download-brand img { width: 82px; height: 82px; border-radius: 20px; box-shadow: var(--shadow-sm); }
.download-brand h2 { margin-bottom: 4px; font-size: 34px; }
.download-brand p { margin-bottom: 0; color: var(--muted); }
.store-row { flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.store-badge { display: inline-flex; align-items: center; justify-content: center; }
.app-store-badge img { width: auto; height: 54px; object-fit: contain; }
.android-local {
  display: inline-flex;
  width: 152px;
  height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  color: var(--white);
  background: #111;
  line-height: 1.1;
  text-align: left;
}
.google-play-badge {
  position: relative;
  width: 160px;
  height: 48px;
  overflow: hidden;
  border-radius: 10px;
}
.google-play-badge img { position: absolute; max-width: none; height: auto; object-fit: contain; }
.google-play-cn img, .google-play-tw img { top: -7.2px; left: 0; width: 160px; }
.google-play-en img { top: -11.6px; left: -11.6px; width: 183.3px; }
.platform-mark { width: 34px; height: auto; flex: 0 0 auto; object-fit: contain; }
.android-local small { display: block; margin-bottom: 3px; font-size: 10px; font-weight: 600; }
.android-local strong { font-size: 18px; }
.store-pending { opacity: .58; filter: grayscale(1); cursor: not-allowed; }
.store-badge.store-pending { opacity: .68; filter: none; }
.store-note { width: 100%; margin: 4px 0 0; color: var(--muted); font-size: 13px; text-align: right; }
.storefront-help { width: 100%; max-width: 440px; margin: 12px 0 0 auto; color: var(--muted); font-size: 13px; text-align: right; }
.storefront-help summary { cursor: pointer; }
.storefront-help div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 4px 10px; margin-top: 7px; }
.storefront-help a { color: var(--forest); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--forest);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 10px; color: var(--leaf-dark); font-size: 26px; font-weight: 500; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 44px 22px 0; color: var(--muted); }

.article-hero { padding: 88px 0 58px; text-align: center; }
.article-hero h1 { max-width: 880px; margin-inline: auto; font-size: clamp(40px, 5vw, 64px); }
.article-hero p { max-width: 760px; margin-inline: auto; color: var(--muted); font-size: 19px; }
.breadcrumbs { margin-bottom: 28px; color: var(--muted); font-size: 14px; }
.breadcrumbs a:hover { color: var(--forest); }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 260px; justify-content: center; gap: 64px; padding-bottom: 96px; }
.article-body { padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.article-body h2 { margin-top: 52px; font-size: 34px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 30px; }
.article-body p, .article-body li { color: var(--muted); }
.article-body img { width: 100%; height: auto; margin: 30px 0; border-radius: 22px; object-fit: contain; }
.article-body table { width: 100%; border-collapse: collapse; margin: 28px 0; font-variant-numeric: tabular-nums; }
.article-body th, .article-body td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; }
.article-body th { color: var(--forest); background: var(--mint); }
.article-nav { position: sticky; top: 104px; align-self: start; padding: 22px; border-left: 2px solid var(--line); }
.article-nav strong { display: block; margin-bottom: 14px; color: var(--forest); }
.article-nav a { display: block; padding: 7px 0; color: var(--muted); font-size: 14px; }
.article-nav a:hover { color: var(--forest); }
.related-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }
.related-link { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--mint); }
.related-link strong { display: block; color: var(--forest); }
.related-link span { color: var(--muted); font-size: 14px; }

.site-footer { padding: 56px 0 32px; color: rgba(255,255,255,.72); background: var(--forest-deep); }
.footer-top { display: flex; justify-content: space-between; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand { max-width: 420px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { margin: 16px 0 0; }
.footer-links { flex-wrap: wrap; align-content: start; justify-content: flex-end; gap: 14px 24px; font-size: 14px; }
.footer-links a:hover { color: var(--white); }
.android-attribution { max-width: 900px; margin: 20px 0 0; color: rgba(255,255,255,.5); font-size: 11px; line-height: 1.55; }
.android-attribution a { text-decoration: underline; text-underline-offset: 2px; }
.android-attribution a:hover { color: var(--white); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 24px; font-size: 13px; }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(113, 213, 97, .24), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(139, 181, 255, .18), transparent 28%),
    var(--cream);
}
.error-shell { width: min(100%, 780px); }
.error-brand { margin: 0 0 22px 24px; color: var(--forest); }
.error-brand img { width: 52px; height: 52px; border-radius: 14px; }
.error-card {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-lg);
}
.error-code {
  position: absolute;
  top: -34px;
  right: 24px;
  margin: 0;
  color: rgba(113, 213, 97, .14);
  font-size: clamp(128px, 24vw, 220px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.08em;
  user-select: none;
}
.error-copy { position: relative; z-index: 1; display: none; max-width: 560px; }
.error-copy.is-active { display: block; }
.error-copy h1 { max-width: 540px; margin-bottom: 20px; font-size: clamp(38px, 7vw, 62px); }
.error-copy > p:not(.section-kicker) { max-width: 520px; margin-bottom: 28px; color: var(--muted); font-size: 18px; }
.error-languages { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; font-weight: 700; }
.error-languages a:hover { color: var(--forest); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%,100% { transform: translateY(0) rotate(-.25deg); } 50% { transform: translateY(-10px) rotate(.25deg); } }
@keyframes breathe { 0%,100% { transform: scale(.98); } 50% { transform: scale(1.03); } }
@keyframes drift { from { transform: translate3d(-12px, -8px, 0); } to { transform: translate3d(18px, 14px, 0); } }
@keyframes preview-float { 0%,100% { transform: translateY(0) rotate(.35deg); } 50% { transform: translateY(-9px) rotate(-.35deg); } }
@keyframes preview-pulse { 0%,100% { transform: scale(.96); opacity: .72; } 50% { transform: scale(1.035); opacity: 1; } }

@media (max-width: 960px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: fixed;
    inset: 77px 0 auto;
    display: none;
    padding: 24px 20px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: var(--shadow-sm);
  }
  .nav-open .nav-links { display: flex; }
  .hero { padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-copy > p:not(.eyebrow) { margin-inline: auto; }
  .button-row, .trust-line { justify-content: center; }
  .hero-visual { max-width: 760px; margin-inline: auto; }
  .feature-split { gap: 42px; }
  .app-preview-grid { grid-template-columns: 1fr; gap: 48px; }
  .app-preview-copy { max-width: 720px; }
  .app-preview-stage { min-height: 700px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .download-panel { grid-template-columns: 1fr; }
  .store-row { justify-content: flex-start; }
  .store-note { text-align: left; }
  .article-layout { grid-template-columns: minmax(0, 760px); }
  .article-nav { display: none; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--max-width)); }
  .nav-wrap { min-height: 68px; }
  .brand span { max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .language-select { min-width: 92px; max-width: 104px; }
  .nav-links { top: 69px; }
  .hero { padding: 52px 0 60px; }
  h1 { font-size: 43px; }
  .hero-grid { gap: 38px; }
  .hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .section { padding: 68px 0; }
  .card-grid, .card-grid.two, .steps, .feature-split, .app-preview-grid { grid-template-columns: 1fr; }
  .feature-split { gap: 32px; }
  .app-preview-grid { gap: 38px; }
  .app-preview-copy { text-align: center; }
  .preview-point { grid-template-columns: 36px 1fr; text-align: left; }
  .app-preview-stage { min-height: auto; padding: 30px 22px; }
  .device-frame { width: min(100%, 310px); border-radius: 42px; }
  .device-frame img { border-radius: 34px; }
  .download-panel { gap: 32px; padding: 28px 20px; }
  .download-brand img { width: 68px; height: 68px; }
  .download-brand h2 { font-size: 28px; }
  .app-store-badge img { height: 49px; }
  .android-local { width: 138px; height: 49px; }
  .google-play-badge { width: 145px; height: 44px; }
  .google-play-cn img, .google-play-tw img { top: -6.5px; width: 145px; }
  .google-play-en img { top: -10.5px; left: -10.5px; width: 166.1px; }
  .footer-top { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .article-hero { padding-top: 58px; }
  .article-body { padding: 28px 20px; }
  .article-body h2 { font-size: 29px; }
  .article-body table { font-size: 14px; }
  .article-body th, .article-body td { padding: 9px 8px; }
  .related-links { grid-template-columns: 1fr; }
  .error-page { padding: 24px 14px; }
  .error-brand { margin-left: 12px; }
  .error-card { padding: 42px 24px 30px; }
  .error-code { top: -12px; right: 14px; font-size: 116px; }
  .error-copy > p:not(.section-kicker) { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
