/* ============================================================
   DROPZONE PITS — Design System v2
   Black | Royal Blue | White · dark + light themes
   ============================================================ */

/* ── Theme tokens ── */
:root {
  --accent: #1a47c8;
  --accent-2: #1d4ed8;
  --accent-glow: rgba(26, 71, 200, 0.25);
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-card: 0 16px 44px rgba(14, 17, 22, 0.07);
  --wrap: 1280px;
}
html[data-theme="light"] {
  --bg: #ffffff;
  --bg-2: #f4f5f7;
  --card: #ffffff;
  --line: #e6e8ec;
  --line-2: #ebedf1;
  --ink: #0e1116;
  --body: #5b626c;
  --dim: #8a909a;
  --accent-ink: #1a47c8;
  --nav-bg: rgba(255, 255, 255, 0.88);
  --hero-grad: linear-gradient(90deg, rgba(4,6,10,0.82) 0%, rgba(4,6,10,0.45) 55%, rgba(4,6,10,0.12) 100%);
  --cta-grad: linear-gradient(135deg, #1a47c8 0%, #143a9e 55%, #0e2a66 100%);
}
html[data-theme="dark"] {
  --bg: #0a0c11;
  --bg-2: #0f1219;
  --card: #12151d;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.06);
  --ink: #f4f6fa;
  --body: #a9b1bd;
  --dim: #6d7480;
  --accent-ink: #6b93ff;
  --nav-bg: rgba(10, 12, 17, 0.86);
  --hero-grad: linear-gradient(90deg, rgba(4,6,10,0.88) 0%, rgba(4,6,10,0.55) 55%, rgba(4,6,10,0.25) 100%);
  --shadow-card: 0 16px 44px rgba(0, 0, 0, 0.45);
  --cta-grad: linear-gradient(135deg, #16255c 0%, #0e1730 55%, #0b0e14 100%);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--body);
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s ease, color 0.25s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.dz-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.dz-section { padding: 84px 0; }
.dz-alt { background: var(--bg-2); }

/* ── Type ── */
.dz-display, .dz-h1, .dz-h2 {
  font-family: 'Bebas Neue', 'Impact', Arial, sans-serif;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: 0.5px;
}
.dz-h1 { font-size: clamp(3.2rem, 6vw, 5.4rem); margin: 0 0 16px; }
.dz-h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin: 0 0 12px; line-height: 0.95; }
.dz-blue { color: var(--accent-ink); }
.dz-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 14px;
}
.dz-lead { color: var(--body); line-height: 1.75; font-size: 1.04rem; }
.dz-sec-head { max-width: 680px; margin-bottom: 42px; }

/* ── Buttons ── */
.dz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.08rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 17px 30px; border-radius: 9px;
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none;
  transition: transform 0.13s, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.dz-btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px var(--accent-glow); }
.dz-btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); }
.dz-btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.dz-btn-ghost:hover { border-color: var(--dim); transform: translateY(-2px); }
.dz-btn-inverse { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.dz-btn-inverse:hover { border-color: #fff; transform: translateY(-2px); }

/* ── Nav ── */
.dz-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: background 0.25s ease;
}
.dz-nav-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--wrap); margin: 0 auto; padding: 0 28px;
}
.dz-nav-logo img { height: 38px; width: auto; transition: filter 0.25s; }
html[data-theme="light"] .dz-nav-logo img { filter: invert(1) brightness(0.15); }
.dz-nav-links { display: flex; align-items: center; gap: 30px; }
.dz-nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 1.02rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--body); transition: color 0.15s;
}
.dz-nav-links a:hover, .dz-nav-links a.active { color: var(--ink); }
.dz-nav-links a.dz-nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 18px; background: var(--accent); color: #fff;
  border-radius: 7px; font-weight: 700;
}
.dz-nav-links a.dz-nav-cta:hover { background: var(--accent-2); color: #fff; }

/* theme toggle */
.dz-theme-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  padding: 0;
}
.dz-theme-btn:hover { border-color: var(--dim); transform: rotate(15deg); }
.dz-theme-btn svg { width: 17px; height: 17px; }
html[data-theme="light"] .dz-ic-sun { display: none; }
html[data-theme="dark"] .dz-ic-moon { display: none; }

.dz-nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.dz-nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); transition: all 0.2s; }

/* ── Trust strip — slim, no boxes ── */
.dz-value {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 28px;
  border-top: 2px solid var(--accent); background: var(--card);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 20px 26px 18px;
}
.dz-value > div { padding: 0 0 0 18px; border-left: 1px solid var(--line-2); }
.dz-value > div:first-child { border-left: none; padding-left: 0; }
.dz-value b {
  display: block; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem; line-height: 1.1; color: var(--ink); letter-spacing: 0.5px; font-weight: 400;
}
.dz-value b.ac { color: var(--accent-ink); }
.dz-value span { display: block; color: var(--dim); font-size: 0.82rem; margin-top: 3px; line-height: 1.45; }

/* ── Feature cards ── */
.dz-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dz-feat {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 26px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.dz-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); border-color: var(--dim); }
.dz-feat-ic {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.dz-feat-ic svg { stroke: var(--accent-ink); }
.dz-feat-t {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.18rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.dz-feat-x { color: var(--body); font-size: 0.93rem; line-height: 1.6; }

/* ── Comparison table ── */
.dz-cmp {
  width: 100%; border-collapse: collapse; max-width: 820px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; table-layout: fixed;
}
.dz-cmp th, .dz-cmp td {
  padding: 15px 16px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.18rem; letter-spacing: 0.02em; text-transform: uppercase;
  text-align: center; border-bottom: 1px solid var(--line-2); color: var(--ink); font-weight: 400;
}
.dz-cmp th { font-size: 1.3rem; }
.dz-cmp th:nth-child(2), .dz-cmp td:nth-child(2) { background: var(--accent); color: #fff; }
.dz-cmp td:first-child, .dz-cmp th:first-child {
  text-align: left; color: var(--dim); font-size: 0.82rem;
  font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.06em;
}
.dz-cmp td:nth-child(3) { color: var(--dim); }
.dz-cmp tr:last-child td { border-bottom: none; }

/* ── VS board — Dropzone vs typical competitor ── */
.vs { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: minmax(130px, 0.85fr) 1.25fr 1fr; align-items: stretch; }
.vs-corner { border-bottom: 1px solid var(--line-2); }
.vs-head-dz {
  background: linear-gradient(160deg, var(--accent) 0%, #143a9e 100%);
  border-radius: 16px 16px 0 0; padding: 20px 22px 16px;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.vs-head-dz img { height: 30px; width: auto; }
.vs-head-them {
  display: flex; align-items: flex-end; justify-content: center; padding: 0 18px 14px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--body);
  border-bottom: 1px solid var(--line-2);
}
.vs-lab {
  display: flex; align-items: center; padding: 20px 18px 20px 0;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.86rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--body);
  border-bottom: 1px solid var(--line-2);
}
.vs-dz {
  background: linear-gradient(160deg, var(--accent) 0%, #143a9e 140%);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 22px; position: relative; z-index: 2;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: #fff; text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.vs-dz svg { flex: 0 0 auto; width: 19px; height: 19px; background: rgba(255,255,255,0.18); border-radius: 50%; padding: 3px; }
.vs-dz.last { border-radius: 0 0 16px 16px; box-shadow: 0 26px 54px var(--accent-glow); }
.vs-them {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 18px; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--body); text-align: center;
  border-bottom: 1px solid var(--line-2);
}
.vs-them::before { content: "✕"; font-family: 'Inter', sans-serif; font-size: 0.72rem; color: var(--body); border: 1px solid var(--dim); border-radius: 50%; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.vs-note {
  grid-column: 1 / -1; text-align: center; margin-top: 22px;
  font-size: 0.82rem; color: var(--dim);
}
@media (max-width: 700px) {
  .vs { grid-template-columns: 1fr 1fr; gap: 8px 10px; }
  .vs-corner { display: none; border: none; }
  .vs-head-dz { border-radius: 12px; padding: 14px; }
  .vs-head-dz img { height: 22px; }
  .vs-head-them { border: none; align-items: center; padding: 0; }
  .vs-lab { grid-column: 1 / -1; border: none; padding: 14px 0 0; justify-content: center; }
  .vs-dz { border-radius: 12px; border-top: none; font-size: 1.2rem; padding: 15px 12px; box-shadow: 0 10px 26px var(--accent-glow); }
  .vs-dz.last { border-radius: 12px; box-shadow: 0 10px 26px var(--accent-glow); }
  .vs-dz svg { width: 16px; height: 16px; }
  .vs-them { border: 1px solid var(--line-2); border-radius: 12px; font-size: 1rem; padding: 15px 12px; background: var(--bg-2); }
}

/* ── Map band (photo with text over it) ── */
.map-band { position: relative; overflow: hidden; background: #05070b; }
.map-band img { width: 100%; height: clamp(340px, 28vw, 440px); object-fit: cover; object-position: right center; display: block; will-change: transform; }
.map-ov { position: absolute; inset: 0; display: flex; align-items: center;
  background: linear-gradient(90deg, rgba(5,7,11,0.82) 0%, rgba(5,7,11,0.35) 46%, rgba(5,7,11,0) 72%); }
.map-ov .dz-tag { color: #7fa0ee; }
.map-ov .dz-h2 { color: #fff; }
.map-ov p { color: #c8cdd6; line-height: 1.75; font-size: 1.05rem; max-width: 46ch; margin-top: 4px; }
.map-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.map-chips span {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: #e6e9ef;
  border: 1px solid rgba(255,255,255,0.22); border-radius: 999px; padding: 8px 16px;
  backdrop-filter: blur(4px); background: rgba(11,14,20,0.35);
}
@media (max-width: 700px) {
  .map-band img { height: 480px; object-position: 62% center; }
  .map-ov { background: linear-gradient(180deg, rgba(5,7,11,0.9) 0%, rgba(5,7,11,0.45) 60%, rgba(5,7,11,0.2) 100%); align-items: flex-start; padding-top: 44px; }
}

/* ── Spec table ── */
.dz-spec {
  width: 100%; border-collapse: collapse; max-width: 780px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
}
.dz-spec tr { border-bottom: 1px solid var(--line-2); }
.dz-spec tr:last-child { border-bottom: none; }
.dz-spec td { padding: 16px 24px; font-size: 0.98rem; }
.dz-spec td:first-child {
  color: var(--dim); text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 0.78rem; font-weight: 600; width: 42%;
}
.dz-spec td:last-child {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 1.15rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.02em;
}

/* ── Stats band (always dark, both themes) ── */
.dz-proof { background: #0b0e14; color: #fff; }
.dz-stats { display: flex; justify-content: center; gap: 12px 70px; text-align: center; flex-wrap: wrap; }
.dz-stat { display: flex; align-items: baseline; gap: 12px; }
.dz-stat .n { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: #fff; line-height: 1; }
.dz-stat .l {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #7fa0ee; font-size: 0.92rem;
}

/* ── CTA bubble — the closer ── */
.dz-cta { background: #05070b; color: #fff; text-align: center; padding: 28px 20px 96px; }
.dz-cta .dz-wrap {
  position: relative; overflow: hidden; isolation: isolate;
  max-width: 1180px; border-radius: 34px;
  background: var(--cta-grad);
  padding: clamp(64px, 9vw, 116px) 32px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.dz-cta .dz-wrap::before {
  content: ""; position: absolute; z-index: -1;
  width: 560px; height: 560px; left: -180px; top: -260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 147, 255, 0.35) 0%, transparent 65%);
}
.dz-cta .dz-h2 { color: #fff; font-size: clamp(2.5rem, 5vw, 4.2rem); }
.dz-cta p { color: #ccd6f2; max-width: 500px; margin: 14px auto 32px; line-height: 1.7; }
.dz-cta .dz-btn-primary {
  background: #fff; color: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  padding: 18px 38px; font-size: 1.14rem;
}
.dz-cta .dz-btn-primary:hover { background: #eef2ff; transform: translateY(-2px) scale(1.02); }
@media (max-width: 600px) {
  .dz-cta { padding: 16px 14px 64px; }
  .dz-cta .dz-wrap { border-radius: 24px; padding: 54px 22px; }
}

/* ── Footer ── */
.dz-footer { background: var(--bg-2); border-top: 1px solid var(--line-2); padding: 44px 0 26px; }
.dz-footer-main { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 28px; gap: 14px; }
.dz-footer-main img { height: 44px; width: auto; }
html[data-theme="light"] .dz-footer-main img { filter: invert(1) brightness(0.15); }
.dz-footer-tag {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-ink);
}
.dz-footer-addr { color: var(--dim); font-size: 0.85rem; line-height: 1.8; }
.dz-footer-addr a:hover { color: var(--ink); }
.dz-footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 22px; margin-top: 4px; }
.dz-footer-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--dim); transition: color 0.15s;
}
.dz-footer-links a:hover { color: var(--accent-ink); }
.dz-footer-bottom {
  border-top: 1px solid var(--line-2); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.dz-footer-bottom p { font-size: 0.75rem; color: var(--dim); }

/* ── Reveal on scroll ── */
.dz-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.dz-reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .dz-reveal { opacity: 1; transform: none; transition: none; } }

/* ══════════════════════════════════════════
   BUILDER (embedded configurator)
   ══════════════════════════════════════════ */
.dzb { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 30px; align-items: stretch; }
.dzb > * { min-width: 0; }
.dzb-stage {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--card);
  display: flex; align-items: center; justify-content: center; min-height: 480px;
}
.dzb-stage canvas { width: 100%; max-width: 100%; height: 100%; object-fit: contain; display: block; }
.dzb-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: 'Bebas Neue', Arial, sans-serif; font-size: 0.74rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink);
  background: var(--nav-bg); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 5px;
}
.dzb-loading {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', Arial, sans-serif; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim); background: var(--card);
}
.dzb-panel {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 20px;
  background: var(--card); box-shadow: var(--shadow-card);
}
.dzb-kicker {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-ink);
}
.dzb-name {
  font-family: 'Bebas Neue', Impact, sans-serif; font-size: 2.6rem;
  line-height: 0.92; text-transform: uppercase; color: var(--ink);
}
.dzb-price { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--ink); line-height: 1; }
.dzb-price small {
  display: block; font-family: 'Inter', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim);
  font-weight: 600; margin-bottom: 4px;
}
.dzb-spec {
  color: var(--body); font-size: 0.86rem; line-height: 1.6;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); padding: 13px 0;
}
.dzb-seg-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-ink);
  margin-bottom: 8px; display: block;
}
.dzb-seg { display: flex; gap: 5px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 13px; padding: 5px; }
.dzb-seg button {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  cursor: pointer; font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--body); background: transparent; border: 0; padding: 13px; border-radius: 9px;
  transition: 0.18s;
}
.dzb-seg button:hover { color: var(--ink); }
.dzb-seg button.on {
  color: #fff; background: var(--accent);
  box-shadow: 0 6px 18px var(--accent-glow);
}
.dzb-seg .dot { width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.65); box-shadow: 0 0 0 1px rgba(0,0,0,0.15); }
.dzb-seg button:not(.on) .dot { border-color: var(--line); }
.dzb-lab { display: flex; justify-content: space-between; align-items: baseline; }
.dzb-lab span { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); font-weight: 600; }
.dzb-lab b {
  font-family: 'Bebas Neue', Arial, sans-serif; font-size: 1.15rem;
  letter-spacing: 0.04em; color: var(--ink); font-weight: 400;
}
.dzb-sw { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.dzb-sw button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--card); box-shadow: 0 0 0 1.5px var(--line);
  cursor: pointer; padding: 0;
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.15s;
}
.dzb-sw button:hover { transform: scale(1.16); }
.dzb-sw button:active { transform: scale(0.85); }
.dzb-sw button.on { box-shadow: 0 0 0 2.5px var(--accent-ink); transform: scale(1.12); }
.dzb-stage canvas { transition: filter 0.16s ease; }
.dzb-stage canvas.dzb-flash { filter: brightness(1.18) saturate(1.05); }
.dzb-ctas { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.dzb-note { font-size: 0.76rem; color: var(--dim); text-align: center; line-height: 1.5; }

@media (max-width: 1024px) {
  .dzb { grid-template-columns: 1fr; }
  .dzb-stage { min-height: 320px; }
}

.dz-section.dz-proof { padding: 44px 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .dz-nav-links { display: none; }
  .dz-nav-toggle { display: flex; }
  .dz-nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 24px 28px; gap: 20px; align-items: flex-start; z-index: 999;
  }
  .dz-feat-grid { grid-template-columns: 1fr; }
  .dz-section { padding: 52px 0; }
  .dzb-sw button { width: 44px; height: 44px; }
}

/* builder: preview stays pinned while picking colors */
@media (max-width: 1024px) {
  .dzb { gap: 14px; }
  .dzb-stage {
    position: sticky; top: 72px; z-index: 40;
    min-height: 0; height: 32vh; min-height: 220px; max-height: 340px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  }
  /* mobile order: name/price → colors → CTA, spec sentence last */
  .dzb-panel > div:nth-of-type(1) { order: 1; }   /* kicker + name */
  .dzb-price { order: 2; }
  .dzb-seg-wrap { order: 3; }
  .dzb-panel > div:nth-of-type(5) { order: 4; }   /* swatch block */
  .dzb-ctas { order: 5; }
  .dzb-spec { order: 6; border-bottom: none; }
  .dzb-ctas { margin-top: 4px; }
  .dzb-name { font-size: 2.1rem; }
  .dzb-price { font-size: 1.7rem; }
}

@media (max-width: 600px) {
  .dz-wrap { padding: 0 20px; }
  .dz-h1 { font-size: clamp(2.5rem, 10.5vw, 3.2rem); }
  .dz-h2 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .dz-section { padding: 44px 0; }
  .dz-value { grid-template-columns: 1fr 1fr; gap: 16px 18px; padding: 16px 18px 14px; }
  .dz-value > div { border-left: none; padding-left: 0; }
  .dz-value b { font-size: 1.35rem; }
  .dz-value span { font-size: 0.78rem; }
  .dz-stats { gap: 10px 34px; }
  .dz-stat .n { font-size: 1.9rem; }
  .dz-stat .l { font-size: 0.8rem; }
  .dz-cta { padding: 56px 0; }
  .dzb-panel { padding: 20px 16px; gap: 16px; }
  .dzb-sw { gap: 8px; }
  .dzb-sw button { width: 40px; height: 40px; }
}
