.page-products {
  --p-glow-blue: rgba(0, 216, 255, 0.25);
  --p-glow-green: rgba(0, 255, 163, 0.22);
  --p-glow-gold: rgba(247, 181, 0, 0.2);
  --p-border-blue: rgba(0, 216, 255, 0.4);
  --p-border-green: rgba(0, 255, 163, 0.4);
  --p-border-gold: rgba(247, 181, 0, 0.35);
  --p-gradient-blue-green: linear-gradient(135deg, #00D8FF 0%, #00FFA3 100%);
  --p-bg-soft: rgba(17, 22, 34, 0.75);
  --p-radius: 18px;
  --p-radius-sm: 10px;
  position: relative;
  background-color: var(--bg-night);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: clip;
}

.page-products .shell {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.page-products .product-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 0.75rem 1rem;
}

.page-products .product-topbar .breadcrumb {
  font-size: 0.875rem;
  color: var(--muted);
}

.page-products .product-topbar .breadcrumb a {
  color: var(--line-blue);
  text-decoration: none;
}

.page-products .product-topbar .breadcrumb a:hover {
  text-decoration: underline;
}

.page-products .product-topbar .breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

.page-products .product-hero {
  position: relative;
  padding-block: 2.5rem 3.5rem;
  overflow: hidden;
}

.page-products .product-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -20%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(0, 216, 255, 0.12), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.page-products .product-hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 216, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 216, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  border-radius: 2px;
  transform: perspective(800px) rotateX(55deg) scale(1.2);
  transform-origin: center bottom;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.page-products .product-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-products .product-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.page-products .product-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--line-green);
  text-transform: uppercase;
}

.page-products .product-hero-eyebrow .eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-green);
  box-shadow: 0 0 12px rgba(0, 255, 163, 0.7);
  animation: p-pulse-dot 1.8s ease-in-out infinite;
}

@keyframes p-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.page-products .product-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(0, 216, 255, 0.25);
}

.page-products .product-hero-lead {
  font-size: 1.125rem;
  color: var(--white);
  max-width: 40em;
  margin: 0;
}

.page-products .product-hero-lead strong {
  color: var(--line-blue);
  font-weight: 600;
}

.page-products .product-hero-version {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.page-products .version-block {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-carbon);
  border: 1px solid rgba(0, 255, 163, 0.35);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 30px rgba(0, 255, 163, 0.1);
}

.page-products .version-block .version-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.page-products .version-block .version-num {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--line-green);
  line-height: 1.1;
  text-shadow: 0 0 20px rgba(0, 255, 163, 0.5);
}

.page-products .version-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.page-products .version-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-products .version-meta-item::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--line-blue);
  border-radius: 50%;
}

.page-products .product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.75rem;
}

.page-products .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.9rem 1.6rem;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.page-products .btn:focus-visible {
  outline: 2px solid var(--line-blue);
  outline-offset: 3px;
}

.page-products .btn-primary {
  background: var(--p-gradient-blue-green);
  color: #0A0E17;
  box-shadow: 0 0 25px rgba(0, 216, 255, 0.25);
}

.page-products .btn-primary:hover {
  box-shadow: 0 0 35px rgba(0, 255, 163, 0.4);
  transform: translateY(-2px);
}

.page-products .btn-ghost {
  background: transparent;
  color: var(--line-blue);
  border-color: var(--p-border-blue);
}

.page-products .btn-ghost:hover {
  background: rgba(0, 216, 255, 0.08);
  transform: translateY(-2px);
}

.page-products .btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.page-products .product-hero-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-products .product-hero-note::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 255, 163, 0.15);
  color: var(--line-green);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.page-products .product-phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-products .product-phone {
  position: relative;
  width: 260px;
  max-width: calc(100% - 1rem);
  background: linear-gradient(145deg, #1b2332, #0d1220);
  border-radius: 38px;
  border: 1px solid rgba(242, 246, 250, 0.25);
  padding: 12px;
  box-shadow: 0 0 60px rgba(0, 216, 255, 0.12), 0 15px 50px rgba(0, 0, 0, 0.45);
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.page-products .product-phone:hover {
  transform: rotate(0deg) translateY(-5px);
}

.page-products .phone-speaker {
  width: 70px;
  height: 5px;
  margin: 0 auto 10px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
}

.page-products .phone-screen {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 19.2;
  background: #0a0e17;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.page-products .phone-screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0) 70%, rgba(10, 14, 23, 0.65) 100%);
}

.page-products .phone-screen-bar {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(17, 22, 34, 0.82);
  border: 1px solid rgba(0, 255, 163, 0.35);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  backdrop-filter: blur(8px);
}

.page-products .phone-bar-live {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--line-green);
  letter-spacing: 0.15em;
}

.page-products .phone-bar-score {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.page-products .phone-home-btn {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.26);
  border-radius: 100px;
  margin: 10px auto 2px;
}

.page-products .phone-caption {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}

.page-products .product-download-panel {
  background: rgba(17, 22, 34, 0.7);
  border-top: 1px solid rgba(0, 216, 255, 0.2);
  border-bottom: 1px solid rgba(0, 216, 255, 0.2);
  padding-block: 2rem;
}

.page-products .product-download-panel[hidden] {
  display: none;
}

.page-products .product-download-panel[data-expand-panel] {
  display: block;
}

.page-products .download-channel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-products .download-channel-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(10, 14, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.page-products .download-channel-card:hover {
  border-color: var(--p-border-blue);
  transform: translateY(-3px);
}

.page-products .channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  padding: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--bg-night);
  background: var(--p-gradient-blue-green);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.page-products .channel-info h3 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.page-products .channel-info p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

.page-products .channel-status {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--line-blue);
  background: rgba(0, 216, 255, 0.1);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--p-border-blue);
}

.page-products .channel-status.green {
  color: var(--line-green);
  background: rgba(0, 255, 163, 0.1);
  border-color: var(--p-border-green);
}

.page-products .download-channel-tip {
  font-size: 0.875rem;
  color: var(--muted);
  background: rgba(247, 181, 0, 0.08);
  border: 1px solid rgba(247, 181, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.page-products .download-channel-tip p {
  margin: 0;
}

.page-products .feature-section {
  padding-block: 4rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(17, 22, 34, 0.5) 60%);
}

.page-products .section-head {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.page-products .section-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0A0E17;
  background: var(--line-blue);
  border-radius: var(--radius-sm);
  transform: skewX(-6deg);
  box-shadow: 0 0 25px var(--p-glow-blue);
}

.page-products .section-index.gold {
  background: var(--gold);
  box-shadow: 0 0 25px var(--p-glow-gold);
}

.page-products .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.page-products .section-desc {
  font-size: 1rem;
  color: var(--muted);
  margin: 0;
  max-width: 42em;
}

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

.page-products .feature-card {
  position: relative;
  background: var(--bg-carbon);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.page-products .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-products .feature-card-blue {
  border-top: 3px solid var(--line-blue);
}

.page-products .feature-card-blue:hover {
  border-color: var(--p-border-blue);
  box-shadow: 0 8px 35px var(--p-glow-blue);
}

.page-products .feature-card-dark {
  border-top: 3px solid rgba(124, 142, 166, 0.6);
}

.page-products .feature-card-video {
  border-top: 3px solid var(--line-green);
}

.page-products .feature-card-video:hover {
  border-color: var(--p-border-green);
  box-shadow: 0 8px 35px var(--p-glow-green);
}

.page-products .feature-card-gold {
  border-top: 3px solid var(--gold);
}

.page-products .feature-card-gold:hover {
  border-color: var(--p-border-gold);
  box-shadow: 0 8px 35px var(--p-glow-gold);
}

.page-products .feature-card-wide {
  grid-column: 1 / -1;
  border-top: 3px solid var(--line-blue);
}

.page-products .feature-card-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.page-products .feature-card h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

.page-products .feature-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
}

.page-products .feature-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-products .push-sim {
  margin-top: 1.5rem;
  background: rgba(10, 14, 23, 0.7);
  border: 1px solid rgba(0, 216, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

.page-products .push-sim-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.page-products .push-sim-head .push-sim-dot {
  width: 6px;
  height: 6px;
  background: var(--line-green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 255, 163, 0.7);
}

.page-products .push-sim-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-products .push-sim-league {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.page-products .push-sim-event {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
}

.page-products .mini-chart {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 180px;
  padding: 1rem;
  background: rgba(10, 14, 23, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(247, 181, 0, 0.25);
}

.page-products .mini-chart-bar {
  position: relative;
  height: var(--bar-h);
  flex: 1;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border-radius: 4px 4px 0 0;
  min-height: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0A0E17;
  box-shadow: 0 0 15px rgba(247, 181, 0, 0.25);
}

.page-products .feature-wide-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.page-products .feature-wide-list .data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  background: rgba(10, 14, 23, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
}

.page-products .feature-wide-list .data-label {
  font-size: 0.8125rem;
  color: var(--muted);
}

.page-products .feature-wide-list .data-value {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--line-blue);
}

.page-products .feature-wide-list .data-value.green {
  color: var(--line-green);
}

.page-products .gallery-section {
  padding-block: 4rem 2rem;
}

.page-products .gallery-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.page-products .gallery-main,
.page-products .gallery-side {
  background: var(--bg-carbon);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.page-products .gallery-main img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-products .gallery-side img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-products .gallery-main p,
.page-products .gallery-side p {
  font-size: 0.875rem;
  color: var(--muted);
  padding: 1rem 1.25rem;
  margin: 0;
}

.page-products .log-section {
  padding-block: 3rem 4rem;
}

.page-products .log-section .section-head {
  margin-bottom: 3rem;
}

.page-products .log-section .section-index {
  background: var(--line-green);
  box-shadow: none;
}

.page-products .log-timeline {
  position: relative;
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.page-products .log-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--line-green) 0%, var(--line-blue) 40%, rgba(0, 216, 255, 0.2) 100%);
  border-radius: 100px;
}

.page-products .log-item {
  position: relative;
}

.page-products .log-item-marker {
  position: absolute;
  left: -1.75rem;
  top: 1.1rem;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-products .log-item-dot {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--line-blue);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--p-glow-blue);
}

.page-products .log-item-current .log-item-dot {
  background: var(--line-green);
  box-shadow: 0 0 18px rgba(0, 255, 163, 0.7);
  animation: p-pulse-dot 2s ease-in-out infinite;
}

.page-products .log-item-card {
  background: var(--bg-carbon);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-products .log-item-card:hover {
  border-color: rgba(0, 216, 255, 0.25);
  box-shadow: 0 0 24px rgba(0, 216, 255, 0.08);
}

.page-products .log-item-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.page-products .log-item-head .tag {
  font-size: 0.75rem;
  border-radius: 100px;
  padding: 0.2rem 0.8rem;
  font-weight: 600;
}

.page-products .log-item-head .tag.gold {
  background: rgba(247, 181, 0, 0.12);
  color: var(--gold);
  border: 1px solid rgba(247, 181, 0, 0.4);
}

.page-products .log-item-head .tag {
  background: rgba(0, 216, 255, 0.1);
  color: var(--line-blue);
  border: 1px solid rgba(0, 216, 255, 0.3);
}

.page-products .log-item-title {
  font-size: 1.125rem;
  margin: 0;
  color: var(--white);
}

.page-products .log-item-date {
  font-size: 0.8125rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.page-products .log-item-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-products .log-item-card ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-products .log-item-card ul li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--line-green);
  font-size: 0.8125rem;
  top: 0.12rem;
}

.page-products .log-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(0, 216, 255, 0.05);
  border: 1px dashed rgba(0, 216, 255, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--muted);
}

.page-products .log-footer a {
  color: var(--line-blue);
  font-weight: 600;
  text-decoration: none;
}

.page-products .log-footer a:hover {
  text-decoration: underline;
}

.page-products .require-section {
  padding-block: 3rem 2rem;
}

.page-products .require-section .section-index {
  background: var(--gold);
  box-shadow: 0 0 25px var(--p-glow-gold);
  color: #0A0E17;
}

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

.page-products .require-card {
  background: var(--bg-carbon);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.page-products .require-card .require-os {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--line-blue);
  display: inline-block;
  margin-bottom: 1rem;
  transform: skewX(-6deg);
}

.page-products .require-card .require-os.green {
  color: var(--line-green);
}

.page-products .require-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-products .require-card ul li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--white);
}

.page-products .require-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--line-green);
  font-weight: 700;
  font-size: 0.8125rem;
  top: 0.08rem;
}

.page-products .require-card-note {
  border-left: 3px solid var(--gold);
}

.page-products .require-card-note h3 {
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}

.page-products .require-card-note p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.7;
}

.page-products .require-note-muted {
  font-size: 0.8125rem;
  color: var(--gold);
  font-family: var(--font-mono);
}

.page-products .help-section {
  padding-block: 3rem 2rem;
}

.page-products .help-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.page-products .help-item {
  background: var(--bg-carbon);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 0;
}

.page-products .help-item-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-sans);
  position: relative;
  transition: background-color 0.3s ease;
}

.page-products .help-item-btn:hover,
.page-products .help-item-btn:focus-visible {
  background: rgba(0, 216, 255, 0.05);
  outline: none;
}

.page-products .help-item-btn::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--line-blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.page-products .help-item-btn[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--line-green);
}

.page-products .help-item-panel[data-expand-panel] {
  display: block;
}

.page-products .help-item-panel[hidden] {
  display: none;
}

.page-products .help-item-body {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 1.25rem;
  background: transparent;
}

.page-products .help-item-body p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
  line-height: 1.75;
}

.page-products .help-item-body p:last-child {
  margin-bottom: 0;
}

.page-products .help-item-body a {
  color: var(--line-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-products .help-item-body a:hover {
  color: var(--line-blue);
}

.page-products .help-contact-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(120deg, rgba(0, 216, 255, 0.1), rgba(0, 255, 163, 0.06));
  border: 1px solid rgba(0, 216, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.page-products .help-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.page-products .help-contact-banner p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
}

.page-products .help-contact-banner .btn {
  flex-shrink: 0;
  padding: 0.8rem 1.4rem;
  font-size: 0.9375rem;
}

.page-products .product-back-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-carbon);
  color: var(--line-blue);
  border: 1px solid var(--p-border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, background-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
  z-index: 50;
}

.page-products .product-back-top:hover {
  background: var(--line-blue);
  color: #0A0E17;
}

.page-products .product-back-top[data-back-top] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 480px) {
  .page-products .download-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .feature-card-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .page-products .product-hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .page-products .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .page-products .gallery-layout {
    grid-template-columns: 3fr 2fr;
  }

  .page-products .gallery-main img,
  .page-products .gallery-side img {
    min-height: 200px;
    object-fit: cover;
  }

  .page-products .log-timeline {
    padding-left: 3rem;
  }

  .page-products .log-item-marker {
    left: -3rem;
    top: 1.4rem;
    width: 18px;
    height: 18px;
  }

  .page-products .log-timeline::before {
    left: 8px;
  }

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

  .page-products .feature-wide-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-products .shell {
    padding-inline: 2rem;
  }

  .page-products .product-hero-lead {
    font-size: 1.25rem;
  }

  .page-products .feature-grid .feature-card {
    min-height: 200px;
  }

  .page-products .feature-grid .feature-card img {
    max-height: 160px;
    object-fit: cover;
  }

  .page-products .product-download-panel[data-expand-panel] {
    display: block;
  }

  .page-products .help-contact-banner {
    padding: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .page-products .product-hero {
    padding-block: 4rem 5rem;
  }

  .page-products .product-hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
  }

  .page-products .feature-section .feature-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-products .feature-card-blue {
    grid-column: span 3;
  }

  .page-products .feature-card-dark {
    grid-column: span 3;
  }

  .page-products .feature-card-video {
    grid-column: span 3;
  }

  .page-products .feature-card-gold {
    grid-column: span 3;
  }

  .page-products .feature-card-wide {
    grid-column: 1 / -1;
  }

  .page-products .gallery-main,
  .page-products .gallery-side {
    position: relative;
  }

  .page-products .gallery-main img {
    min-height: 420px;
    object-fit: cover;
  }

  .page-products .gallery-side img {
    min-height: 420px;
    object-fit: cover;
  }

  .page-products .gallery-main p,
  .page-products .gallery-side p {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(10, 14, 23, 0.7);
    backdrop-filter: blur(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products *,
  .page-products *::before,
  .page-products *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.page-products {
  --bar-h: 1rem;
}
