:root {
  --ink: #34212a;
  --muted: #755f6a;
  --paper: #fff7fb;
  --soft: #fff0f6;
  --line: rgba(124, 58, 89, 0.16);
  --night: #8f3f63;
  --night-2: #5f2742;
  --rose: #df6f91;
  --teal: #b94f7b;
  --gold: #f0b85a;
  --green: #c65f88;
  --shadow: 0 24px 60px rgba(124, 58, 89, 0.18);
  --radius: 8px;
  --max: 1180px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.75;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--night);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 52px);
  color: var(--ink);
  background: #fff;
  border-bottom: 1px solid rgba(124, 58, 89, 0.16);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 14px 34px rgba(124, 58, 89, 0.18);
}

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

.brand {
  transition: transform 180ms ease, opacity 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.75);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: rotate(-3deg) scale(1.04);
  box-shadow: 0 8px 22px rgba(143, 63, 99, 0.22);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand small {
  color: rgba(52, 33, 42, 0.68);
  font-size: 12px;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 12px;
  color: rgba(52, 33, 42, 0.78);
  border-radius: 999px;
  font-size: 14px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(223, 111, 145, 0.22);
  transform: scale(0.78);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
  opacity: 0;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
  background: transparent;
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scale(1);
  opacity: 1;
}

.site-nav svg,
.button svg,
.feature-card svg,
.fact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-nav .nav-download {
  color: #1f2832;
  background: #ffe0ea;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(223, 111, 145, 0.18);
}

.site-nav .nav-download:hover,
.site-nav .nav-download:focus-visible {
  color: #15191f;
  background: #ffc8da;
  box-shadow: 0 12px 28px rgba(223, 111, 145, 0.24);
}

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

.nav-toggle {
  display: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(124, 58, 89, 0.18);
  border-radius: var(--radius);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  fill: currentColor;
}

.nav-icon-close {
  display: none;
}

body.nav-open .nav-icon-menu {
  display: none;
}

body.nav-open .nav-icon-close {
  display: block;
}

.hero {
  position: relative;
  min-height: min(760px, 82svh);
  overflow: visible;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(-92px, -8vw, -48px);
  z-index: 2;
  height: clamp(180px, 24vw, 300px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 247, 251, 0) 0%,
    rgba(255, 247, 251, 0.24) 34%,
    rgba(255, 247, 251, 0.78) 68%,
    var(--paper) 100%
  );
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 12, 16, 0.78) 0%, rgba(18, 18, 22, 0.5) 46%, rgba(18, 18, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 12, 16, 0.42), rgba(12, 12, 16, 0.04) 42%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd4e3;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffd4e3;
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 4px 18px rgba(52, 33, 42, 0.42);
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.6vw, 27px);
  line-height: 1.35;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions,
.cta-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.42) 45%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button > * {
  position: relative;
  z-index: 1;
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(120%);
}

.button-primary {
  color: #1f2832;
  background: #ffd4e3;
  box-shadow: 0 14px 34px rgba(223, 111, 145, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffe8f0;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary {
  color: #fff;
  background: var(--teal);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #c85f82;
  box-shadow: 0 14px 30px rgba(200, 95, 130, 0.28);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts div {
  padding: 16px;
  background: rgba(95, 39, 66, 0.36);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  margin: 6px auto 0;
  background: rgba(255, 255, 255, 0.7);
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 8vw, 108px) 0;
}

.intro-section {
  position: relative;
  z-index: 3;
  padding-top: clamp(88px, 11vw, 144px);
}

.section h2 {
  margin: 0;
  color: var(--night);
  font-size: clamp(24px, 3.1vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.section h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.section p {
  margin: 16px 0 0;
  color: var(--muted);
}

.intro-grid,
.guide-layout,
.specs-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.section-copy {
  max-width: 660px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 3px #ffe1ea;
}

.feature-figure,
.media-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-figure,
.media-grid figure,
.facts-grid article,
.guide-steps article,
.timeline article,
.faq-list details,
.cta-panel {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-figure:hover,
.media-grid figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(124, 58, 89, 0.18);
}

.feature-figure img,
.media-grid img {
  transition: transform 420ms ease, filter 240ms ease;
}

.feature-figure:hover img,
.media-grid figure:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.feature-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

figcaption {
  padding: 13px 15px;
  color: var(--muted);
  font-size: 14px;
  background: rgba(255, 253, 248, 0.96);
}

.info-band,
.guide-section,
.faq-section {
  background: var(--soft);
}

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

.facts-grid article,
.feature-card,
.guide-steps article,
.timeline article,
.faq-list details,
.spec-table,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.facts-grid article {
  padding: 24px;
}

.facts-grid article:hover,
.guide-steps article:hover,
.timeline article:hover,
.faq-list details:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 111, 145, 0.36);
  box-shadow: 0 16px 38px rgba(124, 58, 89, 0.12);
}

.fact-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--green);
  border-radius: var(--radius);
}

.facts-grid h3,
.feature-card h3 {
  margin-top: 16px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 28px;
}

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

.feature-card {
  padding: 24px;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(223, 111, 145, 0.42);
  box-shadow: 0 20px 46px rgba(124, 58, 89, 0.16);
}

.feature-card svg {
  width: 34px;
  height: 34px;
  color: var(--rose);
  transition: transform 220ms ease;
}

.feature-card:hover svg {
  transform: scale(1.12) rotate(-4deg);
}

.media-section {
  background: #fff0f6;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.media-grid figure {
  box-shadow: none;
  border: 1px solid rgba(31, 40, 50, 0.12);
  height: 100%;
}

.media-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.media-large {
  grid-column: auto;
}

.media-large img {
  height: auto;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.guide-steps article {
  padding: 22px;
}

.guide-steps span {
  display: inline-flex;
  min-width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
  background: var(--night);
  border-radius: var(--radius);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.guide-steps article:hover span {
  background: var(--rose);
  transform: translateY(-2px);
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline article {
  position: relative;
  padding: 24px 24px 24px 34px;
  overflow: hidden;
}

.timeline article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--gold);
  transition: width 180ms ease, background 180ms ease;
}

.timeline article:hover::before {
  width: 10px;
  background: var(--rose);
}

.timeline time {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
}

.specs-section {
  background: #ffeefe;
  color: var(--ink);
}

.specs-section h2,
.specs-section h3 {
  color: var(--night);
}

.specs-section p {
  color: var(--muted);
}

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(124, 58, 89, 0.18);
}

.spec-table caption {
  padding: 0 0 14px;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
}

.spec-table th,
.spec-table td {
  padding: 16px;
  text-align: left;
  border-top: 1px solid rgba(124, 58, 89, 0.16);
}

.spec-table tr:first-child th,
.spec-table tr:first-child td {
  border-top: 0;
}

.spec-table th {
  color: #8f3f63;
  width: 36%;
}

.faq-layout {
  align-items: start;
}

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

.faq-list details {
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 48px 18px 20px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
  position: relative;
  transition: color 160ms ease, background 160ms ease;
}

.faq-list summary:hover,
.faq-list summary:focus-visible {
  color: var(--night);
  background: rgba(255, 238, 254, 0.72);
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rose);
  font-size: 24px;
  line-height: 1;
}

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

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

.cta-section {
  background:
    linear-gradient(90deg, rgba(223, 111, 145, 0.14), rgba(255, 200, 218, 0.42)),
    var(--paper);
}

.cta-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.cta-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(124, 58, 89, 0.2);
  border-color: rgba(223, 111, 145, 0.34);
}

.cta-panel img {
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 12px 30px rgba(31, 40, 50, 0.12);
}

.cta-panel h2 {
  font-size: clamp(24px, 2.6vw, 34px);
}

.site-footer {
  padding: 46px 0 22px;
  color: var(--muted);
  background: #ffeefe;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.9fr;
  gap: 36px;
}

.footer-brand {
  color: var(--ink);
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
}

.site-footer p {
  margin: 14px 0 0;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--muted);
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #8f3f63;
  transform: translateX(3px);
}

.friend-links {
  width: min(var(--max), calc(100% - 36px));
  margin: 42px auto 0;
  text-align: center;
}

.friend-links h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.25;
}

.friend-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 42px;
  margin: 0;
  padding: 9px 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(124, 58, 89, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(124, 58, 89, 0.1);
  font-weight: 800;
}

.friend-link-list a:hover,
.friend-link-list a:focus-visible {
  color: var(--night);
  background: #ffe8f8;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(124, 58, 89, 0.16);
}

.legal {
  width: min(var(--max), calc(100% - 36px));
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(124, 58, 89, 0.16);
  font-size: 13px;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--rose);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(31, 40, 50, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top svg {
  fill: currentColor;
}

:focus-visible {
  outline: 3px solid rgba(255, 211, 111, 0.85);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(124, 58, 89, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(124, 58, 89, 0.2);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .intro-grid,
  .guide-layout,
  .specs-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .media-large {
    grid-column: auto;
  }

  .cta-panel {
    grid-template-columns: auto 1fr;
  }

  .cta-panel .button {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 64px;
    padding: 8px 14px;
  }

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

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    inset: 64px 12px auto;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 12, 16, 0.82), rgba(18, 18, 22, 0.42)),
      linear-gradient(0deg, rgba(12, 12, 16, 0.5), rgba(12, 12, 16, 0.06));
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    padding: 58px 0 64px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 340px);
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 56px 0;
  }

  .section-heading {
    text-align: left;
  }

  .feature-grid,
  .facts-grid,
  .guide-steps,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-large {
    grid-column: auto;
  }

  .feature-card,
  .facts-grid article,
  .guide-steps article,
  .timeline article {
    padding: 20px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-panel img {
    width: 82px;
    height: 82px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 12px 14px;
  }

  .spec-table td {
    padding-top: 0;
  }
}

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