:root {
  --blue: #014ab9;
  --blue-2: #1159af;
  --gold: #ffb835;
  --rust: #b82105;
  --ink: #1a202c;
  --charcoal: #2d3748;
  --slate: #4a5568;
  --mist: #edf2f7;
  --paper: #ffffff;
  --soft: #f5f5f5;
  --path-color: var(--gold);
  --path-deep: var(--blue);
  --shadow: 0 24px 70px rgba(1, 74, 185, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  color: var(--ink);
  background: var(--paper);
}

body {
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  overflow: hidden;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

#journeyCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: var(--paper);
}

.transition-field {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0 16px, rgba(255, 255, 255, 0.18) 16px 17px),
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.74) 39%, rgba(255, 184, 53, 0.52) 50%, rgba(1, 74, 185, 0.34) 58%, transparent 100%);
  transform: translateX(-120%) skewX(-12deg);
  filter: blur(0.2px);
}

.transition-field.is-active {
  animation: techWipe 760ms cubic-bezier(0.18, 0.9, 0.22, 1);
}

:root[data-transition-direction="back"] .transition-field.is-active {
  animation-name: techWipeBack;
}

@keyframes techWipe {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-12deg);
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(120%) skewX(-12deg);
  }
}

@keyframes techWipeBack {
  0% {
    opacity: 0;
    transform: translateX(120%) skewX(12deg);
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-120%) skewX(12deg);
  }
}

.experience-shell {
  position: relative;
  z-index: 1;
  height: 100dvh;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  overflow: hidden;
}

.hud {
  width: min(1040px, 100%);
  margin: 0 auto;
  min-height: 48px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 96px;
  align-items: center;
  gap: 16px;
}

.logo-slot {
  height: 46px;
  border: 0;
  border-radius: 8px;
  color: var(--charcoal);
  display: grid;
  align-content: center;
  justify-items: center;
  text-transform: uppercase;
  font-size: 0.7rem;
  background: transparent;
}

.logo-slot.has-logo {
  padding: 2px 0;
  background: transparent;
}

.logo-slot img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.logo-slot strong {
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
}

.hud-center {
  text-align: left;
}

.hud-kicker,
.stage-eyebrow,
.signal-pill span,
.staff-dialog-header span {
  display: block;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hud-title {
  margin-top: 0;
}

.hero-wordmark {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.32em;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.title-wordmark {
  display: block;
  color: #000;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.hero-wordmark {
  width: max-content;
  padding: 8px 10px;
  border: 1px solid rgba(26, 32, 44, 0.1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(1, 74, 185, 0.05);
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
}

.fog-word {
  color: rgba(45, 55, 72, 0.52);
  filter: blur(0.4px);
  text-shadow: 0 0 14px rgba(74, 85, 104, 0.25);
}

.clarity-word {
  color: var(--blue);
  position: relative;
}

.clarity-word::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  height: 0.15em;
  border-radius: 6px;
  background: var(--gold);
}

.staff-button,
.button,
.icon-button {
  border: 0;
  border-radius: 8px;
  min-height: 38px;
  cursor: pointer;
  color: var(--paper);
  background: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.staff-button {
  background: var(--blue);
  font-size: 0.86rem;
}

.single-experience {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 8px;
  min-height: 0;
}

.signal-pill {
  min-height: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.signal-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--gold);
}

.signal-fill {
  width: 16%;
  height: 100%;
  border-radius: 999px;
  background: var(--gold);
  transition: none;
}

.stage-panel {
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(26, 32, 44, 0.08);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.stage-panel::before {
  content: none;
}

.stage-content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(18px, 3.2vw, 34px);
  overflow: hidden;
}

.choice-stage {
  gap: clamp(16px, 2.6vw, 28px);
}

.stage-panel.is-entering .stage-content {
  animation: stageInForward 560ms cubic-bezier(0.2, 0.9, 0.25, 1);
}

.stage-panel.is-exiting .stage-content {
  animation: stageOutForward 260ms cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

:root[data-transition-direction="back"] .stage-panel.is-entering .stage-content {
  animation-name: stageInBack;
}

:root[data-transition-direction="back"] .stage-panel.is-exiting .stage-content {
  animation-name: stageOutBack;
}

@keyframes stageInForward {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes stageInBack {
  from {
    opacity: 0;
    transform: translateX(-34px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes stageOutForward {
  to {
    opacity: 0;
    transform: translateX(-28px) scale(0.992);
  }
}

@keyframes stageOutBack {
  to {
    opacity: 0;
    transform: translateX(28px) scale(0.992);
  }
}

.stage-eyebrow {
  color: var(--path-deep);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  max-width: 850px;
  color: var(--ink);
  line-height: 1.06;
  font-weight: 900;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
}

h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.72rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  max-width: 690px;
  color: var(--charcoal);
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
  line-height: 1.38;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.path-card,
.contact-card,
.resource-choice,
.decision-card,
.hub-card,
.linkedin-card,
.pathway-card {
  border: 1px solid rgba(26, 32, 44, 0.1);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(1, 74, 185, 0.06);
}

.path-card,
.contact-card,
.resource-choice {
  cursor: pointer;
  text-align: left;
}

.path-card {
  min-height: 190px;
  display: grid;
  grid-template-rows: 84px auto auto;
  gap: 10px;
  align-items: center;
  justify-items: center;
  padding: 16px 14px;
  color: var(--ink);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  border: 2px solid var(--gold);
}

.path-card:hover,
.contact-card:hover,
.resource-choice:hover,
.button:hover,
.icon-button:hover,
.staff-button:hover {
  transform: translateY(-2px);
}

.path-card:hover,
.path-card:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 22px 52px rgba(255, 184, 53, 0.22);
}

.choice-graphic {
  width: 90px;
  height: 84px;
  color: var(--tile-color);
}

.choice-graphic svg {
  width: 100%;
  height: 100%;
  display: block;
}

.path-card strong,
.contact-card strong,
.resource-choice strong,
.hub-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.38rem, 2vw, 1.7rem);
  line-height: 1.06;
}

.path-card span,
.contact-card span,
.resource-choice span,
.hub-card p {
  display: block;
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.22;
}

.path-card .choice-graphic {
  color: var(--gold);
}

.resource-choice strong,
.hub-card strong {
  font-size: 0.88rem;
}

.resource-choice span span,
.contact-card span span,
.hub-card p,
.hub-card small {
  font-size: 0.78rem;
}

.lock-scene {
  width: min(210px, 34vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}

.lock-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(26, 32, 44, 0.12);
  border-radius: 50%;
  animation: orbitLock 2.6s linear infinite;
}

.lock-orbit::before,
.lock-orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--path-color);
}

.lock-orbit::before {
  top: -6px;
  left: 50%;
}

.lock-orbit::after {
  bottom: -6px;
  right: 24%;
  background: var(--path-deep);
}

@keyframes orbitLock {
  to {
    transform: rotate(360deg);
  }
}

.lock-body {
  width: 92px;
  height: 76px;
  border-radius: 8px;
  background: var(--ink);
  position: relative;
  box-shadow: 0 22px 54px rgba(26, 32, 44, 0.18);
  animation: lockPop 680ms cubic-bezier(0.2, 0.9, 0.24, 1);
}

.lock-body::before {
  content: "";
  position: absolute;
  left: 21px;
  top: -52px;
  width: 50px;
  height: 62px;
  border: 11px solid var(--path-color);
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
  transform-origin: 86% 100%;
  animation: shackleDrop 760ms cubic-bezier(0.2, 0.9, 0.24, 1);
}

.lock-body::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  width: 13px;
  height: 23px;
  border-radius: 10px;
  background: var(--gold);
  transform: translateX(-50%);
}

@keyframes lockPop {
  0% {
    transform: scale(0.86);
  }
  60% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes shackleDrop {
  0% {
    transform: rotate(-28deg) translateY(-12px);
  }
  100% {
    transform: rotate(0) translateY(0);
  }
}

.split-stage,
.locked-layout,
.journey-layout {
  display: grid;
  grid-template-columns: 52px minmax(180px, 0.54fr) minmax(0, 1fr) 104px;
  gap: clamp(12px, 2.4vw, 26px);
  align-items: center;
}

.locked-copy,
.journey-copy {
  display: grid;
  gap: 12px;
}

.journey-copy h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.72rem);
}

.journey-graphic {
  width: min(220px, 30vw);
  aspect-ratio: 1.2;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.journey-graphic svg {
  width: 100%;
  height: 100%;
  display: block;
}

.compact-head {
  display: grid;
  gap: 6px;
  max-width: 850px;
  padding-left: 54px;
}

.back-control,
.forward-orb {
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.back-control {
  width: 48px;
  height: 48px;
  color: var(--gold);
  background: var(--paper);
  border: 1px solid rgba(26, 32, 44, 0.12);
  font-size: 1.35rem;
  box-shadow: none;
}

.back-control.corner {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.forward-orb {
  width: 96px;
  height: 96px;
  color: var(--gold);
  background: var(--paper);
  border: 1px solid rgba(255, 184, 53, 0.44);
  font-size: 3rem;
  box-shadow: 0 18px 48px rgba(255, 184, 53, 0.16);
}

.back-control:hover,
.forward-orb:hover {
  transform: translateY(-2px);
}

.decision-shell {
  display: grid;
  gap: 10px;
  max-width: 850px;
  padding-left: 54px;
}

.decision-stage .compact-head h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.55rem);
}

.decision-card {
  border: 1px solid rgba(26, 32, 44, 0.1);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  min-height: 226px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
  position: relative;
}

.decision-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -72px;
  top: -78px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--path-color) 24%, transparent);
}

.decision-card.is-changing {
  animation: cardStep 360ms ease;
}

@keyframes cardStep {
  0% {
    opacity: 0;
    transform: translateX(18px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.decision-index {
  color: var(--path-deep);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.decision-card h3 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4.5vw, 3.7rem);
  line-height: 1;
}

.decision-card .lead {
  max-width: 600px;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
}

.advance-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.advance-card:hover {
  transform: translateY(-2px);
  border-color: var(--path-color);
  box-shadow: 0 24px 58px rgba(26, 32, 44, 0.13);
}

.card-arrow {
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--paper);
  border: 1px solid rgba(255, 184, 53, 0.44);
  font-size: 2rem;
  font-weight: 900;
}

.decision-pips {
  display: flex;
  gap: 8px;
}

.decision-pips span {
  width: 38px;
  height: 7px;
  border-radius: 6px;
  background: rgba(26, 32, 44, 0.12);
}

.decision-pips span.is-active {
  background: var(--path-color);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 134px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--paper);
  text-decoration: none;
  background: var(--ink);
}

.button.primary {
  background: var(--blue);
}

.button.gold {
  color: var(--ink);
  background: var(--gold);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid rgba(26, 32, 44, 0.12);
  background: var(--paper);
  box-shadow: none;
}

.button.arrow {
  width: 56px;
  min-width: 56px;
  padding: 0;
  font-size: 1.45rem;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.pathway-card {
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  max-width: 890px;
  min-height: 276px;
  padding: clamp(18px, 3vw, 30px);
  border-color: color-mix(in srgb, var(--path-color) 38%, rgba(26, 32, 44, 0.1));
  position: relative;
  margin-left: 54px;
}

.pathway-card h3 {
  margin-bottom: 8px;
  color: var(--path-deep);
  font-size: clamp(2rem, 3.7vw, 3.2rem);
  line-height: 1;
}

.pathway-stage {
  align-content: center;
}

.payoff-head h2 {
  color: var(--path-deep);
  font-size: clamp(1.7rem, 3.6vw, 3rem);
}

.payoff-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.56fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  overflow: hidden;
}

.pathway-graphic {
  width: 100%;
  height: 210px;
  display: grid;
  place-items: center;
  color: var(--path-color);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--path-color) 26%, transparent), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24));
  border: 1px solid rgba(26, 32, 44, 0.08);
}

.pathway-graphic svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pathway-copy {
  display: grid;
  gap: 8px;
  padding-right: 72px;
}

.pathway-tag {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--path-deep);
  background: color-mix(in srgb, var(--path-color) 16%, white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.entry-form {
  display: grid;
  gap: 10px;
  max-width: 850px;
  padding-left: 54px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.email-only-grid {
  max-width: 760px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-card {
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.contact-card.is-active {
  border-color: var(--path-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--path-color) 26%, transparent);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--paper);
}

.contact-icon svg {
  width: 30px;
  height: 30px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.fieldset-title {
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(26, 32, 44, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  font-size: 1rem;
}

.resource-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.resource-choice {
  min-height: 60px;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 8px;
  align-items: start;
  padding: 9px;
}

.resource-choice input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.resource-choice:has(input:checked) {
  border-color: var(--path-color);
  background: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(255, 184, 53, 0.45);
}

.resource-row {
  display: grid;
  gap: 6px;
}

.draw-stage,
.follow-stage {
  gap: 10px;
}

.wide-submit {
  min-width: 220px;
}

.draw-stage h2,
.follow-stage h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
}

.draw-stage .lead,
.follow-stage .lead {
  font-size: clamp(0.86rem, 1.2vw, 0.98rem);
}

.form-note,
.error-box {
  color: var(--slate);
  font-size: 0.78rem;
  line-height: 1.3;
}

.error-box {
  display: none;
  border: 1px solid rgba(184, 33, 5, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--rust);
  background: rgba(184, 33, 5, 0.07);
}

.error-box.is-visible {
  display: block;
}

.confirmation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  align-items: start;
}

.success-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 12px;
  align-items: stretch;
  min-height: 0;
}

.success-layout.no-linkedin {
  grid-template-columns: minmax(0, 1fr);
}

.success-main {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.ticket-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ticket-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.draw-ticket {
  border-radius: 8px;
  padding: 13px;
  color: var(--paper);
  background: var(--ink);
}

.draw-ticket span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.ticket-number {
  margin: 5px 0;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
  word-break: break-word;
}

.hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 214px;
  gap: 10px;
  align-items: start;
}

.resource-hub {
  display: grid;
  gap: 8px;
}

.compact-resources {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.hub-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
}

.hub-card small {
  color: var(--slate);
  font-weight: 900;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.download-row a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(1, 74, 185, 0.16);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--blue);
  background: var(--paper);
  font-weight: 900;
  text-decoration: none;
}

.linkedin-card {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 10px;
  justify-items: center;
  text-align: center;
}

.linkedin-card img {
  width: 132px;
  height: 132px;
  border: 7px solid white;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(26, 32, 44, 0.12);
}

.linkedin-card a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
  font-size: 0.85rem;
}

.compact-actions {
  margin-top: 2px;
}

.staff-dialog {
  width: min(940px, calc(100vw - 36px));
  max-height: min(760px, calc(100vh - 36px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.staff-dialog::backdrop {
  background: rgba(26, 32, 44, 0.62);
  backdrop-filter: blur(10px);
}

.staff-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: var(--paper);
  background: var(--ink);
}

.staff-dialog-header h2 {
  font-size: 1.35rem;
}

.icon-button {
  width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
}

.staff-actions {
  padding: 14px 18px;
  display: flex;
  gap: 10px;
}

.staff-actions[hidden] {
  display: none;
}

.submission-list {
  padding: 0 18px 18px;
  display: grid;
  gap: 10px;
  overflow: auto;
}

.staff-login-form,
.staff-settings {
  border: 1px solid rgba(26, 32, 44, 0.1);
  border-radius: 8px;
  padding: 14px;
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.84);
}

.staff-login-form {
  max-width: 420px;
}

.staff-settings {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) auto;
  align-items: end;
}

.settings-status {
  grid-column: 1 / -1;
  min-height: 18px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 900;
}

.submission-item {
  border: 1px solid rgba(26, 32, 44, 0.1);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 8px;
}

.submission-item header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.submission-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.submission-tags span {
  border-radius: 6px;
  padding: 5px 8px;
  color: var(--blue);
  background: rgba(1, 74, 185, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 184, 53, 0.78);
  outline-offset: 3px;
}

@media (max-height: 720px) {
  .experience-shell {
    min-height: 0;
    padding: 8px 12px;
    gap: 6px;
  }

  .hud {
    min-height: 42px;
  }

  .logo-slot {
    height: 40px;
  }

  .signal-pill {
    min-height: 32px;
    padding: 5px 10px;
  }

  .stage-content {
    gap: 10px;
    padding: 18px 26px;
  }

  .choice-stage {
    gap: 14px;
  }

  h1 {
    font-size: clamp(1.9rem, 3.7vw, 3rem);
  }

  h2 {
    font-size: clamp(1.35rem, 2.9vw, 2.34rem);
  }

  .path-card {
    min-height: 172px;
    grid-template-rows: 72px auto auto;
    gap: 6px;
    padding: 12px;
  }

  .choice-graphic {
    height: 72px;
  }

  .lock-scene,
  .journey-graphic {
    width: 170px;
  }

  .forward-orb {
    width: 82px;
    height: 82px;
    font-size: 2.55rem;
  }

  .decision-card {
    min-height: 200px;
  }

  .pathway-card {
    min-height: 210px;
  }
}

@media (max-width: 900px) {
  .experience-shell {
    padding: 16px;
  }

  .hud {
    grid-template-columns: 132px 1fr 100px;
  }

  .stage-panel {
    min-height: 0;
  }

  .choice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .path-card {
    min-height: 184px;
    grid-template-rows: 86px auto auto;
    padding: 14px;
  }

  .choice-graphic {
    height: 86px;
  }

  .split-stage,
  .journey-layout,
  .confirmation-grid,
  .hub-layout {
    grid-template-columns: 1fr;
  }

  .lock-scene,
  .journey-graphic {
    width: 190px;
    justify-self: center;
  }
}

@media (max-width: 720px) {
  body {
    overflow-y: auto;
  }

  .experience-shell {
    min-height: 100vh;
    padding: 12px;
  }

  .hud {
    grid-template-columns: 1fr auto;
  }

  .hud-center {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }

  .logo-slot {
    width: 136px;
  }

  .signal-pill {
    grid-template-columns: 1fr;
  }

  .stage-panel {
    min-height: 0;
  }

  .stage-content {
    align-content: start;
    padding: 24px;
  }

  .choice-grid,
  .contact-methods,
  .form-grid,
  .resource-options {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 176px;
    grid-template-columns: 96px 1fr;
    grid-template-rows: auto auto;
  }

  .choice-graphic {
    grid-row: 1 / 3;
    height: 96px;
  }

  .actions {
    width: 100%;
  }

  .actions .button:not(.arrow) {
    flex: 1 1 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}
