.page-products {
  --p-orange-soft: rgba(255, 122, 0, 0.15);
  --p-green-soft: rgba(100, 255, 218, 0.12);
  --p-grid-line-soft: rgba(100, 255, 218, 0.08);
  --p-card-outline: rgba(100, 255, 218, 0.25);
  --p-mono: "SF Mono", "Cascadia Code", "Roboto Mono", Consolas, monospace;
  background: var(--x-bg-dark);
  color: var(--x-text-light);
  overflow-x: hidden;
}

.page-products img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-products .hb-container {
  max-width: var(--x-container-w);
  margin: 0 auto;
  padding-left: var(--x-gutter);
  padding-right: var(--x-gutter);
}

.page-products .hb-breadcrumb {
  padding: 1.5rem 0 0.5rem;
}

.page-products .hb-sec-head {
  margin-bottom: 3rem;
  position: relative;
}

.page-products .hb-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--x-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--x-neon-green);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-products .hb-sec-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--x-orange);
  display: inline-block;
}

.page-products .hb-sec-title {
  font-family: var(--x-font-body);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--x-text-light);
  margin-bottom: 0.75rem;
}

.page-products .hb-sec-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.72);
  max-width: 720px;
}

.page-products .hb-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2) 30%, rgba(255, 122, 0, 0.25) 70%, transparent);
  max-width: var(--x-container-w);
  margin: 0 auto;
  border: none;
}

.page-products .hb-section {
  padding: 5rem 0;
  position: relative;
}

.page-products .hb-section--tight {
  padding: 3rem 0;
}

.page-products .hb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 4px 14px 4px 14px;
  font-family: var(--x-font-body);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: 0.02em;
}

.page-products .hb-btn--primary {
  background: var(--x-neon-green);
  color: var(--x-deep-blue);
}

.page-products .hb-btn--primary:hover {
  background: var(--x-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.3);
}

.page-products .hb-btn--outline {
  background: transparent;
  border-color: var(--x-neon-green);
  color: var(--x-neon-green);
}

.page-products .hb-btn--outline:hover {
  border-color: var(--x-orange);
  color: var(--x-orange);
  transform: translateY(-2px);
}

.page-products .hb-card {
  background: var(--x-card);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 16px 4px 16px 4px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-products .hb-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 12px 40px rgba(10, 25, 47, 0.8);
  border-color: rgba(100, 255, 218, 0.3);
}

.page-products .hb-coord {
  display: inline-block;
  font-family: var(--x-font-mono);
  font-size: 0.7rem;
  color: var(--x-neon-green);
  letter-spacing: 0.12em;
  background: rgba(100, 255, 218, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  border: 1px solid rgba(100, 255, 218, 0.15);
  margin-bottom: 0.75rem;
}

.page-products .hb-panel {
  background: var(--x-blue);
  border-left: 3px solid var(--x-neon-green);
  border-radius: 4px 12px 4px 12px;
  padding: 1.5rem;
}

.page-products .hb-panel__title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--x-text-light);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.page-products .hb-panel__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.7);
}

.page-products .hb-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(100, 255, 218, 0.08);
}

.page-products .hb-stat:last-child {
  border-bottom: none;
}

.page-products .hb-stat__value {
  font-family: var(--x-font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--x-neon-green);
  line-height: 1;
}

.page-products .hb-stat__label {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.6);
  letter-spacing: 0.05em;
}

.page-products .hb-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.page-products .hb-dot--green {
  background: var(--x-neon-green);
  box-shadow: 0 0 8px rgba(100, 255, 218, 0.7);
}

.page-products .hb-img-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--x-deep-blue);
}

.page-products .hb-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(100, 255, 218, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 255, 218, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
  pointer-events: none;
}

.page-products .hb-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.page-products .hb-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.page-products .hb-breadcrumb__item + .hb-breadcrumb__item::before {
  content: "/";
  font-family: var(--x-font-mono);
  color: rgba(100, 255, 218, 0.5);
}

.page-products .hb-breadcrumb__link {
  color: rgba(100, 255, 218, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-products .hb-breadcrumb__link:hover {
  color: var(--x-orange);
}

.page-products .hb-breadcrumb__current {
  color: var(--x-text-light);
  font-weight: 600;
}

/* ============ Hero ============ */
.page-products .prod-hero {
  position: relative;
  padding: 3rem 0 4rem;
  border-bottom: 1px solid rgba(100, 255, 218, 0.08);
}

.page-products .prod-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.page-products .prod-hero__content {
  position: relative;
  z-index: 2;
}

.page-products .prod-hero__title {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--x-text-light);
  text-transform: uppercase;
  margin: 1rem 0 1.5rem;
}

.page-products .prod-hero__desc {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 2rem;
}

.page-products .prod-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.page-products .prod-hero__grid-line {
  position: absolute;
  background: rgba(100, 255, 218, 0.07);
}

.page-products .prod-hero__grid-line--v1 {
  left: 15%;
  top: -2rem;
  bottom: -2rem;
  width: 1px;
}

.page-products .prod-hero__grid-line--v2 {
  right: 18%;
  top: -2rem;
  bottom: -2rem;
  width: 1px;
  background: rgba(255, 122, 0, 0.09);
}

.page-products .prod-hero__grid-line--h1 {
  top: 35%;
  left: 0;
  right: 0;
  height: 1px;
}

.page-products .prod-hero__grid-line--h2 {
  top: 70%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 122, 0, 0.06);
}

.page-products .prod-hero__coord {
  position: absolute;
  font-family: var(--x-font-mono);
  font-size: 0.6rem;
  color: rgba(100, 255, 218, 0.35);
  letter-spacing: 0.18em;
}

.page-products .prod-hero__coord--1 {
  left: 15%;
  top: 20%;
  transform: translateX(-50%);
}

.page-products .prod-hero__coord--2 {
  right: 18%;
  bottom: 18%;
  transform: translateX(50%);
  color: rgba(255, 122, 0, 0.4);
}

.page-products .prod-hero__coord--3 {
  right: 0;
  top: 8%;
  font-size: 0.55rem;
  color: rgba(100, 255, 218, 0.25);
}

/* ============ 核心功能 ============ */
.page-products .prod-core {
  background: linear-gradient(180deg, var(--x-bg-dark) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.page-products .prod-core__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.page-products .prod-feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.page-products .prod-feature::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, transparent 62%, rgba(100, 255, 218, 0.06) 63%, rgba(100, 255, 218, 0.06) 100%);
  pointer-events: none;
}

.page-products .prod-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--p-green-soft);
  border: 1px solid rgba(100, 255, 218, 0.2);
  padding: 2px;
}

.page-products .prod-feature--injury .prod-feature__icon {
  background: var(--p-orange-soft);
  border-color: rgba(255, 122, 0, 0.25);
}

.page-products .prod-feature--verify .prod-feature__icon {
  background: rgba(100, 255, 218, 0.18);
}

.page-products .prod-feature__body {
  min-width: 0;
}

.page-products .prod-feature__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--x-text-light);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.page-products .prod-feature__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.7);
}

.page-products .prod-feature__img {
  grid-column: 1 / -1;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0.5rem;
  border: 1px solid rgba(100, 255, 218, 0.12);
  background: var(--x-deep-blue);
}

.page-products .prod-feature__img img {
  width: 100%;
  height: auto;
  min-height: 160px;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.4s ease;
  opacity: 0.92;
}

.page-products .prod-feature:hover .prod-feature__img img {
  transform: scale(1.02);
  opacity: 1;
}

/* ============ 焕新版特性 ============ */
.page-products .prod-new {
  background: linear-gradient(180deg, rgba(10, 25, 47, 0.3) 0%, var(--x-bg-dark) 100%);
}

.page-products .prod-new__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.page-products .prod-new__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-products .prod-new__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(17, 34, 64, 0.55);
  border-radius: 4px 12px 4px 12px;
  border: 1px solid rgba(100, 255, 218, 0.08);
  transition: background 0.3s ease, transform 0.25s ease, border-color 0.3s ease;
  align-items: flex-start;
}

.page-products .prod-new__item:hover {
  background: rgba(17, 34, 64, 0.85);
  border-color: rgba(100, 255, 218, 0.22);
  transform: translateX(8px);
}

.page-products .prod-new__num {
  font-family: var(--x-font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--x-orange);
  background: var(--p-orange-soft);
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 3px;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
  line-height: 1.2;
}

.page-products .prod-new__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--x-text-light);
  margin-bottom: 0.35rem;
}

.page-products .prod-new__text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.65);
}

.page-products .prod-new__aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-products .prod-new__panel--metric {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left-color: var(--x-orange);
  background: rgba(17, 34, 64, 0.8);
}

/* ============ HB核对法 ============ */
.page-products .prod-verify {
  position: relative;
}

.page-products .prod-verify::before {
  content: "";
  position: absolute;
  top: 5rem;
  bottom: 5rem;
  left: 1.25rem;
  width: 2px;
  background: linear-gradient(180deg, var(--x-neon-green) 0%, rgba(100, 255, 218, 0.15) 100%);
  border-radius: 1px;
}

.page-products .prod-verify__timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-left: 3rem;
}

.page-products .prod-verify__step {
  position: relative;
  padding: 1.5rem;
  background: var(--x-card);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 4px 14px 4px 14px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.page-products .prod-verify__step:hover {
  border-color: rgba(100, 255, 218, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10, 25, 47, 0.7);
}

.page-products .prod-verify__step-num {
  position: absolute;
  left: -3rem;
  top: 1.25rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--x-deep-blue);
  border: 1px solid var(--x-neon-green);
  border-radius: 50%;
  font-family: var(--x-font-mono);
  font-size: 0.75rem;
  color: var(--x-neon-green);
  z-index: 1;
}

.page-products .prod-verify__step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--x-neon-green);
  margin-bottom: 0.5rem;
}

.page-products .prod-verify__step-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.72);
}

.page-products .prod-verify__note {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(100, 255, 218, 0.06);
  border-radius: 4px 10px 4px 10px;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.65);
  line-height: 1.5;
}

/* ============ iOS支持 ============ */
.page-products .prod-ios {
  background: linear-gradient(180deg, var(--x-bg-dark) 0%, rgba(10, 25, 47, 0.5) 100%);
}

.page-products .prod-ios__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.page-products .prod-ios__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.page-products .prod-ios__list-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(17, 34, 64, 0.5);
  border-radius: 4px 12px 4px 12px;
  border-left: 3px solid var(--x-orange);
  transition: background 0.3s ease, transform 0.25s ease;
}

.page-products .prod-ios__list-item:hover {
  background: rgba(17, 34, 64, 0.9);
  transform: translateX(6px);
}

.page-products .prod-ios__list-num {
  font-family: var(--x-font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--x-orange);
  background: var(--p-orange-soft);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 122, 0, 0.2);
}

.page-products .prod-ios__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--x-text-light);
  margin-bottom: 0.3rem;
}

.page-products .prod-ios__step-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.68);
}

.page-products .prod-ios__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.page-products .prod-ios__phone {
  width: 180px;
  height: 320px;
  background: var(--x-deep-blue);
  border: 2px solid rgba(100, 255, 218, 0.25);
  border-radius: 18px;
  padding: 1rem 1rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.page-products .prod-ios__phone-notch {
  width: 60px;
  height: 4px;
  background: rgba(100, 255, 218, 0.2);
  border-radius: 2px;
  align-self: center;
  margin-bottom: 0.25rem;
}

.page-products .prod-ios__phone-row {
  height: 10px;
  background: rgba(100, 255, 218, 0.15);
  border-radius: 2px;
}

.page-products .prod-ios__phone-row--short {
  width: 60%;
}

.page-products .prod-ios__phone-block {
  height: 90px;
  background: rgba(100, 255, 218, 0.12);
  border-radius: 6px;
  border: 1px solid rgba(100, 255, 218, 0.12);
  margin-top: 0.5rem;
}

.page-products .prod-ios__phone-refresh {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--x-orange);
  border-right: 2px solid var(--x-orange);
  border-radius: 50%;
  animation: prod-ios-spin 2s linear infinite;
}

@keyframes prod-ios-spin {
  to {
    transform: rotate(360deg);
  }
}

.page-products .prod-ios__caption {
  font-family: var(--x-font-mono);
  font-size: 0.7rem;
  color: rgba(100, 255, 218, 0.4);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ============ 版本下载 ============ */
.page-products .prod-download {
  position: relative;
}

.page-products .prod-download::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30%;
  background-image: linear-gradient(rgba(255, 122, 0, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 122, 0, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}

.page-products .prod-download__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
  align-items: center;
}

.page-products .prod-download__card {
  background: var(--x-card);
  border: 1px solid rgba(100, 255, 218, 0.15);
  border-radius: 6px 20px 6px 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(10, 25, 47, 0.7);
}

.page-products .prod-download__card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .prod-download__name {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--x-text-light);
  margin: 1rem 0 1.5rem;
}

.page-products .prod-download__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.page-products .prod-download__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.5;
}

.page-products .prod-download__list li::before {
  content: "›";
  color: var(--x-neon-green);
  font-weight: 700;
  font-size: 1.1rem;
}

.page-products .prod-download__actions {
  margin-bottom: 1rem;
}

.page-products .prod-download__tips {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.5);
  line-height: 1.5;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
  padding-top: 0.75rem;
}

.page-products .prod-download__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(100, 255, 218, 0.12);
  background: var(--x-deep-blue);
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
}

.page-products .prod-download__visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  opacity: 0.88;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.page-products .prod-download__visual:hover img {
  opacity: 1;
  transform: scale(1.02);
}

.page-products .prod-download__speed {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(10, 25, 47, 0.9);
  border: 1px solid rgba(100, 255, 218, 0.4);
  border-radius: 4px 12px 4px 12px;
  padding: 0.6rem 0.8rem;
  text-align: right;
  backdrop-filter: blur(4px);
}

.page-products .prod-download__speed-num {
  font-family: var(--x-font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--x-neon-green);
  display: block;
  line-height: 1.2;
}

.page-products .prod-download__speed-label {
  font-size: 0.6rem;
  color: rgba(226, 232, 240, 0.6);
  letter-spacing: 0.1em;
}

/* ============ 底部导航 ============ */
.page-products .prod-subnav {
  padding: 3rem 0 5rem;
}

.page-products .prod-subnav__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-products .prod-subnav__item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem;
  background: rgba(17, 34, 64, 0.5);
  border-radius: 4px 14px 4px 14px;
  border: 1px solid rgba(100, 255, 218, 0.1);
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}

.page-products .prod-subnav__item:hover {
  background: rgba(17, 34, 64, 0.9);
  border-color: rgba(100, 255, 218, 0.3);
  transform: translateY(-3px);
}

.page-products .prod-subnav__tag {
  font-family: var(--x-font-mono);
  font-size: 0.65rem;
  color: var(--x-orange);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-products .prod-subnav__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--x-text-light);
}

.page-products .prod-subnav__desc {
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.55);
  line-height: 1.4;
}

/* ============ Responsive ============ */
@media (min-width: 640px) {
  .page-products .prod-feature {
    grid-template-columns: 44px 1fr;
  }

  .page-products .prod-verify__timeline {
    padding-left: 3.5rem;
  }

  .page-products .prod-verify::before {
    left: 1.75rem;
  }

  .page-products .prod-verify__step-num {
    left: -3.5rem;
  }

  .page-products .prod-subnav__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .page-products .prod-hero {
    padding: 5rem 0 6rem;
  }

  .page-products .prod-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 320px;
  }

  .page-products .prod-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
  }

  .page-products .prod-hero__coord--3 {
    right: 5%;
    top: auto;
    bottom: 20%;
  }

  .page-products .prod-core__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .page-products .prod-feature--schedule,
  .page-products .prod-feature--verify {
    grid-column: span 2;
  }

  .page-products .prod-new__layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }

  .page-products .prod-ios__layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }

  .page-products .prod-download__layout {
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
  }

  .page-products .prod-download__visual {
    max-width: 360px;
  }
}

@media (min-width: 1200px) {
  .page-products .prod-core__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .page-products .prod-section {
    padding: 6.5rem 0;
  }

  .page-products .prod-feature__img {
    grid-column: 1 / -1;
  }
}
