:root {
  --ink: #151719;
  --muted: #646a73;
  --line: #e8e9ec;
  --wash: #f6f7f8;
  --accent: #5d5fef;
  --accent-soft: #eeeeff;
  --max: 1240px;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(20, 24, 32, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html.language-loading body {
  visibility: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: #f7f7f8;
  font-family:
    -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'PingFang SC',
    'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 247, 248, 0.78);
  border-bottom: 1px solid rgba(220, 221, 224, 0.72);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 760;
  letter-spacing: -0.03em;
}
.brand-icon {
  width: 32px;
  height: 32px;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 6px 16px rgba(20, 24, 32, 0.12);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  letter-spacing: -0.08em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a:hover {
  color: var(--ink);
}
.lang-switch {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 650;
}
.app-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}
.app-brand-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(20, 24, 32, 0.12);
}
.app-brand strong {
  overflow: hidden;
  font-size: 16px;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.app-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.app-nav-links > a:not(.lang-switch):hover {
  color: var(--ink);
}
.hero {
  overflow: hidden;
  padding: 32px 0 86px;
  background: #f7f7f8;
}
.hero-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6vw, 84px);
  border: 1px solid color-mix(in srgb, var(--accent) 14%, #e4e5e8);
  border-radius: 48px;
  background:
    radial-gradient(circle at 92% 10%, var(--accent-soft), transparent 34%),
    radial-gradient(
      circle at 2% 100%,
      color-mix(in srgb, var(--accent-soft) 72%, #fff),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 36px 100px rgba(20, 24, 32, 0.08);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}
.hero-content {
  position: relative;
  z-index: 2;
}
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
  letter-spacing: -0.012em;
}
.hero-tagline {
  margin: 24px 0 0;
  color: var(--accent);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 720;
  letter-spacing: -0.035em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.hero-feature-list span {
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(20, 24, 32, 0.06);
  font-size: 12px;
  font-weight: 650;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 28px rgba(20, 24, 32, 0.18);
}
.button-secondary {
  background: #fff;
}
.device-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.device-stage:before {
  content: '';
  position: absolute;
  width: min(100%, 540px);
  aspect-ratio: 1;
  border-radius: 40%;
  background: linear-gradient(145deg, var(--accent-soft), rgba(255, 255, 255, 0.35));
  opacity: 0.92;
  transform: rotate(-8deg);
}
.device-image {
  position: relative;
  z-index: 1;
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(20, 24, 32, 0.2));
  transition: transform 0.5s ease;
}
.hero-frame:hover .device-image {
  transform: translateY(-6px) scale(1.015);
}
.device-orbit {
  position: absolute;
  z-index: 0;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 50%;
}
.device-orbit-one {
  width: 86%;
  aspect-ratio: 1;
}
.device-orbit-two {
  width: 62%;
  aspect-ratio: 1;
  border-style: dashed;
  transform: rotate(18deg);
}
.section {
  padding: 108px 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}
.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.feature-section-head {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #dfe1e5;
  padding-bottom: 30px;
}
.feature-section-title {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-grid .feature-card:first-child {
  grid-column: span 2;
}
.feature-card {
  min-height: 260px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid #e1e2e6;
  border-radius: 32px;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 24px 60px rgba(20, 24, 32, 0.1);
}
.feature-image {
  width: calc(100% + 64px);
  height: clamp(280px, 28vw, 420px);
  max-width: none;
  margin: -32px -32px 28px;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--wash);
  object-fit: cover;
}
.feature-card-media .feature-index {
  margin-bottom: 28px;
}
.feature-index {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border-radius: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 13px;
  font-weight: 800;
}
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  letter-spacing: -0.035em;
}
.feature-grid .feature-card:first-child h3 {
  font-size: clamp(25px, 2.7vw, 34px);
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.support-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--wash) 100%);
}
.feature-section {
  background: #f7f7f8;
}
.support-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid color-mix(in srgb, var(--accent) 14%, var(--line));
  border-radius: 40px;
  background:
    radial-gradient(circle at 4% 0%, var(--accent-soft), transparent 42%), rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 90px rgba(20, 24, 32, 0.08);
}
.support-copy h2 {
  max-width: 470px;
  font-size: clamp(34px, 4vw, 54px);
}
.support-copy > p:last-child {
  max-width: 520px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.support-actions {
  display: grid;
  gap: 12px;
}
.support-link {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(20, 24, 32, 0.04);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.support-link:hover {
  transform: translateX(5px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  box-shadow: 0 16px 36px rgba(20, 24, 32, 0.08);
}
.support-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 800;
}
.support-label {
  display: grid;
  gap: 6px;
}
.support-label strong {
  font-size: 17px;
  letter-spacing: -0.02em;
}
.support-label small {
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-overflow: ellipsis;
}
.support-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--muted);
  background: var(--wash);
  transition:
    color 0.22s ease,
    background 0.22s ease;
}
.support-link:hover .support-arrow {
  color: #fff;
  background: var(--accent);
}
.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.catalog-hero {
  overflow: hidden;
  padding: 76px 0 96px;
  background:
    radial-gradient(circle at 90% 8%, #e4e3ff, transparent 28%),
    radial-gradient(circle at 5% 100%, #f1e7ff, transparent 24%), #f7f7f8;
}
.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  min-height: 520px;
}
.catalog-hero-copy {
  position: relative;
  z-index: 2;
}
.catalog-hero h1 {
  max-width: 760px;
  font-size: clamp(56px, 7.2vw, 96px);
  line-height: 1;
  letter-spacing: -0.045em;
}
html[lang='zh-CN'] .catalog-hero h1 {
  line-height: 1.1;
  letter-spacing: -0.018em;
}
.catalog-jump {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding: 10px 10px 10px 18px;
  border: 1px solid #dedfe3;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.catalog-jump span:last-child {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}
.catalog-orbit {
  position: relative;
  min-height: 480px;
  isolation: isolate;
}
.catalog-orbit:before,
.catalog-orbit:after {
  content: '';
  position: absolute;
  inset: 8% 4%;
  z-index: -1;
  border: 1px solid rgba(93, 95, 239, 0.13);
  border-radius: 46% 54% 52% 48%;
  transform: rotate(-8deg);
}
.catalog-orbit:after {
  inset: 20% 16%;
  border-style: dashed;
  transform: rotate(14deg);
}
.catalog-orbit-app {
  position: absolute;
  display: block;
  border-radius: 24%;
  box-shadow:
    0 22px 45px rgba(20, 24, 32, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.44);
  transition: transform 0.3s ease;
}
.catalog-orbit-app:hover {
  z-index: 3;
  transform: translateY(-8px) scale(1.06) rotate(0deg);
}
.catalog-orbit-app img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.catalog-orbit-app-1 {
  top: 3%;
  left: 38%;
  width: 98px;
  transform: rotate(-7deg);
}
.catalog-orbit-app-2 {
  top: 18%;
  right: 2%;
  width: 82px;
  transform: rotate(8deg);
}
.catalog-orbit-app-3 {
  right: 10%;
  bottom: 12%;
  width: 108px;
  transform: rotate(-4deg);
}
.catalog-orbit-app-4 {
  bottom: 0;
  left: 36%;
  width: 78px;
  transform: rotate(6deg);
}
.catalog-orbit-app-5 {
  bottom: 14%;
  left: 2%;
  width: 96px;
  transform: rotate(-8deg);
}
.catalog-orbit-app-6 {
  top: 20%;
  left: 5%;
  width: 72px;
  transform: rotate(5deg);
}
.catalog-orbit-app-7 {
  top: 50%;
  right: 24%;
  width: 60px;
  transform: rotate(9deg);
}
.catalog {
  padding: 94px 0 120px;
  background: #fff;
}
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 42px;
}
.catalog-toolbar h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.app-card {
  position: relative;
  min-height: 292px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #e3e4e7;
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.app-card-wide {
  grid-column: span 2;
  min-height: 318px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 9%, #fff), #fff 62%);
}
.app-card-featured {
  min-height: 334px;
  background:
    radial-gradient(
      circle at 86% 18%,
      color-mix(in srgb, var(--card-accent) 18%, #fff),
      transparent 30%
    ),
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 11%, #fff), #fff 68%);
}
.app-card-tinted {
  background: linear-gradient(145deg, color-mix(in srgb, var(--card-accent) 7%, #fff), #fff 72%);
}
.app-card-glow {
  position: absolute;
  top: -100px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--card-accent);
  opacity: 0.1;
  filter: blur(4px);
}
.app-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.app-card:hover .card-arrow {
  color: #fff;
  background: var(--card-accent);
  transform: rotate(8deg);
}
.app-card-wide:nth-child(7) .app-card-glow,
.app-card-wide:nth-child(14) .app-card-glow {
  top: auto;
  right: auto;
  bottom: -120px;
  left: -80px;
}
.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.card-icon {
  width: 74px;
  height: 74px;
  border-radius: 21px;
  box-shadow: 0 10px 26px rgba(20, 24, 32, 0.13);
}
.app-card-wide .card-icon {
  width: 84px;
  height: 84px;
  border-radius: 23px;
}
.app-card-featured .card-icon {
  width: 94px;
  height: 94px;
  border-radius: 26px;
}
.language-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
}
.app-card h2 {
  margin: 16px 0 7px;
  font-size: 29px;
  line-height: 1.1;
}
.app-card-wide h2 {
  max-width: 70%;
  font-size: clamp(33px, 3.5vw, 44px);
}
.app-card-featured h2 {
  font-size: clamp(36px, 4vw, 50px);
}
.app-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}
.app-card-wide p {
  max-width: 72%;
}
.card-highlights {
  position: absolute;
  right: 26px;
  bottom: 76px;
  display: flex;
  max-width: 42%;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.card-highlights span {
  padding: 8px 11px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 18%, var(--line));
  border-radius: 999px;
  color: color-mix(in srgb, var(--card-accent) 75%, var(--ink));
  background: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 720;
}
.card-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--card-accent);
  font-size: 14px;
  font-weight: 760;
}
.card-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 22%, var(--line));
  border-radius: 50%;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background 0.25s ease;
}
.legal {
  padding: 78px 0 110px;
}
.legal-wrap {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}
.legal-back {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 14px;
}
.legal h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
}
.legal-meta {
  margin: 18px 0 48px;
  color: var(--muted);
  font-size: 14px;
}
.legal-content {
  font-size: 16px;
  line-height: 1.82;
}
.legal-content h2 {
  margin: 48px 0 14px;
  font-size: 25px;
  letter-spacing: -0.025em;
}
.legal-content p {
  margin: 0 0 16px;
  color: #444950;
}
.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #444950;
}
.legal-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 40px;
}
.error-page .brand-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 32px;
  padding: 7px;
  border-radius: 20px;
}
.error-page h1 {
  font-size: 64px;
}
.error-page p {
  color: var(--muted);
  font-size: 18px;
}
.error-page .button {
  margin-block: 50px;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-frame {
    border-radius: 38px;
  }
  .device-stage {
    min-height: 420px;
  }
  .device-image {
    max-height: 450px;
  }
  .feature-grid,
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-card-wide {
    grid-column: span 1;
    min-height: 292px;
  }
  .app-card-last-odd {
    grid-column: 1 / -1;
  }
  .app-card-featured {
    min-height: 300px;
  }
  .app-card-wide h2,
  .app-card-wide p {
    max-width: 100%;
  }
  .card-highlights {
    position: static;
    max-width: none;
    justify-content: flex-start;
    margin: 0 0 18px;
  }
  .catalog-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .catalog-hero-copy {
    max-width: 760px;
  }
  .catalog-orbit {
    width: min(100%, 560px);
    min-height: 440px;
    margin-inline: auto;
  }
  .support-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section {
    padding: 82px 0;
  }
}
@media (max-width: 620px) {
  .shell,
  .legal-wrap {
    width: min(calc(100% - 28px), var(--max));
  }
  .nav {
    height: 64px;
  }
  .nav-links > a:not(.lang-switch) {
    display: none;
  }
  .app-nav {
    height: 64px;
    min-height: 64px;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .app-brand {
    flex: 1 1 auto;
    gap: 9px;
  }
  .app-brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .app-brand strong {
    min-width: 0;
    max-width: 100%;
  }
  .app-nav-links {
    flex: 0 0 auto;
    gap: 10px;
    font-size: 11px;
    white-space: nowrap;
  }
  .app-nav-links .lang-switch {
    padding: 6px 9px;
  }
  .hero {
    padding: 16px 0 54px;
  }
  .hero-frame {
    padding: 32px 22px;
    border-radius: 30px;
  }
  h1 {
    font-size: 44px;
  }
  .hero-copy {
    font-size: 17px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .device-stage {
    min-height: 340px;
  }
  .device-image {
    max-height: 360px;
  }
  .section {
    padding: 70px 0;
  }
  .feature-grid,
  .app-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid .feature-card:first-child,
  .app-card-wide,
  .app-card-last-odd {
    grid-column: span 1;
  }
  .feature-image {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .feature-card {
    min-height: auto;
  }
  .feature-index {
    margin-bottom: 34px;
  }
  .support-panel {
    padding: 30px 20px 20px;
    border-radius: 28px;
  }
  .support-link {
    grid-template-columns: 38px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 88px;
    padding: 15px 14px;
    border-radius: 18px;
  }
  .support-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .support-arrow {
    width: 30px;
    height: 30px;
  }
  .catalog-hero {
    padding: 60px 0 68px;
  }
  .catalog-hero h1 {
    font-size: clamp(50px, 16vw, 72px);
  }
  .catalog-orbit {
    min-height: 320px;
  }
  .catalog-orbit-app {
    box-shadow:
      0 16px 30px rgba(20, 24, 32, 0.14),
      0 0 0 5px rgba(255, 255, 255, 0.44);
  }
  .catalog-orbit-app-1 {
    width: 74px;
  }
  .catalog-orbit-app-2,
  .catalog-orbit-app-4 {
    width: 60px;
  }
  .catalog-orbit-app-3,
  .catalog-orbit-app-5 {
    width: 76px;
  }
  .catalog-orbit-app-6,
  .catalog-orbit-app-7 {
    width: 52px;
  }
  .catalog {
    padding: 70px 0 84px;
  }
  .catalog-toolbar {
    align-items: flex-end;
  }
  .app-card {
    min-height: 278px;
  }
  .app-card-wide {
    min-height: 296px;
  }
  .app-card-wide h2,
  .app-card-wide p {
    max-width: 100%;
  }
  .card-highlights {
    position: static;
    max-width: none;
    justify-content: flex-start;
    margin: 0 0 20px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .legal {
    padding-top: 48px;
  }
  .legal-content h2 {
    margin-top: 38px;
  }
}
@media (max-width: 400px) {
  .shell {
    width: min(calc(100% - 20px), var(--max));
  }
  .app-nav {
    gap: 7px;
  }
  .app-brand {
    gap: 7px;
  }
  .app-brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .app-brand strong {
    font-size: 14px;
  }
  .app-nav-links {
    gap: 6px;
    font-size: 10px;
  }
  .app-nav-links .lang-switch {
    padding: 5px 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
