:root {
  --orange: #ff5c1a;
  --orange-dark: #d9430b;
  --cyan: #00a7ad;
  --cyan-dark: #06777c;
  --black: #171717;
  --ink: #282828;
  --muted: #6d6c68;
  --paper: #fffdf7;
  --cream: #f3efe5;
  --sand: #e9e1d3;
  --line: #d8d0c4;
  --white: #ffffff;
  --shell: 1180px;
  --shadow: 0 30px 85px rgba(23, 23, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -90px;
  left: 18px;
  z-index: 1000;
  padding: 11px 16px;
  color: var(--white);
  background: var(--black);
  font-weight: 850;
  transition: top 0.2s ease;
}

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

.header-shell,
.hero-shell,
.lane-shell,
.quick-answer-shell,
.section-shell,
.final-shell,
.footer-shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid rgba(23, 23, 23, 0.13);
  backdrop-filter: blur(18px);
}

.header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: 210px 1fr 140px;
  gap: 28px;
  align-items: center;
}

.brand {
  width: max-content;
}

.brand img,
.footer-brand img {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 29px;
  color: #696762;
  font-size: 13px;
  font-weight: 780;
}

.site-nav a {
  position: relative;
  padding: 25px 0 23px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 17px;
  height: 2px;
  background: var(--orange);
  transition: right 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--black);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  min-width: 132px;
  padding: 11px 14px;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  transition: background 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--orange-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(23, 23, 23, 0.22);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 116px 0 205px;
  background:
    radial-gradient(circle at 14% 17%, rgba(255, 92, 26, 0.17), transparent 26%),
    radial-gradient(circle at 87% 25%, rgba(0, 167, 173, 0.15), transparent 25%),
    linear-gradient(135deg, #faf6ec 0%, #f0e9db 58%, #e4eee9 100%);
}

.hero::before {
  content: "FAST";
  position: absolute;
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
  color: rgba(23, 23, 23, 0.035);
  font-size: min(22vw, 330px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.hero-speed-lines {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background:
    linear-gradient(105deg, transparent 0 47%, rgba(255, 92, 26, 0.2) 47% 47.4%, transparent 47.4% 100%),
    linear-gradient(105deg, transparent 0 59%, rgba(0, 167, 173, 0.18) 59% 59.3%, transparent 59.3% 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(52px, 7.6vw, 94px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 810px;
  margin: 29px auto 0;
  color: #5e5b55;
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 35px;
}

.button {
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  min-width: 250px;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 38px rgba(255, 92, 26, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 21px 46px rgba(255, 92, 26, 0.31);
}

.button-primary b {
  font-size: 20px;
}

.button-ghost {
  color: var(--black);
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(23, 23, 23, 0.21);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--white);
}

.hero-answer {
  max-width: 820px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  margin: 39px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 23, 23, 0.18);
  text-align: left;
}

.hero-answer strong {
  color: var(--orange);
  font-size: 13px;
}

.hero-answer p {
  margin: 0;
  color: #66635e;
  font-size: 14px;
}

.express-lane {
  position: relative;
  z-index: 7;
  margin-top: -132px;
}

.lane-shell {
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.14);
  box-shadow: var(--shadow);
}

.lane-title {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 21px 28px;
  color: var(--white);
  background: var(--black);
}

.lane-title > span {
  min-width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.lane-title p {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.lane-title h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lane-grid article {
  min-height: 144px;
  display: grid;
  grid-template-columns: 48px 1fr 40px;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.lane-grid article:last-child {
  border-right: 0;
}

.lane-grid article:nth-child(2n) {
  background: #f7f3eb;
}

.lane-grid article > b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--cyan);
  font-size: 9px;
}

.lane-grid h3 {
  margin: 0;
  color: var(--black);
  font-size: 16px;
}

.lane-grid p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.lane-grid a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.quick-answer-band {
  margin-top: 55px;
  color: var(--white);
  background: var(--cyan-dark);
}

.quick-answer-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: center;
  padding-block: 18px;
}

.quick-answer-shell b {
  color: #bceff1;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.quick-answer-shell p {
  margin: 0;
  color: #d7f0f1;
  font-size: 13px;
}

.section {
  padding: 106px 0;
}

.intro-section {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: 88px;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 112px;
}

.section-heading h2,
.devices-heading h2,
.requirements-copy h2,
.steps-heading h2,
.speed-heading h2,
.failure-heading h2,
.faq-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(32px, 4.2vw, 53px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.intro-lead {
  margin: 0;
  color: var(--black);
  font-size: 23px;
  font-weight: 680;
  line-height: 1.65;
}

.intro-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 34px;
  padding-top: 33px;
  border-top: 1px solid var(--line);
}

.intro-columns p {
  margin: 0;
  color: var(--muted);
}

.intro-rule {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 23px;
  margin-top: 40px;
  padding: 24px 26px;
  color: var(--white);
  background: var(--black);
}

.intro-rule span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.intro-rule p {
  margin: 0;
  color: #cac5bc;
  font-size: 14px;
}

.devices-section {
  background: var(--cream);
}

.devices-heading,
.steps-heading,
.failure-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 80px;
  align-items: end;
}

.devices-heading > p,
.steps-heading > p,
.failure-heading > p {
  margin: 0;
  color: var(--muted);
}

.device-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 46px;
  border-top: 1px solid rgba(23, 23, 23, 0.18);
  border-left: 1px solid rgba(23, 23, 23, 0.18);
}

.device-selector button {
  min-height: 122px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  color: #66635e;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-right: 1px solid rgba(23, 23, 23, 0.18);
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
  cursor: pointer;
}

.device-selector button.is-active {
  color: var(--white);
  background: var(--orange);
}

.device-selector button > span {
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
}

.device-selector button.is-active > span {
  color: #ffe0d3;
}

.device-selector strong {
  font-size: 16px;
}

.device-selector small {
  color: inherit;
  opacity: 0.72;
  font-size: 10px;
}

.device-result {
  display: grid;
  grid-template-columns: 1.1fr 1fr 190px;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  box-shadow: 0 24px 65px rgba(23, 23, 23, 0.08);
}

.device-app {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
}

.device-app img {
  width: 72px;
  height: 72px;
  border-radius: 17px;
}

.device-app small {
  display: block;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.device-app h3 {
  margin: 3px 0 4px;
  color: var(--black);
  font-size: 22px;
}

.device-app p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.device-result dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-left: 1px solid var(--line);
}

.device-result dl div {
  padding: 6px 17px;
  border-right: 1px solid var(--line);
}

.device-result dt {
  color: #928d85;
  font-size: 9px;
  font-weight: 850;
}

.device-result dd {
  margin: 4px 0 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
}

.result-download {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.requirements-section {
  background: var(--paper);
}

.requirements-layout {
  display: grid;
  grid-template-columns: 0.64fr 1.36fr;
  gap: 85px;
  align-items: start;
}

.requirements-copy {
  position: sticky;
  top: 112px;
}

.requirements-copy > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
}

.requirements-list {
  border-top: 2px solid var(--black);
}

.requirements-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.requirements-list b {
  color: var(--orange);
  font-size: 11px;
}

.requirements-list h3 {
  margin: -5px 0 8px;
  color: var(--black);
  font-size: 19px;
}

.requirements-list p {
  margin: 0;
  color: var(--muted);
}

.steps-section {
  color: var(--white);
  background: var(--black);
}

.steps-heading h2 {
  color: var(--white);
}

.steps-heading > p {
  color: #aaa49b;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.steps-grid li {
  min-height: 280px;
  padding: 27px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.steps-grid li:nth-child(2) {
  background: rgba(255, 92, 26, 0.08);
}

.steps-grid li:nth-child(3) {
  background: rgba(0, 167, 173, 0.07);
}

.steps-grid span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.steps-grid h3 {
  margin: 64px 0 12px;
  font-size: 19px;
}

.steps-grid p {
  margin: 0;
  color: #aaa49b;
  font-size: 13px;
}

.steps-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 23px 26px;
  color: var(--black);
  background: var(--sand);
}

.steps-cta strong,
.steps-cta span {
  display: block;
}

.steps-cta strong {
  font-size: 17px;
}

.steps-cta span {
  margin-top: 2px;
  color: #6d675f;
  font-size: 12px;
}

.steps-cta a {
  min-width: 155px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--orange);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.speed-section {
  background: var(--cream);
}

.speed-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 80px;
  align-items: start;
}

.speed-heading {
  position: sticky;
  top: 112px;
}

.speed-heading > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
}

.speed-list {
  border-top: 2px solid var(--black);
}

.speed-list article {
  display: grid;
  grid-template-columns: 100px 1fr 1.08fr;
  gap: 26px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.speed-list span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.speed-list h3 {
  margin: -4px 0 0;
  color: var(--black);
  font-size: 18px;
  line-height: 1.4;
}

.speed-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.failure-section {
  background: var(--paper);
}

.failure-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 47px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.failure-table article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.failure-table span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.failure-table h3 {
  margin: 20px 0 10px;
  color: var(--black);
  font-size: 20px;
}

.failure-table p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  background: #eaf4f2;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 90px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-heading > p:not(.section-label) {
  margin: 22px 0 0;
  color: var(--muted);
}

.faq-cta {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 11px 19px;
  color: var(--white);
  background: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.faq-list {
  border-top: 2px solid var(--black);
}

.faq-list details {
  border-bottom: 1px solid #c7d8d4;
}

.faq-list summary {
  position: relative;
  padding: 25px 56px 25px 0;
  color: var(--black);
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: absolute;
  right: 5px;
  top: 23px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 1px solid #b9cfcb;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 0 25px;
  color: var(--muted);
}

.final-section {
  padding: 0 0 94px;
  background: #eaf4f2;
}

.final-shell {
  min-height: 280px;
  display: grid;
  grid-template-columns: 1fr 245px;
  gap: 60px;
  align-items: center;
  padding: 55px 60px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(23, 23, 23, 0.98), rgba(32, 77, 77, 0.96)),
    var(--black);
}

.final-shell p {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.final-shell h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.final-shell > div > span {
  display: block;
  margin-top: 18px;
  color: #aaa49b;
  font-size: 12px;
}

.final-button {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.final-button:hover,
.final-button:focus-visible {
  transform: translateY(-3px);
  background: var(--orange-dark);
}

.final-button b {
  font-size: 23px;
}

.site-footer {
  padding: 58px 0 36px;
  color: #aaa49b;
  background: #111111;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px 60px;
  align-items: start;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #716c65;
  font-size: 12px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 27px;
  font-size: 12px;
  font-weight: 760;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  padding-top: 23px;
  color: #57534e;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

.mobile-download {
  display: none;
}

@media (max-width: 1020px) {
  .header-shell {
    grid-template-columns: 190px 1fr 135px;
  }

  .site-nav {
    gap: 18px;
  }

  .lane-grid article {
    grid-template-columns: 42px 1fr 35px;
    padding: 18px;
  }

  .device-result {
    grid-template-columns: 1fr 1fr;
  }

  .result-download {
    grid-column: 1 / -1;
  }

  .intro-grid,
  .requirements-layout,
  .speed-layout,
  .faq-layout {
    gap: 50px;
  }
}

@media (max-width: 840px) {
  html {
    scroll-padding-top: 72px;
  }

  .header-shell {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    height: 34px;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    padding: 10px;
    background: var(--paper);
    border: 1px solid rgba(23, 23, 23, 0.16);
    box-shadow: 0 22px 55px rgba(23, 23, 23, 0.18);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 13px;
  }

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

  .hero {
    padding: 80px 0 190px;
  }

  .hero-answer {
    grid-template-columns: 1fr;
    gap: 7px;
    text-align: center;
  }

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

  .lane-grid article:nth-child(2) {
    border-right: 0;
  }

  .lane-grid article:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .intro-grid,
  .devices-heading,
  .requirements-layout,
  .steps-heading,
  .speed-layout,
  .failure-heading,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .requirements-copy,
  .speed-heading,
  .faq-heading {
    position: static;
  }

  .devices-heading,
  .steps-heading,
  .failure-heading {
    gap: 22px;
  }

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

  .device-result {
    grid-template-columns: 1fr;
  }

  .device-result dl {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 15px;
  }

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

  .speed-list article {
    grid-template-columns: 90px 1fr;
  }

  .speed-list p {
    grid-column: 2;
  }

  .final-shell {
    grid-template-columns: 1fr;
  }

  .final-button {
    width: min(100%, 285px);
  }

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

  .copyright {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .header-shell,
  .hero-shell,
  .lane-shell,
  .quick-answer-shell,
  .section-shell,
  .final-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  body {
    padding-bottom: 72px;
  }

  .hero {
    padding: 64px 0 165px;
  }

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

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .express-lane {
    margin-top: -115px;
  }

  .lane-title {
    padding: 18px;
  }

  .lane-title h2 {
    font-size: 21px;
  }

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

  .lane-grid article {
    border-right: 0;
  }

  .lane-grid article:nth-child(n+2) {
    border-top: 1px solid var(--line);
  }

  .quick-answer-band {
    margin-top: 42px;
  }

  .quick-answer-shell {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .devices-heading h2,
  .requirements-copy h2,
  .steps-heading h2,
  .speed-heading h2,
  .failure-heading h2,
  .faq-heading h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .intro-lead {
    font-size: 19px;
  }

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

  .intro-rule {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .device-result {
    padding: 22px 17px;
  }

  .device-app {
    grid-template-columns: 60px 1fr;
  }

  .device-app img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }

  .device-app h3 {
    font-size: 18px;
  }

  .device-result dl {
    grid-template-columns: 1fr;
  }

  .device-result dl div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .requirements-list article {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

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

  .steps-grid li {
    min-height: 0;
  }

  .steps-grid h3 {
    margin-top: 30px;
  }

  .steps-cta {
    display: grid;
  }

  .steps-cta a {
    width: 100%;
  }

  .speed-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .speed-list p {
    grid-column: auto;
  }

  .failure-table {
    grid-template-columns: 1fr;
  }

  .failure-table article {
    min-height: 0;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-section {
    padding-bottom: 70px;
  }

  .final-shell {
    padding: 38px 24px;
  }

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

  .mobile-download {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 14px;
    color: var(--white);
    background: rgba(17, 17, 17, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
  }

  .mobile-download > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-download img {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .mobile-download small,
  .mobile-download strong {
    display: block;
    line-height: 1.2;
  }

  .mobile-download small {
    color: #858079;
    font-size: 10px;
  }

  .mobile-download strong {
    margin-top: 3px;
    font-size: 13px;
  }

  .mobile-download > a {
    flex: 0 0 auto;
    padding: 11px 15px;
    color: var(--white);
    background: var(--orange);
    font-size: 13px;
    font-weight: 900;
  }
}

@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;
  }
}
