/* Author Tools — readiness / royalty / distribution (BPT purple theme) */
.author-tools {
  --at-navy: #1A0F3D;
  --at-navy-deep: #120A2E;
  --at-surface: #ffffff;
  --at-bg-soft: #F3F0FF;
  --at-line: #E4DEFF;
  --at-ink: #1A0F3D;
  --at-muted: #6B6285;
  --at-gold: #C9A86A;
  --at-crimson: #6B3AED;
  --at-crimson-deep: #5521C9;
  --at-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --at-font: "Manrope", system-ui, sans-serif;
  --at-display: "Fraunces", Georgia, serif;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: transparent;
  font-family: var(--at-font);
}
.author-tools--below-hero {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.author-tools .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--at-gold);
}
.author-tools .kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--at-gold);
}

.author-tools .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, color 0.25s;
}
.author-tools .btn:active { transform: scale(0.98); }
.author-tools .btn--crimson {
  background: var(--at-crimson);
  color: #fff;
}
.author-tools .btn--crimson:hover { background: var(--at-crimson-deep); }
.author-tools .btn--gold {
  background: var(--at-gold);
  color: var(--at-navy);
}
.author-tools .btn--gold:hover { background: #b89858; }
.author-tools .btn--ghost {
  background: transparent;
  color: var(--at-navy);
  border: 1px solid rgba(26, 15, 61, 0.25);
}
.author-tools .btn--ghost:hover {
  background: var(--at-navy);
  color: #fff;
}
.author-tools .btn--block { width: 100%; margin-top: 0.5rem; }

.author-tools .field {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--at-line);
  border-radius: 0.5rem;
  background: var(--at-surface);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--at-ink);
  box-sizing: border-box;
}
.author-tools .field:focus {
  outline: none;
  border-color: var(--at-crimson);
  box-shadow: 0 0 0 3px rgba(107, 58, 237, 0.15);
}

.author-tools__shell {
  background: var(--at-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(18, 10, 46, 0.28);
}

.author-tools__nav {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.author-tools__nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.1rem 1rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.3s, background 0.3s, border-color 0.3s;
}
.author-tools__nav-btn:hover {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
}
.author-tools__nav-btn.is-on {
  color: #fff;
  border-bottom-color: var(--at-gold);
  background: rgba(255, 255, 255, 0.06);
}
.author-tools__nav-num {
  font-family: var(--at-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--at-gold);
  opacity: 0.7;
}
.author-tools__nav-btn.is-on .author-tools__nav-num { opacity: 1; }

.author-tools__body { padding: clamp(2rem, 4vw, 3rem); }
.author-tools__panel { display: none; }
.author-tools__panel.is-on {
  display: block;
  animation: atJourneyIn 0.45s var(--at-ease);
}
@keyframes atJourneyIn {
  from { opacity: 0; transform: translateY(0.5rem); }
  to { opacity: 1; transform: none; }
}

.author-tools__split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.author-tools__panel-title {
  font-family: var(--at-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: #fff;
  margin: 0.65rem 0 0.85rem;
  line-height: 1.15;
  max-width: 18ch;
}
.author-tools__panel-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 1.25rem;
  max-width: 42ch;
}
.author-tools__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.author-tools__bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}
.author-tools__bullets li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--at-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.author-tools__work {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
}
.author-tools__work-label {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.readiness-checklist { display: grid; gap: 0.5rem; margin-bottom: 1.25rem; }
.readiness-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid transparent;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.readiness-row:hover { border-color: rgba(26, 15, 61, 0.15); }
.readiness-row:has(input:checked),
.readiness-row.is-checked {
  border-color: var(--at-gold);
  box-shadow: inset 3px 0 0 var(--at-crimson);
}
.readiness-row input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--at-crimson);
  flex-shrink: 0;
}
.readiness-row span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--at-navy);
}
.readiness-row--compact {
  background: transparent;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}
.readiness-row--compact span { color: rgba(255, 255, 255, 0.88); }
.readiness-row--compact:has(input:checked) {
  box-shadow: none;
  border-color: transparent;
}

.author-tools__fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.author-tools__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.author-tools__field span {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.author-tools__field .field {
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid transparent;
  border-radius: 0.45rem;
  font-size: 0.9375rem;
}
.author-tools__field select.field { appearance: auto; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.platform-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  text-align: center;
  position: relative;
}
.platform-pill input { position: absolute; opacity: 0; pointer-events: none; }
.platform-pill span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}
.platform-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
.platform-pill:has(input:checked),
.platform-pill.is-checked {
  background: #fff;
  border-color: #fff;
}
.platform-pill:has(input:checked) span,
.platform-pill.is-checked span { color: var(--at-navy); }

.platform-other-field { margin-bottom: 1.25rem; }
.platform-other-field__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}
.platform-other-field__input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  font-size: 0.875rem;
}
.platform-other-field--inline .platform-other-field__input {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--at-navy);
}
#journeyPlatformOtherWrap .platform-other-field__input {
  background: var(--at-bg-soft);
  border: 1px solid var(--at-line);
  color: var(--at-navy);
}
#journeyPlatformOtherWrap .platform-other-field__label { color: var(--at-muted); }

.author-tools__cta {
  width: 100%;
  padding: 0.95rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
}

.author-tools__shell-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.author-tools__shell-foot span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Tool lead modal */
.tool-lead-modal.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(18, 10, 46, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  font-family: var(--at-font);
}
.tool-lead-modal.modal.open { opacity: 1; visibility: visible; }
.tool-lead-modal .modal__sheet {
  width: min(26rem, 100%);
  padding: 2.25rem 1.75rem 1.85rem;
  background: #fff;
  border-radius: 0.85rem;
  border: 1px solid var(--at-line);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 28px 64px rgba(18, 10, 46, 0.28);
}
.tool-lead-modal .modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--at-line);
  border-radius: 50%;
  background: var(--at-bg-soft);
  color: var(--at-navy);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}
.tool-lead-modal .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--at-crimson);
  margin-bottom: 0.5rem;
}
.tool-lead-modal .kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--at-gold);
}
.tool-lead-modal__title {
  font-family: var(--at-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--at-navy);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.tool-lead-modal__intro {
  font-size: 0.875rem;
  color: var(--at-muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.tool-lead-summary {
  margin-bottom: 1.25rem;
  padding: 1.15rem 1.25rem;
  background: var(--at-bg-soft);
  border-left: 3px solid var(--at-gold);
  font-size: 0.8125rem;
  line-height: 1.65;
}
.tool-lead-summary__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--at-muted);
  margin-bottom: 0.4rem;
}
.tool-lead-summary__team {
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(26, 15, 61, 0.06);
  border-left: 3px solid var(--at-navy);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--at-ink);
}
.tool-lead-summary__team strong { color: var(--at-navy); display: block; margin-bottom: 0.35rem; }
.tool-lead-summary ul { margin: 0.35rem 0 0; padding: 0; list-style: none; }
.tool-lead-summary li {
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
  color: var(--at-ink);
}
.tool-lead-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  background: var(--at-gold);
  transform: rotate(45deg);
}
.tool-lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.25rem;
}
.tool-lead-form .field,
.tool-lead-modal .field,
body.page-bpt .tool-lead-modal .field,
body.page-bpt .tool-lead-form input.field {
  display: block;
  width: 100% !important;
  max-width: 100%;
  margin: 0 !important;
  box-sizing: border-box;
  padding: 0.95rem 1.05rem !important;
  border: 1.5px solid #E4DEFF !important;
  border-radius: 0.55rem !important;
  background: #F8F6FF !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: 0.9375rem !important;
  font-weight: 500;
  line-height: 1.4;
  color: #1A0F3D !important;
  -webkit-text-fill-color: #1A0F3D !important;
  outline: none !important;
  box-shadow: none !important;
  appearance: none;
  -webkit-appearance: none;
}
.tool-lead-form .field:focus,
.tool-lead-modal .field:focus,
body.page-bpt .tool-lead-modal .field:focus {
  border-color: #6B3AED !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(107, 58, 237, 0.16) !important;
}
.tool-lead-form .field::placeholder,
.tool-lead-modal .field::placeholder,
body.page-bpt .tool-lead-modal .field::placeholder {
  color: #8B83A3 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #8B83A3 !important;
}
.tool-lead-modal .btn--crimson {
  background: #6B3AED;
  color: #fff;
  width: 100%;
  border: none;
  border-radius: 0.55rem;
  padding: 1rem 1.5rem;
  margin-top: 0.35rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.tool-lead-modal .btn--crimson:hover { background: #5521C9; }

/* Journey lead form fields */
.journey-lead-form .field,
body.page-bpt .journey-lead-form .field {
  display: block;
  width: 100% !important;
  box-sizing: border-box;
  margin-bottom: 0.65rem !important;
  padding: 0.95rem 1.05rem !important;
  border: 1.5px solid #E4DEFF !important;
  border-radius: 0.55rem !important;
  background: #F8F6FF !important;
  font-family: "Manrope", system-ui, sans-serif !important;
  font-size: 0.9375rem !important;
  color: #1A0F3D !important;
  -webkit-text-fill-color: #1A0F3D !important;
  outline: none !important;
  box-shadow: none !important;
}
.journey-lead-form .field:focus,
body.page-bpt .journey-lead-form .field:focus {
  border-color: #6B3AED !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(107, 58, 237, 0.16) !important;
}
.journey-lead-form .field::placeholder,
body.page-bpt .journey-lead-form .field::placeholder {
  color: #8B83A3 !important;
  -webkit-text-fill-color: #8B83A3 !important;
}

/* Journey modal */
.journey-modal {
  --at-navy: #1A0F3D;
  --at-surface: #fff;
  --at-bg-soft: #F3F0FF;
  --at-line: #E4DEFF;
  --at-ink: #1A0F3D;
  --at-muted: #6B6285;
  --at-gold: #C9A86A;
  --at-crimson: #6B3AED;
  --at-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --at-display: "Fraunces", Georgia, serif;
  --at-font: "Manrope", system-ui, sans-serif;
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(18, 10, 46, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  font-family: var(--at-font);
}
.journey-modal.open { opacity: 1; visibility: visible; }
.journey-modal__sheet {
  position: relative;
  width: min(36rem, 100%);
  max-height: min(90vh, 44rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--at-surface);
  border: 1px solid var(--at-line);
  border-radius: 0.75rem;
  box-shadow: 0 24px 64px rgba(18, 10, 46, 0.25);
}
.journey-modal__head { padding: 1.25rem 1.5rem 0; flex-shrink: 0; }
.journey-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: var(--at-bg-soft);
  color: var(--at-navy);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0.35rem;
}
.journey-modal__body {
  padding: 0 1.5rem 1rem;
  overflow-y: auto;
  flex: 1;
}
.journey-modal__foot {
  flex-shrink: 0;
  padding: 1rem 1.5rem 1.25rem;
  background: var(--at-surface);
  border-top: 1px solid var(--at-line);
}
.journey-modal .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--at-crimson);
}
.journey-modal .kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--at-gold);
}
.journey-progress {
  height: 3px;
  background: var(--at-line);
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 2px;
}
.journey-progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--at-crimson), var(--at-gold));
  transition: width 0.4s var(--at-ease);
}
.journey-progress__label {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 15, 61, 0.45);
}
.journey-step { display: none; }
.journey-step.is-active { display: block; animation: atJourneyIn 0.4s var(--at-ease); }
.journey-step__title {
  font-family: var(--at-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--at-navy);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.journey-step__desc {
  font-size: 0.875rem;
  color: var(--at-muted);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.journey-options { display: grid; gap: 0.5rem; }
.journey-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--at-line);
  background: var(--at-surface);
  cursor: pointer;
  border-radius: 0.4rem;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  text-align: left;
  font-size: 0.875rem;
  color: var(--at-ink);
}
.journey-option:hover {
  border-color: rgba(26, 15, 61, 0.35);
  background: var(--at-bg-soft);
}
.journey-option.is-selected,
.journey-option:has(input:checked) {
  border-color: var(--at-navy);
  background: rgba(107, 58, 237, 0.06);
  box-shadow: inset 3px 0 0 var(--at-crimson);
}
.journey-option input { flex-shrink: 0; accent-color: var(--at-crimson); }
.journey-option span { flex: 1; }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.journey-grid--3 { grid-template-columns: repeat(3, 1fr); }
.journey-chip {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--at-line);
  background: var(--at-surface);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border-radius: 0.4rem;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  position: relative;
}
.journey-chip:hover { border-color: var(--at-navy); }
.journey-chip.is-selected,
.journey-chip:has(input:checked) {
  background: var(--at-navy);
  border-color: var(--at-navy);
  color: #fff;
}
.journey-chip input { position: absolute; opacity: 0; pointer-events: none; }
.journey-field { margin-bottom: 0.75rem; }
.journey-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--at-muted);
  margin-bottom: 0.35rem;
}
.journey-field input,
.journey-field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--at-line);
  border-radius: 0.4rem;
  background: var(--at-surface);
  font-size: 0.875rem;
  font-family: inherit;
  box-sizing: border-box;
}
.journey-nav { display: flex; gap: 0.75rem; }
.journey-nav .btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.5rem;
  cursor: pointer;
  border: none;
}
.journey-nav .btn--crimson { background: var(--at-crimson); color: #fff; }
.journey-nav .btn--crimson:hover { background: #5521C9; }
.journey-nav .btn--ghost {
  background: transparent;
  color: var(--at-navy);
  border: 1px solid rgba(26, 15, 61, 0.25);
}
.journey-result {
  padding: 1.1rem 1.15rem;
  background: var(--at-bg-soft);
  border: 1px solid var(--at-line);
  border-left: 3px solid var(--at-gold);
  margin-bottom: 0;
  border-radius: 0.4rem;
}
.journey-result__label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--at-muted);
}
.journey-result__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--at-ink);
}
.journey-result__list li {
  padding: 0.15rem 0 0.15rem 1rem;
  position: relative;
}
.journey-result__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  background: var(--at-gold);
  transform: rotate(45deg);
}
.journey-lead-form { margin-top: 1.35rem; }
.journey-lead-form__label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--at-muted);
}
.journey-perks {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--at-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .author-tools__split { grid-template-columns: 1fr; }
  .author-tools__panel-title { max-width: none; }
  .author-tools__nav { flex-direction: column; }
  .author-tools__nav-btn { justify-content: flex-start; padding-left: 1.25rem; }
  .author-tools__fields { grid-template-columns: 1fr; }
  .journey-grid,
  .journey-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .journey-grid,
  .journey-grid--3 { grid-template-columns: 1fr; }
  .journey-nav { flex-direction: column; }
}
