/* ==========================================================================
   Oro Analytics — Domo Value Scorecard
   Brand: Warm Brown / Coffee / Sand / Cream
   Version: 1.0.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties — Oro Brown Brand System
   -------------------------------------------------------------------------- */
.oro-dvs-wrap {
  --oro-900:   #2C1A0E;
  --oro-800:   #3D2314;
  --oro-700:   #5C3420;
  --oro-600:   #7A4528;
  --oro-500:   #9A5C35;
  --oro-400:   #B8773F;
  --oro-300:   #D4A06A;
  --oro-200:   #E8C89A;
  --oro-100:   #F2DFC4;
  --oro-50:    #FAF3E8;
  --cream:     #FDFAF5;
  --sand:      #F5EDDF;
  --tan:       #E0C9A6;
  --border:    #DDD0C0;
  --shadow-sm: 0 2px 8px rgba(44,26,14,.08);
  --shadow-md: 0 4px 20px rgba(44,26,14,.12);
  --shadow-lg: 0 8px 40px rgba(44,26,14,.16);
  --text:      #1E140A;
  --muted:     #6B5040;
  --light:     #8C7060;
  --success:   #3E6B4F;
  --error:     #9A2F24;
  --error-bg:  #FDF0EE;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full:100px;
  --ease:  0.22s ease;
  --font:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --max-w: 760px;
}

/* --------------------------------------------------------------------------
   Reset — scoped to our wrapper only
   -------------------------------------------------------------------------- */
.oro-dvs-wrap *,
.oro-dvs-wrap *::before,
.oro-dvs-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.oro-dvs-wrap {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.oro-dvs-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.oro-dvs-section {
  padding: 64px 0;
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.oro-dvs-optional {
  font-size: .80em;
  color: var(--light);
  font-weight: 400;
}

.oro-dvs-required {
  color: var(--error);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.oro-dvs-hero {
  background: var(--oro-800);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
}

.oro-dvs-hero__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oro-300);
  margin-bottom: 18px;
}

.oro-dvs-hero__headline {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 20px;
}

.oro-dvs-hero__sub {
  font-size: clamp(.97rem, 2vw, 1.12rem);
  color: var(--oro-100);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.oro-dvs-hero__meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.oro-dvs-meta-pill {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--oro-100);
  font-size: .80rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--r-full);
}

/* ==========================================================================
   WHY IT MATTERS
   ========================================================================== */
.oro-dvs-why {
  background: var(--cream);
}

.oro-dvs-why__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: start;
}

.oro-dvs-why__text h2 {
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--oro-900);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.oro-dvs-why__text p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.oro-dvs-why__text p:last-child {
  margin-bottom: 0;
}

.oro-dvs-why__benefits {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}

.oro-dvs-why__benefits-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--oro-500);
  margin-bottom: 18px;
}

.oro-dvs-benefit-list {
  list-style: none;
  margin-bottom: 28px;
}

.oro-dvs-benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 13px;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.55;
}

.oro-dvs-benefit-list li:last-child {
  margin-bottom: 0;
}

.oro-dvs-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--oro-700);
  color: #fff;
  border-radius: 50%;
  font-size: .62rem;
  font-weight: 800;
  margin-top: 1px;
}

.oro-dvs-why__time-note {
  font-size: .80rem;
  color: var(--light);
  margin-top: 12px;
  text-align: center;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.oro-dvs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: .93rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--ease), border-color var(--ease), color var(--ease), box-shadow var(--ease);
  letter-spacing: .01em;
  outline-offset: 3px;
  white-space: nowrap;
}

/* Primary */
.oro-dvs-btn--primary {
  background: var(--oro-700);
  color: #fff;
  border-color: var(--oro-700);
  width: 100%;
}
.oro-dvs-btn--primary:hover:not(:disabled) {
  background: var(--oro-800);
  border-color: var(--oro-800);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.oro-dvs-btn--primary:disabled {
  background: var(--oro-200);
  border-color: var(--oro-200);
  color: var(--light);
  cursor: not-allowed;
  box-shadow: none;
}

/* Ghost */
.oro-dvs-btn--ghost {
  background: transparent;
  color: var(--oro-700);
  border-color: var(--tan);
}
.oro-dvs-btn--ghost:hover:not(:disabled) {
  background: var(--sand);
  border-color: var(--oro-300);
}
.oro-dvs-btn--ghost:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* Reveal (dark gate prompt) */
.oro-dvs-btn--reveal {
  background: var(--oro-400);
  color: #fff;
  border-color: var(--oro-400);
  width: auto;
  padding: 14px 32px;
  font-size: .97rem;
}
.oro-dvs-btn--reveal:hover {
  background: var(--oro-300);
  border-color: var(--oro-300);
  color: var(--oro-900);
}

/* Full width modifier */
.oro-dvs-btn--full {
  width: 100%;
}

/* CTA buttons */
.oro-dvs-btn--cta {
  background: var(--oro-400);
  color: #fff;
  border-color: var(--oro-400);
  padding: 15px 32px;
  font-size: 1rem;
}
.oro-dvs-btn--cta:hover {
  background: var(--oro-300);
  border-color: var(--oro-300);
  color: var(--oro-900);
}

.oro-dvs-btn--cta-ghost {
  background: transparent;
  color: var(--oro-100);
  border-color: rgba(255,255,255,.28);
  padding: 15px 32px;
  font-size: 1rem;
}
.oro-dvs-btn--cta-ghost:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}

/* ── Global focus-visible: keyboard nav only (not mouse clicks) ──────────
   We scope this to everything EXCEPT answer buttons, which have their
   own focus handling below.                                              */
.oro-dvs-wrap :focus-visible:not(.oro-dvs-answer-btn) {
  outline: 3px solid var(--oro-500);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── Answer buttons — NO focus ring ever, from any source ────────────────
   Selection feedback is delivered via border + background colour only.
   All four rules below are needed to beat:
     1. Browser UA stylesheet (blue outline / box-shadow)
     2. .oro-dvs-wrap :focus-visible descendant rule
     3. WordPress theme global a:focus / button:focus rules
     4. Chrome/Edge :focus-visible on mouse click                        */
.oro-dvs-wrap .oro-dvs-answer-btn:focus,
.oro-dvs-wrap .oro-dvs-answer-btn:focus-visible,
.oro-dvs-wrap .oro-dvs-answer-btn:focus-within,
.oro-dvs-wrap .oro-dvs-answer-btn:active {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* Restore box-shadow ONLY when the button is already selected
   (these rules come after and take precedence due to higher specificity) */
.oro-dvs-wrap .oro-dvs-answer-btn.oro-dvs-answer-yes.selected:focus,
.oro-dvs-wrap .oro-dvs-answer-btn.oro-dvs-answer-yes.selected:focus-visible,
.oro-dvs-wrap .oro-dvs-answer-btn.oro-dvs-answer-yes[aria-pressed="true"]:focus,
.oro-dvs-wrap .oro-dvs-answer-btn.oro-dvs-answer-yes[aria-pressed="true"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(62,107,79,.18) !important;
}

.oro-dvs-wrap .oro-dvs-answer-btn.oro-dvs-answer-no.selected:focus,
.oro-dvs-wrap .oro-dvs-answer-btn.oro-dvs-answer-no.selected:focus-visible,
.oro-dvs-wrap .oro-dvs-answer-btn.oro-dvs-answer-no[aria-pressed="true"]:focus,
.oro-dvs-wrap .oro-dvs-answer-btn.oro-dvs-answer-no[aria-pressed="true"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(90,52,32,.18) !important;
}

/* Firefox inner border */
.oro-dvs-answer-btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* ==========================================================================
   ASSESSMENT
   ========================================================================== */
.oro-dvs-assessment {
  background: var(--sand);
  min-height: 500px;
}

/* Progress */
.oro-dvs-progress-wrap {
  margin-bottom: 36px;
}

.oro-dvs-progress-bar {
  height: 5px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 9px;
}

.oro-dvs-progress-fill {
  height: 100%;
  background: var(--oro-600);
  border-radius: var(--r-full);
  transition: width .5s cubic-bezier(.4,0,.2,1);
  will-change: width;
}

.oro-dvs-progress-text {
  text-align: right;
  font-size: .78rem;
  color: var(--light);
  font-weight: 600;
  letter-spacing: .02em;
}

/* Category header */
.oro-dvs-category-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.oro-dvs-category-badge {
  display: inline-block;
  background: var(--oro-700);
  color: #fff;
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 13px;
  border-radius: var(--r-full);
  margin-bottom: 10px;
}

.oro-dvs-category-desc {
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

/* Question card */
.oro-dvs-question-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.oro-dvs-question-number {
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oro-400);
  margin-bottom: 14px;
}

.oro-dvs-question-text {
  font-size: clamp(.97rem, 2.2vw, 1.13rem);
  font-weight: 600;
  color: var(--oro-900);
  line-height: 1.55;
  margin-bottom: 28px;
}

.oro-dvs-answer-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.oro-dvs-answer-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 22px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  background: var(--cream);
  cursor: pointer;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease), color var(--ease), opacity var(--ease);
  font-family: var(--font);
  color: var(--text);
  position: relative;
}

/* Hover — only when NOT already selected */
.oro-dvs-answer-btn:not(.selected):hover {
  border-color: var(--oro-400);
  background: var(--oro-50);
}

/* ── YES — selected ─────────────────────────────────────────────────── */
.oro-dvs-answer-btn.oro-dvs-answer-yes.selected,
.oro-dvs-answer-btn.oro-dvs-answer-yes[aria-pressed="true"],
.oro-dvs-answer-btn.oro-dvs-answer-yes.selected:hover,
.oro-dvs-answer-btn.oro-dvs-answer-yes[aria-pressed="true"]:hover {
  border-color: var(--success) !important;
  background: #E8F5EC !important;
  box-shadow: 0 0 0 3px rgba(62,107,79,.18) !important;
  color: var(--success);
}

.oro-dvs-answer-btn.oro-dvs-answer-yes.selected .oro-dvs-answer-icon,
.oro-dvs-answer-btn.oro-dvs-answer-yes[aria-pressed="true"] .oro-dvs-answer-icon {
  color: var(--success);
}

/* ── NO — selected ──────────────────────────────────────────────────── */
.oro-dvs-answer-btn.oro-dvs-answer-no.selected,
.oro-dvs-answer-btn.oro-dvs-answer-no[aria-pressed="true"],
.oro-dvs-answer-btn.oro-dvs-answer-no.selected:hover,
.oro-dvs-answer-btn.oro-dvs-answer-no[aria-pressed="true"]:hover {
  border-color: var(--oro-600) !important;
  background: var(--oro-50) !important;
  box-shadow: 0 0 0 3px rgba(90,52,32,.18) !important;
  color: var(--oro-700);
}

.oro-dvs-answer-btn.oro-dvs-answer-no.selected .oro-dvs-answer-icon,
.oro-dvs-answer-btn.oro-dvs-answer-no[aria-pressed="true"] .oro-dvs-answer-icon {
  color: var(--oro-600);
}

/* ── Unselected sibling dims slightly when one is chosen ─────────────── */
.oro-dvs-answer-group.has-selection .oro-dvs-answer-btn:not(.selected) {
  opacity: 0.52;
}

/* Checkmark badge on selected button */
.oro-dvs-answer-btn.selected::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.oro-dvs-answer-icon {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  transition: color var(--ease);
}

.oro-dvs-answer-label {
  font-size: .93rem;
  font-weight: 700;
}

.oro-dvs-answer-hint {
  font-size: .78rem;
  color: var(--light);
  font-style: italic;
  text-align: center;
}

/* Navigation */
.oro-dvs-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ==========================================================================
   PREVIEW RESULT (ungated)
   ========================================================================== */
.oro-dvs-preview {
  background: var(--cream);
}

.oro-dvs-preview__header {
  text-align: center;
  margin-bottom: 40px;
}

.oro-dvs-preview__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oro-500);
  margin-bottom: 12px;
}

.oro-dvs-preview__headline {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--oro-900);
  letter-spacing: -.02em;
}

/* Score display */
.oro-dvs-score-display {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  margin-bottom: 28px;
}

/* Ring */
.oro-dvs-score-ring {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.oro-dvs-ring-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.oro-dvs-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 9;
}

.oro-dvs-ring-fill {
  fill: none;
  stroke: var(--oro-600);
  stroke-width: 9;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1) .2s;
  will-change: stroke-dashoffset;
}

.oro-dvs-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.oro-dvs-ring-score {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--oro-800);
  line-height: 1;
}

.oro-dvs-ring-denom {
  font-size: .75rem;
  color: var(--light);
  font-weight: 500;
  margin-top: 3px;
}

/* Category bars */
.oro-dvs-score-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oro-dvs-bar-item {}

.oro-dvs-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  gap: 8px;
}

.oro-dvs-bar-val {
  font-weight: 700;
  color: var(--oro-700);
  white-space: nowrap;
}

.oro-dvs-bar-track {
  height: 7px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}

.oro-dvs-bar-fill {
  height: 100%;
  background: var(--oro-600);
  border-radius: var(--r-full);
  transition: width 1.1s cubic-bezier(.4,0,.2,1) .35s;
  will-change: width;
}

.oro-dvs-bar-fill.bottleneck {
  background: var(--oro-400);
}

/* Preview insight box */
.oro-dvs-preview__insight-box {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--oro-600);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-bottom: 28px;
}

.oro-dvs-preview__interpretation {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.oro-dvs-preview__teaser {
  font-size: .93rem;
  color: var(--muted);
  line-height: 1.65;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Gate prompt */
.oro-dvs-preview__gate-prompt {
  background: var(--oro-900);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  text-align: center;
}

.oro-dvs-gate-prompt-text {
  font-size: .97rem;
  color: var(--oro-100);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   LEAD GATE
   ========================================================================== */
.oro-dvs-gate {
  background: var(--sand);
}

.oro-dvs-gate__inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.oro-dvs-gate__headline {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--oro-900);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.oro-dvs-gate__sub {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.65;
}

.oro-dvs-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.oro-dvs-form__row--single {
  grid-template-columns: 1fr;
}

.oro-dvs-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oro-dvs-label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
}

.oro-dvs-input {
  font-family: var(--font);
  font-size: .93rem;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  width: 100%;
  line-height: 1.4;
}

.oro-dvs-input:focus {
  outline: none;
  border-color: var(--oro-600);
  box-shadow: 0 0 0 3px rgba(90,52,32,.12);
  background: #fff;
}

.oro-dvs-input.error {
  border-color: var(--error);
  background: var(--error-bg);
}

.oro-dvs-input.error:focus {
  box-shadow: 0 0 0 3px rgba(154,47,36,.12);
}

/* Select */
.oro-dvs-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5040' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.oro-dvs-field-error {
  font-size: .79rem;
  color: var(--error);
  min-height: 17px;
  line-height: 1.3;
}

/* Honeypot — visually hidden, not accessible */
.oro-dvs-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.oro-dvs-form__submit-row {
  margin-top: 28px;
}

.oro-dvs-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: .79rem;
  color: var(--light);
  margin-top: 14px;
}

.oro-dvs-privacy svg {
  flex-shrink: 0;
  color: var(--oro-400);
}

.oro-dvs-form-error {
  margin-top: 14px;
  padding: 12px 16px;
  background: var(--error-bg);
  border: 1px solid var(--error);
  border-radius: var(--r-sm);
  color: var(--error);
  font-size: .88rem;
  line-height: 1.5;
}

/* Spinner dots */
.oro-dvs-spinner-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
  animation: oro-dvs-pulse 1s infinite;
}

@keyframes oro-dvs-pulse {
  0%,100% { opacity: .3; transform: scale(.8); }
  50%      { opacity: 1;  transform: scale(1); }
}

/* ==========================================================================
   FULL RESULT
   ========================================================================== */
.oro-dvs-result {
  background: var(--cream);
}

.oro-dvs-result__header {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.oro-dvs-result__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--oro-500);
  margin-bottom: 10px;
}

.oro-dvs-result__name {
  font-size: clamp(1.35rem, 3.5vw, 1.9rem);
  font-weight: 700;
  color: var(--oro-900);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}

.oro-dvs-result__band {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--oro-600);
  font-weight: 500;
}

/* Result blocks */
.oro-dvs-result__block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  margin-bottom: 20px;
}

.oro-dvs-result__block-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--oro-500);
  margin-bottom: 16px;
}

.oro-dvs-result__block-body {
  font-size: .96rem;
  color: var(--text);
  line-height: 1.78;
}

.oro-dvs-result__diagnosis {
  border-left: 4px solid var(--oro-600);
}

.oro-dvs-result__benchmark {
  border-left: 4px solid var(--oro-300);
}

.oro-dvs-result__risk {
  background: var(--sand);
  border-color: var(--tan);
}

.oro-dvs-result__next-step {
  border-left: 4px solid var(--success);
  background: #F6FAF7;
  border-color: #C6DDCC;
}

/* Breakdown */
.oro-dvs-breakdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oro-dvs-breakdown__item {
  padding: 20px;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.oro-dvs-breakdown__item.primary-bottleneck {
  background: var(--oro-50);
  border-color: var(--oro-300);
}

.oro-dvs-breakdown__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
  flex-wrap: wrap;
}

.oro-dvs-breakdown__label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--oro-800);
}

.oro-dvs-breakdown__tag {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  background: var(--oro-700);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--r-full);
}

.oro-dvs-breakdown__score-text {
  font-size: .86rem;
  font-weight: 700;
  color: var(--oro-700);
  white-space: nowrap;
}

.oro-dvs-breakdown__bar {
  height: 5px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 12px;
}

.oro-dvs-breakdown__bar-fill {
  height: 100%;
  background: var(--oro-600);
  border-radius: var(--r-full);
}

.oro-dvs-breakdown__detail {
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Priorities */
.oro-dvs-priorities {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.oro-dvs-priority-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.oro-dvs-priority-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--oro-700);
  color: #fff;
  border-radius: 50%;
  font-size: .78rem;
  font-weight: 700;
  margin-top: 2px;
}

.oro-dvs-priority-title {
  font-size: .96rem;
  font-weight: 700;
  color: var(--oro-800);
  margin-bottom: 5px;
}

.oro-dvs-priority-detail {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.67;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.oro-dvs-cta-section {
  background: var(--oro-900);
}

.oro-dvs-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.oro-dvs-cta-brand {
  font-size: .70rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oro-300);
  margin-bottom: 18px;
}

.oro-dvs-cta-headline {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.oro-dvs-cta-body {
  font-size: 1rem;
  color: var(--oro-100);
  line-height: 1.72;
  margin-bottom: 32px;
}

.oro-dvs-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.oro-dvs-cta-buttons .oro-dvs-btn {
  min-width: 280px;
}

.oro-dvs-cta-reassurance {
  margin-top: 20px;
  font-size: .80rem;
  color: var(--oro-300);
  line-height: 1.5;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.oro-dvs-faq-section {
  background: var(--sand);
}

.oro-dvs-faq-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--oro-900);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.oro-dvs-faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oro-dvs-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease);
}

.oro-dvs-faq-item[open] {
  border-color: var(--oro-300);
}

.oro-dvs-faq-q {
  padding: 18px 20px;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--oro-800);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 16px;
  transition: color var(--ease);
}

.oro-dvs-faq-q::-webkit-details-marker {
  display: none;
}

.oro-dvs-faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--oro-400);
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

.oro-dvs-faq-item[open] .oro-dvs-faq-q::after {
  content: '−';
}

.oro-dvs-faq-a {
  padding: 0 20px 20px;
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.72;
}

/* ==========================================================================
   TOAST
   ========================================================================== */
.oro-dvs-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--oro-800);
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--r-full);
  font-size: .88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 99999;
  animation: oro-dvs-toast-in .3s ease;
  pointer-events: none;
  white-space: nowrap;
}

.oro-dvs-toast-icon {
  font-weight: 800;
  color: var(--oro-300);
}

@keyframes oro-dvs-toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 680px) {

  .oro-dvs-section { padding: 44px 0; }
  .oro-dvs-container { padding: 0 16px; }

  .oro-dvs-hero { padding: 52px 0; }

  .oro-dvs-why__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .oro-dvs-score-display {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    padding: 24px 20px;
  }

  .oro-dvs-score-bars {
    width: 100%;
  }

  .oro-dvs-form__row {
    grid-template-columns: 1fr;
  }

  .oro-dvs-gate__inner {
    padding: 28px 20px;
  }

  .oro-dvs-question-card {
    padding: 24px 20px;
  }

  .oro-dvs-preview__gate-prompt {
    padding: 32px 20px;
  }

  .oro-dvs-result__block {
    padding: 22px 18px;
  }

  .oro-dvs-cta-buttons {
    align-items: stretch;
  }

  .oro-dvs-cta-buttons .oro-dvs-btn {
    min-width: unset;
    width: 100%;
  }

  .oro-dvs-priority-item {
    flex-direction: column;
    gap: 10px;
  }

  .oro-dvs-toast {
    white-space: normal;
    max-width: calc(100vw - 32px);
    text-align: center;
  }
}

@media (max-width: 440px) {
  .oro-dvs-hero__headline { font-size: 1.6rem; }
  .oro-dvs-answer-group { gap: 10px; }
  .oro-dvs-answer-btn { padding: 16px 10px; }
  .oro-dvs-nav { grid-template-columns: 1fr; }
  .oro-dvs-nav #oro-dvs-prev-btn { order: 2; }
  .oro-dvs-nav #oro-dvs-next-btn { order: 1; }
}

/* Print — hide interactive chrome, preserve result */
@media print {
  .oro-dvs-hero, .oro-dvs-why, .oro-dvs-assessment,
  .oro-dvs-preview, .oro-dvs-gate, .oro-dvs-faq-section,
  .oro-dvs-cta-section, .oro-dvs-toast,
  .oro-dvs-nav, .oro-dvs-btn { display: none !important; }

  .oro-dvs-result, .oro-dvs-result__block {
    display: block !important;
    box-shadow: none !important;
  }
}
