* {
  box-sizing: border-box;
}

body.is-menu-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body[data-lang="zh-Hant"] {
  font-family: var(--font-system);
}

:root {
  --font-system:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", Arial,
    sans-serif;
  --warning: #d94b4b;
  --soft-blue: #e8f0fe;
  --soft-green: #e6f4ea;
  --soft-yellow: #fef7e0;
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #202124;
  --muted: #5f6368;
  --line: #dadce0;
  --soft-line: #edf0f2;
  --accent: #185abc;
  --accent-dark: #174ea6;
  --cta-blue: #185abc;
  --cta-blue-dark: #174ea6;
  --cloud: #f1f3f4;
  --photo: #e6f4ea;
  --work: #e8f0fe;
  --creator: #f3e8fd;
  --family: #fef7e0;
  --shadow: 0 10px 32px rgba(60, 64, 67, 0.12);
  --radius-sm: 15px;
  --radius-md: 15px;
  --radius-lg: 15px;
  --max: 1240px;
  --text-strong: #202124;
  --text-body: #3c4043;
  --text-muted: #5f6368;
  --text-soft: #80868b;
  --link-blue: #1a73e8;
}

body {
  margin: 0;
  background-size: 36px 36px;
  letter-spacing: 0;
  background: #fff;
  color: var(--text-body);
  font-family: var(--font-system);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

button {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a,
.text-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  white-space: nowrap;
}

.download-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.download-menu__trigger {
  cursor: pointer;
}

.download-menu__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 190px;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
}

.download-menu:hover .download-menu__panel,
.download-menu:focus-within .download-menu__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.download-menu__panel a {
  border-radius: 15px;
  color: #185abc;
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
  padding: 12px 14px;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.download-menu__panel a:hover,
.download-menu__panel a:focus-visible {
  background: #e8f0fe;
  color: #0b57d0;
  outline: none;
}

.language-switch button:hover {
  color: var(--ink);
}

.language-switch button:active {
  transform: scale(0.96);
}

.language-switch--dark {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.language-switch--dark button {
  color: rgba(255, 255, 255, 0.68);
}

.language-switch--dark button:hover {
  color: #fff;
}

.language-switch--dark button.is-active {
  background: #fff;
  color: var(--ink);
}

.button:hover::before {
  transform: translateX(120%);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-small {
  min-height: 40px;
  padding-inline: 17px;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 11px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: #050605;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 900;
}

.menu-overlay__top button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 15px;
  background: transparent;
  color: #fff;
  padding: 10px 16px;
}

.menu-overlay__nav {
  display: grid;
  gap: 8px;
}

.menu-overlay__nav a {
  opacity: 0;
  transform: translateY(18px);
  font-size: clamp(42px, 14vw, 86px);
  font-weight: 950;
  line-height: 0.95;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    color 180ms ease;
}

.menu-overlay.is-open .menu-overlay__nav a {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay.is-open .menu-overlay__nav a:nth-child(2) {
  transition-delay: 40ms;
}

.menu-overlay.is-open .menu-overlay__nav a:nth-child(3) {
  transition-delay: 80ms;
}

.menu-overlay.is-open .menu-overlay__nav a:nth-child(4) {
  transition-delay: 120ms;
}

.menu-overlay.is-open .menu-overlay__nav a:nth-child(5) {
  transition-delay: 160ms;
}

.menu-overlay.is-open .menu-overlay__nav a:nth-child(6) {
  transition-delay: 200ms;
}

.menu-overlay.is-open .menu-overlay__nav a:nth-child(7) {
  transition-delay: 240ms;
}

.menu-overlay__nav a:hover {
  color: var(--accent);
}

.menu-overlay__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.download-menu--overlay .download-menu__panel {
  top: auto;
  bottom: calc(100% + 10px);
  left: 0;
  right: auto;
  min-width: 224px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 950;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fine-print,
.platform-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.platform-line {
  margin-top: 8px;
  color: rgba(10, 11, 10, 0.82);
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.plan-label {
  display: inline-flex;
  border-radius: 15px;
  background: #eaf8f1;
  color: var(--accent-dark);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 950;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.6fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
  padding: clamp(48px, 6vw, 80px) max(24px, calc((100vw - var(--max)) / 2));
  background: #f8fafd;
  color: #202124;
}

.brand--footer .brand-mark {
  background: transparent;
}

.footer-brand-panel {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social__link {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #9aa0a6;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
  background: #fff;
  color: var(--text-strong);
}

.footer-social__link:focus-visible {
  outline: 2px solid var(--link-blue);
  outline-offset: 2px;
}

.footer-social__link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-language {
  background: #fff;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 58px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0;
  color: #7a7f87;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
}

.footer-column a {
  color: #202124;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.35;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #185abc;
  outline: none;
}

.copyright {
  color: #7a7f87;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.65;
  white-space: pre-line;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-motion,
.text-motion span {
  will-change: transform, opacity;
}

.text-motion {
  opacity: 1;
  transform: translateY(0);
  filter: none;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-motion.is-in-view {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.text-motion span {
  transform: translateY(0);
  opacity: 1;
  transition:
    opacity 520ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-motion.is-in-view span {
  transform: translateY(0);
  opacity: 1;
}

.text-motion.is-in-view span:nth-child(2) {
  transition-delay: 90ms;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes faqIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes swipeHint {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(14px);
  }
}

section[id],
#top {
  scroll-margin-top: 168px;
}

.scroll-progress span {
  display: block;
  width: calc(var(--scroll-progress, 0) * 1%);
  height: 100%;
  transition: width 120ms linear;
  background: var(--cta-blue);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  transition:
    background 220ms ease,
    border-color 220ms ease;
  height: 64px;
  padding-inline: max(32px, calc((100vw - 1320px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid #edf0f2;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: #dadce0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: fit-content;
  color: #3c4043;
  font-size: 20px;
  font-weight: 760;
}

.brand-mark {
  display: block;
  flex: none;
  object-fit: contain;
  width: 36px;
  height: 36px;
  border-radius: 15px;
  background: transparent;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #5f6368;
  font-size: 15px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  border-radius: 15px;
  padding: 10px 14px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 15px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  display: none;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  background: #f1f3f4;
  color: #202124;
}

.text-link {
  color: #3c4043;
  font-size: 15px;
  font-weight: 700;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 3px;
  border-color: #dadce0;
  background: #fff;
}

.language-switch button {
  min-width: 36px;
  height: 30px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  color: #5f6368;
  font-weight: 800;
}

.language-switch button.is-active {
  background: #e8f0fe;
  color: #185abc;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 0 22px;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
  min-height: 48px;
  border-radius: 15px;
  padding-inline: 24px;
  font-weight: 760;
  box-shadow: none;
}

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

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--cta-blue);
  color: #fff;
}

.button-dark:hover {
  background: var(--cta-blue-dark);
}

.button-light {
  background: #fff;
  color: #185abc;
}

.section-pad {
  padding: 128px max(32px, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.plan-label {
  background: #e8f0fe;
  color: #185abc;
  border-radius: 15px;
  padding: 9px 14px;
  width: fit-content;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
}

.fine-print,
.platform-line {
  color: #5f6368;
  font-size: 18px;
  font-weight: 620;
  letter-spacing: 0;
  white-space: normal;
}

.download-buttons {
  align-items: center;
  justify-content: center;
}

.download-button {
  min-width: 154px;
  padding-inline: 18px;
  white-space: nowrap;
}

.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 15px;
  background: #185abc;
}

@keyframes heroWordOne {
  0%,
  30%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  38%,
  92% {
    opacity: 0;
    transform: translateY(-0.3em);
  }
}

@keyframes heroWordTwo {
  0%,
  28%,
  70%,
  100% {
    opacity: 0;
    transform: translateY(0.3em);
  }
  36%,
  62% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroWordThree {
  0%,
  60%,
  100% {
    opacity: 0;
    transform: translateY(0.3em);
  }
  68%,
  94% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 460;
  line-height: 1.62;
  letter-spacing: 0;
}

.footer-column h2,
.footer-column a,
.copyright {
  font-weight: 500;
}

.button-outline {
  border-color: rgba(32, 33, 36, 0.24);
  background: transparent;
  color: var(--text-strong);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--text-strong);
  background: rgba(32, 33, 36, 0.05);
}

.site-link-placeholder {
  opacity: 0.58;
  cursor: not-allowed;
  pointer-events: none;
}

.hero h1,
.section-heading h2,
.feature-copy h2,
.trust h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 10.5em;
  font-size: clamp(52px, 6.6vw, 96px);
}

.hero h1 span {
  display: block;
}

.proof-strip:hover .proof-strip__inner {
  animation-play-state: paused;
}

.proof-strip__inner span {
  position: relative;
}

.feature-remote {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  background: transparent;
}

.feature-remote .feature-copy.reveal,
.feature-remote .remote-showcase.reveal,
.feature-remote .feature-copy h2,
.feature-remote .feature-copy h2 span {
  opacity: 1;
  filter: none;
  transform: none;
}

.feature-visual-shot {
  justify-self: center;
  overflow: visible;
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 15px;
  background: transparent;
  box-shadow: none;
}

.feature-visual-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-visual-shot.reveal {
  opacity: 1;
  transform: none;
}

.gallery .section-heading {
  margin-bottom: 38px;
}

.gallery .reveal {
  opacity: 1;
  transform: none;
}

.gallery .section-heading h2,
.gallery .section-heading h2 span {
  opacity: 1;
  filter: none;
  transform: none;
}

.gallery-kicker {
  margin-bottom: 18px;
}

.gallery-preview img {
  width: 100%;
  aspect-ratio: 2048 / 1196;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition:
    opacity 180ms ease,
    transform 260ms ease;
}

.gallery-preview.is-phone figure {
  width: min(320px, 76%);
  margin-inline: auto;
  background: #fffdf7;
}

.gallery-preview.is-phone img {
  aspect-ratio: 1242 / 2688;
}

.gallery-preview img.is-switching {
  opacity: 0.2;
  transform: scale(0.985);
}

.gallery-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  color: rgba(23, 50, 38, 0.8);
  font-size: 13.5px;
  font-weight: 720;
}

.gallery-accordion summary::-webkit-details-marker {
  display: none;
}

.gallery-accordion details[open] summary::after {
  transform: rotate(225deg);
}

.trust-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.trust-list p {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.56;
}

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

.use-cases {
  padding-top: clamp(64px, 6vw, 92px);
  padding-bottom: clamp(56px, 5vw, 80px);
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 58px;
  position: relative;
  display: block;
  min-height: auto;
  overflow: visible;
  padding: clamp(76px, 8vw, 96px) max(24px, calc((100vw - var(--max)) / 2)) clamp(56px, 6vw, 84px);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.38) 34%,
      transparent 58%
    ),
    linear-gradient(180deg, #eef5ff 0%, #dce9fc 100%);
  text-align: center;
}

.hero-overflow-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}

.hero-overflow-mask::before,
.hero-overflow-mask::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 15px;
  filter: blur(8px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-overflow-mask::before {
  left: -210px;
  top: 125px;
  background: radial-gradient(circle, rgba(80, 142, 255, 0.28), transparent 68%);
}

.hero-overflow-mask::after {
  right: -220px;
  top: 80px;
  background: radial-gradient(circle, rgba(137, 109, 255, 0.18), transparent 68%);
}

.hero::before,
.hero::after {
  display: none;
}

.hero .eyebrow {
  margin: 0 auto;
}

.hero h1 {
  max-width: 780px;
  margin: 24px auto 0;
  color: #202124;
  font-size: clamp(56px, 5.35vw, 76px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero-word-rotator {
  position: relative;
  display: block;
  min-height: 1.08em;
  overflow: hidden;
  color: #185abc;
}

.hero h1 .hero-word-rotator > span {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(0.3em);
}

.hero h1 .hero-word-rotator > span:nth-child(1) {
  animation: heroWordOne 7.2s ease-in-out infinite;
}

.hero h1 .hero-word-rotator > span:nth-child(2) {
  color: #188038;
  animation: heroWordTwo 7.2s ease-in-out infinite;
}

.hero h1 .hero-word-rotator > span:nth-child(3) {
  color: #b06000;
  animation: heroWordThree 7.2s ease-in-out infinite;
}

.hero .platform-line {
  margin-top: 13px;
  color: #687487;
  font-size: 13px;
  line-height: 1.45;
}

.hero .fine-print,
.hero .platform-line {
  margin-inline: auto;
  text-align: center;
}

.proof-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  border: 0;
  background: #f8fafd;
  color: #3c4043;
}

.proof-strip__inner {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 18px 24px;
  font-size: 14px;
  animation: ticker 34s linear infinite;
  padding-block: 16px;
  font-weight: 720;
}

.proof-strip__inner span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  width: 4px;
  height: 4px;
  border-radius: 15px;
  transform: translateY(-50%);
  background: #185abc;
}

.section-heading h2,
.feature-copy h2,
.trust h2 {
  color: #202124;
  font-size: clamp(44px, 5.1vw, 68px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.12;
}

.section-heading p,
.feature-copy p,
.trust p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #5f6368;
  font-size: 19px;
  font-weight: 430;
  line-height: 1.72;
}

.feature-copy .check-list {
  margin-top: 26px;
}

.hero .cta-row {
  justify-content: center;
  margin-top: 28px;
}

.download-group {
  position: relative;
  display: inline-block;
}

.download-group__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  z-index: 100;
  display: grid;
  gap: 4px;
  min-width: 160px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.download-group:hover .download-group__panel,
.download-group:focus-within .download-group__panel,
.download-group.is-open .download-group__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.download-group__item {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: #202124;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.download-group__item:hover {
  background: #f1f3f4;
  color: #185abc;
}

.download-group__trigger::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 200ms ease;
  vertical-align: 2px;
}

.download-group:hover .download-group__trigger::after,
.download-group:focus-within .download-group__trigger::after,
.download-group.is-open .download-group__trigger::after {
  transform: rotate(-135deg);
  vertical-align: -1px;
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  gap: clamp(28px, 3.8vw, 56px);
}

.scene-card {
  min-width: 0;
  text-align: center;
  min-height: 0;
  border: 0;
  border-radius: 15px;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.scene-card__icon {
  display: block;
  margin: 0 auto 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #202124;
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  stroke-width: 2.1;
}

.scene-card h3 {
  margin: 0 0 10px;
  letter-spacing: 0;
  color: #202124;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.38;
}

.scene-card p {
  margin: 0;
  color: #5f6368;
  max-width: 18rem;
  margin-inline: auto;
  font-size: 15px;
  font-weight: 430;
  line-height: 1.58;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 86px;
}

.feature-upload,
.faq {
  background: #fff;
}

.feature-upload {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  padding-top: clamp(72px, 6vw, 96px);
  gap: clamp(36px, 6vw, 80px);
}

.feature-remote,
.gallery {
  background: #f8fafd;
  color: #202124;
}

.remote-showcase-section {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(36px, 6vw, 80px);
  overflow: hidden;
  padding-top: clamp(56px, 7vw, 104px);
  padding-bottom: clamp(48px, 6vw, 96px);
}

.remote-showcase {
  max-width: min(1240px, 100%);
  margin: 0 auto;
}

.remote-showcase img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 18px;
  letter-spacing: 0.025em;
  color: #185abc;
  font-size: 18px;
  font-weight: 720;
}

.feature-index span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 38px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  border: 0;
  border-radius: 15px;
  background: #e8f0fe;
  color: #185abc;
  box-shadow: none;
}

.gallery {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e7dfcf;
  border-bottom: 1px solid #e7dfcf;
  border: 0;
  background: #f8fafd;
  color: #202124;
  padding-inline: 0;
}

.gallery .section-heading h2 {
  line-height: 1.12;
  color: #202124;
  font-size: clamp(44px, 5.1vw, 68px);
  font-weight: 620;
  letter-spacing: 0;
}

.gallery .section-heading p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: #5f6368;
  font-weight: 430;
  letter-spacing: 0;
}

.gallery-hub {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  position: relative;
  gap: 24px;
  border: 0;
  border-radius: 15px;
  background: #f8fafd;
  padding: clamp(40px, 6vw, 84px) max(20px, calc((100vw - var(--max)) / 2));
}

.gallery-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  border: 0;
  border-radius: 15px;
  background: transparent;
  padding: 0;
}

.gallery-preview figure {
  overflow: hidden;
  flex: 1;
  display: grid;
  place-items: center;
  margin: 0;
  border: 0;
  border-radius: 15px;
  background: transparent;
  box-shadow: none;
}

.gallery-kicker,
.gallery-accordion__label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: #185abc;
  font-weight: 760;
  padding-inline: 0;
}

.gallery-accordion__meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0 26px 14px 66px;
}

.gallery-points span {
  position: relative;
  padding: 10px 12px 10px 32px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: #3c4043;
}

.gallery-points span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 15px;
  box-shadow: none;
  transform: translateY(-50%);
  background: #185abc;
}

.gallery-accordion {
  display: grid;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 15px;
  background: transparent;
}

.gallery-accordion details {
  position: relative;
  padding: 12px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  border: 1px solid #dfe6f2;
  border-radius: 15px;
  background: #fff;
}

.gallery-accordion details[open] {
  border-color: #bfd3f5;
  background: #e8f0fe;
  box-shadow: none;
  transform: none;
}

.gallery-accordion summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #173226;
  border-bottom: 2px solid #173226;
  transform: rotate(45deg);
  transition: transform 180ms ease;
  border-color: #5f6368;
}

.gallery-accordion__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 13px;
  font-weight: 850;
  border: 0;
  border-radius: 15px;
  background: #fff;
  color: #185abc;
}

.gallery-accordion details:not([open]) .gallery-accordion__icon {
  border-color: #cfc3af;
  background: #f1f3f4;
  color: #5f6368;
}

.trust {
  background: #185abc;
  color: #fff;
}

.trust h2 {
  color: #fff;
}

.trust-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.trust-list {
  display: grid;
  gap: 14px;
  overflow: visible;
  border: 0;
  border-radius: 15px;
}

.trust-list article:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: none;
}

.pricing {
  background: #d7eeee;
  color: #202124;
}

.pricing .section-heading {
  max-width: 760px;
  margin: 0 auto clamp(30px, 4vw, 46px);
  text-align: center;
}

.pricing .section-heading h2 {
  margin-top: 18px;
  color: #202124;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 620;
  letter-spacing: 0;
  line-height: 1.1;
}

.pricing .section-heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #53666a;
  font-size: 17px;
  font-weight: 430;
  line-height: 1.68;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
  min-height: 420px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 46px rgba(28, 70, 76, 0.08);
}

.pricing-card--featured {
  border-color: #185abc;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 52px rgba(24, 90, 188, 0.12);
}

.pricing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 30px;
}

.pricing-card__label,
.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 15px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

.pricing-card__label {
  background: #fff;
  color: #185abc;
}

.pricing-card__badge {
  background: #185abc;
  color: #fff;
}

.pricing-card h3 {
  margin: 22px 0 0;
  color: #202124;
  font-size: 24px;
  font-weight: 680;
  line-height: 1.2;
}

.pricing-card__price small {
  color: #5f6368;
  font-size: 15px;
  font-weight: 620;
}

.pricing-card__features li {
  position: relative;
  min-height: 18px;
  padding-left: 24px;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background: #6f8f96;
}

.pricing-card__features li::after {
  content: "";
  position: absolute;
  top: calc(0.18em + 4px);
  left: 4px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}

.pricing-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  min-height: 42px;
  border-radius: 15px;
  background: #202124;
  color: #fff;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 760;
}

.pricing-card--featured .pricing-card__button {
  background: #185abc;
}

.pricing-card__button:hover,
.pricing-card__button:focus-visible {
  background: #185abc;
  outline: none;
}

.faq .section-heading {
  margin-inline: auto;
  text-align: center;
}

.faq-list details {
  padding: 0 20px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  border: 0;
  border-bottom: 1px solid #dadce0;
  border-radius: 15px;
  background: #fff;
  padding-inline: 0;
}

.faq-list details[open] {
  border-color: rgba(10, 11, 10, 0.2);
  background: #fff;
  box-shadow: none;
}

.faq-list summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 20px 36px 20px 0;
  font-size: 18px;
  min-height: 72px;
  color: #202124;
  font-weight: 660;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 15px;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background 180ms ease;
  background: #e8f0fe;
  color: #185abc;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: #185abc;
  color: #fff;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  margin: 0 auto;
  max-width: 900px;
}

.hero h1,
.hero h1 span,
body[data-lang="zh-Hant"] .hero h1,
body[data-lang="zh-Hant"] .hero h1 span,
body[data-lang="en"] .hero h1,
body[data-lang="en"] .hero h1 span {
  max-width: 860px;
  color: var(--text-strong);
  font-weight: 610;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero .fine-print {
  margin: 24px auto 0;
  max-width: 640px;
  color: var(--text-body);
  font-size: 17px;
  font-weight: 430;
  line-height: 1.64;
}

.eyebrow,
.plan-label,
.gallery-kicker,
.gallery-accordion__label,
.feature-index,
.pricing-card__label,
.pricing-card__badge {
  color: var(--link-blue);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.35;
}

.feature-copy h2 {
  max-width: 620px;
}

.section-heading--center p,
.pricing .section-heading p {
  margin-inline: auto;
}

.feature-copy {
  max-width: 560px;
}

.scene-card h3,
.trust-list h3,
.pricing-card h3 {
  color: var(--text-strong);
  font-weight: 600;
  line-height: 1.28;
}

.scene-card p,
.trust-list p,
.gallery-accordion p,
.pricing-card__features,
.faq-list p {
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.62;
}

.trust-list p {
  margin: 0;
}

.gallery-accordion summary,
.faq-list summary {
  color: var(--text-strong);
  font-weight: 600;
  line-height: 1.35;
}

.gallery-accordion summary {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 54px;
  padding: 8px 2px 2px;
  cursor: pointer;
  list-style: none;
  color: #202124;
  font-weight: 680;
  letter-spacing: 0;
  font-size: 20px;
  line-height: 1.22;
}

.gallery-accordion p {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #5f6368;
  font-weight: 430;
  letter-spacing: 0;
  max-width: 30rem;
  font-size: 14.5px;
  line-height: 1.6;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  color: #fff;
  box-shadow: none;
  border: 0;
  border-radius: 15px;
  background: transparent;
  padding: 0;
  max-width: 1120px;
}

.trust-list article {
  padding: 22px;
  transition:
    background 180ms ease,
    transform 180ms ease;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding-block: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(18px, 2vw, 28px);
  margin-inline: auto;
  width: min(1180px, 100%);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
  line-height: 1;
  color: var(--text-strong);
}

.pricing-card__price span {
  font-size: clamp(44px, 4vw, 58px);
  letter-spacing: 0;
  font-weight: 640;
}

.pricing-card__price small,
.pricing-card__features {
  color: var(--text-muted);
}

.pricing-card__features {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding: 0;
  color: #3c4b50;
  font-size: 14px;
  list-style: none;
  font-weight: 430;
  line-height: 1.5;
}

.pricing-feature {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
  min-height: 0;
  padding-left: 0;
}

.pricing-card__features .pricing-feature::before,
.pricing-card__features .pricing-feature::after {
  content: none;
}

.pricing-card__badge[hidden] {
  display: none;
}

.pricing-feature__indicator {
  display: grid;
  width: 16px;
  height: 16px;
  margin-top: 0.1em;
  place-items: center;
  border-radius: 15px;
  background: #6f8f96;
  color: #fff;
  font-size: 11px;
  font-weight: 760;
  line-height: 1;
}

.pricing-feature__copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.pricing-feature__detail {
  display: block;
  color: #64777c;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.45;
}

.pricing-feature.is-unavailable .pricing-feature__detail {
  color: #7b898d;
}

.pricing-feature__status {
  padding-top: 0.12em;
  color: #53727a;
  font-size: 11px;
  font-weight: 620;
  line-height: 1.4;
  white-space: nowrap;
}

.pricing-feature.is-unavailable {
  color: #748287;
}

.pricing-feature.is-unavailable .pricing-feature__indicator {
  background: #a9b4b7;
}

.pricing-feature.is-unavailable .pricing-feature__status {
  color: #758287;
}

.pricing-card__button,
.button {
  font-weight: 640;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #dadce0;
  max-width: 960px;
  margin-inline: auto;
}

.faq-list p {
  margin: 0;
  padding: 0 0 20px;
  animation: faqIn 180ms ease;
  color: #5f6368;
  font-weight: 430;
  max-width: 760px;
  line-height: 1.68;
}

.button:focus-visible,
.text-link:focus-visible,
.download-card:focus-visible {
  outline: 3px solid rgba(24, 90, 188, 0.28);
  outline-offset: 3px;
}

.download-card strong {
  display: block;
  font-size: 21px;
  font-weight: 900;
}

.download-card small {
  color: rgba(10, 11, 10, 0.58);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.legal-page {
  background: var(--bg);
}

.legal-hero {
  padding: 120px max(24px, calc((100vw - 920px) / 2)) 48px;
}

.legal-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1;
}

.legal-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(10, 11, 10, 0.68);
  font-size: 18px;
  line-height: 1.7;
}

.legal-content {
  display: grid;
  gap: 18px;
  padding: 0 max(24px, calc((100vw - 920px) / 2)) 112px;
}

.legal-subsection {
  display: grid;
  gap: 18px;
}

.legal-content h2 {
  margin: 34px 0 0;
  font-size: 28px;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 18px 0 0;
  color: rgba(10, 11, 10, 0.88);
  font-size: 20px;
  line-height: 1.35;
}

.legal-content p {
  margin: 0;
  color: rgba(10, 11, 10, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: var(--cta-blue);
  font-weight: 850;
}

.legal-callout {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(24, 90, 188, 0.16);
  border-radius: 15px;
  background: #f8fbff;
  padding: 20px;
}

.legal-callout strong {
  color: rgba(10, 11, 10, 0.9);
  font-size: 17px;
  font-weight: 900;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
  color: rgba(10, 11, 10, 0.7);
  font-size: 16px;
  line-height: 1.78;
}

.legal-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid rgba(10, 11, 10, 0.1);
  border-radius: 15px;
  background: #fff;
}

.legal-table th,
.legal-table td {
  min-width: 180px;
  border-bottom: 1px solid rgba(10, 11, 10, 0.08);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.65;
}

.legal-table th {
  color: rgba(10, 11, 10, 0.86);
  font-weight: 900;
}

.legal-table td {
  color: rgba(10, 11, 10, 0.68);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.help-content {
  gap: 26px;
}

.help-toc {
  position: sticky;
  top: 92px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(10, 11, 10, 0.08);
  border-radius: 15px;
  background: rgba(248, 250, 253, 0.94);
  padding: 12px;
  backdrop-filter: blur(12px);
}

.help-toc a {
  border-radius: 15px;
  background: #fff;
  color: #3c4043;
  font-size: 13px;
  font-weight: 840;
  line-height: 1;
  padding: 10px 13px;
  text-decoration: none;
}

.help-section {
  display: grid;
  gap: 16px;
}

.help-section code {
  border-radius: 15px;
  background: #eef3fb;
  color: #185abc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  padding: 0.12em 0.38em;
}

.help-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: help-step;
  list-style: none;
}

.help-steps li {
  position: relative;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(24, 90, 188, 0.12);
  border-radius: 15px;
  background: #fff;
  padding: 18px 18px 18px 58px;
}

.help-steps li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 15px;
  background: #185abc;
  color: #fff;
  content: counter(help-step);
  counter-increment: help-step;
  font-size: 13px;
  font-weight: 900;
}

.help-steps strong,
.help-grid h3 {
  color: #202124;
  font-weight: 900;
}

.help-steps span {
  color: rgba(10, 11, 10, 0.68);
  line-height: 1.7;
}

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

.help-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(10, 11, 10, 0.08);
  border-radius: 15px;
  background: #fff;
  padding: 20px;
}

.help-grid h3 {
  margin: 0;
}

.help-accordion {
  gap: 10px;
}

.help-accordion h2 {
  margin-bottom: 8px;
}

.help-accordion details {
  border: 1px solid rgba(10, 11, 10, 0.08);
  border-radius: 15px;
  background: #fff;
  padding: 0;
}

.help-accordion summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #202124;
  font-weight: 900;
  list-style: none;
}

.help-accordion summary::-webkit-details-marker {
  display: none;
}

.help-accordion details > p,
.help-accordion details > ul {
  padding: 0 20px 18px;
}

.download-page-grid,
.security-grid {
  display: grid;
  gap: 14px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2)) 64px;
}

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

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

.security-grid article {
  border: 1px solid rgba(10, 11, 10, 0.08);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(20, 25, 20, 0.08);
  padding: 30px;
}

.security-grid h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.security-grid p {
  margin: 14px 0 0;
  color: rgba(10, 11, 10, 0.68);
  line-height: 1.75;
}

.faq-list details,
.security-grid article {
  border-color: #edf0f2;
  box-shadow: none;
}

.download-card:hover {
  background: #fff;
  border-color: #dadce0;
  box-shadow: 0 12px 34px rgba(60, 64, 67, 0.12);
  transform: translateY(-4px);
}

.download-card {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  gap: 10px;
  border: 1px solid rgba(10, 11, 10, 0.1);
  padding: 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  border-color: #edf0f2;
  border-radius: 15px;
  background: #f8fafd;
}

.download-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 950;
  background: #e8f0fe;
  color: #185abc;
}

.section-heading h2,
.section-heading h2 span,
.feature-copy h2,
.feature-copy h2 span,
.trust h2,
.trust h2 span,
.gallery .section-heading h2,
.gallery .section-heading h2 span,
.pricing .section-heading h2,
.pricing .section-heading h2 span,
.legal-hero h1,
.legal-content h1,
.legal-content h2 {
  color: var(--text-strong);
  font-weight: 610;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.feature-copy p,
.trust p,
.pricing .section-heading p,
.legal-hero p,
.legal-content p,
.legal-content li {
  max-width: 650px;
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
}

.open-source-section {
  scroll-margin-top: 72px;
  background: #111412;
  color: #fff;
}

.open-source-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.open-source-copy {
  max-width: 650px;
}

.open-source-copy .plan-label {
  color: #56d99a;
}

.open-source-copy h2 {
  max-width: 720px;
  margin: 14px 0 24px;
  color: #fff;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
}

.open-source-copy > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.open-source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.open-source-actions .button-dark {
  background: #fff;
  color: #111412;
}

.open-source-actions .button-outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.open-source-actions .button-outline:hover,
.open-source-actions .button-outline:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.source-principles {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.source-principles article {
  display: grid;
  grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.source-principles strong {
  color: #fff;
  font-size: 15px;
  font-weight: 650;
}

.source-principles span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.6;
}

.edition-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1040px);
  margin: 52px auto 0;
  border-block: 1px solid var(--line);
}

.edition-panel {
  padding: clamp(30px, 4vw, 52px);
}

.edition-panel + .edition-panel {
  border-left: 1px solid var(--line);
}

.edition-panel--official {
  background: rgba(25, 195, 125, 0.055);
}

.edition-panel__label {
  color: var(--link-blue);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.edition-panel h3 {
  margin: 14px 0 24px;
  color: var(--text-strong);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
}

.edition-panel ul {
  display: grid;
  gap: 12px;
  min-height: 170px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--text-muted);
  list-style: none;
}

.edition-panel li {
  position: relative;
  padding-left: 20px;
  line-height: 1.58;
}

.edition-panel li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.edition-panel .text-link {
  color: var(--link-blue);
}

.open-source-page {
  overflow: hidden;
}

.open-source-hero {
  padding-bottom: 72px;
}

.legal-page .open-source-actions .button-dark {
  background: var(--text-strong);
  color: #fff;
}

.legal-page .open-source-actions .button-outline {
  border-color: var(--line-strong);
  color: var(--text-strong);
}

.release-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 56px 0 0;
  border-block: 1px solid var(--line);
}

.release-facts div {
  display: grid;
  gap: 8px;
  padding: 20px 24px;
}

.release-facts div + div {
  border-left: 1px solid var(--line);
}

.release-facts dt {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.release-facts dd {
  margin: 0;
  color: var(--text-strong);
  font-size: 16px;
  font-weight: 650;
}

.open-source-content {
  display: grid;
  gap: 44px;
  padding: 88px max(24px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
}

.open-source-content .section-heading {
  margin: 0;
}

.open-source-content .section-heading p {
  max-width: 760px;
}

.open-source-value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.open-source-value-list article {
  padding: 30px;
}

.open-source-value-list article + article {
  border-left: 1px solid var(--line);
}

.open-source-value-list span {
  color: var(--link-blue);
  font-size: 12px;
  font-weight: 700;
}

.open-source-value-list h3 {
  margin: 22px 0 12px;
  color: var(--text-strong);
  font-size: 26px;
  font-weight: 600;
}

.open-source-value-list p,
.scope-note,
.open-source-license-section p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.open-source-scope-section {
  background: var(--surface);
}

.scope-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-block: 1px solid var(--line);
}

.open-source-scope-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.open-source-scope-table th,
.open-source-scope-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.open-source-scope-table th {
  color: var(--text-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.open-source-scope-table td {
  color: var(--text-muted);
  font-size: 14px;
}

.open-source-scope-table td:first-child {
  color: var(--text-strong);
  font-weight: 650;
}

.scope-status {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(10, 11, 10, 0.07);
  padding: 5px 9px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.scope-status--open {
  background: rgba(25, 195, 125, 0.12);
  color: #087448;
}

.scope-note {
  max-width: 840px;
  font-size: 14px;
}

.edition-comparison--page {
  width: 100%;
  margin: 0;
}

.open-source-license-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.open-source-license-section > div {
  padding: clamp(28px, 4vw, 52px);
  border-block: 1px solid var(--line);
}

.open-source-license-section > div + div {
  border-left: 1px solid var(--line);
}

.open-source-license-section h2 {
  margin: 14px 0 20px;
  color: var(--text-strong);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
}

.open-source-license-section code {
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .open-source-layout {
    grid-template-columns: 1fr;
  }

  .open-source-copy {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .source-code-button {
    width: 100%;
  }

  .open-source-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .source-principles article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .edition-comparison,
  .pricing-grid,
  .release-facts,
  .open-source-value-list,
  .open-source-license-section {
    grid-template-columns: 1fr;
  }

  .edition-panel + .edition-panel,
  .release-facts div + div,
  .open-source-value-list article + article,
  .open-source-license-section > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .edition-panel ul {
    min-height: 0;
  }

  .open-source-content {
    gap: 32px;
    padding-block: 64px;
  }

  .open-source-value-list article {
    padding: 24px 0;
  }

  .open-source-license-section > div {
    padding-inline: 0;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .text-motion,
  .text-motion span {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  body[data-page] .header-actions {
    display: flex;
  }

  body[data-page] .header-actions > :not(.language-switch) {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .hero,
  .feature,
  .feature-remote,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero h1 {
    max-width: 11em;
  }

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

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

  .pricing-card:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }

  .gallery-hub {
    grid-template-columns: 1fr;
  }

  .gallery-hub {
    gap: 34px;
  }

  .gallery-preview {
    padding: 16px;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    height: 64px;
    padding-inline: 18px;
  }

  .section-pad {
    padding: 72px 18px;
  }

  .hero {
    padding-top: 46px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1;
  }

  body[data-lang="en"] .hero h1 {
    font-size: clamp(37px, 11vw, 50px);
    line-height: 1.04;
  }

  .button {
    width: 100%;
  }

  .proof-strip__inner {
    animation-duration: 24s;
  }

  .use-cases {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .feature-copy h2,
  .trust h2 {
    font-size: clamp(34px, 12vw, 48px);
    line-height: 1.02;
  }

  .section-heading p,
  .feature-copy p,
  .trust p {
    font-size: 16px;
  }

  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .scene-card {
    min-height: 0;
  }

  .feature {
    gap: 34px;
  }

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

  .gallery .section-heading h2 {
    font-size: clamp(36px, 11vw, 50px);
    line-height: 1.12;
  }

  .gallery .section-heading p {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .gallery-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-accordion summary {
    grid-template-columns: 44px 1fr auto;
    min-height: 66px;
    font-size: 20px;
  }

  .gallery-accordion__icon {
    width: 44px;
    height: 44px;
  }

  .gallery-accordion p {
    padding: 2px 8px 12px 60px;
    font-size: 15.5px;
  }

  .trust-panel {
    border-radius: 15px;
    padding: 26px;
  }

  .menu-overlay__nav a {
    font-size: clamp(42px, 14vw, 86px);
  }

  .site-footer {
    gap: 34px;
    padding-inline: 18px;
  }

  .footer-directory {
    gap: 28px 20px;
  }
}

.trust .trust-panel h2,
.trust .trust-list h3 {
  color: #fff;
}

.trust .trust-list p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 430px) {
  .brand {
    font-size: 17px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 15px;
  }

  .scene-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .use-cases {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .feature-upload {
    padding-top: 40px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 82px;
  }

  .download-card {
    min-height: 116px;
  }
}

@media (max-width: 1080px) {
  section[id],
  #top {
    scroll-margin-top: 84px;
  }
}

@media (max-width: 1080px) {
  .download-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .download-page-grid,
  .security-grid {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .legal-hero {
    padding-top: 102px;
    padding-bottom: 34px;
  }

  .legal-hero h1 {
    font-size: clamp(38px, 14vw, 54px);
  }

  .legal-hero p {
    font-size: 16px;
  }

  .legal-content {
    gap: 16px;
    padding-bottom: 78px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content h3 {
    font-size: 18px;
  }

  .legal-callout {
    border-radius: 15px;
    padding: 16px;
  }

  .help-toc {
    position: static;
    border-radius: 15px;
  }

  .help-toc a {
    font-size: 12.5px;
    padding: 9px 11px;
  }

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

  .help-steps li {
    padding: 16px 16px 16px 54px;
  }
}

@media (min-width: 900px) {
  body[data-lang="en"] .hero {
    grid-template-columns: minmax(0, 1000px);
  }

  body[data-lang="en"] .hero-copy {
    max-width: 1000px;
  }

  body[data-lang="en"] .hero h1 {
    max-width: min(100%, 980px);
    font-size: clamp(66px, 5.7vw, 86px);
    line-height: 1.03;
    white-space: normal;
  }

  body[data-lang="en"] .hero h1 > span {
    display: block;
  }

  body[data-lang="en"] .gallery .section-heading {
    max-width: 1080px;
  }

  body[data-lang="en"] .gallery .section-heading h2 {
    max-width: 1080px;
    margin-inline: auto;
  }
}

@media (min-width: 1081px) {
  .faq-list details {
    border-radius: 0;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 24px;
  }

  .hero,
  .feature,
  .feature-remote,
  .trust-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 56px;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 64px;
    padding-inline: 18px;
  }

  .section-pad {
    padding: 84px 20px;
  }

  .gallery.section-pad {
    padding-inline: 0;
  }

  .gallery-hub {
    gap: 18px;
    padding: 28px 12px 50px;
  }

  .gallery-preview figure {
    width: calc(100vw - 24px);
    margin-inline: auto;
  }

  .gallery-preview img {
    width: 100%;
  }

  .gallery-points {
    gap: 10px;
    margin-top: 16px;
  }

  .gallery-points span {
    min-height: 0;
    padding: 5px 0 5px 26px;
    font-size: 15px;
    line-height: 1.45;
  }

  .gallery-points span::before {
    top: 0.78em;
    width: 8px;
    height: 8px;
  }

  .gallery-accordion details {
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
  }

  .gallery-accordion summary {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 76px;
    padding: 14px 12px;
    font-size: 21px;
    line-height: 1.22;
  }

  .gallery-accordion__icon {
    width: 44px;
    height: 44px;
    align-self: center;
  }

  .gallery-accordion__label {
    flex: none;
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
  }

  .gallery-accordion__meta {
    gap: 10px;
    margin: -4px 16px 18px 66px;
    padding: 0;
  }

  .gallery-accordion p {
    max-width: 17.5rem;
    font-size: 15.5px;
    line-height: 1.7;
    text-align: left;
  }

  .use-cases {
    padding-top: 40px;
    padding-bottom: 32px;
  }

  .feature-upload {
    padding-top: 44px;
    gap: 32px;
    overflow: hidden;
  }

  .feature-visual-shot {
    width: 180vw;
    max-width: none;
    margin: 0 0 0 -20px;
    border-radius: 15px;
    box-shadow: none;
  }

  .remote-showcase-section {
    display: block;
    padding: 48px 0;
    gap: 30px;
  }

  .remote-showcase {
    width: 180vw;
    max-width: none;
    margin: 0;
    transform: translateX(-18%);
  }

  .remote-showcase-section .feature-copy {
    width: 100%;
    max-width: 100%;
    padding-inline: 20px;
  }

  .remote-showcase-section .feature-copy h2 {
    max-width: 100%;
    font-size: clamp(32px, 9.8vw, 40px);
    line-height: 1.16;
    overflow-wrap: anywhere;
  }

  .remote-showcase-section .check-list li {
    display: grid;
    grid-template-columns: 9px minmax(0, 1fr);
    align-items: start;
    overflow-wrap: anywhere;
  }

  .remote-showcase-section .check-list li::before {
    margin-top: 0.55em;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 34px;
    text-align: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero-copy {
    width: 100%;
    min-width: 0;
  }

  .hero h1,
  body[data-lang="en"] .hero h1 {
    max-width: 100%;
    margin-top: 20px;
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1.08;
    white-space: normal;
  }

  body[data-lang="en"] .hero h1 > span {
    display: block;
  }

  .hero h1 .hero-word-rotator > span {
    inset-inline: 0;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .button {
    width: auto;
    max-width: 100%;
  }

  .cta-row .button {
    width: min(100%, 250px);
  }

  .download-buttons {
    display: grid;
    align-items: start;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 320px;
    margin-inline: auto;
  }

  .hero .download-buttons .source-code-button {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .download-button {
    min-width: 0;
    width: 100%;
    min-height: 42px;
    padding-inline: 6px;
    font-size: 12px;
  }

  .download-group {
    display: grid;
    width: 100%;
    align-content: start;
  }

  .download-group__trigger {
    width: 100%;
    min-height: 42px;
    padding-inline: 6px;
    font-size: 12px;
  }

  .download-group__panel {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin-top: 4px;
    padding: 6px;
    gap: 2px;
    border-radius: 12px;
    transform: none;
  }

  .download-group:hover .download-group__panel,
  .download-group.is-open .download-group__panel,
  .download-group:focus-within .download-group__panel {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .download-group__item {
    padding: 8px 10px;
    font-size: 13px;
    border-radius: 10px;
  }

  .platform-line {
    max-width: 310px;
    margin-inline: auto;
  }

  .hero .cta-row {
    margin-top: 26px;
  }

  .hero .fine-print {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .section-heading h2,
  .feature-copy h2,
  .trust h2,
  .gallery .section-heading h2 {
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.16;
  }

  .pricing .section-heading {
    margin-bottom: 26px;
  }

  .pricing .section-heading h2 {
    font-size: clamp(34px, 10.2vw, 42px);
    line-height: 1.16;
  }

  .pricing .section-heading p {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-card:nth-child(3) {
    grid-column: auto;
    width: auto;
  }

  .pricing-card {
    min-height: 0;
    border-radius: 15px;
    padding: 22px;
  }

  .pricing-card h3 {
    margin-top: 24px;
    font-size: 20px;
  }

  .pricing-card__price span {
    font-size: clamp(42px, 13vw, 54px);
  }

  .pricing-card__features {
    margin-top: 18px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.48;
  }

  .pricing-card__button {
    width: 100%;
  }

  .section-heading p,
  .feature-copy p,
  .trust p {
    font-size: 16px;
    line-height: 1.68;
  }

  .scene-grid {
    gap: 32px 24px;
  }

  .scene-card__icon {
    width: 22px;
    height: 22px;
    margin-bottom: 10px;
    stroke-width: 2;
  }

  .scene-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.35;
  }

  .scene-card p {
    max-width: 19.5rem;
    font-size: 14.5px;
    line-height: 1.6;
  }

  .gallery-hub {
    border-radius: 15px;
  }

  .gallery-hub {
    border-radius: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 .hero-word-rotator > span {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero h1 .hero-word-rotator > span:first-child {
    display: inline;
  }
}

@media (max-width: 720px) and (max-height: 480px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1,
  body[data-lang="en"] .hero h1 {
    font-size: clamp(40px, 7.2vw, 46px);
    line-height: 1.04;
  }

  .hero .cta-row {
    margin-top: 18px;
  }

  .hero .fine-print {
    margin-top: 12px;
  }
}

@media (min-width: 1081px) {
  .gallery .section-heading {
    max-width: min(1120px, calc(100vw - 64px));
  }

  .gallery .section-heading h2 {
    max-width: 100%;
    margin-inline: auto;
  }

  .gallery-hub {
    align-items: start;
  }

  .gallery-preview,
  .gallery-accordion {
    align-self: start;
  }

  .gallery-preview {
    position: relative;
  }

  .gallery-kicker {
    position: absolute;
    top: -32px;
    left: 0;
    margin: 0;
  }

  .gallery-preview figure {
    margin-top: 0;
  }

  .gallery-accordion {
    align-content: start;
  }

  .gallery-accordion details {
    min-height: 0;
    overflow: hidden;
    padding: 0;
    cursor: pointer;
  }

  .gallery-accordion details[open] {
    cursor: default;
  }

  .gallery-accordion summary {
    min-height: 88px;
    padding: 18px 16px;
  }

  .gallery-accordion__meta {
    padding: 0 48px 20px 78px;
  }

  .gallery-accordion p {
    line-height: 1.58;
  }
}

@media (min-width: 1081px) and (max-height: 920px) {
  .remote-showcase-section {
    padding-top: clamp(40px, 5vw, 72px);
    padding-bottom: clamp(34px, 4vw, 64px);
  }

  .gallery.section-pad {
    padding-top: clamp(56px, 6vw, 76px);
    padding-bottom: clamp(68px, 7vw, 92px);
  }

  .gallery .section-heading {
    margin-bottom: 22px;
  }

  .gallery .section-heading h2 {
    font-size: clamp(48px, 4.5vw, 64px);
    line-height: 1.1;
  }

  .gallery-hub {
    padding-top: clamp(28px, 4vw, 52px);
    padding-bottom: clamp(28px, 4vw, 52px);
  }
}

@media (min-width: 1081px) {
  .hero-copy {
    max-width: 880px;
  }

  .hero h1,
  .hero h1 span,
  body[data-lang="zh-Hant"] .hero h1,
  body[data-lang="zh-Hant"] .hero h1 span,
  body[data-lang="en"] .hero h1,
  body[data-lang="en"] .hero h1 span {
    max-width: 820px;
    font-size: clamp(58px, 4.9vw, 72px);
    font-weight: 600;
    line-height: 1.07;
  }

  .hero .fine-print {
    max-width: 600px;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.66;
  }

  .section-heading h2,
  .section-heading h2 span,
  .feature-copy h2,
  .feature-copy h2 span,
  .trust h2,
  .trust h2 span,
  .gallery .section-heading h2,
  .gallery .section-heading h2 span,
  .pricing .section-heading h2,
  .pricing .section-heading h2 span {
    font-size: clamp(42px, 4.3vw, 60px);
    font-weight: 600;
    line-height: 1.12;
  }

  .feature-copy h2 {
    max-width: 540px;
  }

  .section-heading p,
  .feature-copy p,
  .trust p,
  .pricing .section-heading p {
    max-width: 620px;
    font-size: 16.5px;
    font-weight: 400;
    line-height: 1.7;
  }

  .feature-index,
  .eyebrow,
  .plan-label,
  .gallery-kicker,
  .gallery-accordion__label,
  .pricing-card__label,
  .pricing-card__badge {
    font-size: 12.5px;
    font-weight: 620;
    line-height: 1.35;
  }

  .check-list li {
    font-size: 14.5px;
    font-weight: 450;
    line-height: 1.58;
  }
}

@media (max-width: 720px) {
  .hero h1,
  .hero h1 span,
  body[data-lang="zh-Hant"] .hero h1,
  body[data-lang="zh-Hant"] .hero h1 span,
  body[data-lang="en"] .hero h1,
  body[data-lang="en"] .hero h1 span {
    font-size: clamp(36px, 10.6vw, 44px);
    font-weight: 600;
    line-height: 1.1;
  }

  .feature-copy h2,
  .feature-copy h2 span,
  .section-heading h2,
  .section-heading h2 span,
  .trust h2,
  .trust h2 span,
  .gallery .section-heading h2,
  .gallery .section-heading h2 span,
  .pricing .section-heading h2,
  .pricing .section-heading h2 span {
    max-width: min(100%, 22rem);
    font-size: clamp(30px, 8.7vw, 36px);
    font-weight: 600;
    line-height: 1.16;
    overflow-wrap: normal;
  }

  .feature-upload .feature-copy h2,
  .feature-remote .feature-copy h2 {
    max-width: min(100%, 20rem);
  }

  .hero .fine-print,
  .section-heading p,
  .feature-copy p,
  .trust p,
  .pricing .section-heading p {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .gallery-accordion summary {
    font-size: 19px;
  }

  .gallery-accordion p,
  .pricing-card__features,
  .faq-list p {
    font-size: 14.5px;
    line-height: 1.58;
  }
}

/* Mobile Value Lock: 375px basis, 16px gutter, 12px radius, 48px primary controls. */
@media (max-width: 720px) {
  .feature-upload {
    padding-inline: 16px;
  }

  .feature-upload .feature-visual-shot {
    width: calc(100% + 32px);
    max-width: calc(100% + 32px);
    margin-inline: -16px;
    overflow: hidden;
    border-radius: 0;
  }

  .feature-upload .feature-visual-shot img,
  .remote-showcase img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .remote-showcase {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    transform: none;
  }

  .scope-table-wrap {
    overflow-x: visible;
  }

  .open-source-scope-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .open-source-scope-table th,
  .open-source-scope-table td {
    padding: 12px 8px;
    overflow-wrap: anywhere;
    font-size: 12px;
    line-height: 18px;
  }

  .open-source-scope-table th:first-child,
  .open-source-scope-table td:first-child {
    width: 40%;
  }

  .open-source-scope-table th:nth-child(2),
  .open-source-scope-table td:nth-child(2) {
    width: 24%;
  }

  .open-source-scope-table th:nth-child(3),
  .open-source-scope-table td:nth-child(3) {
    width: 36%;
  }

  .scope-status {
    padding: 4px 8px;
    font-size: 10px;
    line-height: 14px;
  }

  #menuButton {
    width: 48px;
    height: 48px;
  }

  .site-header .brand,
  .site-footer .brand {
    min-height: 44px;
    align-items: center;
  }

  .hero .download-group__trigger,
  .hero .source-code-button {
    min-height: 48px;
  }

  .language-switch button {
    min-width: 44px;
    min-height: 44px;
  }

  .footer-social__link {
    width: 48px;
    height: 48px;
  }

  .footer-social__link svg {
    width: 20px;
    height: 20px;
  }

  .footer-column {
    gap: 0;
  }

  .footer-column h2 {
    margin-bottom: 8px;
  }

  .footer-column a,
  .open-source-content .text-link,
  .help-toc a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }
}
