.page-products {
  --dl-glow-pink: rgba(255, 46, 136, .35);
  --dl-glow-purple: rgba(162, 0, 255, .35);
  background: linear-gradient(170deg, var(--deep-blue), var(--dark-blue) 60%);
  color: var(--moon-white);
}

.page-products .dl-hero {
  position: relative;
  padding: 40px 0 48px;
}

.page-products .dl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--mist-gray);
  margin-bottom: 30px;
}

.page-products .dl-breadcrumb a {
  color: var(--mist-gray);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-products .dl-breadcrumb a:hover {
  color: var(--neon-pink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page-products .dl-breadcrumb-sep {
  color: var(--neon-pink);
}

.page-products .dl-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-products .dl-eyebrow {
  color: var(--neon-pink);
  margin-bottom: 14px;
}

.page-products .dl-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-products .dl-hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--mist-gray);
  max-width: 600px;
  margin-bottom: 24px;
}

.page-products .dl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.page-products .dl-download-btn,
.page-products .dl-btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--neon-pink), #ff5aa8);
  border: none;
  color: #fff;
  box-shadow: 0 0 20px var(--dl-glow-pink);
  transition: transform var(--transition-fast), box-shadow var(--transition-slow), filter var(--transition-fast);
}

.page-products .dl-download-btn:hover,
.page-products .dl-btn-primary:hover {
  transform: translateY(-2px) skewX(-2deg);
  box-shadow: 0 8px 32px rgba(255, 46, 136, .5);
  filter: brightness(1.08);
}

.page-products .dl-ghost-btn {
  border: 1px solid var(--border-glow);
  color: var(--moon-white);
  transition: background var(--transition-fast), border-color var(--transition-slow);
}

.page-products .dl-ghost-btn:hover {
  background: rgba(162, 0, 255, .15);
  border-color: var(--volt-purple);
}

.page-products .dl-btn-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--moon-white);
  vertical-align: text-bottom;
  margin-left: 6px;
  animation: dl-blink 1.1s step-end infinite;
}

@keyframes dl-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.page-products .dl-hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mist-gray);
  border-top: 1px dashed var(--border-dim);
  padding-top: 18px;
}

.page-products .dl-hero-meta li {
  position: relative;
  padding-left: 16px;
}

.page-products .dl-hero-meta li::before {
  content: "»";
  position: absolute;
  left: 0;
  color: var(--volt-purple);
}

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

.page-products .dl-device {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--panel-blue), var(--ink-blue));
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  padding: 14px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 36px var(--dl-glow-purple);
}

.page-products .dl-device-topbar {
  display: flex;
  gap: 7px;
  padding: 0 2px 12px;
  border-bottom: 1px solid var(--border-dim);
}

.page-products .dl-device-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
}

.page-products .dl-device-dot:nth-child(2) {
  background: var(--amber);
}

.page-products .dl-device-dot:nth-child(3) {
  background: var(--stable-green);
}

.page-products .dl-device-body {
  display: grid;
  gap: 12px;
  padding-top: 14px;
}

.page-products .dl-device-searchbar {
  height: 30px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(141, 153, 174, .25), rgba(141, 153, 174, .1));
  border: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}

.page-products .dl-device-searchbar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 136, .45), transparent);
  animation: dl-screen-sweep 2.8s ease-in-out infinite;
}

.page-products .dl-device-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.page-products .dl-device-thumb {
  height: 68px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 46, 136, .18), rgba(162, 0, 255, .12));
  border: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}

.page-products .dl-device-thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, transparent 0 8px, rgba(255, 255, 255, .05) 8px 9px);
}

@keyframes dl-screen-sweep {
  0% { left: -45%; }
  60%, 100% { left: 120%; }
}

.page-products .dl-hero-beam {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 120%;
  background: linear-gradient(180deg, transparent, var(--neon-pink), transparent);
  transform: rotate(25deg);
  animation: dl-beam-drift 8s ease-in-out infinite;
}

.page-products .dl-beam-1 {
  left: 12%;
}

.page-products .dl-beam-2 {
  right: 8%;
  background: linear-gradient(180deg, transparent, var(--volt-purple), transparent);
  animation-delay: 3s;
}

@keyframes dl-beam-drift {
  0%, 100% { opacity: .25; transform: rotate(25deg) translateX(0); }
  50% { opacity: .75; transform: rotate(25deg) translateX(20px); }
}

.page-products .dl-download-sec,
.page-products .dl-interface-sec,
.page-products .dl-req-sec,
.page-products .dl-log-sec,
.page-products .dl-faq-sec {
  padding: 56px 0;
  position: relative;
}

.page-products .dl-download-sec {
  background: linear-gradient(180deg, transparent, rgba(27, 38, 59, .45), transparent);
}

.page-products .dl-sec-head {
  margin-bottom: 30px;
}

.page-products .dl-download-grid {
  display: grid;
  gap: 26px;
}

.page-products .dl-platform-list {
  display: grid;
  gap: 18px;
}

.page-products .dl-platform-card {
  background: linear-gradient(135deg, var(--ink-blue), var(--panel-blue));
  border-left: 3px solid var(--neon-pink);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  padding: 22px 20px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-slow), transform var(--transition-fast);
}

.page-products .dl-platform-card:hover {
  box-shadow: 0 0 30px var(--dl-glow-pink), 0 14px 40px rgba(0, 0, 0, .35);
  transform: translateX(4px);
}

.page-products .dl-platform-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.page-products .dl-platform-win {
  background: linear-gradient(135deg, var(--neon-pink), var(--volt-purple));
}

.page-products .dl-platform-mac {
  background: linear-gradient(135deg, var(--volt-purple), var(--neon-pink));
}

.page-products .dl-platform-info h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
}

.page-products .dl-platform-meta {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--stable-green);
  margin: 0 0 6px;
}

.page-products .dl-platform-desc {
  font-size: 14px;
  color: var(--mist-gray);
  line-height: 1.75;
  margin: 0;
}

.page-products .dl-preview-panel {
  position: relative;
}

.page-products .dl-preview-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 40px rgba(162, 0, 255, .25);
  object-fit: cover;
  display: block;
}

.page-products .dl-preview-caption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--mist-gray);
  text-align: center;
  letter-spacing: .04em;
}

.page-products .dl-interface-grid {
  display: grid;
  gap: 28px;
}

.page-products .dl-interface-copy {
  background: linear-gradient(145deg, var(--panel-blue), var(--ink-blue));
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 26px 22px;
}

.page-products .dl-interface-sub {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--neon-pink);
  margin: 0 0 8px;
  letter-spacing: .04em;
}

.page-products .dl-interface-sub:not(:first-child) {
  margin-top: 24px;
}

.page-products .dl-interface-copy p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mist-gray);
  margin: 0;
}

.page-products .dl-steps {
  counter-reset: dl-step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.page-products .dl-steps li {
  counter-increment: dl-step;
  position: relative;
  padding: 12px 16px 12px 48px;
  background: rgba(141, 153, 174, .08);
  border: 1px solid var(--border-dim);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  font-size: 14px;
  color: var(--moon-white);
}

.page-products .dl-steps li::before {
  content: counter(dl-step, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--volt-purple);
}

.page-products .dl-interface-tips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.page-products .dl-interface-tips li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--mist-gray);
  line-height: 1.7;
}

.page-products .dl-interface-tips li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--stable-green);
  font-size: 12px;
  top: 4px;
}

.page-products .dl-interface-visual img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 38px var(--dl-glow-purple);
  object-fit: cover;
  display: block;
}

.page-products .dl-req-imgwrap {
  margin-bottom: 22px;
}

.page-products .dl-req-imgwrap img {
  width: 100%;
  height: auto;
  max-width: 300px;
  border-radius: 10px;
  border: 1px solid var(--border-dim);
  object-fit: cover;
  display: block;
}

.page-products .dl-req-grid {
  display: grid;
  gap: 16px;
}

.page-products .dl-req-card {
  background: linear-gradient(145deg, var(--ink-blue), rgba(20, 33, 61, .65));
  border: 1px solid var(--border-dim);
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition: border-color var(--transition-fast), box-shadow var(--transition-slow);
}

.page-products .dl-req-card[open] {
  border-color: var(--border-glow);
  box-shadow: 0 0 24px rgba(255, 46, 136, .12);
}

.page-products .dl-req-card summary {
  cursor: pointer;
  padding: 16px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--moon-white);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.page-products .dl-req-card summary::-webkit-details-marker {
  display: none;
}

.page-products .dl-req-card summary::before {
  content: "▸";
  color: var(--neon-pink);
  transition: transform var(--transition-fast);
}

.page-products .dl-req-card[open] summary::before {
  transform: rotate(90deg);
}

.page-products .dl-req-card ul {
  list-style: none;
  padding: 0 18px 18px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.page-products .dl-req-card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--mist-gray);
}

.page-products .dl-req-card li::before {
  content: "//";
  position: absolute;
  left: 0;
  color: var(--stable-green);
  font-family: var(--font-mono);
  font-size: 12px;
  top: 2px;
}

.page-products .dl-log-layout {
  display: grid;
  gap: 24px;
}

.page-products .dl-log-art img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border-dim);
  object-fit: cover;
  display: block;
}

.page-products .dl-log-timeline {
  position: relative;
  padding-left: 22px;
  border-left: 2px solid var(--border-glow);
}

.page-products .dl-log-entry {
  position: relative;
  margin-bottom: 28px;
}

.page-products .dl-log-entry::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--neon-pink);
  transform: rotate(45deg);
  box-shadow: 0 0 12px var(--neon-pink);
}

.page-products .dl-log-version {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 16px;
  color: var(--neon-pink);
  background: rgba(255, 46, 136, .12);
  padding: 3px 12px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  margin-bottom: 10px;
}

.page-products .dl-log-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stable-green);
  border: 1px solid rgba(0, 255, 159, .45);
  padding: 1px 8px;
  margin-left: 8px;
  vertical-align: middle;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.page-products .dl-log-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.page-products .dl-log-content li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mist-gray);
}

.page-products .dl-log-content li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--volt-purple);
  font-weight: 700;
}

.page-products .dl-faq-grid {
  display: grid;
  gap: 18px;
}

.page-products .dl-faq-card {
  background: linear-gradient(145deg, var(--panel-blue), var(--ink-blue));
  border: 1px solid var(--border-dim);
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition-slow), transform var(--transition-fast);
}

.page-products .dl-faq-card:hover {
  box-shadow: 0 0 26px rgba(162, 0, 255, .2);
  transform: translateY(-3px);
}

.page-products .dl-faq-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  margin: 0;
  letter-spacing: .04em;
}

.page-products .dl-faq-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--mist-gray);
  margin: 0;
  flex-grow: 1;
}

.page-products .dl-faq-card .btn {
  align-self: flex-start;
}

.page-products .dl-trust-banner {
  margin-top: 36px;
  text-align: center;
}

.page-products .dl-trust-banner img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  border: 1px solid var(--border-glow);
  box-shadow: 0 0 36px rgba(255, 46, 136, .14);
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
}

.page-products .dl-trust-banner p {
  font-size: 13px;
  color: var(--mist-gray);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-mono);
  letter-spacing: .03em;
}

.page-products .dl-faq-contact {
  text-align: center;
  font-size: 13px;
  color: var(--mist-gray);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border-dim);
}

@media (min-width: 900px) {
  .page-products .dl-hero {
    padding: 56px 0 72px;
  }

  .page-products .dl-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }

  .page-products .dl-hero-title {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  }

  .page-products .dl-hero-desc {
    font-size: 17px;
  }

  .page-products .dl-hero-visual {
    min-height: 360px;
  }

  .page-products .dl-download-sec,
  .page-products .dl-interface-sec,
  .page-products .dl-req-sec,
  .page-products .dl-log-sec,
  .page-products .dl-faq-sec {
    padding: 84px 0;
  }

  .page-products .dl-download-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .page-products .dl-platform-list {
    gap: 22px;
  }

  .page-products .dl-platform-card {
    grid-template-columns: 44px 1fr;
    gap: 6px 18px;
    padding: 24px 22px;
  }

  .page-products .dl-platform-card .dl-btn-primary {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
  }

  .page-products .dl-interface-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
  }

  .page-products .dl-interface-copy {
    padding: 32px 30px;
  }

  .page-products .dl-interface-visual img {
    border-radius: 16px;
  }

  .page-products .dl-req-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .page-products .dl-req-imgwrap {
    margin-bottom: 28px;
  }

  .page-products .dl-log-layout {
    grid-template-columns: 0.8fr 1.4fr;
    gap: 36px;
    align-items: start;
  }

  .page-products .dl-log-art img {
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(162, 0, 255, .18);
  }

  .page-products .dl-faq-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .page-products .dl-trust-banner p {
    font-size: 14px;
  }
}
