/*
  Studio Practice — Audit Shared Component Styles
  ─────────────────────────────────────────────────
  Linked by every audit page and both templates.
  Covers: watermark, strength icons, partner card,
  contact icons, TL;DR overlay.

  Color resolution order:
    --gold → --accent → fallback
  Each audit defines one or both in its own :root.
*/

/* ── WATERMARK ─────────────────────────────────────── */
.watermark-dark,
.watermark-light {
  background-repeat: repeat;
  background-size: 340px 200px;
  pointer-events: none;
}
.watermark-dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='200'%3E%3Ctext x='170' y='100' font-family='sans-serif' font-size='13' font-weight='600' letter-spacing='3' fill='%230D1F35' fill-opacity='0.07' text-anchor='middle' dominant-baseline='middle' transform='rotate(-35 170 100)'%3Estudiopractice.io%3C/text%3E%3C/svg%3E");
}
.watermark-light {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='200'%3E%3Ctext x='170' y='100' font-family='sans-serif' font-size='13' font-weight='600' letter-spacing='3' fill='%23ffffff' fill-opacity='0.1' text-anchor='middle' dominant-baseline='middle' transform='rotate(-35 170 100)'%3Estudiopractice.io%3C/text%3E%3C/svg%3E");
}

/* ── STRENGTH / WORKING ICON BOXES ────────────────── */
.working-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(212,160,23,0.35);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.working-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold, var(--accent, #D4A017));
  stroke-width: 1.75;
}

/* ── PARTNER CARD ──────────────────────────────────── */
.partner-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.partner-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--gold, var(--accent, #D4A017));
  stroke-width: 1.75;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── TL;DR OVERLAY ─────────────────────────────────── */
.tldr-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.25s ease;
}
.tldr-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.tldr-card {
  background: white;
  max-width: 540px;
  width: 100%;
  padding: 48px;
}
.tldr-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tldr-trigger {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: background 0.15s, opacity 0.2s;
}
.tldr-trigger.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── SP SPINNER (dark context) ─────────────────────── */
.sp-track { opacity: 0.12; }
.sp-sweep {
  stroke-dasharray: 46 138;
  stroke-dashoffset: 0;
  animation: sp-spin 1.4s linear infinite;
}
@keyframes sp-spin { to { stroke-dashoffset: -184; } }

/* ═══════════════════════════════════════════════════════════════
   AUDIT DECK — PRESENTATION MODE
   Triggered by clicking "Present" in the sticky nav.
   All colors use the audit's own --gold/--accent custom props
   so the deck adapts to each client's palette.
   ═══════════════════════════════════════════════════════════════ */

/* ── OVERLAY ────────────────────────────────────────────────── */
#audit-deck {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dk-bg, #0D1F35);
  display: flex;
  flex-direction: column;
  outline: none;
  opacity: 0;
  animation: dk-overlay-in 0.28s ease forwards;
}
#audit-deck.dk-exiting {
  animation: dk-overlay-out 0.28s ease forwards;
}
@keyframes dk-overlay-in  { to   { opacity: 1; } }
@keyframes dk-overlay-out { from { opacity: 1; } to { opacity: 0; } }

/* ── TOP BAR ────────────────────────────────────────────────── */
.dk-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  height: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.dk-prev, .dk-next {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.dk-prev svg, .dk-next svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dk-prev:hover, .dk-next:hover {
  border-color: var(--gold, var(--accent, #E8A832));
  background: rgba(255,255,255,0.05);
}
.dk-prev:disabled, .dk-next:disabled { opacity: 0.2; pointer-events: none; }
.dk-counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  min-width: 48px;
  text-align: center;
}
.dk-close {
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, color 0.15s;
}
.dk-close:hover { border-color: rgba(255,255,255,0.35); color: white; }

/* ── STAGE ──────────────────────────────────────────────────── */
.dk-stage {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* ── SLIDE BASE + TRANSITIONS ───────────────────────────────── */
.dk-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 80px;
  overflow-y: auto;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity   380ms cubic-bezier(0.4, 0, 0.2, 1),
              filter    380ms cubic-bezier(0.4, 0, 0.2, 1);
}
.dk-slide.dk-from-right {
  transform: translateX(72px) scale(0.97);
  opacity: 0;
  filter: blur(4px);
}
.dk-slide.dk-from-left {
  transform: translateX(-72px) scale(0.97);
  opacity: 0;
  filter: blur(4px);
}
.dk-slide.dk-exit-left {
  transform: translateX(-48px) scale(0.97);
  opacity: 0;
  filter: blur(3px);
}
.dk-slide.dk-exit-right {
  transform: translateX(48px) scale(0.97);
  opacity: 0;
  filter: blur(3px);
}

/* ── SHARED TYPOGRAPHY ──────────────────────────────────────── */
.dk-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold, var(--accent, #E8A832));
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 40ms;
}
.dk-eyebrow.dk-in,
.dk-slide:not(.dk-from-right):not(.dk-from-left):not(.dk-exit-left):not(.dk-exit-right) .dk-eyebrow {
  opacity: 1;
  transform: none;
}
.dk-eyebrow::before {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold, var(--accent, #E8A832));
  flex-shrink: 0;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 160ms;
}
.dk-slide:not(.dk-from-right):not(.dk-from-left):not(.dk-exit-left):not(.dk-exit-right) .dk-eyebrow::before {
  width: 28px;
}

/* ── ANIMATION BASE STATES ──────────────────────────────────── */
.dk-anim-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.dk-anim-up.dk-in   { opacity: 1; transform: none; }

.dk-anim-bar {
  width: 0;
  height: 3px;
  background: var(--gold, var(--accent, #E8A832));
  margin: 28px 0;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.dk-anim-bar.dk-in  { width: 64px; }

.dk-stagger {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.dk-stagger.dk-in   { opacity: 1; transform: none; }

.dk-badge-anim {
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dk-badge-anim.dk-in { opacity: 1; transform: none; }

.dk-headline-anim {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.4s ease, clip-path 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.dk-headline-anim.dk-in { opacity: 1; clip-path: inset(0 0% 0 0); }

.dk-cost-anim {
  opacity: 0;
  transition: opacity 0.45s ease;
}
.dk-cost-anim.dk-in { opacity: 1; }

.dk-fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.dk-fade.dk-in { opacity: 1; }

/* ── PRESENT BUTTON ─────────────────────────────────────────── */
.dk-present-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gold, var(--accent, #E8A832));
  color: var(--dark, #0D1F35);
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: opacity 0.15s;
  align-self: flex-start;
}
.dk-present-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.dk-present-btn:hover { opacity: 0.85; }

/* ── COVER SLIDE ────────────────────────────────────────────── */
.dk-cover {
  padding: 60px 100px;
  background: linear-gradient(135deg, var(--dk-bg, #0D1F35) 0%, var(--dk-mid, #162C47) 100%);
}
.dk-cover-logo {
  margin-bottom: 4px;
}
.dk-cover-logo img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.dk-cover-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  color: white;
  line-height: 1.0;
  letter-spacing: -2px;
  margin: 0 0 12px;
}
.dk-cover-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
}
.dk-cover-verdict {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.6;
}

/* ── OUTLINE SLIDE (Pro only) ───────────────────────────────── */
.dk-outline-slide { gap: 24px; }
.dk-outline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.dk-outline-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(255,255,255,0.06);
}
.dk-outline-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold, var(--accent, #E8A832));
  flex-shrink: 0;
  width: 24px;
}
.dk-outline-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
}

/* ── SCORE OVERVIEW SLIDE (ring only, centered) ─────────────── */
.dk-score-overview-slide {
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--dk-bg, #0D1F35);
}
.dk-score-verdict-big {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-align: center;
  max-width: 480px;
  line-height: 1.6;
}

/* ── SCORECARD SLIDE ────────────────────────────────────────── */
.dk-scorecard-slide {
  gap: 24px;
  background: var(--dk-bg, #0D1F35);
}
.dk-scorecard-slide .dk-score-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

/* ── SCORE SLIDE (legacy two-col, kept for compat) ──────────── */
.dk-score-slide {
  flex-direction: row;
  gap: 80px;
  align-items: center;
  background: var(--dk-bg, #0D1F35);
}
.dk-score-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.dk-ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
}
.dk-ring {
  width: 160px;
  height: 160px;
  transform: rotate(-90deg);
}
.dk-ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 8;
}
.dk-ring-fill {
  fill: none;
  stroke: var(--gold, var(--accent, #E8A832));
  stroke-width: 8;
  stroke-linecap: round;
}
.dk-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--gold, var(--accent, #E8A832));
  line-height: 1;
  letter-spacing: -1px;
}
.dk-ring-num span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0;
  margin-left: 2px;
}
.dk-score-verdict {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  max-width: 180px;
  line-height: 1.5;
  font-weight: 500;
}
.dk-score-right { flex: 1; }
.dk-scorecard-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}
.dk-score-rows { display: flex; flex-direction: column; gap: 2px; }
.dk-score-row {
  display: grid;
  grid-template-columns: 1fr 100px 40px;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dk-score-row:last-child { border-bottom: none; }
.dk-score-page {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.dk-score-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,0.1);
}
.dk-score-bar {
  height: 100%;
  background: var(--gold, var(--accent, #E8A832));
  width: 0;
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.dk-score-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  color: rgba(255,255,255,0.7);
}
.dk-score-val.low { color: #D93A2B; }
.dk-score-val.mid { color: #E8A020; }
.dk-score-val.ok  { color: #2E8B57; }

/* ── STRENGTHS SLIDE ────────────────────────────────────────── */
.dk-strengths-slide { gap: 28px; }
.dk-strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3px;
  align-items: stretch;
}
.dk-strength-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dk-strength-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
}
.dk-strength-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── SINGLE CRITICAL FINDING SLIDE ─────────────────────────── */
.dk-finding-single-slide {
  align-items: flex-start;
  justify-content: center;
  padding: 60px 100px;
  background: var(--dk-bg, #0D1F35);
}
.dk-finding-single-inner {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dk-finding-single-hd {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dk-finding-single-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.dk-finding-single-cost {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 600px;
  border-left: 2px solid #D93A2B;
  padding-left: 20px;
}

/* ── FINDINGS CRITICAL SLIDE ────────────────────────────────── */
.dk-findings-critical-slide { gap: 28px; }
.dk-findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3px;
}
.dk-finding-card {
  background: rgba(217,58,43,0.06);
  border-left: 3px solid #D93A2B;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dk-finding-hd {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dk-finding-page {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-left: auto;
}
.dk-finding-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1.35;
}
.dk-finding-cost {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ── FINDINGS OTHER SLIDE ───────────────────────────────────── */
.dk-findings-other-slide { gap: 20px; }
.dk-findings-list { display: flex; flex-direction: column; gap: 3px; }
.dk-finding-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(255,255,255,0.1);
}
.dk-finding-row-body { display: flex; flex-direction: column; gap: 4px; }
.dk-finding-row-hl {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  line-height: 1.35;
}
.dk-finding-row-cost {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.dk-finding-row-page {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  padding-top: 2px;
}

/* ── PRIORITY BADGES ────────────────────────────────────────── */
.dk-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  flex-shrink: 0;
}
.dk-badge-critical { background: rgba(217,58,43,0.18); color: #E8685C; }
.dk-badge-high     { background: rgba(232,160,32,0.18); color: #E8A020; }
.dk-badge-medium   { background: rgba(232,168,50,0.12); color: var(--gold, var(--accent, #E8A832)); }

/* ── MATRIX SLIDE ───────────────────────────────────────────── */
.dk-matrix-slide { gap: 20px; }
.dk-matrix-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.dk-matrix-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
}
.dk-matrix-action {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.45;
}
.dk-matrix-effort {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  padding: 3px 8px;
  white-space: nowrap;
}
.dk-dots { display: flex; gap: 3px; }
.dk-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold, var(--accent, #E8A832)); flex-shrink: 0; }
.dk-dot-empty { background: rgba(255,255,255,0.12); }

/* ── TYPOGRAPHY SLIDE ───────────────────────────────────────── */
.dk-type-slide { gap: 28px; }
.dk-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3px;
}
.dk-type-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dk-type-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold, var(--accent, #E8A832));
}
.dk-type-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
}
.dk-type-spec {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ── COLORS SLIDE ───────────────────────────────────────────── */
.dk-colors-slide { gap: 28px; }
.dk-swatches { display: flex; flex-wrap: wrap; gap: 3px; }
.dk-swatch {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  padding: 16px 20px;
  flex: 1;
  min-width: 160px;
}
.dk-swatch-color { width: 44px; height: 44px; flex-shrink: 0; }
.dk-swatch-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}
.dk-swatch-hex {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

/* ── FEATURES SLIDE ─────────────────────────────────────────── */
.dk-features-slide { gap: 28px; }
.dk-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.dk-feature-card {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dk-feature-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: rgba(232,168,50,0.2);
  line-height: 1;
}
.dk-feature-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: white;
}
.dk-feature-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
  flex: 1;
}
.dk-feature-effort {
  font-family: 'Montserrat', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.07);
  padding: 3px 8px;
  align-self: flex-start;
}

/* ── MOCKUP SLIDE ───────────────────────────────────────────── */
.dk-mockup-slide {
  background: radial-gradient(ellipse at 60% 40%, rgba(232,168,50,0.07) 0%, transparent 60%),
              var(--dk-bg, #0D1F35);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.dk-mockup-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.dk-mockup-inner.dk-in { opacity: 1; transform: none; }
.dk-mockup-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  color: white;
  max-width: 520px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.dk-mockup-cta {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dk-bg, #0D1F35);
  background: var(--gold, var(--accent, #E8A832));
  padding: 14px 32px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.dk-mockup-cta:hover { opacity: 0.85; }

/* ── PARTNER / HOOK SLIDE ───────────────────────────────────── */
.dk-partner-slide {
  background: var(--dk-bg, #0D1F35);
  padding: 60px 100px;
  justify-content: center;
}
.dk-hook-line {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 12px;
  max-width: 640px;
}
.dk-hook-score {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0;
}
.dk-hook-score span { color: rgba(255,255,255,0.2); }
.dk-hook-bar {
  width: 48px;
  height: 2px;
  background: var(--gold, var(--accent, #E8A832));
  margin: 32px 0;
}
.dk-partner-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
.dk-partner-role {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  margin-bottom: 16px;
}
.dk-partner-contacts { display: flex; gap: 20px; }
.dk-partner-contact {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gold, var(--accent, #E8A832));
  text-decoration: none;
  border-bottom: 1px solid rgba(232,168,50,0.25);
  padding-bottom: 2px;
  transition: opacity 0.15s;
}
.dk-partner-contact:hover { opacity: 0.7; }

/* ── LANDSCAPE NUDGE ────────────────────────────────────────── */
.dk-rotate-nudge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 16px;
  white-space: nowrap;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.dk-rotate-nudge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.dk-rotate-dismiss {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.dk-rotate-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .dk-slide { padding: 40px 36px; }
  .dk-cover { padding: 40px 36px; }
  .dk-score-slide { flex-direction: column; gap: 32px; padding: 36px; }
  .dk-score-row { grid-template-columns: 1fr 72px 36px; gap: 10px; }
  .dk-strengths-grid { grid-template-columns: 1fr; }
  .dk-features-grid  { grid-template-columns: 1fr 1fr; }
  .dk-findings-grid  { grid-template-columns: 1fr; }
  .dk-matrix-row { grid-template-columns: auto 1fr; gap: 10px; }
  .dk-matrix-effort, .dk-dots { display: none; }
  .dk-cover-title { font-size: 44px; letter-spacing: -1.5px; }
  .dk-topbar { padding: 0 20px; }
}
@media (max-width: 540px) {
  .dk-slide { padding: 32px 24px; }
  .dk-cover { padding: 32px 24px; }
  .dk-features-grid { grid-template-columns: 1fr; }
  .dk-partner-contacts { flex-direction: column; gap: 12px; align-items: center; }
}
