.page-products {
  --product-glow: rgba(0, 255, 157, 0.18);
  --product-blue-glow: rgba(0, 212, 255, 0.14);
  --product-radius: 18px;
  overflow-x: hidden;
  color: var(--text);
}

.page-products img {
  max-width: 100%;
  height: auto;
}

.page-products .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 1.25rem 0;
  font-size: .875rem;
  color: var(--muted);
}

.page-products .breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-bottom-color .2s ease;
}

.page-products .breadcrumb a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.page-products .breadcrumb [aria-hidden="true"] {
  color: var(--line);
}

.page-products .breadcrumb .breadcrumb-current {
  color: var(--text);
}

.page-products .download-hero {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: 2rem 1.25rem;
}

.page-products .download-hero::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: -4rem;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at center, rgba(0, 212, 255, .06) 0%, transparent 70%);
  pointer-events: none;
}

.page-products .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.page-products .section-kicker {
  color: var(--primary);
  font-family: var(--font-head);
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.page-products .section-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.page-products .page-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #fff;
  transform: skew(-2deg);
  margin: 0;
}

.page-products .hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 34rem;
  margin: 0;
}

.page-products .hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  width: 100%;
  margin-top: .25rem;
}

.page-products .fact-cell {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .75rem .875rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transition: border-color .25s ease;
}

.page-products .fact-cell:hover {
  border-color: rgba(0, 255, 157, .4);
}

.page-products .fact-label {
  font-size: .75rem;
  color: var(--muted);
}

.page-products .fact-value {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
}

.page-products .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-top: .25rem;
}

.page-products .hero-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #00b981 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  border: none;
  color: #06120c;
  font-family: var(--font-head);
  font-weight: 700;
  padding: .875rem 1.75rem;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 255, 157, 0);
  transition: background-position .3s ease, box-shadow .3s ease, transform .3s ease, filter .3s ease;
}

.page-products .hero-actions .btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 28px rgba(0, 255, 157, .22);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.page-products .hero-actions .btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: .875rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: border-color .3s ease, color .3s ease;
}

.page-products .hero-actions .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.page-products .hero-sys {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: var(--muted);
  margin-top: .5rem;
  line-height: 1.6;
}

.page-products .sys-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  flex-shrink: 0;
}

.page-products .qr-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  background: rgba(17, 24, 39, .7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  transition: border-color .25s ease;
}

.page-products .qr-download:hover {
  border-color: rgba(0, 212, 255, .4);
}

.page-products .qr-download img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  object-fit: cover;
}

.page-products .qr-text {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.page-products .qr-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--text);
}

.page-products .qr-note {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.5;
}

.page-products .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.page-products .phone-glow {
  position: absolute;
  width: 320px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--product-blue-glow) 0%, transparent 70%);
  z-index: 1;
}

.page-products .hero-phone {
  position: relative;
  z-index: 2;
  width: 250px;
  height: auto;
  max-width: 90%;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  object-fit: cover;
  transition: transform .35s ease, box-shadow .35s ease;
}

.page-products .hero-phone:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .55);
}

.page-products .feature-section,
.page-products .version-section,
.page-products .sys-section,
.page-products .scene-section {
  padding: 2.5rem 1.25rem;
}

.page-products .section-head {
  margin-bottom: 2rem;
  max-width: 720px;
}

.page-products .section-head .section-title {
  margin: .5rem 0 .75rem;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: .01em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 212, 255, .1);
  transform: skew(-2deg);
}

.page-products .section-head .section-desc {
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin: 0;
}

.page-products .feature-layout {
  display: grid;
  gap: 2rem;
}

.page-products .feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.page-products .feature-card {
  position: relative;
  background: linear-gradient(165deg, rgba(17, 24, 39, .92), rgba(10, 14, 23, .95));
  border: 1px solid var(--line);
  border-radius: var(--product-radius);
  padding: 1.5rem 1.375rem;
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.page-products .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 255, 157, .09) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.page-products .feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 0 3px 3px 0;
}

.page-products .feature-card:hover {
  border-color: rgba(0, 255, 157, .45);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .35);
  transform: translateY(-3px);
}

.page-products .feature-card:hover::before {
  opacity: 1;
}

.page-products .feature-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .75rem;
}

.page-products .feature-title {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  letter-spacing: .01em;
}

.page-products .feature-text {
  font-size: .925rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1rem;
}

.page-products .tag {
  display: inline-block;
  font-size: .75rem;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: rgba(0, 212, 255, .08);
  border: 1px solid rgba(0, 212, 255, .3);
  color: var(--accent);
}

.page-products .tag-live {
  background: rgba(0, 255, 157, .08);
  border-color: rgba(0, 255, 157, .3);
  color: var(--primary);
}

.page-products .tag-hot {
  background: rgba(255, 138, 61, .08);
  border-color: rgba(255, 138, 61, .3);
  color: var(--hot);
}

.page-products .feature-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  margin: 0;
}

.page-products .feature-figure img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
  object-fit: cover;
}

.page-products .feature-figure figcaption {
  font-size: .8125rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.6;
}

.page-products .version-layout {
  display: grid;
  gap: 2rem;
}

.page-products .version-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .875rem;
}

.page-products .version-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .875rem 1rem;
  background: rgba(17, 24, 39, .6);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  line-height: 1.6;
  font-size: .9375rem;
  transition: border-color .25s ease, background .25s ease;
}

.page-products .version-item:hover {
  border-color: rgba(0, 212, 255, .4);
  background: rgba(0, 212, 255, .04);
}

.page-products .version-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #06120c;
  font-size: .75rem;
  font-weight: 900;
}

.page-products .version-figure img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.page-products .sys-section .table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.page-products .sys-section .data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--bg-surface);
}

.page-products .sys-section .data-table th,
.page-products .sys-section .data-table td {
  padding: .875rem 1.125rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.page-products .sys-section .data-table th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .08em;
  color: var(--primary);
  background: rgba(0, 255, 157, .05);
}

.page-products .sys-section .data-table td {
  color: var(--text);
  line-height: 1.6;
  font-size: .9375rem;
}

.page-products .sys-section .data-table tr:last-child td {
  border-bottom: none;
}

.page-products .scene-layout {
  display: grid;
  gap: 2.25rem;
}

.page-products .scene-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .875rem;
  text-align: center;
  margin: 0;
}

.page-products .scene-figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .35);
  object-fit: cover;
}

.page-products .scene-figure figcaption {
  font-size: .8125rem;
  color: var(--muted);
}

.page-products .scene-items {
  display: grid;
  gap: 1.5rem;
}

.page-products .scene-item {
  position: relative;
  padding-left: 1.125rem;
}

.page-products .scene-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4rem;
  width: 4px;
  height: calc(100% - .4rem);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  opacity: .5;
}

.page-products .scene-item-title {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .375rem;
}

.page-products .scene-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
  margin: 0;
}

.page-products .cta-section {
  padding: 3rem 1.25rem 2.5rem;
}

.page-products .cta-card {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0, 255, 157, .07) 0%, transparent 40%),
    linear-gradient(315deg, rgba(0, 212, 255, .06) 0%, transparent 45%),
    rgba(17, 24, 39, .7);
  border: 1px solid rgba(0, 255, 157, .25);
}

.page-products .cta-card .section-title {
  margin: .5rem 0 .75rem;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: #fff;
  transform: skew(-2deg);
  letter-spacing: .01em;
}

.page-products .cta-desc {
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.page-products .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .875rem;
}

.page-products .cta-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #00b981 100%);
  color: #06120c;
  border: none;
  padding: .875rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 255, 157, .18);
  transition: box-shadow .3s ease, transform .3s ease, filter .3s ease;
}

.page-products .cta-actions .btn-primary:hover {
  box-shadow: 0 0 30px rgba(0, 255, 157, .35);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.page-products .cta-actions .btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: .875rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: border-color .3s ease, color .3s ease;
}

.page-products .cta-actions .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (min-width: 640px) {
  .page-products .hero-facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .page-products .section-head {
    margin-bottom: 2.5rem;
  }

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

  .page-products .feature-card:nth-child(even) {
    margin-top: 28px;
  }

  .page-products .qr-download img {
    width: 110px;
    height: 110px;
  }
}

@media (min-width: 992px) {
  .page-products .download-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
  }

  .page-products .hero-phone {
    width: 300px;
  }

  .page-products .feature-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 2.5rem;
  }

  .page-products .feature-figure {
    position: sticky;
    top: 2rem;
  }

  .page-products .version-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, .85fr);
    align-items: center;
    gap: 3rem;
  }

  .page-products .scene-layout {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: start;
    gap: 3rem;
  }

  .page-products .cta-section {
    padding-top: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .page-products .download-hero,
  .page-products .feature-section,
  .page-products .version-section,
  .page-products .sys-section,
  .page-products .scene-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 4rem;
  }

  .page-products .cta-section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
