:root {
  color-scheme: dark;
  --page-gutter: clamp(20px, 6.25vw, 120px);
  /* Keep the breathing room at every screen handoff proportional to the
     available canvas instead of jumping between fixed desktop values. */
  --section-space: clamp(80px, 8.333333vw, 160px);
  --section-space-bottom: clamp(72px, 6.875vw, 132px);
  font-family: "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #000;
  color: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body { margin: 0; min-width: 320px; background: #000; }
a { color: inherit; text-decoration: none; }
body.qr-modal-open { overflow: hidden; }

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.qr-modal.is-open { visibility: visible; opacity: 1; }
.qr-modal-backdrop { position: absolute; inset: 0; background: rgb(0 0 0 / 78%); }
.qr-modal-content {
  position: relative;
  width: min(100%, 380px);
  padding: 32px;
  border: 1px solid #333;
  border-radius: 14px;
  background: #111;
  text-align: center;
  box-shadow: 0 20px 80px rgb(0 0 0 / 45%);
}
.qr-modal-content h2 { margin: 0; font-size: 20px; font-weight: 500; }
.qr-modal-description { margin: 10px 0 24px; color: #aaa; font-size: 14px; }
.qr-modal-image { display: block; width: min(100%, 280px); aspect-ratio: 1; margin: 0 auto; background: #fff; }
.qr-modal-close {
  position: absolute; top: 8px; right: 12px; border: 0; background: transparent;
  color: #aaa; cursor: pointer; font-size: 28px; line-height: 1;
}
.qr-modal-close:hover { color: #fff; }

.site-header {
  height: 80px;
  background: #090909;
  position: relative;
  z-index: 10;
}

.header-inner {
  max-width: 1680px;
  width: calc(100% - (var(--page-gutter) * 2));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  white-space: nowrap;
}

.brand-mark { width: 26px; height: 26px; display: block; }

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.main-nav a, .consult-link, .download-button { transition: opacity .2s ease, background-color .2s ease; }
.main-nav a:hover, .consult-link:hover { opacity: .72; }

.consult-link {
  margin-left: auto;
  min-width: 96px;
  height: 42.67px;
  padding: 0 10px;
  border-radius: 6px;
  background: #222;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ededed;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .3px;
}

.hero { position: relative; overflow: hidden; }
.hero-copy {
  max-width: 1680px;
  width: calc(100% - (var(--page-gutter) * 2));
  margin: 0 auto;
  padding-top: 111px;
}

h1 {
  margin: 0;
  width: 645px;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 400;
}

.hero-description {
  margin: 34px 0 0;
  width: 985px;
  color: #ccc;
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
}

.download-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  /* Keep the Figma button baseline at y=455px after the 32px body leading. */
  margin-top: 23.6px;
}

.download-button {
  height: 36px;
  padding: 0 12px 0 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #ededed;
  color: #171717;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.download-button img { width: 16px; height: 16px; display: block; flex: 0 0 16px; }
.download-button span { font-weight: 400; }
.download-button:hover { background: #fff; }
.web-button { width: 150px; }

.product-showcase {
  position: relative;
  max-width: 1680px;
  width: calc(100% - (var(--page-gutter) * 2));
  height: auto;
  aspect-ratio: 1680 / 1041;
  margin: 97px auto 0;
}

.showcase-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience {
  max-width: 1069px;
  margin: clamp(64px, 3.52vw, 67.6px) auto clamp(80px, 6.77vw, 130px);
  text-align: center;
}

.experience-kicker {
  margin: 0;
  font-size: 14px;
  line-height: 16.64px;
  letter-spacing: 1.04px;
  font-weight: 500;
}

.experience h2 {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 56px; margin-top: 51px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.stat strong { font-size: 24px; line-height: 1.2; font-weight: 500; }
.stat span { color: #ccc; font-size: 24px; line-height: 1.2; font-weight: 400; white-space: nowrap; }

.market-shift {
  max-width: 1920px;
  min-height: 1208px;
  margin: 0 auto;
  padding: var(--section-space) var(--page-gutter) var(--section-space-bottom);
  background: #000;
  color: #fff;
}

.market-top {
  display: grid;
  grid-template-columns: minmax(0, 645fr) minmax(0, 834fr);
  column-gap: clamp(40px, 10.47vw, 201px);
  align-items: start;
}

.market-top h2 {
  margin: 0;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  letter-spacing: 0;
  font-weight: 400;
}

.market-intro { min-width: 0; }
.market-intro > p {
  margin: 0;
  color: #ccc;
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
}

.market-actions { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.market-button {
  height: 36px;
  padding: 0 12px 0 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  transition: opacity .2s ease, background-color .2s ease;
}
.market-button:hover { opacity: .76; }
.market-button img { width: 16px; height: 16px; display: block; flex: 0 0 16px; }
.market-button-light { background: #ededed; color: #171717; }
.market-button-dark { background: #222; color: #ededed; }

.market-visual {
  width: 100%;
  height: 542px;
  margin: 48px 0 0;
  overflow: hidden;
}
.market-visual img,
.market-visual video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.market-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 3.8vw, 57px);
  margin-top: 48px;
}
.market-points article { min-width: 0; }
.market-points h3 {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}
.market-points p {
  margin: 12px 0 0;
  color: #ccc;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.core-engine {
  position: relative;
  max-width: 1920px;
  height: 898px;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.core-copy {
  position: absolute;
  z-index: 1;
  top: var(--section-space);
  left: var(--page-gutter);
  width: min(822px, 43vw);
}
.core-copy h2 {
  width: min(645px, 100%);
  margin: 0;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  font-weight: 400;
}
.core-copy h3 {
  margin: 47px 0 0;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}
.core-description {
  margin: 17px 0 0;
  color: #ccc;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.core-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 512px;
  max-width: 100%;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}
.core-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.core-checklist img { width: 24px; height: 24px; display: block; flex: 0 0 24px; }

.core-visual {
  position: absolute;
  top: 113px;
  right: clamp(24px, 4.0625vw, 78px);
  width: min(717px, 37.35vw);
  height: 672px;
  margin: 0;
  overflow: hidden;
}
.core-visual img {
  position: absolute;
  top: -16.82%;
  left: -43.93%;
  width: 187.87%;
  max-width: none;
  height: 133.63%;
  display: block;
}
.core-orb-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}

.core-tabs {
  position: absolute;
  left: var(--page-gutter);
  bottom: var(--section-space-bottom);
  display: flex;
  align-items: center;
  gap: 24px;
}
.core-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  white-space: nowrap;
}
.core-tab span { font-weight: 400; }
.core-tab.is-active span { font-weight: 500; }
.core-tab b {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  color: #ccc;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
}
.core-tab.is-active b { background: #fff; color: #171717; }

.geo-foundation {
  max-width: 1920px;
  min-height: 1120px;
  margin: 0 auto;
  padding: var(--section-space) clamp(20px, 6.35417vw, 122px) 0;
  background: #000;
  color: #fff;
  overflow-x: clip;
}
.geo-heading { text-align: center; }
.geo-heading h2 {
  margin: 0;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  font-weight: 400;
}
.geo-heading p {
  margin: 16px auto 0;
  max-width: 1358px;
  color: #ccc;
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
}
.geo-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 100px;
}
.geo-stat-card {
  height: 401px;
  padding: 24px 24px 22px;
  background: #121212;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.geo-stat-card > strong {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: -0.9px;
  font-weight: 400;
}
.geo-stat-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}
.geo-stat-card p {
  margin: 13px 0 0;
  width: 100%;
  color: #ccc;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}
.geo-comparison {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
}
.geo-row {
  display: grid;
  grid-template-columns: 470px 647px minmax(0, 1fr);
  min-height: 76px;
  align-items: center;
  background: #121212;
  color: #ccc;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  text-align: center;
}
.geo-row:nth-child(odd) { background: #262626; }
.geo-row span { padding: 16px 20px; }
.geo-row:not(.geo-row-head) { font-weight: 400; }
.geo-row-head { color: #fff; font-weight: 600; }
.geo-row-head span { font-weight: 500; }

.media-matrix {
  max-width: 1920px;
  min-height: 1120px;
  margin: 0 auto;
  padding: var(--section-space) clamp(20px, 6.35417vw, 122px) var(--section-space-bottom);
  background: #000;
  color: #fff;
  overflow-x: clip;
}
.media-matrix h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  font-weight: 400;
}
.media-stats {
  width: min(1289px, 100%);
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 56px;
  text-align: center;
}
.media-stat {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  line-height: 34px;
}
.media-stat strong {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 1px;
  font-weight: 600;
}
.media-stat span {
  color: #ccc;
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
  white-space: nowrap;
}
.media-grid {
  width: min(1671px, 100%);
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 160px));
  grid-auto-rows: minmax(0, 160px);
  gap: 7px;
  transition: opacity .26s ease;
}
.media-grid.is-switching { opacity: .12; }
.media-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 18px;
  margin-top: 22px;
}
.media-pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}
.media-pagination button.is-active {
  width: 26px;
  border-radius: 999px;
  background: #fff;
}
.media-pagination button:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.media-tile {
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}
.media-tile[hidden] { display: none !important; }
.media-image-frame {
  container-type: size;
  position: relative;
  width: 68%;
  height: 42%;
  flex: 0 0 auto;
  overflow: hidden;
}
.media-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100cqw, calc(100cqh * var(--logo-ratio)));
  aspect-ratio: var(--logo-ratio);
  transform: translate(-50%, -50%);
}
.media-image-frame img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}
.media-figma-logo {
  position: relative;
  width: 78%;
  height: 42%;
  flex: 0 0 auto;
  overflow: hidden;
}
.media-figma-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transform-origin: center;
  pointer-events: none;
}
.media-image-frame.media-image-cover img {
  object-fit: cover;
}
.media-image-frame.media-image-large {
  width: 80.4%;
  height: 41.3%;
}
.media-image-frame.media-image-crop {
  width: 80.4%;
  height: 41.3%;
  overflow: hidden;
}
.media-image-frame.media-image-crop img {
  position: absolute;
  left: 16.31%;
  top: -84.78%;
  width: 67.39%;
  height: 269.56%;
  object-fit: fill;
}
.media-image-frame.media-image-full {
  width: 80.4%;
  height: 100%;
}
.media-image-frame.media-image-bottom {
  width: 80.4%;
  height: 41.3%;
}
.media-image-frame.media-image-bottom img {
  object-fit: contain;
  object-position: bottom center;
}
.principles-section {
  max-width: 1920px;
  min-height: 800px;
  margin: 0 auto;
  padding: var(--section-space) clamp(20px, 6.35417vw, 122px) var(--section-space-bottom);
  background: #000;
  color: #fff;
  overflow-x: clip;
}
.principles-section h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  font-weight: 400;
}
.principles-subtitle {
  margin: 16px auto 0;
  max-width: 1358px;
  color: #ccc;
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
  text-align: center;
}
.principles-grid {
  width: min(1710px, calc(100% + 34px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 73px;
}
.principle-card {
  min-width: 0;
  height: 143px;
  padding: 24px;
  background: #121212;
}
.principle-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}
.principle-card p {
  margin: 12px 0 0;
  color: #ccc;
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
}

.feature-system {
  max-width: 1920px;
  min-height: 920px;
  margin: 0 auto;
  padding: var(--section-space) clamp(20px, 6.25vw, 120px) var(--section-space-bottom);
  background: #000;
  color: #fff;
  overflow: hidden;
}
.feature-system > h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  font-weight: 400;
}
.feature-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.feature-tab,
.feature-tags span {
  height: 36px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  background: #4d4d4d;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  white-space: nowrap;
}
.feature-tab {
  width: 150px;
  padding: 0 12px 0 8px;
}
.feature-tab img {
  width: 16px;
  height: 16px;
  display: block;
  /* Keep every icon white until its tab is selected. */
  filter: brightness(0) invert(1);
}
.feature-tab.is-active { color: #171717; background: #ededed; }
.feature-tab.is-active img { filter: brightness(0); }
.feature-main {
  display: grid;
  grid-template-columns: minmax(0, 731px) minmax(0, 848px);
  gap: 101px;
  margin-top: 86px;
}
.feature-copy { min-width: 0; }
.feature-copy h3 {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
}
.feature-description {
  margin: 18px 0 0;
  color: #ccc;
  font-size: 16px;
  line-height: 34px;
  font-weight: 400;
}
.feature-points {
  width: 550px;
  max-width: 100%;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ccc;
  font-size: 16px;
  line-height: 34px;
  font-weight: 400;
}
.feature-points p { margin: 0; }
.feature-points strong { color: #fff; font-weight: 600; }
.feature-points p:nth-child(n + 2) strong { font-weight: 500; }
.feature-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 54px;
}
.feature-tags span { padding: 0 12px; }
.feature-visual {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 5040 / 3123;
  margin: 0;
  overflow: hidden;
  background: #050505;
}
.feature-visual-base,
.feature-visual-overlay {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
}
.feature-visual-base { display: none; }
.feature-visual-overlay {
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.core-advantages-section {
  max-width: 1920px;
  min-height: 952px;
  margin: 0 auto;
  padding: var(--section-space) 0 106px;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.core-advantages-section > h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  font-weight: 400;
}
.advantages-carousel {
  position: relative;
  margin-top: 78px;
}
.advantages-track {
  width: min(1680px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.25vw, 24px);
}
.advantage-card {
  min-width: 0;
  height: clamp(420px, 25.9375vw, 498px);
  padding: clamp(18px, 1.25vw, 24px);
  border: 1px solid #666;
  background: #262626;
  display: flex;
  flex-direction: column;
}
.advantage-copy { min-width: 0; }
.advantage-icon { width: 24px; height: 24px; display: block; }
.advantage-card h3 {
  margin: 16px 0 0;
  font-size: clamp(18px, 1.1458vw, 22px);
  line-height: 29px;
  font-weight: 400;
}
.advantage-card p {
  margin: 12px 0 0;
  color: #ccc;
  font-size: clamp(16px, 1.0417vw, 20px);
  line-height: 1.35;
  font-weight: 300;
}
.advantage-image {
  width: 100%;
  height: clamp(200px, 12.5vw, 240px);
  margin-top: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}
.advantages-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  padding: 4px;
  border: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.advantages-arrow img { width: 24px; height: 24px; display: block; }
.advantages-arrow-prev { left: 32px; background: #4d4d4d; }
.advantages-arrow-next { right: 32px; background: #fff; }
.advantages-arrow:not(:disabled) { background: #fff; }
.advantages-arrow:disabled { background: #4d4d4d; cursor: default; }
.advantages-arrow:not(:disabled) img { filter: brightness(0); }
.advantages-arrow:disabled img { filter: brightness(0) invert(1); }
.advantages-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.advantages-pagination button {
  width: 56px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: block;
  background: #ccc;
  cursor: pointer;
}
.advantages-pagination button.is-active { background: #fff; }

/* Text entrance: elements fade up as each section enters the viewport. */
.text-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.text-reveal.is-text-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .text-reveal,
  .text-reveal.is-text-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.pricing-section {
  max-width: 1920px;
  min-height: 1158px;
  margin: 0 auto;
  padding: var(--section-space) var(--page-gutter) 160px;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.pricing-heading h2 {
  width: 645px;
  margin: 0;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  font-weight: 400;
}
.pricing-heading p {
  width: min(834px, 100%);
  margin: 16px 0 0;
  color: #ccc;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 34px;
  font-weight: 300;
  white-space: nowrap;
}
.pricing-grid {
  width: min(1680px, calc(100% - (var(--page-gutter) * 0)));
  margin: 82px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pricing-card {
  min-width: 0;
  height: 581px;
  padding: 24px;
  background: #262626;
  display: flex;
  flex-direction: column;
}
.pricing-card:not(:last-child) { border-right: 1px solid #666; }
.pricing-card-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: .35px;
  font-weight: 400;
}
.pricing-card-head > p {
  margin: 11px 0 0;
  color: #ccc;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}
.pricing-amount { display: flex; align-items: baseline; gap: 8px; margin-top: 19px; }
.pricing-amount strong { font-size: 36px; line-height: 40px; letter-spacing: -.9px; font-weight: 400; }
.pricing-amount span { color: #ccc; font-size: 16px; line-height: 21px; font-weight: 400; }
.pricing-card-body { margin-top: 64px; }
.pricing-metrics > div {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ccc;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  white-space: nowrap;
}
.pricing-metrics > div strong { color: #fff; font-weight: 400; text-align: right; }
.pricing-metrics > img { width: 100%; height: 1px; display: block; margin: 12px 0; }
.pricing-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.pricing-features li { min-width: 0; display: flex; align-items: flex-start; gap: 8px; color: #fff; font-size: 16px; line-height: 20px; }
.pricing-features li img { width: 24px; height: 24px; display: block; flex: 0 0 24px; }
.pricing-features-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.pricing-actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.pricing-quota,
.pricing-button {
  width: 100%;
  height: 48px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}
.pricing-quota { border: 1px solid #fff; color: #e6e6e6; }
.pricing-button { border: 1px solid transparent; transition: opacity .2s ease, background-color .2s ease; }
.pricing-button:hover { opacity: .76; }
.pricing-button-muted { background: #4d4d4d; color: #fff; }
.pricing-button-primary { background: #fff; color: #171717; }
.pricing-note {
  margin: 48px auto 0;
  color: #ccc;
  font-size: 16px;
  line-height: 20px;
  font-weight: 300;
  text-align: center;
}

.final-cta-section {
  position: relative;
  max-width: 1920px;
  min-height: 556px;
  margin: 0 auto;
  padding: 174px var(--page-gutter) 0;
  background: #000;
  color: #fff;
  overflow: hidden;
}
.final-cta-copy { position: relative; z-index: 1; width: min(547px, 48%); }
.final-cta-copy h2 {
  margin: 0;
  font-size: clamp(32px, 2.1875vw, 42px);
  line-height: 1.34;
  font-weight: 400;
}
.final-cta-copy > p {
  width: 100%;
  margin: 16px 0 0;
  color: #ccc;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 34px;
  font-weight: 400;
}
.final-cta-actions { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.final-cta-button {
  height: 36px;
  padding: 0 12px 0 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  transition: opacity .2s ease, background-color .2s ease;
}
.final-cta-button:hover { opacity: .76; }
.final-cta-button img { width: 16px; height: 16px; display: block; }
.final-cta-button-light { background: #ededed; color: #171717; }
.final-cta-button-dark { background: #222; color: #ededed; }
.final-cta-visual {
  position: absolute;
  top: 68px;
  right: clamp(20px, 6.458333vw, 124px);
  width: min(836px, 43.541667vw);
  height: 420px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
}
.final-cta-visual img,
.final-cta-visual video { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; }
.final-cta-visual video {
  /* Preserve the supplied video's full frame instead of cropping its edges. */
  object-fit: contain;
  background: #000;
}
.final-cta-visual::before,
.final-cta-visual::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24%;
  z-index: 1;
  pointer-events: none;
}
.final-cta-visual::before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, rgb(0 0 0 / 82%) 30%, transparent 100%);
}
.final-cta-visual::after {
  right: 0;
  background: linear-gradient(270deg, #000 0%, rgb(0 0 0 / 82%) 30%, transparent 100%);
}

.site-footer {
  position: relative;
  max-width: 1920px;
  height: 487px;
  margin: 0 auto;
  background: #000;
  color: #fff;
  border-bottom: 1px solid #222;
  overflow: hidden;
}
.footer-branding {
  position: absolute;
  top: 64px;
  left: var(--page-gutter);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 5.36px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  white-space: nowrap;
}
.footer-brand-mark {
  width: 34.641px;
  height: 34.641px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34.641px;
}
.footer-brand-mark img { width: 26px; height: 26px; display: block; }
.footer-tagline {
  margin: 16px 0 0;
  color: #ccc;
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
  white-space: nowrap;
}
.footer-links {
  position: absolute;
  top: 64px;
  right: var(--page-gutter);
  display: grid;
  grid-template-columns: 107px 107px 64px 107px;
  gap: 60px;
}
.footer-link-group {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.footer-link-group h2 {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.footer-link-group a {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  white-space: nowrap;
}
.footer-link-group a:hover { color: #fff; }
.footer-back-to-top {
  position: absolute;
  top: auto;
  bottom: 64px;
  right: var(--page-gutter);
  width: 36px;
  height: 36px;
  padding: 4px;
  border-radius: 999px;
  background: #121212;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s ease;
}
.footer-back-to-top:hover { background: #222; }
.footer-back-to-top img { width: 28px; height: 28px; display: block; }
.footer-copyright {
  position: absolute;
  left: var(--page-gutter);
  top: auto;
  bottom: 74px;
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  white-space: nowrap;
}

@media (min-width: 1201px) and (max-width: 1700px) {
  .geo-heading h2 { font-size: 32px; font-weight: 400; }
  .geo-heading p { font-size: 20px; font-weight: 300; }
  .geo-stat-grid { margin-top: 80px; }
  .geo-stat-card { height: 320px; padding: 20px; }
  .geo-stat-card > strong { font-size: 32px; font-weight: 400; }
  .geo-stat-card h3 { font-size: 18px; font-weight: 400; }
  .geo-stat-card p { font-size: 16px; font-weight: 400; line-height: 24px; }
  .geo-row { grid-template-columns: 28% 36% 36%; font-size: 18px; line-height: 24px; }
  .geo-row { font-weight: 400; }
  .geo-row-head { font-weight: 600; }
  .geo-row span:nth-child(3) { color: #fff; }
  .media-matrix h2 { font-size: 32px; font-weight: 400; }
  .media-stats { margin-top: 48px; gap: 28px; }
  .media-stat strong { font-size: 36px; line-height: 42px; }
  .media-stat span { font-size: 18px; line-height: 26px; font-weight: 400; }
  .media-grid { margin-top: 34px; grid-template-rows: repeat(4, minmax(0, 120px)); grid-auto-rows: minmax(0, 120px); }
  .principles-section h2 { font-size: 32px; font-weight: 400; }
  .principles-subtitle { font-size: 20px; line-height: 30px; font-weight: 300; }
  .principles-grid { width: 100%; margin-top: 60px; }
  .principle-card { height: 132px; padding: 20px 24px; }
  .principle-card h3 { font-size: 18px; line-height: 24px; font-weight: 400; }
  .principle-card p { margin-top: 10px; font-size: 16px; line-height: 24px; font-weight: 300; }
  .feature-system > h2 { font-size: 32px; font-weight: 400; }
  .feature-tabs { margin-top: 20px; }
  .feature-main { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; margin-top: 64px; }
  .feature-copy h3 { font-size: 20px; line-height: 28px; }
  .feature-description, .feature-points { font-size: 15px; line-height: 27px; }
  .feature-points { margin-top: 12px; gap: 6px; }
  .feature-tags { margin-top: 36px; }
  .feature-visual { height: auto; aspect-ratio: 5040 / 3123; }
}

/* Compact desktop canvases should size each screen from its content and the
   shared vertical rhythm. Fixed Figma artboard heights otherwise leave a
   different amount of empty space below every screen at 13–17 inch ratios. */
@media (min-width: 761px) and (max-width: 1700px) {
  .market-shift,
  .geo-foundation,
  .media-matrix,
  .principles-section,
  .feature-system { min-height: auto; }
  .geo-foundation { padding-bottom: var(--section-space-bottom); }
  .core-advantages-section { min-height: auto; padding-bottom: var(--section-space-bottom); }
  .pricing-section { min-height: auto; padding-bottom: var(--section-space-bottom); }
  .pricing-heading h2 { font-size: 32px; }
  .pricing-heading p { font-size: 20px; line-height: 30px; }
  .pricing-grid { margin-top: 64px; }
  .pricing-card { height: 560px; padding: 20px; }
  .pricing-card-head h3 { font-size: 18px; }
  .pricing-card-head > p,
  .pricing-metrics > div,
  .pricing-features li,
  .pricing-quota,
  .pricing-button { font-size: 15px; }
  .pricing-amount strong { font-size: 32px; }
}

/* The supplied 1654px review uses the compact desktop type scale. */
@media (min-width: 1201px) and (max-width: 1700px) {
  .main-nav { font-size: 14px; font-weight: 400; }
  h1 { font-size: 32px; }
  .hero-description { font-size: 20px; }
  .stat strong { font-weight: 500; }

  .market-top h2 { font-size: 32px; font-weight: 400; }
  .market-intro > p { font-size: 20px; font-weight: 300; }
  .market-points h3 { font-size: 18px; font-weight: 400; }
  .market-points p { font-size: 16px; font-weight: 400; }

  .core-copy h2 { font-size: 32px; font-weight: 400; }
  .core-copy h3 { font-size: 18px; font-weight: 400; }
  .core-description { font-size: 16px; font-weight: 400; }
  .core-checklist span { font-weight: 400; }
  .core-tab span { font-weight: 400; }
  .core-tab.is-active span { font-weight: 500; }
  .core-tab span { font-size: 16px; }
}

@media (max-width: 1200px) {
  .header-inner, .hero-copy, .product-showcase { margin-left: auto; margin-right: auto; }
  .main-nav { gap: 14px; font-size: 13px; }
  .hero-description { width: min(985px, 78vw); font-size: 20px; }
  h1 { font-size: 44px; }
  .product-showcase { height: auto; aspect-ratio: 1680 / 1041; }
  .market-shift { min-height: auto; padding-top: var(--section-space); }
  .market-top h2 { font-size: 36px; }
  .market-intro > p { font-size: 20px; line-height: 30px; }
  .market-visual { height: clamp(360px, 31vw, 542px); margin-top: 64px; }
  .market-points h3 { font-size: 20px; }
  .market-points p { font-size: 17px; line-height: 25px; }
  .core-copy { width: min(700px, 54vw); }
  .core-copy h3 { font-size: 19px; line-height: 26px; }
  .core-description { font-size: 17px; line-height: 25px; }
  .core-visual { width: min(560px, 42vw); height: 540px; top: 150px; }
  .core-tabs { bottom: var(--section-space-bottom); gap: 16px; }
  .core-tab { font-size: 17px; }
  .core-tab b { width: 28px; height: 28px; font-size: 17px; }
  .geo-foundation { min-height: auto; padding-top: var(--section-space); padding-left: 20px; padding-right: 20px; padding-bottom: var(--section-space-bottom); }
  .geo-heading h2 { font-size: 32px; }
  .geo-heading p { font-size: 20px; line-height: 30px; }
  .geo-stat-grid { gap: 16px; margin-top: 64px; }
  .geo-stat-card { height: 290px; padding: 18px; }
  .geo-stat-card > strong { font-size: 30px; }
  .geo-stat-card h3 { font-size: 18px; }
  .geo-stat-card p { font-size: 16px; line-height: 23px; }
  .geo-comparison { margin-top: 32px; }
  .geo-row { grid-template-columns: 28% 36% 36%; font-size: 16px; line-height: 22px; }
  .media-matrix { min-height: auto; padding-top: var(--section-space); padding-bottom: var(--section-space-bottom); }
  .media-matrix h2 { font-size: 32px; }
  .media-stats { gap: 20px; margin-top: 44px; }
  .media-stat strong { font-size: 32px; line-height: 38px; }
  .media-stat span { font-size: 16px; line-height: 24px; }
  .media-grid { grid-template-rows: repeat(4, minmax(0, 100px)); grid-auto-rows: minmax(0, 100px); gap: 6px; margin-top: 32px; }
  .principles-section { min-height: auto; padding-top: var(--section-space); padding-bottom: var(--section-space-bottom); }
  .principles-section h2 { font-size: 32px; }
  .principles-subtitle { font-size: 20px; line-height: 30px; }
  .principles-grid { width: 100%; margin-top: 56px; }
  .principle-card { height: 150px; padding: 20px; }
  .principle-card h3 { font-size: 18px; line-height: 24px; }
  .principle-card p { font-size: 16px; line-height: 24px; }
  .feature-system { min-height: auto; padding-top: var(--section-space); padding-bottom: var(--section-space-bottom); }
  .feature-system > h2 { font-size: 32px; }
  .feature-tabs { flex-wrap: wrap; margin-top: 20px; }
  .feature-main { grid-template-columns: 1fr; gap: 48px; margin-top: 56px; }
  .feature-copy h3 { font-size: 20px; }
  .feature-description, .feature-points { font-size: 16px; line-height: 27px; }
  .feature-tags { flex-wrap: wrap; margin-top: 36px; }
  .feature-visual { height: auto; aspect-ratio: 5040 / 3123; min-height: 300px; }
  .core-advantages-section { min-height: auto; padding: var(--section-space) 20px var(--section-space-bottom); }
  .core-advantages-section > h2 { font-size: 32px; }
  .advantages-carousel { margin-top: 60px; }
  .advantages-track { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .advantage-card { height: 420px; padding: 20px; }
  .advantage-card h3 { font-size: 18px; line-height: 24px; }
  .advantage-card p { font-size: 16px; line-height: 24px; }
  .advantage-image { height: 200px; }
  .advantages-arrow { top: 50%; }
  .advantages-arrow-prev { left: 4px; }
  .advantages-arrow-next { right: 4px; }
  .final-cta-section { min-height: auto; padding: var(--section-space) 20px var(--section-space-bottom); }
  .final-cta-copy { width: min(620px, 100%); }
  .final-cta-copy h2 { font-size: 32px; }
  .final-cta-copy > p { font-size: 20px; line-height: 30px; }
  .final-cta-visual { position: relative; top: auto; right: auto; width: 100%; max-width: 836px; height: min(52vw, 420px); min-height: 280px; margin-top: 56px; }
  .pricing-section { min-height: auto; padding: var(--section-space) 20px var(--section-space-bottom); }
  .pricing-heading h2 { width: auto; font-size: 32px; }
  .pricing-heading p { width: auto; font-size: 18px; line-height: 28px; white-space: normal; }
  .pricing-grid { width: 100%; margin-top: 48px; grid-template-columns: 1fr; gap: 16px; }
  .pricing-card { height: auto; min-height: 560px; padding: 20px; border-right: 0; }
  .pricing-card-body { margin-top: 48px; }
  .pricing-card-head h3 { font-size: 18px; }
  .pricing-card-head > p,
  .pricing-metrics > div,
  .pricing-features li,
  .pricing-quota,
  .pricing-button { font-size: 16px; }
  .pricing-amount strong { font-size: 32px; }
  .pricing-note { margin-top: 32px; font-size: 14px; line-height: 22px; }
}

@media (max-width: 760px) {
  .site-header { height: 64px; }
  .header-inner, .hero-copy, .product-showcase { margin-left: auto; margin-right: auto; }
  .main-nav { display: none; }
  .brand { font-size: 14px; }
  .consult-link { min-width: 88px; height: 36px; font-size: 11px; }
  .hero-copy { padding-top: 72px; }
  h1 { width: auto; font-size: clamp(32px, 9vw, 44px); }
  .hero-description { width: auto; font-size: 17px; line-height: 1.55; margin-top: 24px; }
  .download-actions { flex-wrap: wrap; margin-top: 24px; }
  .download-button { font-size: 12px; }
  .product-showcase { height: auto; aspect-ratio: 1680 / 1041; min-height: 320px; margin-top: 56px; }
  .experience { margin: var(--section-space) 20px var(--section-space-bottom); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; margin-top: 48px; }
  .stat strong, .stat span { font-size: 18px; }
  .stat span { white-space: normal; }
  .market-shift { padding: var(--section-space) 20px var(--section-space-bottom); }
  .market-top { display: block; }
  .market-top h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .market-intro { margin-top: 30px; }
  .market-intro > p { font-size: 18px; line-height: 28px; }
  .market-actions { flex-wrap: wrap; margin-top: 20px; }
  .market-visual { height: min(62vw, 360px); min-height: 220px; margin-top: 48px; }
  .market-points { grid-template-columns: 1fr; gap: 34px; margin-top: 34px; }
  .market-points h3 { font-size: 20px; }
  .market-points p { font-size: 16px; line-height: 25px; margin-top: 9px; }
  .core-engine { height: auto; min-height: 980px; padding: var(--section-space) 20px var(--section-space-bottom); }
  .core-copy { position: relative; top: auto; left: auto; width: auto; }
  .core-copy h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .core-copy h3 { margin-top: 34px; font-size: 18px; line-height: 26px; }
  .core-description { margin-top: 14px; font-size: 16px; line-height: 25px; }
  .core-checklist { margin-top: 22px; gap: 10px; }
  .core-checklist li { font-size: 15px; }
  .core-visual { position: relative; top: auto; right: auto; width: 100%; height: min(78vw, 320px); margin-top: 54px; }
  .core-tabs { position: relative; left: auto; bottom: auto; flex-wrap: wrap; gap: 14px 18px; margin-top: 40px; }
  .core-tab { font-size: 16px; }
  .core-tab b { width: 28px; height: 28px; font-size: 16px; }
  .geo-foundation { padding: var(--section-space) 20px var(--section-space-bottom); }
  .geo-heading h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .geo-heading p { font-size: 17px; line-height: 26px; margin-top: 12px; }
  .geo-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
  .geo-stat-card { height: 240px; padding: 16px; }
  .geo-stat-card > strong { font-size: 28px; line-height: 34px; }
  .geo-stat-card h3 { font-size: 16px; line-height: 22px; }
  .geo-stat-card p { margin-top: 8px; font-size: 14px; line-height: 20px; }
  .geo-comparison { margin-top: 28px; overflow: hidden; }
  .geo-row { grid-template-columns: 26% 37% 37%; min-height: 72px; font-size: 13px; line-height: 19px; }
  .geo-row span { padding: 12px 8px; }
  .media-matrix { padding: var(--section-space) 20px var(--section-space-bottom); }
  .media-matrix h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .media-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; margin-top: 40px; }
  .media-stat { gap: 6px; }
  .media-stat strong { font-size: 28px; line-height: 34px; }
  .media-stat span { font-size: 14px; line-height: 20px; white-space: normal; }
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(4, 96px); grid-auto-rows: 96px; gap: 6px; margin-top: 36px; }
  .media-image-frame { width: 72%; }
  .media-figma-logo { width: 82%; height: 38%; }
  .media-image-frame.media-image-crop { width: 82%; }
  .media-image-frame.media-image-full { width: 82%; }
  .principles-section { padding: var(--section-space) 20px var(--section-space-bottom); }
  .principles-section h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .principles-subtitle { margin-top: 12px; font-size: 17px; line-height: 26px; }
  .principles-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .principle-card { height: auto; min-height: 0; padding: 18px; }
  .principle-card h3 { font-size: 16px; line-height: 22px; }
  .principle-card p { margin-top: 8px; font-size: 14px; line-height: 21px; }
  .feature-system { padding: var(--section-space) 20px var(--section-space-bottom); }
  .feature-system > h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .feature-tabs { gap: 10px; }
  .feature-tab { width: calc(50% - 5px); }
  .feature-main { gap: 36px; margin-top: 44px; }
  .feature-copy h3 { font-size: 18px; line-height: 24px; }
  .feature-description, .feature-points { font-size: 14px; line-height: 24px; }
  .feature-points { gap: 6px; }
  .feature-tags { gap: 8px; margin-top: 30px; }
  .feature-tags span { font-size: 12px; }
  .feature-visual { height: auto; aspect-ratio: 5040 / 3123; min-height: 240px; }
  .core-advantages-section > h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .advantages-carousel { margin-top: 40px; }
  .advantages-track { grid-template-columns: 1fr; gap: 16px; }
  .advantage-card { height: auto; min-height: 0; padding: 18px; }
  .advantage-card h3 { font-size: 16px; line-height: 22px; }
  .advantage-card p { font-size: 14px; line-height: 21px; }
  .advantage-image { height: 200px; margin-top: 28px; }
  .advantages-arrow { display: none; }
  .final-cta-copy { width: 100%; }
  .final-cta-copy h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .final-cta-copy > p { font-size: 17px; line-height: 26px; }
  .final-cta-actions { flex-wrap: wrap; margin-top: 24px; }
  .final-cta-visual { height: min(62vw, 280px); min-height: 200px; margin-top: 48px; }
  .pricing-heading h2 { font-size: clamp(30px, 8vw, 42px); line-height: 1.28; }
  .pricing-heading p { font-size: 17px; line-height: 26px; white-space: normal; }
  .pricing-grid { margin-top: 40px; }
  .pricing-card { min-height: 0; padding: 18px; }
  .pricing-card-body { margin-top: 40px; }
  .pricing-card-head h3 { font-size: 16px; line-height: 22px; }
  .pricing-card-head > p,
  .pricing-metrics > div,
  .pricing-features li,
  .pricing-quota,
  .pricing-button { font-size: 14px; }
  .pricing-amount strong { font-size: 28px; line-height: 34px; }
  .pricing-amount span { font-size: 14px; }
  .pricing-features-columns { grid-template-columns: 1fr; }

  .site-footer {
    height: auto;
    min-height: 520px;
    padding: 64px 20px 32px;
    border-bottom: 1px solid #222;
  }
  .footer-branding,
  .footer-links,
  .footer-copyright {
    position: static;
  }
  .footer-branding { display: block; }
  .footer-brand { font-size: 20px; line-height: 28px; }
  .footer-tagline { margin-top: 12px; font-size: 14px; line-height: 20px; white-space: normal; }
  .footer-links {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }
  .footer-link-group { gap: 12px; }
  .footer-link-group h2 { font-size: 15px; line-height: 21px; }
  .footer-link-group a { font-size: 13px; line-height: 19px; }
  .footer-copyright { margin-top: 28px; font-size: 11px; line-height: 16px; white-space: normal; }
  .footer-back-to-top { top: auto; right: 20px; bottom: 32px; }
}
