.page-products {
  --pd-accent: #FF7A00;
  --pd-gold: #D4AF37;
  --pd-night: #0B0E14;
  --pd-panel: 21, 27, 35;
  --pd-paper: #F5EBDD;
  --pd-mist: #8A94A6;
  --pd-red: #E5323E;
  --pd-green: #2ECC71;
  --pd-slice-angle: -4deg;
  --pd-node-space: clamp(24px, 4vw, 48px);
  background:
    radial-gradient(ellipse 58% 42% at 88% 12%, rgba(212, 175, 55, 0.07), transparent 62%),
    radial-gradient(ellipse 52% 38% at 6% 72%, rgba(255, 122, 0, 0.05), transparent 72%),
    linear-gradient(160deg, #0B0E14 0%, #0B0E14 70%, #0D111A 100%);
}

.page-products .content-container {
  max-width: var(--content-max, 1280px);
  margin-inline: auto;
  padding-inline: var(--content-gutter, 24px);
}

.page-products .breadcrumb {
  padding-block: 20px 0;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: #8A94A6;
}

.page-products .breadcrumb-link {
  color: #8A94A6;
  text-decoration-color: rgba(255, 122, 0, 0);
  transition: text-decoration-color 0.25s ease, color 0.25s ease;
}

.page-products .breadcrumb-link:hover {
  color: #FF7A00;
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 0, 0.5);
}

.page-products .breadcrumb-sep {
  margin-inline: 8px;
  color: rgba(138, 148, 166, 0.6);
}

.page-products .breadcrumb-current {
  color: #D4AF37;
}

.page-products .section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body, sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF7A00;
  margin-bottom: 12px;
}

.page-products .section-kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #FF7A00;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.page-products .pd-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: 48px 24px;
  position: relative;
}

.page-products .pd-hero-copy {
  position: relative;
  z-index: 2;
  padding: 12px 0;
}

.page-products .pd-hero-title {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(2.4rem, 7vw, 4.1rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  background: linear-gradient(112deg, #F5EBDD 12%, #FFFFFF 38%, #F5EBDD 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 9ch;
}

.page-products .pd-hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(245, 235, 221, 0.82);
  max-width: 40ch;
  margin-bottom: 28px;
}

.page-products .pd-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-products .pd-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 122, 0, 0.14);
  border: 1.5px solid rgba(255, 122, 0, 0.55);
  border-radius: 0;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  color: #FF7A00;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.28s ease;
}

.page-products .pd-platform-pill:hover,
.page-products .pd-platform-pill[data-open="true"] {
  background: rgba(212, 175, 55, 0.14);
  border-color: #D4AF37;
  color: #D4AF37;
  transform: translateY(-2px);
}

.page-products .pd-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.18);
}

.page-products .pd-hero-web-link {
  padding: 12px 20px;
}

.page-products .pd-hero-note {
  margin-top: 18px;
  font-size: 0.8125rem;
  color: #8A94A6;
  letter-spacing: 0.02em;
}

.page-products .pd-hero-visual {
  position: relative;
  margin: 0 auto;
  width: min(100%, 640px);
}

.page-products .pd-img-hero {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  filter: saturate(1.06) contrast(1.08);
}

.page-products .pd-svg-trail {
  position: absolute;
  inset: -5% -4% -5% 4%;
  pointer-events: none;
}

.page-products .pd-svg-trail svg {
  width: 100%;
  height: 100%;
}

.page-products .pd-platforms {
  padding-block: 40px 24px;
  position: relative;
}

.page-products .pd-platforms::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.page-products .pd-platforms-inner {
  position: relative;
}

.page-products .pd-section-title {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  max-width: 18ch;
}

.page-products .pd-platform-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

.page-products .pd-panel {
  background: rgba(var(--pd-panel), 0.95);
  border: 1px solid rgba(245, 235, 221, 0.08);
  padding: 24px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.page-products .pd-panel--primary {
  border-left: 3px solid #FF7A00;
}

.page-products .pd-panel--primary:first-child {
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.page-products .pd-panel--primary:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 18px calc(100% - 18px), 0 100%);
}

.page-products .pd-panel--web {
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  border-top: 3px solid #D4AF37;
}

.page-products .pd-panel:hover {
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateY(-3px);
}

.page-products .pd-panel-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.page-products .pd-panel-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #F5EBDD;
  letter-spacing: -0.01em;
}

.page-products .pd-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid rgba(245, 235, 221, 0.07);
}

.page-products .pd-spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0 8px;
  border-bottom: 1px dashed rgba(245, 235, 221, 0.08);
  gap: 12px;
}

.page-products .pd-spec-name {
  font-size: 0.875rem;
  color: #8A94A6;
}

.page-products .pd-spec-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #F5EBDD;
  text-align: right;
}

.page-products .pd-panel-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(245, 235, 221, 0.74);
  margin-bottom: 20px;
}

.page-products .pd-panel-btn {
  display: inline-block;
  width: auto;
  margin-bottom: 16px;
}

.page-products .pd-qr-box {
  display: block;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(245, 235, 221, 0.1);
  padding: 6px;
  background: #0B0E14;
  margin-top: 4px;
}

.page-products .pd-qr-box svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-products .pd-web-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.page-products .pd-web-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: rgba(245, 235, 221, 0.76);
}

.page-products .pd-web-list li::before {
  content: "›";
  color: #D4AF37;
  font-weight: 700;
  font-size: 1.125rem;
}

.page-products .pd-features {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.045), transparent 42%),
    linear-gradient(15deg, rgba(212, 175, 55, 0.035), transparent 58%);
  padding-block: 64px 56px;
}

.page-products .pd-features-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-products .pd-features-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-products .pd-features-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 235, 221, 0.82);
  max-width: 52ch;
  padding-left: 14px;
  border-left: 3px solid rgba(255, 122, 0, 0.8);
  margin-bottom: 8px;
}

.page-products .pd-img-feature {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  filter: saturate(1.04) contrast(1.05);
}

.page-products .pd-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-products .pd-feature-card {
  background: rgba(var(--pd-panel), 0.9);
  border: 1px solid rgba(245, 235, 221, 0.07);
  border-left: 3px solid rgba(212, 175, 55, 0.85);
  padding: 24px 20px;
  position: relative;
  transition: all 0.3s ease;
}

.page-products .pd-feature-card:nth-child(2n) {
  border-left-color: #FF7A00;
}

.page-products .pd-feature-card:hover {
  border-left-width: 5px;
  background: rgba(var(--pd-panel), 1);
  transform: translateX(-4px);
  box-shadow: 10px 12px 0 -8px rgba(255, 122, 0, 0.12);
}

.page-products .pd-feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  display: block;
}

.page-products .pd-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #F5EBDD;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.page-products .pd-feature-text {
  font-size: 0.9375rem;
  line-height: 1.68;
  color: rgba(245, 235, 221, 0.74);
}

.page-products .pd-services {
  padding-block: 48px 12px;
}

.page-products .pd-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-products .pd-services-copy {
  padding: 24px 0;
}

.page-products .pd-services-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 235, 221, 0.82);
  margin-bottom: 28px;
  max-width: 48ch;
}

.page-products .pd-highlight-num {
  color: #D4AF37;
  font-size: 1.2em;
  font-weight: 700;
}

.page-products .pd-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(245, 235, 221, 0.09);
}

.page-products .pd-service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 4px;
  border-bottom: 1px dashed rgba(245, 235, 221, 0.14);
  position: relative;
  transition: background 0.25s ease;
}

.page-products .pd-service-list li:hover {
  background: rgba(255, 122, 0, 0.045);
}

.page-products .pd-service-name {
  font-size: 1rem;
  font-weight: 600;
  color: #F5EBDD;
}

.page-products .pd-service-name::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: #FF7A00;
  transform: rotate(45deg);
}

.page-products .pd-service-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8A94A6;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 235, 221, 0.1);
  padding: 4px 10px;
  white-space: nowrap;
}

.page-products .pd-img-service {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  clip-path: polygon(22px 0, 100% 0, 100% 100%, 0 100%, 0 22px);
  filter: saturate(1.02);
}

.page-products .pd-versions {
  padding-block: 56px 20px;
  position: relative;
}

.page-products .pd-versions::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.page-products .pd-version-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}

.page-products .pd-version-timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid rgba(255, 122, 0, 0.3);
}

.page-products .pd-version-item {
  position: relative;
  padding-block: 22px 22px;
  border-bottom: 1px dashed rgba(245, 235, 221, 0.12);
}

.page-products .pd-version-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 28px;
  width: 10px;
  height: 10px;
  background: #0B0E14;
  border: 2px solid #D4AF37;
  transform: rotate(45deg);
}

.page-products .pd-version-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.page-products .pd-version-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #F5EBDD;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-products .pd-version-tag {
  font-size: 0.7rem;
  padding: 2px 8px;
  vertical-align: middle;
}

.page-products .pd-version-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(245, 235, 221, 0.72);
  max-width: 56ch;
}

.page-products .pd-version-visual {
  align-self: start;
}

.page-products .pd-img-version {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
  filter: saturate(1.02);
}

.page-products .pd-help {
  padding-block: 48px 8px;
}

.page-products .pd-help-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-products .pd-help-copy {
  position: relative;
}

.page-products .pd-img-help {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-block: 24px 8px;
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  filter: saturate(1.02);
}

.page-products .pd-help-note {
  border-left: 3px solid #D4AF37;
  padding: 14px 16px;
  margin-top: 16px;
  background: rgba(212, 175, 55, 0.04);
}

.page-products .pd-help-note-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(245, 235, 221, 0.75);
}

.page-products .pd-faq-list {
  padding-block: 16px 0;
}

.page-products .pd-faq-item {
  background: rgba(var(--pd-panel), 1);
  border: 1px solid rgba(245, 235, 221, 0.08);
  margin-bottom: 14px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: border-color 0.25s ease;
}

.page-products .pd-faq-item:hover {
  border-color: rgba(255, 122, 0, 0.35);
}

.page-products .pd-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 22px;
  font-family: var(--font-body, sans-serif);
  font-size: 0.9688rem;
  font-weight: 700;
  color: #F5EBDD;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.page-products .pd-faq-question::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  color: #FF7A00;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.page-products .pd-faq-question[aria-expanded="true"]::after {
  content: "–";
  color: #D4AF37;
  transform: rotate(180deg);
}

.page-products .pd-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  padding-inline: 22px;
  color: rgba(245, 235, 221, 0.74);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-products .pd-faq-answer > p {
  overflow: hidden;
  margin: 0;
  min-height: 0;
}

.page-products .pd-faq-answer[data-open="true"] {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}

.page-products .pd-bottom-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-block: 40px 56px;
  align-items: center;
}

.page-products .pd-bottom-link {
  font-size: 0.9063rem;
}

@media (min-width: 720px) {
  .page-products .pd-hero-grid {
    padding-block: 64px 36px;
  }

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

  .page-products .pd-panel--web {
    grid-column: 1 / -1;
  }

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

  .page-products .pd-img-feature {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
  }

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

  .page-products .pd-services-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
  }

  .page-products .pd-help-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
  }

  .page-products .pd-version-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .page-products .pd-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding-block: 80px 48px;
  }

  .page-products .pd-hero-visual {
    margin: 0;
  }

  .page-products .pd-platforms {
    padding-block: 48px 32px;
  }

  .page-products .pd-platform-panels {
    grid-template-columns: 1.05fr 0.95fr 1fr;
  }

  .page-products .pd-panel--web {
    grid-column: auto;
  }

  .page-products .pd-features-inner {
    gap: 36px;
  }

  .page-products .pd-img-feature {
    grid-row: 1;
    grid-column: 2 / 4;
    aspect-ratio: 3 / 2;
  }

  .page-products .pd-features-head {
    grid-column: 1 / 2;
  }

  .page-products .pd-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-column: 1 / -1;
    display: grid;
    grid-template-areas:
      "a b"
      "c d";
  }

  .page-products .pd-feature-card:nth-child(1) { grid-area: a; }
  .page-products .pd-feature-card:nth-child(2) { grid-area: b; }
  .page-products .pd-feature-card:nth-child(3) { grid-area: c; }
  .page-products .pd-feature-card:nth-child(4) { grid-area: d; }

  .page-products .pd-version-timeline {
    padding-left: 44px;
  }

  .page-products .pd-version-item::before {
    left: -49px;
  }

  .page-products .pd-bottom-cta {
    padding-top: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products * {
    transition: none !important;
    animation: none !important;
  }
}
