/* IT Discovery Planner - page-scoped styles. */
.dp-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 86px;
  background:
    radial-gradient(circle at 82% 20%, rgba(240,145,62,.18), transparent 31%),
    linear-gradient(145deg, var(--ink-deep), var(--ink-soft));
}
.dp-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(240,145,62,.18);
  border-radius: 50%;
  pointer-events: none;
}
.dp-hero-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(260px,.65fr); gap: 70px; align-items: end; }
.dp-hero h1 { max-width: 760px; color: #fff; font-size: clamp(2.7rem,6vw,4.8rem); }
.dp-hero .lede { margin-top: 24px; max-width: 720px; }
.dp-hero-points { list-style: none; display: grid; gap: 14px; margin: 0 0 4px; }
.dp-hero-points li { display: flex; align-items: center; gap: 11px; color: #fff; font-size: .92rem; font-weight: 700; }
.dp-hero-points span,
.dp-aside li span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(240,145,62,.14);
}

.dp-workspace { background: var(--paper-tint); }
.dp-layout { display: grid; grid-template-columns: minmax(0,680px) 1fr; gap: 46px; align-items: start; }
.dp-main { min-width: 0; }
.dp-card,
.dp-aside {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 18px;
  box-shadow: 0 18px 44px -30px rgba(11,20,43,.5);
}
.dp-card { padding: clamp(24px,5vw,38px); min-height: 410px; }
.dp-aside { position: sticky; top: 100px; padding: 30px 28px; }
.dp-aside h2 { color: var(--ink); font-size: 1.65rem; margin-bottom: 12px; }
.dp-aside > p { color: var(--navy); font-size: .92rem; }
.dp-aside ul { list-style: none; display: grid; gap: 16px; margin: 24px 0; }
.dp-aside li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink); font-size: .88rem; font-weight: 600; }
.dp-not-test { padding: 11px 0 11px 15px; border-left: 3px solid var(--orange); }
.dp-smallprint { margin: 16px 0 0; color: var(--mist-dim); text-align: center; font-size: .74rem; font-weight: 600; }

.dp-progress { margin-bottom: 14px; }
.dp-progress[hidden] { display: none; }
.dp-progress-head { display: flex; justify-content: space-between; gap: 14px; color: var(--navy); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.dp-progress-track { height: 6px; margin-top: 9px; overflow: hidden; border-radius: 999px; background: rgba(58,69,99,.11); }
.dp-progress-track span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--orange),var(--ember)); transition: width .24s ease; }

.dp-eyebrow { margin: 0 0 12px; color: var(--ember-text); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.dp-card h2 { color: var(--ink); font-size: clamp(1.65rem,4vw,2.3rem); }
.dp-copy { margin: 13px 0 22px; color: var(--navy); font-size: .96rem; }
.dp-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }
.dp-meta span { padding: 7px 11px; border-radius: 999px; background: var(--paper-tint); color: var(--navy); font-size: .72rem; font-weight: 700; }
.dp-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.dp-next,
.dp-start,
.dp-restart {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: linear-gradient(120deg,var(--orange),var(--ember));
  color: var(--ink-deep);
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 26px -15px rgba(231,111,29,.8);
}
.dp-next:hover,
.dp-start:hover,
.dp-restart:hover { transform: translateY(-1px); }
.dp-back { appearance: none; border: 0; background: transparent; color: var(--navy); font-weight: 700; cursor: pointer; padding: 12px 2px; }

.dp-options { display: grid; gap: 10px; }
.dp-choice {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  text-align: left;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--line-light);
  border-radius: 12px;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .15s,background .15s;
}
.dp-choice:hover { border-color: rgba(240,145,62,.6); }
.dp-choice[aria-pressed="true"] { border-color: var(--orange); background: rgba(240,145,62,.1); }
.dp-choice-mark { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; border: 2px solid var(--line-light); border-radius: 50%; color: transparent; }
.dp-choice[aria-pressed="true"] .dp-choice-mark { border-color: var(--orange); background: var(--orange); color: #fff; }

.dp-fields { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.dp-fields--contact { grid-template-columns: repeat(2,1fr); }
.dp-field-group label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .74rem; font-weight: 700; }
.dp-field,
.dp-textarea {
  width: 100%;
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: var(--paper-tint);
  color: var(--ink);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  outline: none;
}
.dp-field { height: 46px; padding: 0 14px; }
.dp-textarea { min-height: 120px; padding: 13px 14px; resize: vertical; }
.dp-field:focus,
.dp-textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,145,62,.12); }
.dp-honeypot { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.dp-scale { display: grid; grid-template-columns: repeat(10,1fr); gap: 7px; }
.dp-scale button { aspect-ratio: 1; min-width: 0; border: 2px solid var(--line-light); border-radius: 10px; background: var(--paper); color: var(--ink); font: inherit; font-size: .86rem; font-weight: 800; cursor: pointer; }
.dp-scale button:hover { border-color: rgba(240,145,62,.6); }
.dp-scale button[aria-pressed="true"] { border-color: var(--orange); background: var(--orange); color: var(--ink-deep); }
.dp-scale-labels { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; color: var(--mist-dim); font-size: .68rem; font-weight: 700; }
.dp-error { min-height: 20px; margin-top: 12px; color: #a33f1a; font-size: .82rem; font-weight: 700; }

.dp-loading { padding: 44px 0; text-align: center; }
.dp-spinner { width: 46px; height: 46px; margin: 0 auto 20px; border: 4px solid var(--paper-tint); border-top-color: var(--orange); border-radius: 50%; animation: dp-spin .8s linear infinite; }
@keyframes dp-spin { to { transform: rotate(360deg); } }

.dp-result-head { margin: -38px -38px 28px; padding: 32px 38px; background: var(--ink-deep); color: #fff; }
.dp-result-head .dp-eyebrow { color: var(--orange); }
.dp-result-head h2 { color: #fff; }
.dp-result-head p { margin: 10px 0 0; color: var(--mist); }
.dp-agenda { display: grid; gap: 11px; }
.dp-agenda-item { display: grid; grid-template-columns: 36px 1fr; gap: 13px; padding: 16px; border-radius: 12px; background: var(--paper-tint); }
.dp-agenda-number { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-family: var(--font-mono); font-size: .7rem; font-weight: 700; }
.dp-agenda-item h3 { color: var(--ink); font-size: 1.1rem; }
.dp-agenda-item p { margin: 5px 0 0; color: var(--navy); font-size: .86rem; }
.dp-confirmation { margin-top: 18px; padding: 15px 17px; background: rgba(240,145,62,.12); border-left: 3px solid var(--orange); color: var(--ink); font-size: .84rem; }

@media (max-width: 920px) {
  .dp-hero-grid,
  .dp-layout { grid-template-columns: 1fr; }
  .dp-hero-grid { gap: 36px; }
  .dp-aside { position: static; }
}
@media (max-width: 620px) {
  .dp-hero { padding: 120px 0 62px; }
  .dp-fields,
  .dp-fields--contact { grid-template-columns: 1fr; }
  .dp-scale { grid-template-columns: repeat(5,1fr); }
  .dp-card { min-height: 0; padding: 24px 20px; }
  .dp-result-head { margin: -24px -20px 24px; padding: 26px 20px; }
  .dp-progress-head { align-items: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  .dp-spinner { animation: none; }
  .dp-progress-track span { transition: none; }
}
