.tab-shell {
  min-width: 0;
}

.tab-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 8px;
  max-width: 100%;
  margin-bottom: 52px;
  padding: 8px;
  overflow-x: auto;
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-text);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.tab-track [role="tab"] {
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-text-muted);
  font-weight: 750;
  white-space: nowrap;
}

.tab-track [role="tab"]:hover {
  color: var(--color-text);
}

.tab-track [role="tab"][aria-selected="true"] {
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

[role="tabpanel"] {
  min-width: 0;
}

[role="tabpanel"][hidden] {
  display: none;
}

.tab-panel-enter {
  animation: panel-enter 360ms ease both;
}

@keyframes panel-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 70px;
  align-items: center;
}

.feature-copy {
  min-width: 0;
}

.feature-copy p {
  color: var(--color-text-muted);
}

.ios-card-stage {
  position: relative;
  min-height: 430px;
  overflow-x: clip;
}

.ios-card-stage::before {
  position: absolute;
  inset: 8% 5% 10% 24%;
  border-radius: 48% 52% 38% 62%;
  background: var(--gradient-accent);
  content: "";
}

.ios-list-card {
  position: absolute;
  z-index: 2;
  width: min(390px, 82%);
  padding: 13px 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-float);
}

.ios-list-card:first-child {
  top: 28px;
  left: 5%;
}

.ios-list-card:nth-child(2) {
  right: 2%;
  bottom: 24px;
  z-index: 3;
}

.ios-list-card__title {
  padding: 12px 20px 8px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ios-row {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  margin-inline: 20px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 650;
}

.ios-row__dot {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-panel-rose);
}

.ios-row__dot--honey {
  background: var(--color-honey);
}

.ios-row__dot--success {
  background: var(--color-success);
}

.ios-row__value {
  margin-left: auto;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.ios-row__chevron {
  flex-shrink: 0;
  color: var(--color-text-muted);
  font-size: 18px;
}

.toc {
  position: sticky;
  top: calc(var(--header-height) + 14px);
  z-index: 20;
  display: flex;
  max-width: 100%;
  gap: 8px;
  padding: 8px;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.toc a {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  align-items: center;
  padding-inline: 16px;
  border-radius: var(--radius-pill);
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.toc a:hover,
.toc a[aria-current="true"] {
  background: var(--color-panel-rose);
  color: var(--color-accent-dark);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  position: relative;
  min-height: 64px;
  padding: 20px 58px 20px 22px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: var(--color-panel-rose);
  color: var(--color-accent-dark);
  content: "+";
  font-size: 20px;
  line-height: 27px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__answer {
  padding: 0 22px 22px;
  color: var(--color-text-muted);
}

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

.term-card {
  min-width: 0;
  padding: 26px;
  border-radius: var(--radius-card);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.term-card__term {
  margin-bottom: 9px;
  color: var(--color-accent-dark);
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.term-card__meta {
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.app-store-button {
  display: inline-flex;
  min-height: 56px;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  padding: 9px 20px;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  color: var(--color-on-dark);
  box-shadow: var(--shadow-button);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.app-store-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.app-store-button__copy {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.app-store-button__overline {
  font-size: 11px;
  font-weight: 650;
}

.app-store-button__label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
}

.fact-row,
.badge-row {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.fact-pill,
.badge {
  display: inline-flex;
  min-height: 36px;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 750;
}

.fact-pill::before,
.badge-dot::before {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  content: "";
}

.fact-pill--honey::before {
  background: var(--color-honey);
}

.fact-pill--success::before {
  background: var(--color-success);
}

.badge-accent {
  border-color: var(--color-panel-rose);
  background: var(--color-panel-rose);
  color: var(--color-accent-dark);
}

.badge-dark {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-on-dark);
}

.official-shot {
  width: min(100%, 280px);
  flex-shrink: 0;
  margin: 0;
}

.official-shot img,
.official-shot__placeholder {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: var(--color-panel-rose);
  color: var(--color-text);
  box-shadow: var(--shadow-float);
}

/* 官方截图按原图比例满幅显示(750×1334):不锁 aspect-ratio、不 contain,上下不留白条。
   原图是直角屏截图,状态栏 Carrier/电量贴边,圆角只许 ≤10px,大圆角会把角上的内容切掉 */
.official-shot img {
  aspect-ratio: auto;
  object-fit: fill;
  border-radius: 10px;
}

.official-shot__placeholder {
  aspect-ratio: 750 / 1334;
  position: relative;
  overflow: hidden;
}

.official-shot__placeholder::before {
  position: absolute;
  inset: 8% 8% auto;
  height: 5%;
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  content: "";
}

.official-shot__placeholder::after {
  position: absolute;
  inset: 20% 8% 8%;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  box-shadow: inset 0 0 0 1px var(--color-border);
  content: "";
}

.official-shot figcaption {
  margin-top: 12px;
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}


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

.device-card {
  display: grid;
  min-width: 0;
  padding: 30px;
  border-radius: var(--radius-card-lg);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.device-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-panel-rose);
  color: var(--color-accent-dark);
}

.device-card__icon svg {
  width: 34px;
  height: 34px;
}

.device-card p {
  color: var(--color-text-muted);
}

.device-card .button {
  justify-self: start;
  margin-top: auto;
}

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

.article-card {
  display: flex;
  min-width: 0;
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: var(--color-bg);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: 750;
}

.article-card h3 {
  font-size: 22px;
}

.article-card p {
  color: var(--color-text-muted);
}

.article-card__link {
  margin-top: auto;
  color: var(--color-accent-dark);
  font-weight: 800;
}

.callout {
  position: relative;
  padding: 22px 24px 22px 28px;
  overflow-x: clip;
  border-radius: var(--radius-md);
  background: var(--color-panel-rose);
  color: var(--color-text);
}

.callout::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 5px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  background: var(--color-accent);
  content: "";
}

.callout--warn {
  background: var(--color-panel);
  color: var(--color-text);
}

.callout--warn::before {
  background: var(--color-warn);
}

.callout__title {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.end-store-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 34px;
  align-items: center;
  border-radius: var(--radius-card-lg);
  background: var(--color-panel-rose);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
}

.dl-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: inline-flex;
  min-height: 48px;
  max-width: calc(100vw - 32px);
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-text);
  color: var(--color-on-dark);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: var(--shadow-button);
}

.dl-fab svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.hero-preview {
  position: relative;
  height: 800px;
  overflow: hidden;
  overflow-x: clip;
  background:
    radial-gradient(58% 72% at 16% 32%, var(--color-canvas-light), transparent 70%),
    var(--gradient-canvas);
  color: var(--color-text);
}

.hero-preview__grid {
  display: grid;
  height: 100%;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-preview__copy {
  position: relative;
  z-index: 3;
  padding-bottom: 36px;
}

.hero-preview__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--color-accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-preview__eyebrow::before {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-dot-ring);
  content: "";
}

.hero-preview h1 {
  margin-bottom: 0;
}

.hero-preview__sub {
  display: block;
  margin-top: 14px;
  color: var(--color-accent-dark);
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.005em;
  line-height: 1.35;
}

.hero-preview__lede {
  max-width: 540px;
  margin-top: 24px;
  color: var(--color-text);
  font-size: 17px;
}

.hero-preview .button-row {
  margin-top: 30px;
}

.hero-devices {
  display: inline-flex;
  max-width: 100%;
  margin-top: 28px;
  padding: 11px 16px 11px 18px;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border: 1px solid var(--color-strip-stroke);
  border-radius: var(--radius-md);
  background: var(--color-strip);
  color: var(--color-text);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-devices__list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
}

.hero-devices__list a,
.hero-devices__list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
}

.hero-devices svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-devices__divider {
  width: 1px;
  height: 20px;
  flex-shrink: 0;
  background: var(--color-divider);
}

.hero-stage {
  position: relative;
  z-index: 2;
  height: 720px;
  margin-right: calc(var(--gutter) * -1);
}

.hero-blob {
  position: absolute;
  top: -10px;
  left: 0;
  width: 860px;
  height: 814px;
  pointer-events: none;
}

.hero-blob__accent {
  stop-color: var(--color-accent);
}

.hero-blob__honey {
  stop-color: var(--color-honey);
}

.hero-blob__body {
  fill: url("#previewBlobGradient");
}

.hero-blob__glow {
  fill: var(--color-accent);
  opacity: 0.09;
}

.hero-shot {
  position: absolute;
  top: 56px;
  left: 50%;
  z-index: 5;
  width: min(300px, 70%);
  margin: 0;
  transform: translateX(-50%);
}

.hero-shot img {
  aspect-ratio: auto;
  background: #fff;
}

.hero-stage > .hero-cap {
  display: none;
}

.hero-phone {
  position: absolute;
  top: 128px;
  left: 270px;
  z-index: 5;
  width: 240px;
  height: 500px;
  border-radius: 46px;
  background: var(--color-device);
  box-shadow: 0 0 0 1.5px var(--color-device-edge), var(--shadow-phone);
  transform: rotate(-4deg);
}

.hero-phone::before,
.hero-phone::after {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: var(--color-device);
  content: "";
}

.hero-phone::before {
  top: 120px;
  left: -3px;
  height: 70px;
  box-shadow: 0 96px 0 var(--color-device);
}

.hero-phone::after {
  top: 150px;
  right: -3px;
  height: 96px;
}

.hero-phone__screen {
  position: absolute;
  inset: 9px;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(70% 40% at 50% 0%, var(--color-screen-a), transparent 80%),
    var(--gradient-screen);
}

.hero-phone__island {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 78px;
  height: 24px;
  border-radius: var(--radius-pill);
  background: var(--color-device);
  transform: translateX(-50%);
}

.hero-rules {
  position: absolute;
  top: 44%;
  right: 0;
  left: 0;
  margin: 0;
  padding-inline: 22px;
  color: var(--color-screen-ink);
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1;
  list-style: none;
}

.hero-rules li {
  padding: 13px 0;
  border-top: 1px solid var(--color-screen-rule);
  white-space: nowrap;
}

.hero-rules li:last-child {
  border-bottom: 1px solid var(--color-screen-rule);
}

.hero-cap {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  padding: 13px 22px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-glass-stroke);
  border-radius: var(--radius-pill);
  background: var(--color-glass);
  color: var(--color-text);
  box-shadow: inset 0 1px 0 var(--color-glass-highlight), var(--shadow-float);
  backdrop-filter: blur(16px);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  animation: hero-drift 7s ease-in-out infinite;
}

.hero-cap::before {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-dot-ring);
  content: "";
}

.hero-cap--honey::before {
  background: var(--color-honey);
}

.hero-cap--success::before {
  background: var(--color-success);
}

.hero-cap--deep::before {
  background: var(--color-accent-dark);
}

.hero-cap--ss {
  top: 186px;
  left: 128px;
  animation-duration: 7.5s;
}

.hero-cap--vmess {
  top: 262px;
  left: 498px;
  padding: 12px 20px;
  font-size: 15px;
  animation-delay: -2.1s;
  animation-duration: 6.2s;
}

.hero-cap--trojan {
  top: 452px;
  left: 92px;
  padding: 12px 20px;
  font-size: 15px;
  animation-delay: -4s;
  animation-duration: 8.4s;
}

.hero-cap--wireguard {
  top: 428px;
  left: 526px;
  padding: 14px 24px;
  font-size: 17px;
  animation-delay: -1.3s;
  animation-duration: 9s;
}

.hero-cap--demand {
  top: 566px;
  left: 196px;
  z-index: 6;
  padding: 12px 20px;
  font-size: 15px;
  animation-delay: -3.3s;
  animation-duration: 6.8s;
}

@keyframes hero-drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.preview-block {
  padding-top: 92px;
  padding-bottom: 92px;
}

.preview-block--rose {
  border-radius: var(--radius-hero);
  background: var(--color-panel-rose);
  color: var(--color-text);
}

.preview-static-logo {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg);
  box-shadow: inset 0 0 0 4px var(--color-panel-rose);
}

.preview-static-logo::after {
  position: absolute;
  inset: 11px;
  border-radius: 5px;
  background: var(--gradient-accent);
  content: "";
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.swatch {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
}

.swatch__color {
  height: 90px;
}

.swatch__color--bg {
  background: var(--color-bg);
}

.swatch__color--panel {
  background: var(--color-panel);
}

.swatch__color--rose {
  background: var(--color-panel-rose);
}

.swatch__color--accent {
  background: var(--color-accent);
}

.swatch__color--accent-dark {
  background: var(--color-accent-dark);
}

.swatch__color--honey {
  background: var(--color-honey);
}

.swatch__color--text {
  background: var(--color-text);
}

.swatch__color--muted {
  background: var(--color-text-muted);
}

.swatch__color--success {
  background: var(--color-success);
}

.swatch__color--warn {
  background: var(--color-warn);
}

.swatch__label {
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .hero-preview {
    height: auto;
    padding-top: 64px;
    padding-bottom: 120px;
  }

  .hero-preview__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .hero-stage {
    width: min(100%, 720px);
    height: 640px;
    margin-right: 0;
  }

  .hero-blob {
    width: 100%;
    height: auto;
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .tab-track {
    grid-template-columns: repeat(5, minmax(155px, 1fr));
    margin-bottom: 34px;
  }

  .glossary-grid,
  .device-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .end-store-card {
    grid-template-columns: 1fr;
  }

  .ios-card-stage {
    display: grid;
    min-height: 0;
    gap: 18px;
    padding: 34px 0;
  }

  .ios-card-stage::before {
    inset: 0 8% 0 18%;
  }

  .ios-list-card,
  .ios-list-card:first-child,
  .ios-list-card:nth-child(2) {
    position: relative;
    inset: auto;
    width: 92%;
  }

  .ios-list-card:nth-child(2) {
    justify-self: end;
  }

  .hero-preview {
    padding-top: 48px;
    padding-bottom: 80px;
  }

  .hero-preview__sub {
    font-size: 17px;
  }

  .hero-preview__copy {
    min-width: 0;
  }

  .hero-preview__lede {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-preview__lede .nowrap-term {
    white-space: normal;
  }

  .hero-stage {
    height: 560px;
    transform: scale(0.78);
    transform-origin: top left;
  }

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

  .official-shot {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .fact-row,
  .badge-row,
  .hero-devices__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-devices {
    display: flex;
    border-radius: var(--radius-card);
  }

  .hero-devices__divider {
    display: none;
  }

  .hero-stage {
    width: 760px;
    margin-bottom: -118px;
  }

  .hero-shot {
    transform: translateX(-50%);
  }

  .dl-fab {
    right: 16px;
    bottom: 16px;
  }

  .toc {
    border-radius: var(--radius-md);
  }

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

@media (max-width: 420px) {
  .hero-stage {
    transform: scale(0.68);
    margin-bottom: -178px;
  }

  .hero-devices__list {
    gap: 12px;
  }

  .hero-devices__list a,
  .hero-devices__list span {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cap,
  .tab-panel-enter {
    animation: none;
  }
}