:root {
  --bg: #1c2331;
  --bg-deep: #131926;
  --surface: #21293a;
  --surface-2: #283347;
  --surface-3: #151c29;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f7fb;
  --muted: #bcc7d7;
  --accent: #b30006;
  --accent-strong: #d11117;
  --warning: #ffcc00;
  --warning-soft: rgba(255, 204, 0, 0.16);
  --shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(18, 24, 37, 0.96), rgba(28, 35, 49, 0.96)),
    linear-gradient(135deg, rgba(179, 0, 6, 0.08), transparent 46%),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}

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

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

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--warning);
  color: #161616;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

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

.section {
  padding: 84px 0;
}

.section--tone {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(10, 14, 22, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  backdrop-filter: blur(18px);
  background: rgba(19, 25, 38, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px 0;
  flex-wrap: wrap;
}

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

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.16), rgba(179, 0, 6, 0.12));
  border: 1px solid rgba(255, 204, 0, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  flex: 0 0 auto;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #101624;
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__text strong {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--text);
}

.brand__text small {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 2px;
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  transform: translateY(-2px) rotate(-2deg);
  border-color: rgba(255, 204, 0, 0.7);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28), 0 0 18px rgba(255, 204, 0, 0.16);
}

.brand:hover .brand__text strong,
.brand:focus-visible .brand__text strong {
  color: var(--warning);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--warning);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.menu-toggle__icon {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.menu-toggle__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease, bottom 0.2s ease;
}

.menu-toggle__icon span:nth-child(1) {
  top: 0;
}

.menu-toggle__icon span:nth-child(2) {
  top: 6px;
}

.menu-toggle__icon span:nth-child(3) {
  bottom: 0;
}

.site-header.is-open .menu-toggle__icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle__icon span:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  white-space: nowrap;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, text-shadow 0.2s ease;
}

.site-nav a .nav-icon {
  display: block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--warning);
  background: rgba(255, 204, 0, 0.055);
  border-color: rgba(255, 204, 0, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 204, 0, 0.12), 0 0 16px rgba(255, 204, 0, 0.13);
  text-shadow: 0 0 12px rgba(255, 204, 0, 0.52);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-cta {
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--warning), #e0b700);
  color: #1a1a1a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 450;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--warning), #e0b700);
  color: #1a1a1a;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 204, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 204, 0, 0.2);
}

.header-cta svg,
.button svg,
.floating-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero {
  padding-top: 44px;
}

.hero__grid,
.section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.section__grid--reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
}

.section__grid--reverse .section__copy {
  order: 2;
}

.section__grid--reverse .section__media {
  order: 1;
}

.section__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.section__grid--single .section__copy {
  max-width: 100%;
}

.hero__copy,
.section__copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warning);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero__lead {
  margin: 18px 0 10px;
  font-size: 1.06rem;
  color: #eef2f8;
}

.hero__body,
.section__copy p {
  margin: 0 0 14px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 18px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 0.94rem;
}

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

.hero__facts div {
  padding: 14px 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.hero__facts div:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.1), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 204, 0, 0.42);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.24), 0 0 18px rgba(255, 204, 0, 0.08);
}

.hero__facts dt {
  margin: 0 0 6px;
  color: var(--warning);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero__facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease, filter 0.38s ease;
}

.media:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 204, 0, 0.38);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.38), 0 0 20px rgba(255, 204, 0, 0.08);
}

.media:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.02);
}

.hero__media {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 204, 0, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface-3);
}

.hero__media img {
  object-fit: contain;
  background: #0f1420;
}

.media--banner {
  aspect-ratio: 460 / 215;
}

.media--tall {
  aspect-ratio: 1316 / 883;
}

.media--wide {
  aspect-ratio: 16 / 9;
}

.media--square {
  aspect-ratio: 1 / 1;
}

.feature-media-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}

.feature-media-item {
  aspect-ratio: 16 / 9;
}

.media--gallery {
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 204, 0, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface-3);
  aspect-ratio: 16 / 9;
}

.media--gallery img {
  object-fit: contain;
  background: #0f1420;
}

.media--crop-left img {
  object-fit: cover;
  object-position: 18% center;
}

.media figcaption {
  padding: 10px 12px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  background: rgba(10, 14, 22, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section__copy h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.18;
}

.section__copy h3 {
  margin: 26px 0 8px;
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
}

.feature-list,
.guide-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.guide-list li {
  position: relative;
  padding: 10px 12px 10px 20px;
  margin-bottom: 8px;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 2px solid rgba(255, 204, 0, 0.32);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.018);
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.feature-list li:hover,
.guide-list li:hover {
  transform: translateX(4px);
  color: var(--text);
  border-color: rgba(255, 204, 0, 0.34);
  border-left-color: var(--warning);
  background: rgba(255, 204, 0, 0.06);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.feature-list li::before,
.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warning);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.12);
}

.guide-list {
  counter-reset: guide;
}

.guide-list li {
  padding-left: 42px;
}

.guide-list li::before {
  content: counter(guide);
  counter-increment: guide;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  top: 0.25em;
  color: #121212;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--warning);
  box-shadow: none;
}

.timeline {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline li {
  position: relative;
  padding: 16px 18px 16px 30px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(255, 204, 0, 0.36);
  border-radius: var(--radius);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.timeline li:hover {
  transform: translateX(4px);
  border-color: rgba(255, 204, 0, 0.34);
  border-left-color: var(--warning);
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22), 0 0 18px rgba(255, 204, 0, 0.06);
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(179, 0, 6, 0.16);
}

.timeline time {
  display: inline-block;
  margin-right: 10px;
  min-width: 104px;
  color: var(--warning);
  font-weight: 700;
}

.screenshot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.85fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.screenshot-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-thumb {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--surface-3);
  cursor: pointer;
  aspect-ratio: 16 / 9;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-thumb__badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(17, 25, 38, 0.72);
  border: 1px solid rgba(255, 204, 0, 0.36);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  opacity: 0.9;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.gallery-thumb__badge svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--warning);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(255, 204, 0, 0.46);
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.12);
}

.gallery-thumb:hover .gallery-thumb__badge,
.gallery-thumb:focus-visible .gallery-thumb__badge,
.gallery-thumb.is-active .gallery-thumb__badge {
  opacity: 1;
  transform: translateY(-1px) scale(1.02);
  border-color: rgba(255, 204, 0, 0.54);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.faq-card {
  padding: 18px 18px 20px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(255, 204, 0, 0.08), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 204, 0, 0.38);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.24), 0 0 18px rgba(255, 204, 0, 0.07);
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(110deg, var(--bg-deep) 0%, #1d1b2d 52%, #361923 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.08), var(--accent-strong), rgba(255, 204, 0, 0.56));
}

.footer__links {
  padding: 34px 0 28px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__links h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 28px;
  line-height: 1.2;
}

.footer-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 100%;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  transition: transform 0.22s ease, color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  transform: translateY(-3px);
  color: #1a1a1a;
  border-color: var(--warning);
  background: var(--warning);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24), 0 0 18px rgba(255, 204, 0, 0.16);
}

.footer__inner {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
}

.footer__inner p {
  margin: 0;
}

@media (max-width: 1120px) {
  .header__inner {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .hero__grid,
  .section__grid,
  .section__grid--reverse {
    grid-template-columns: 1fr;
  }

  .section__grid--reverse .section__copy,
  .section__grid--reverse .section__media {
    order: initial;
  }

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

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

  .header__menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-left: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.is-open .header__menu {
    display: flex;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow: visible;
  }

  .site-nav a {
    width: 100%;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    white-space: normal;
  }

  .header-cta {
    width: 100%;
  }

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

  .screenshot-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section__copy h2 {
    font-size: 22px;
  }

  .section__copy h3 {
    font-size: 18px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__facts,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .timeline li {
    padding: 14px 14px 14px 24px;
  }

  .timeline li::before {
    left: 10px;
    top: 20px;
  }

  .timeline time {
    display: block;
    min-width: 0;
    margin: 0 0 8px;
  }

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

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

  .header__inner {
    gap: 12px;
  }

  .brand__text strong {
    font-size: 0.98rem;
  }

  .brand__text small {
    font-size: 0.82rem;
  }

  .button,
  .header-cta,
  .floating-cta {
    min-height: 42px;
    padding: 9px 14px;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }

  .site-footer {
    padding-bottom: 88px;
  }

  .footer__links {
    padding-top: 30px;
  }

  .footer__links h2 {
    font-size: 24px;
  }

  .footer-link-list {
    gap: 10px;
  }

  .footer-link {
    flex: 1 1 100%;
  }
}

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

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