/* =====================================================================
   WattIQ Producten Detail — premium product page styles
   Scoped to .pdp wrapper to avoid clashing with site tokens
   ===================================================================== */

.pdp {
  --pdp-bg: #1A0F08;
  --pdp-surface: #1A1409;
  --pdp-elevated: #221A0E;
  --pdp-deep: #0E0B07;
  --pdp-orange: #FF6B2B;
  --pdp-orange-dark: #E55A22;
  --pdp-orange-soft: rgba(255, 107, 43, .14);
  --pdp-ink: #F4EFE2;
  --pdp-muted: #9A9182;
  --pdp-dim: #6B6256;
  --pdp-line: rgba(244, 239, 226, .10);
  --pdp-line-strong: rgba(244, 239, 226, .22);
  --pdp-line-orange: rgba(255, 107, 43, .35);
  --pdp-good: #6FCF7B;
  --pdp-bad: #E76F51;
  --pdp-display: 'Archivo', 'IBM Plex Sans', Arial, Helvetica, sans-serif;
  --pdp-mono: 'JetBrains Mono', 'Courier New', monospace;

  background: var(--pdp-bg);
  color: var(--pdp-ink);
  font-family: var(--pdp-display);
}

.pdp section { padding: clamp(72px, 9vw, 140px) 0; border-top: 1px solid var(--pdp-line); }
.pdp section:first-of-type { border-top: none; }

.pdp .wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ============== TYPE ============== */
.pdp .display { font-weight: 700; letter-spacing: -.025em; line-height: .92;
  font-size: clamp(48px, 7vw, 104px); }
.pdp .h1 { font-weight: 700; letter-spacing: -.018em; line-height: 1; font-size: clamp(38px, 5.4vw, 76px); }
.pdp .h2 { font-weight: 700; letter-spacing: -.012em; line-height: 1.05; font-size: clamp(28px, 3.4vw, 48px); }
.pdp .h3 { font-weight: 700; line-height: 1.18; font-size: clamp(20px, 1.8vw, 26px); }
.pdp .lead { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.5; color: var(--pdp-muted); max-width: 64ch; }
.pdp .mono { font-family: var(--pdp-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.pdp .num { font-family: var(--pdp-mono); color: var(--pdp-orange); font-weight: 600; }

/* ============== TICKER (top status bar) ============== */
.pdp .ticker {
  display: flex; align-items: center; gap: 28px;
  padding: 8px 32px; background: var(--pdp-deep);
  border-bottom: 1px solid var(--pdp-line);
  font-family: var(--pdp-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pdp-dim); overflow: hidden;
}
.pdp .ticker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pdp-orange);
  box-shadow: 0 0 12px var(--pdp-orange); animation: pdp-pulse 2s ease-in-out infinite; }
@keyframes pdp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.pdp .ticker span:first-of-type { color: var(--pdp-ink); }

/* ============== PRODUCT PICKER ============== */
.pdp .picker {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--pdp-bg) 88%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--pdp-line);
}
.pdp .picker-inner {
  max-width: 1320px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 24px; overflow-x: auto;
}
.pdp .picker-label {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--pdp-dim);
  flex-shrink: 0; padding-right: 16px; border-right: 1px solid var(--pdp-line);
}
.pdp .picker-list { display: flex; gap: 4px; flex: 1; }
.pdp .picker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500;
  color: var(--pdp-muted); cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: all .15s ease;
}
.pdp .picker-item:hover { color: var(--pdp-ink); background: rgba(244, 239, 226, .04); }
.pdp .picker-item.active {
  color: var(--pdp-ink); background: var(--pdp-elevated);
  border-color: var(--pdp-line-strong);
}
.pdp .picker-item .ix {
  font-family: var(--pdp-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--pdp-orange); width: 16px;
}
.pdp .picker-item.active .ix { color: var(--pdp-orange); }

/* ============== SHARED: kicker / labels ============== */
.pdp .kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--pdp-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--pdp-orange);
  margin-bottom: 28px;
}
.pdp .kicker .bar { width: 28px; height: 1px; background: var(--pdp-orange); }
.pdp .label-mono {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--pdp-dim);
}

/* ============== BUTTONS ============== */
.pdp .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-family: var(--pdp-display); font-weight: 600; font-size: 15px;
  border: 1px solid var(--pdp-ink); background: transparent; color: var(--pdp-ink);
  cursor: pointer; transition: all .18s ease;
}
.pdp .btn:hover { transform: translateY(-1px); }
.pdp .btn .arrow { transition: transform .2s ease; }
.pdp .btn:hover .arrow { transform: translateX(4px); }
.pdp .btn.primary { background: var(--pdp-orange); border-color: var(--pdp-orange); color: #14100A; }
.pdp .btn.primary:hover { background: var(--pdp-orange-dark); border-color: var(--pdp-orange-dark); }
.pdp .btn.ghost { background: transparent; }

/* ============== HERO ============== */
.pdp .hero {
  position: relative;
  padding: clamp(80px, 10vw, 160px) 0 clamp(60px, 7vw, 110px);
  overflow: hidden;
  border-top: none;
}
.pdp .hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 226, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 226, .035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  pointer-events: none;
}
.pdp .hero-glow {
  position: absolute; right: -10%; top: 30%; width: 50%; height: 70%;
  background: radial-gradient(circle, rgba(255, 107, 43, .14) 0%, transparent 60%);
  pointer-events: none;
}
.pdp .hero-inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px; align-items: center;
}
@media (max-width: 1100px) {
  .pdp .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.pdp .hero h1 { margin: 0 0 28px; max-width: 14ch; }
.pdp .hero .lead { margin: 0 0 36px; max-width: 56ch; }
.pdp .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.pdp .hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 56px;
  border-top: 1px solid var(--pdp-line);
}
.pdp .hero-meta > div {
  padding: 24px 24px 0 0; border-right: 1px solid var(--pdp-line);
}
.pdp .hero-meta > div:last-child { border-right: none; padding-right: 0; }
.pdp .hero-meta .v { font-size: 22px; font-weight: 700; color: var(--pdp-ink); margin-bottom: 4px; }
.pdp .hero-meta .k { font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pdp-dim); }

/* ============== HERO VISUAL ============== */
.pdp .hero-stage {
  position: relative;
  aspect-ratio: 4 / 3.2;
  border: 1px solid var(--pdp-line);
  background:
    radial-gradient(ellipse at 50% 70%, rgba(255, 107, 43, .12) 0%, transparent 55%),
    linear-gradient(160deg, #221A0E 0%, #14100A 60%, #0E0B07 100%);
  overflow: hidden;
}
.pdp .hero-stage::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 226, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 226, .04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.pdp .hero-stage img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center center;
  padding: 8% 6% 12%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .5));
}
.pdp .hero-stage .stage-meta {
  position: absolute; left: 24px; top: 24px;
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  color: var(--pdp-dim); text-transform: uppercase;
  display: flex; gap: 18px;
}
.pdp .hero-stage .stage-status {
  position: absolute; right: 24px; top: 24px;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  color: var(--pdp-orange); text-transform: uppercase;
}
.pdp .hero-stage .stage-status::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--pdp-orange);
  box-shadow: 0 0 10px var(--pdp-orange); animation: pdp-pulse 2s ease-in-out infinite;
}
.pdp .hero-stage .stage-corner {
  position: absolute; bottom: 18px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  color: var(--pdp-dim); text-transform: uppercase;
}

/* ============== SECTION HEAD ============== */
.pdp .sec-head {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px; align-items: end;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .pdp .sec-head { grid-template-columns: 1fr; gap: 24px; } }
.pdp .sec-head .h2 { margin: 0; max-width: 22ch; }
.pdp .sec-head .lead { margin: 0; }
.pdp .sec-num {
  font-family: var(--pdp-mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--pdp-dim); margin-bottom: 24px;
}

/* ============== SEC 02 — PROBLEM ============== */
.pdp .problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--pdp-line);
}
.pdp .problem {
  padding: 36px 28px 36px 0;
  border-right: 1px solid var(--pdp-line);
  position: relative;
}
.pdp .problem:last-child { border-right: none; padding-right: 0; }
.pdp .problem .num {
  font-family: var(--pdp-mono); font-size: 11px; letter-spacing: .14em;
  color: var(--pdp-orange); margin-bottom: 18px;
}
.pdp .problem h4 {
  font-size: 22px; font-weight: 700; line-height: 1.2;
  margin: 0 0 14px; color: var(--pdp-ink);
}
.pdp .problem p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--pdp-muted); max-width: 30ch; }
.pdp .problem .icon {
  width: 100%; aspect-ratio: 16/9; margin-bottom: 24px;
  border: 1px solid var(--pdp-line); background: var(--pdp-deep);
  position: relative; overflow: hidden;
}
@media (max-width: 1000px) {
  .pdp .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp .problem:nth-child(2) { border-right: none; }
  .pdp .problem:nth-child(1), .pdp .problem:nth-child(2) { border-bottom: 1px solid var(--pdp-line); padding-bottom: 36px; }
}
@media (max-width: 600px) {
  .pdp .problem-grid { grid-template-columns: 1fr; }
  .pdp .problem { border-right: none; border-bottom: 1px solid var(--pdp-line); padding: 28px 0; }
  .pdp .problem:last-child { border-bottom: none; }
}

/* problem icons (mini diagrams) */
.pdp .icon svg { width: 100%; height: 100%; }

/* ============== SEC 03 — HOW IT WORKS (flow) ============== */
.pdp .flow {
  position: relative;
  background: var(--pdp-deep);
  border: 1px solid var(--pdp-line);
  padding: 56px 48px;
  overflow: hidden;
}
.pdp .flow-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 226, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 226, .035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.pdp .flow-row {
  position: relative;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  align-items: center;
}
@media (max-width: 1000px) { .pdp .flow-row { grid-template-columns: 1fr 1fr; gap: 16px; } }
.pdp .flow-node {
  position: relative; padding: 24px 18px;
  text-align: center;
}
.pdp .flow-node .badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--pdp-elevated); border: 1px solid var(--pdp-line-strong);
  margin: 0 auto 16px;
}
.pdp .flow-node.is-core .badge {
  background: var(--pdp-orange); border-color: var(--pdp-orange);
  box-shadow: 0 0 24px rgba(255, 107, 43, .35);
}
.pdp .flow-node .badge svg { width: 28px; height: 28px; stroke: var(--pdp-ink); }
.pdp .flow-node.is-core .badge svg { stroke: #14100A; }
.pdp .flow-node h5 {
  font-size: 14px; font-weight: 700; margin: 0 0 4px; color: var(--pdp-ink);
}
.pdp .flow-node .meta {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .12em;
  color: var(--pdp-dim); text-transform: uppercase;
}
/* connecting lines + animated pulse */
.pdp .flow-node::after {
  content: ""; position: absolute; right: -2px; top: 56px;
  width: calc(100% - 80px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--pdp-line-strong) 20%, var(--pdp-line-strong) 80%, transparent);
}
.pdp .flow-node:last-child::after { display: none; }
@media (max-width: 1000px) { .pdp .flow-node::after { display: none; } }

.pdp .flow-pulse {
  position: absolute; top: 76px; left: 0; right: 0; height: 4px;
  pointer-events: none;
}
.pdp .flow-pulse::before {
  content: ""; position: absolute; top: -1px; height: 6px; width: 60px;
  background: linear-gradient(90deg, transparent, var(--pdp-orange), transparent);
  filter: blur(2px); opacity: .85;
  animation: pdp-flow 3.6s linear infinite;
}
@keyframes pdp-flow {
  0% { left: 6%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 92%; opacity: 0; }
}
@media (max-width: 1000px) { .pdp .flow-pulse { display: none; } }

.pdp .flow-caption {
  position: relative; margin-top: 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--pdp-line); padding-top: 24px;
}
.pdp .flow-caption div { padding-right: 24px; border-right: 1px solid var(--pdp-line); }
.pdp .flow-caption div:last-child { border-right: none; }
.pdp .flow-caption .k {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  color: var(--pdp-orange); text-transform: uppercase; margin-bottom: 6px;
}
.pdp .flow-caption .v { font-size: 15px; color: var(--pdp-ink); line-height: 1.4; }
@media (max-width: 700px) { .pdp .flow-caption { grid-template-columns: 1fr; gap: 16px; }
  .pdp .flow-caption div { border-right: none; padding-right: 0; }
}

/* ============== SEC 04 — FEATURES ============== */
.pdp .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--pdp-line); border-left: 1px solid var(--pdp-line); }
.pdp .feature {
  padding: 36px 32px;
  border-right: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
  position: relative;
  transition: background .2s ease;
}
.pdp .feature:hover { background: rgba(255, 107, 43, .03); }
.pdp .feature .num {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  color: var(--pdp-orange); margin-bottom: 22px;
}
.pdp .feature .ico {
  width: 44px; height: 44px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--pdp-line-strong);
}
.pdp .feature .ico svg { width: 22px; height: 22px; stroke: var(--pdp-orange); fill: none; stroke-width: 1.6; }
.pdp .feature h4 { font-size: 19px; font-weight: 700; margin: 0 0 10px; color: var(--pdp-ink); }
.pdp .feature p { margin: 0 0 20px; font-size: 14.5px; line-height: 1.55; color: var(--pdp-muted); }
.pdp .feature .gain {
  font-family: var(--pdp-mono); font-size: 11px; letter-spacing: .12em;
  color: var(--pdp-orange); text-transform: uppercase;
  padding-top: 16px; border-top: 1px dashed var(--pdp-line-strong);
}
@media (max-width: 1000px) { .pdp .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pdp .features { grid-template-columns: 1fr; } }

/* ============== SEC 05 — SCENARIO ============== */
.pdp .scenario {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px; align-items: stretch;
}
@media (max-width: 1000px) { .pdp .scenario { grid-template-columns: 1fr; } }

.pdp .scenario-stage {
  position: relative;
  aspect-ratio: 4 / 3.4;
  background: var(--pdp-deep);
  border: 1px solid var(--pdp-line);
  overflow: hidden;
}
.pdp .scenario-stage::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 226, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 226, .04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.pdp .scenario-stage svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.pdp .scenario-meta {
  position: absolute; left: 20px; top: 20px;
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pdp-dim); display: flex; gap: 18px;
}
.pdp .scenario-time {
  position: absolute; right: 20px; top: 20px;
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pdp-orange);
  display: flex; align-items: center; gap: 8px;
}
.pdp .scenario-time::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pdp-orange);
  box-shadow: 0 0 8px var(--pdp-orange); animation: pdp-pulse 1.6s ease-in-out infinite;
}

.pdp .scenario-steps {
  position: relative; counter-reset: scn;
}
.pdp .scenario-step {
  position: relative;
  padding: 24px 0 24px 56px;
  border-bottom: 1px solid var(--pdp-line);
  counter-increment: scn;
}
.pdp .scenario-step:last-child { border-bottom: none; }
.pdp .scenario-step::before {
  content: counter(scn, decimal-leading-zero);
  position: absolute; left: 0; top: 26px;
  font-family: var(--pdp-mono); font-size: 11px; letter-spacing: .12em;
  color: var(--pdp-orange);
  width: 36px; height: 36px; border: 1px solid var(--pdp-line-orange);
  display: flex; align-items: center; justify-content: center;
}
.pdp .scenario-step .t {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pdp-dim); margin-bottom: 8px;
}
.pdp .scenario-step h5 { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: var(--pdp-ink); }
.pdp .scenario-step p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--pdp-muted); }

/* ============== SEC 06 — SPECS ============== */
.pdp .specs-shell {
  border: 1px solid var(--pdp-line); background: var(--pdp-deep);
}
.pdp .specs-head {
  display: grid; grid-template-columns: 1fr auto;
  padding: 24px 28px; border-bottom: 1px solid var(--pdp-line);
  background: var(--pdp-surface);
}
.pdp .specs-head .ttl { font-size: 16px; font-weight: 600; color: var(--pdp-ink); }
.pdp .specs-head .meta {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pdp-dim);
}
.pdp .specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) { .pdp .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pdp .specs-grid { grid-template-columns: 1fr; } }
.pdp .spec {
  padding: 24px 28px;
  border-right: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
}
.pdp .spec:nth-child(4n) { border-right: none; }
.pdp .spec .k {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pdp-dim); margin-bottom: 10px;
}
.pdp .spec .v { font-size: 19px; font-weight: 700; color: var(--pdp-ink); line-height: 1.2; margin-bottom: 4px; }
.pdp .spec .sub { font-size: 12.5px; color: var(--pdp-muted); }

.pdp .models-table {
  width: 100%; border-collapse: collapse;
  margin-top: 32px;
  font-size: 14px;
}
.pdp .models-table th {
  text-align: left; padding: 14px 16px; font-weight: 600;
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pdp-dim);
  border-bottom: 1px solid var(--pdp-line-strong);
  background: var(--pdp-surface);
}
.pdp .models-table td {
  padding: 16px; border-bottom: 1px solid var(--pdp-line);
  color: var(--pdp-ink);
}
.pdp .models-table td.win { font-weight: 700; color: var(--pdp-ink); }
.pdp .models-table tr:hover td { background: rgba(255, 107, 43, .04); }

/* ============== SEC 07 — ECOSYSTEM ============== */
.pdp .eco {
  position: relative;
  background: var(--pdp-deep);
  border: 1px solid var(--pdp-line);
  padding: 48px;
  overflow: hidden;
}
.pdp .eco::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 226, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 226, .035) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.pdp .eco-svg { position: relative; width: 100%; aspect-ratio: 16/9; }

.pdp .eco-legend {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--pdp-line);
}
@media (max-width: 900px) { .pdp .eco-legend { grid-template-columns: repeat(2, 1fr); } }
.pdp .eco-legend .item .k {
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 8px;
}
.pdp .eco-legend .item .v { font-size: 14px; line-height: 1.5; color: var(--pdp-muted); }

/* ============== SEC 08 — RESULTS ============== */
.pdp .results {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--pdp-line);
  border-left: 1px solid var(--pdp-line);
}
@media (max-width: 900px) { .pdp .results { grid-template-columns: 1fr; } }
.pdp .result {
  padding: 40px 32px;
  border-right: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
  position: relative;
}
.pdp .result .num {
  font-family: var(--pdp-mono); font-size: 11px; letter-spacing: .14em;
  color: var(--pdp-dim); margin-bottom: 24px;
}
.pdp .result .big {
  font-size: clamp(48px, 5vw, 72px); font-weight: 700;
  line-height: .95; letter-spacing: -.02em; color: var(--pdp-orange);
  margin-bottom: 16px;
}
.pdp .result h5 {
  font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--pdp-ink);
}
.pdp .result p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--pdp-muted); }

.pdp .result .bar-vis {
  margin-top: 22px; height: 6px;
  background: var(--pdp-elevated); position: relative; overflow: hidden;
}
.pdp .result .bar-vis::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--pdp-orange); width: var(--w, 60%);
  box-shadow: 0 0 10px rgba(255, 107, 43, .5);
}

/* ============== SEC 09 — CTA ============== */
.pdp .cta-final {
  text-align: center;
  padding: clamp(64px, 8vw, 120px) 24px;
  border: 1px solid var(--pdp-line);
  background: linear-gradient(180deg, var(--pdp-surface), var(--pdp-deep));
  position: relative; overflow: hidden;
}
.pdp .cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 107, 43, .14), transparent 70%);
  pointer-events: none;
}
.pdp .cta-final .h2 { margin: 0 auto 18px; max-width: 22ch; }
.pdp .cta-final .lead { margin: 0 auto 36px; max-width: 56ch; }
.pdp .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============== FOOTER STRIP ============== */
.pdp .foot {
  padding: 36px 0;
  border-top: 1px solid var(--pdp-line);
  font-family: var(--pdp-mono); font-size: 10.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pdp-dim);
}
.pdp .foot .row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

/* =====================================================================
   FINAL LAYOUTS — chosen variants
   ===================================================================== */

/* ====== SEC 02 PROBLEM — Diagonal Hero (V6) ====== */
.pdp .prob-head { margin-bottom: 56px; }
.pdp .prob-head .sec-num {
  font-family: var(--pdp-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--pdp-orange);
  margin-bottom: 0;
}
.pdp .prob-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
}
.pdp .prob-statement {
  font-size: clamp(40px, 5.4vw, 88px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--pdp-ink);
}
.pdp .prob-statement span { color: var(--pdp-orange); }
.pdp .prob-lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--pdp-muted);
  margin: 0;
  max-width: 42ch;
  padding-bottom: 14px;
}
.pdp .prob-tabs {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--pdp-line);
  border: 1px solid var(--pdp-line);
}
.pdp .prob-tab {
  background: var(--pdp-bg);
  padding: 36px 28px 32px;
  position: relative;
}
.pdp .prob-tab-bar {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: var(--prog, 24%);
  background: var(--pdp-orange);
}
.pdp .prob-tab-num {
  font-family: var(--pdp-mono);
  font-size: 64px;
  font-weight: 600;
  color: rgba(255, 107, 43, .18);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 14px;
  font-feature-settings: "tnum";
}
.pdp .prob-tab-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
  color: var(--pdp-ink);
}
.pdp .prob-tab-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pdp-muted);
  margin: 0;
}
@media (max-width: 900px) {
  .pdp .prob-hero { grid-template-columns: 1fr; gap: 32px; }
  .pdp .prob-tabs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .pdp .prob-tabs { grid-template-columns: 1fr; }
}

/* ====== SEC 04 FEATURES — Icon Strip Compact (3×2 for 6 items) ====== */
.pdp .features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pdp-line);
  border: 1px solid var(--pdp-line);
}
.pdp .fs-cell {
  background: var(--pdp-bg);
  padding: 32px 28px;
  position: relative;
  transition: background .2s ease;
}
.pdp .fs-cell:hover { background: rgba(255,107,43,.03); }
.pdp .fs-ico {
  width: 52px; height: 52px;
  border: 1px solid var(--pdp-line-orange);
  display: grid; place-items: center;
  margin-bottom: 20px;
  color: var(--pdp-orange);
}
.pdp .fs-ico svg { stroke: currentColor; fill: none; }
.pdp .fs-num {
  font-family: var(--pdp-mono);
  font-size: 11px;
  color: var(--pdp-orange);
  letter-spacing: .18em;
  margin-bottom: 10px;
}
.pdp .fs-title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.25;
  color: var(--pdp-ink);
}
.pdp .fs-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pdp-muted);
  margin: 0 0 20px;
}
.pdp .fs-gain {
  padding-top: 14px;
  border-top: 1px solid var(--pdp-line);
  font-family: var(--pdp-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  color: var(--pdp-orange);
  text-transform: uppercase;
}
.pdp .fs-gain::before { content: "→ "; color: var(--pdp-dim); }
@media (max-width: 1000px) { .pdp .features-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pdp .features-strip { grid-template-columns: 1fr; } }

/* ====== SEC 05 SCENARIO — Three-Phase + Sparklines ====== */
.pdp .scn-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--pdp-line);
  border: 1px solid var(--pdp-line);
}
.pdp .scn-cell {
  background: var(--pdp-bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pdp .scn-tag {
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  color: var(--pdp-orange);
  letter-spacing: .18em;
  margin-bottom: 8px;
}
.pdp .scn-time {
  font-family: var(--pdp-mono);
  font-size: 13px;
  color: var(--pdp-ink);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.pdp .scn-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--pdp-ink);
}
.pdp .scn-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pdp-muted);
  margin: 0 0 24px;
  flex: 1;
}
.pdp .scn-spark {
  width: 100%;
  height: 50px;
  display: block;
}
.pdp .scn-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--pdp-line);
  display: flex;
  justify-content: space-between;
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--pdp-dim);
}
.pdp .scn-foot-r { color: var(--pdp-orange); }
@media (max-width: 900px) {
  .pdp .scn-phases { grid-template-columns: 1fr; }
}

/* ====== SEC 06a VARIANTS — Sub-tab strip + Hero in focus ====== */
/* Compact section — fits above-the-fold next to specs */
.pdp section.variants-sec {
  padding: 48px 0 56px;
}
.pdp .variants-sec .sec-head {
  margin-bottom: 24px;
  gap: 32px;
  align-items: end;
}
.pdp .variants-sec .sec-head .h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  max-width: 18ch;
}
.pdp .variants-sec .sec-head .lead {
  font-size: 13.5px;
  line-height: 1.45;
  max-width: 50ch;
}
.pdp .variants-sec .kicker { margin-bottom: 14px; }

.pdp .variants-strip {
  border-top: 1px solid var(--pdp-line);
  border-bottom: 1px solid var(--pdp-line);
  display: flex;
  gap: 0;
  overflow-x: auto;
  margin-bottom: 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--pdp-line) transparent;
}
.pdp .variants-strip::-webkit-scrollbar { height: 4px; }
.pdp .variants-strip::-webkit-scrollbar-thumb { background: var(--pdp-line); }
.pdp .var-tab {
  flex: 1 0 auto;
  min-width: 110px;
  padding: 11px 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  background: transparent;
  border: none;
  border-right: 1px solid var(--pdp-line);
  cursor: pointer;
  text-align: left;
  font-family: var(--pdp-display);
  color: var(--pdp-ink);
  position: relative;
  transition: background .15s ease;
}
.pdp .var-tab:last-child { border-right: none; }
.pdp .var-tab:hover { background: rgba(255, 107, 43, .04); }
.pdp .var-tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: transparent;
  transition: background .18s ease;
}
.pdp .var-tab.active { background: rgba(255, 107, 43, .06); }
.pdp .var-tab.active::after { background: var(--pdp-orange); }
.pdp .var-tab .var-ix {
  font-family: var(--pdp-mono);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--pdp-dim);
  font-weight: 600;
}
.pdp .var-tab.active .var-ix { color: var(--pdp-orange); }
.pdp .var-tab .var-nm {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--pdp-ink);
  line-height: 1;
}
.pdp .var-tab .var-sub {
  font-family: var(--pdp-mono);
  font-size: 10px;
  color: var(--pdp-muted);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}

/* Variant stage = compact photo left, dense specs right */
.pdp .var-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .pdp .var-stage { grid-template-columns: 1fr; gap: 20px; }
}
.pdp .var-stage-l { display: flex; flex-direction: column; }
.pdp .var-photo {
  position: relative;
  aspect-ratio: 1.7 / 1;
  border: 1px solid var(--pdp-line);
  background:
    radial-gradient(ellipse at 50% 65%, rgba(255, 107, 43, .12) 0%, transparent 55%),
    linear-gradient(160deg, #221A0E 0%, #14100A 60%, #0E0B07 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp .var-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244, 239, 226, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 226, .04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.pdp .var-photo img {
  max-width: 72%;
  max-height: 78%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .55));
  transition: opacity .25s ease;
}
.pdp .var-photo .var-photo-tag {
  position: absolute; left: 14px; top: 12px;
  font-family: var(--pdp-mono); font-size: 9px; letter-spacing: .22em;
  color: var(--pdp-dim); text-transform: uppercase; z-index: 2;
}
.pdp .var-photo .var-photo-status {
  position: absolute; right: 14px; top: 12px;
  font-family: var(--pdp-mono); font-size: 9px; letter-spacing: .22em;
  color: var(--pdp-orange); text-transform: uppercase; z-index: 2;
  display: flex; align-items: center; gap: 7px;
}
.pdp .var-photo .var-photo-status::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--pdp-orange); box-shadow: 0 0 8px var(--pdp-orange);
  animation: pdp-pulse 2s ease-in-out infinite;
}
.pdp .var-code {
  font-family: var(--pdp-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  color: var(--pdp-orange);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 12px;
}
.pdp .var-name {
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pdp-ink);
  letter-spacing: -.005em;
  line-height: 1.3;
  max-width: 36ch;
}

.pdp .var-stage-r {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdp .var-specs {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--pdp-line);
}
.pdp .var-spec {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--pdp-line);
  align-items: baseline;
}
.pdp .var-spec .k {
  font-family: var(--pdp-mono);
  font-size: 9.5px;
  letter-spacing: .22em;
  color: var(--pdp-muted);
  font-weight: 600;
  text-transform: uppercase;
}
.pdp .var-spec .v {
  font-family: var(--pdp-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--pdp-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.008em;
  text-align: right;
}
.pdp .var-spec .v.o { color: var(--pdp-orange); }
.pdp .var-spec .v.txt {
  font-family: var(--pdp-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -.002em;
  color: var(--pdp-ink);
}
.pdp .var-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.pdp .variants-sec .var-cta .btn {
  padding: 11px 20px;
  font-size: 13px;
}

/* ====== SEC 06 SPECS — Card Grid Dense (3 SKUs) ====== */
.pdp .sku-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pdp .sku-card {
  background: var(--pdp-bg);
  border: 1px solid var(--pdp-line);
  position: relative;
  overflow: hidden;
}
.pdp .sku-card.is-pop {
  border-color: var(--pdp-orange);
  box-shadow: 0 0 0 1px var(--pdp-orange) inset, 0 30px 60px -30px rgba(255,107,43,.4);
}
.pdp .sku-pop {
  position: absolute;
  top: 0; right: 0;
  padding: 7px 14px;
  background: var(--pdp-orange);
  color: var(--pdp-bg);
  font-family: var(--pdp-mono);
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 600;
}
.pdp .sku-head {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--pdp-line);
}
.pdp .sku-card.is-pop .sku-ix { color: var(--pdp-orange); }
.pdp .sku-ix {
  font-family: var(--pdp-mono);
  font-size: 11px;
  color: var(--pdp-dim);
  letter-spacing: .18em;
  margin-bottom: 12px;
}
.pdp .sku-name {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.018em;
  line-height: 1.1;
  color: var(--pdp-ink);
}
.pdp .sku-use {
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  color: var(--pdp-muted);
  letter-spacing: .14em;
}
.pdp .sku-rows {
  padding: 18px 28px 24px;
}
.pdp .sku-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(244,239,226,.05);
  font-size: 13px;
  gap: 12px;
}
.pdp .sku-row:last-child { border-bottom: none; }
.pdp .sku-k {
  color: var(--pdp-muted);
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pdp .sku-v {
  color: var(--pdp-ink);
  font-family: var(--pdp-mono);
  font-size: 12.5px;
  text-align: right;
}
.pdp .sku-fineprint {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--pdp-line);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--pdp-dim);
  text-transform: uppercase;
}
@media (max-width: 1000px) { .pdp .sku-grid { grid-template-columns: 1fr; } }

/* ====== SEC 07 ECOSYSTEM — Constellation Map ====== */
.pdp .constellation {
  background: radial-gradient(ellipse at 50% 50%, #1A1409 0%, #0E0B07 75%);
  border: 1px solid var(--pdp-line);
  position: relative;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}
.pdp .constellation .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pdp .constellation .stars span {
  position: absolute;
  background: rgba(244, 239, 226, .35);
  border-radius: 50%;
}
.pdp .cnst-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.pdp .cnst-node {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
}
.pdp .cnst-node .cn-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pdp-paper);
  margin: 0 auto 10px;
  box-shadow: 0 0 14px rgba(244, 239, 226, .35);
}
.pdp .cnst-node .cn-dot--hub {
  width: 56px;
  height: 56px;
  background: var(--pdp-orange);
  box-shadow: 0 0 40px rgba(255, 107, 43, .55);
  margin-bottom: 14px;
}
.pdp .cnst-node .cn-code {
  font-family: var(--pdp-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--pdp-paper);
  font-weight: 600;
}
.pdp .cnst-node .cn-code--hub {
  color: var(--pdp-orange);
  font-size: 13px;
}
.pdp .cnst-node .cn-role {
  font-size: 10.5px;
  color: var(--pdp-dim);
  margin-top: 3px;
  font-family: var(--pdp-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pdp .cnst-foot {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  color: var(--pdp-dim);
  text-transform: uppercase;
}
.pdp .cnst-foot span:last-child { color: var(--pdp-orange); }
.pdp .hub-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 24px;
  background: var(--pdp-line);
  border: 1px solid var(--pdp-line);
}
.pdp .hub-legend-item {
  background: var(--pdp-bg);
  padding: 22px 24px;
}
.pdp .hl-code {
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  color: var(--pdp-orange);
  letter-spacing: .18em;
  margin-bottom: 10px;
  font-weight: 600;
}
.pdp .hl-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--pdp-ink);
  margin-bottom: 6px;
}
.pdp .hl-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--pdp-muted);
}
@media (max-width: 900px) {
  .pdp .hub { aspect-ratio: 4/3; padding: 24px; }
  .pdp .hub-foot { position: static; margin-top: 16px; }
  .pdp .hub-legend { grid-template-columns: 1fr 1fr; }
}

/* ====== SEC 08 RESULTS — Live Dashboard ====== */
.pdp .dash {
  background: var(--pdp-deep);
  border: 1px solid var(--pdp-line);
  overflow: hidden;
}
.pdp .dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--pdp-line);
  background: var(--pdp-bg);
}
.pdp .dash-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--pdp-mono);
  font-size: 11px;
  color: var(--pdp-good);
  letter-spacing: .18em;
}
.pdp .dash-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pdp-good);
  box-shadow: 0 0 12px var(--pdp-good);
  animation: pdp-pulse 2s ease-in-out infinite;
}
.pdp .dash-meta {
  font-family: var(--pdp-mono);
  font-size: 11px;
  color: var(--pdp-dim);
  letter-spacing: .14em;
}
.pdp .dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--pdp-line);
}
.pdp .dm {
  background: var(--pdp-bg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.pdp .dm-k {
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  color: var(--pdp-muted);
  letter-spacing: .18em;
  margin-bottom: 12px;
}
.pdp .dm-v {
  font-family: var(--pdp-mono);
  font-size: 38px;
  color: var(--pdp-orange);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
  font-feature-settings: "tnum";
  letter-spacing: -.02em;
}
.pdp .dm-spark {
  width: 100%;
  height: 26px;
  margin-bottom: 12px;
}
.pdp .dm-trend {
  font-family: var(--pdp-mono);
  font-size: 10px;
  color: var(--pdp-good);
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.pdp .dm-body {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--pdp-muted);
  padding-top: 14px;
  border-top: 1px solid var(--pdp-line);
}
.pdp .dash-ticker {
  padding: 14px 24px;
  background: var(--pdp-deep);
  border-top: 1px solid var(--pdp-line);
  display: flex;
  gap: 32px;
  font-family: var(--pdp-mono);
  font-size: 10.5px;
  color: var(--pdp-dim);
  letter-spacing: .14em;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .pdp .dash-metrics { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pdp .dash-metrics { grid-template-columns: 1fr; }
  .pdp .dash-ticker { flex-wrap: wrap; }
}
