.page-products {
  background: var(--space);
  color: var(--offwhite);
  overflow-x: hidden;
}
.page-products *,
.page-products *::before,
.page-products *::after {
  box-sizing: border-box;
}
.page-products img {
  max-width: 100%;
  height: auto;
}
.page-products .page-products__hero {
  position: relative;
  padding: 3rem 0 4rem;
  background:
    repeating-linear-gradient(-55deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 26px),
    radial-gradient(900px 520px at 82% 18%, rgba(255,122,0,0.12), transparent 62%),
    radial-gradient(800px 400px at 10% 80%, rgba(0,194,168,0.08), transparent 60%),
    var(--space);
  overflow: hidden;
}
.page-products .page-products__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.06) 50%, transparent 62%);
  pointer-events: none;
}
.page-products .hero-layout {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.page-products .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.page-products .phone-frame {
  position: relative;
  width: 260px;
  max-width: 100%;
  border-radius: 42px;
  padding: 12px;
  background: linear-gradient(165deg, rgba(255,255,255,0.14), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.45);
  transition: transform 0.4s ease;
}
.page-products .phone-frame::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 20px;
  border-radius: 11px;
  background: var(--space);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 3;
}
.page-products .phone-frame:hover {
  transform: rotate(-1.2deg) translateY(-6px);
}
.page-products .phone-frame__screen {
  display: block;
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.08);
}
.page-products .hero-visual__badge {
  position: absolute;
  right: -0.5rem;
  bottom: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(10, 30, 47, 0.85);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.page-products .hero-visual__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pg-products-pulse 2.4s ease-out infinite;
}
.page-products .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-products .hero-copy .breadcrumb {
  margin-bottom: 1.4rem;
}
.page-products .hero-copy h1 {
  margin: 0.4rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.page-products .hero-copy__lead {
  margin: 0 0 1.4rem;
  max-width: 34em;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}
.page-products .hero-copy__points {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.page-products .hero-copy__points li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--offwhite);
}
.page-products .hero-copy__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.85rem;
  height: 2px;
  background: var(--orange);
}
.page-products .hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.page-products .btn-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--orange), #ff9a3d);
  color: var(--space);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(255, 122, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-products .btn-download:hover,
.page-products .btn-download:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 122, 0, 0.45);
}
.page-products .btn-download::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg);
  animation: pg-products-sweep 3.6s ease-in-out infinite;
}
.page-products .btn-ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--offwhite);
  background: rgba(255,255,255,0.02);
  font-size: 0.92rem;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.page-products .btn-ghost-link:hover,
.page-products .btn-ghost-link:focus-visible {
  border-color: rgba(255,122,0,0.6);
  background: rgba(255,122,0,0.08);
}
.page-products .hero-copy__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  font-size: 0.82rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}
.page-products .page-products__section {
  position: relative;
  padding: 4rem 0;
}
.page-products .page-products__section--highlights {
  background: var(--space-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-products .section-head {
  margin-bottom: 2.6rem;
  max-width: 42em;
}
.page-products .section-head h2 {
  margin: 0.35rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
}
.page-products .section-head__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}
.page-products .highlights-layout {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.page-products .highlights-accordion {
  display: grid;
  gap: 0.9rem;
}
.page-products .accordion-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.page-products .accordion-card[open] {
  border-color: rgba(255, 122, 0, 0.45);
  background: rgba(10, 30, 47, 0.55);
}
.page-products .accordion-card summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: 18px;
}
.page-products .accordion-card summary::-webkit-details-marker {
  display: none;
}
.page-products .accordion-card summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--orange);
  transition: transform 0.2s ease;
}
.page-products .accordion-card[open] summary::after {
  transform: rotate(45deg);
}
.page-products .accordion-card__index {
  color: var(--teal);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.page-products .accordion-card__body {
  padding: 0 1.2rem 1.2rem 3.4rem;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--gray);
}
.page-products .accordion-card__body p {
  margin: 0;
}
.page-products .highlights-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.page-products .highlights-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem 1.2rem;
  background: linear-gradient(150deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 18px;
}
.page-products .highlights-stats .stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
}
.page-products .highlights-stats .stat-label {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray);
}
.page-products .page-products__section--entry {
  background: var(--deep-teal);
}
.page-products .entry-layout {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.page-products .entry-copy h2 {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.22;
}
.page-products .entry-copy p {
  margin: 0 0 1.2rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.82);
}
.page-products .entry-copy__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.page-products .entry-copy__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--offwhite);
}
.page-products .entry-copy__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}
.page-products .entry-visual {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  aspect-ratio: 4 / 3;
}
.page-products .entry-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .page-products__section--data {
  background: var(--space);
}
.page-products .data-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.page-products .data-visual {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  aspect-ratio: 2 / 1;
}
.page-products .data-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .data-copy p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--gray);
}
.page-products .export-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(20,42,74,0.65), rgba(10,30,47,0.4));
  border: 1px solid var(--line);
}
.page-products .export-steps h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}
.page-products .export-steps__list {
  margin: 0 0 1.2rem;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.7rem;
}
.page-products .export-steps__list li {
  padding-left: 0.3rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,247,250,0.85);
}
.page-products .export-note {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--teal);
}
.page-products .export-visual {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 2;
}
.page-products .export-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-products .data-related {
  margin: 2.4rem 0 0;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  background: rgba(20,42,74,0.4);
  border: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--gray);
}
.page-products .data-related a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,194,168,0.35);
}
.page-products .data-related a:hover {
  color: var(--offwhite);
}
.page-products .page-products__section--download {
  background: var(--space-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-products .download-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  text-align: center;
}
.page-products .download-copy h2 {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.page-products .download-copy p {
  margin: 0 0 1rem;
  font-size: 0.96rem;
  line-height: 1.75;
  color: var(--gray);
}
.page-products .download-copy__flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.page-products .download-copy__flags span {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,122,0,0.08);
  font-size: 0.85rem;
  color: var(--offwhite);
}
.page-products .download-qr__card {
  display: inline-block;
  padding: 1rem;
  border-radius: 24px;
  background: var(--offwhite);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}
.page-products .download-qr__card a {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
.page-products .download-qr__card img {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}
.page-products .download-qr__hint {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  color: var(--space);
}
.page-products .qr-zoom {
  display: none;
  margin-top: 2.6rem;
  padding: 2rem 1.5rem;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  text-align: center;
}
.page-products .qr-zoom:target {
  display: block;
}
.page-products .qr-zoom__inner img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1rem;
  border-radius: 16px;
}
.page-products .qr-zoom__inner p {
  margin: 0 0 1.2rem;
  font-size: 0.92rem;
  color: var(--gray);
}
.page-products .page-products__section--requirements {
  background: var(--space);
}
.page-products .requirements-grid {
  display: grid;
  gap: 1.2rem;
}
.page-products .requirement-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.4rem;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(20,42,74,0.55), rgba(10,30,47,0.3));
  border: 1px solid var(--line);
}
.page-products .requirement-card h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal);
}
.page-products .requirement-card ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.55rem;
}
.page-products .requirement-card li {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--gray);
}
.page-products .requirements-help {
  margin: 2.4rem 0 0;
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  background: rgba(20,42,74,0.4);
  border: 1px solid var(--line);
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--gray);
}
.page-products .requirements-help a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,194,168,0.35);
}
.page-products .requirements-help a:hover {
  color: var(--offwhite);
}
.page-products .page-products__section--cta {
  padding: 2.4rem 0 3.4rem;
  background: var(--space-2);
  border-top: 1px solid var(--line);
  text-align: center;
}
.page-products .page-products__section--cta p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--gray);
}
.page-products .page-products__section--cta a {
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,122,0,0.35);
}
@keyframes pg-products-sweep {
  0%, 50% {
    left: -70%;
  }
  85%, 100% {
    left: 130%;
  }
}
@keyframes pg-products-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0,194,168,0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0,194,168,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0,194,168,0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-products .btn-download::after,
  .page-products .btn-download,
  .page-products .hero-visual__badge-dot,
  .page-products .phone-frame {
    animation: none !important;
    transition: none !important;
  }
}
@media (min-width: 900px) {
  .page-products .page-products__hero {
    padding: 4.5rem 0 6rem;
  }
  .page-products .hero-layout {
    flex-direction: row;
    align-items: center;
    gap: 4.5rem;
  }
  .page-products .hero-visual {
    flex: 1 1 40%;
    justify-content: center;
  }
  .page-products .hero-copy {
    flex: 1 1 60%;
  }
  .page-products .phone-frame {
    width: 320px;
  }
  .page-products .hero-copy h1 {
    font-size: 3.6rem;
  }
  .page-products .highlights-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .page-products .highlights-accordion {
    flex: 1.2;
  }
  .page-products .highlights-stats {
    flex: 0.8;
    grid-template-columns: 1fr;
    align-content: start;
  }
  .page-products .entry-layout {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  .page-products .entry-copy {
    flex: 1;
  }
  .page-products .entry-visual {
    flex: 1;
  }
  .page-products .data-layout {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .page-products .data-visual {
    flex: 1.1;
  }
  .page-products .data-copy {
    flex: 0.9;
  }
  .page-products .export-block {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 2.6rem;
  }
  .page-products .export-steps {
    flex: 1;
  }
  .page-products .export-visual {
    flex: 1.1;
  }
  .page-products .download-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    text-align: left;
  }
  .page-products .download-copy {
    flex: 1;
  }
  .page-products .download-copy__flags {
    justify-content: flex-start;
  }
  .page-products .download-qr {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .page-products .download-qr__card img {
    max-width: 280px;
  }
  .page-products .requirements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
