@font-face {
  font-family: "Barlow Condensed";
  src: url("../fonts/barlow-condensed-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --dp-ink: #0d262d;
  --dp-ink-strong: #030d12;
  --dp-ink-soft: #15343f;
  --dp-paper: #f1f5f2;
  --dp-paper-strong: #fbfdfc;
  --dp-mist: #dfe9e4;
  --dp-line: #aebfba;
  --dp-line-dark: #2c515b;
  --dp-muted: #465f66;
  --dp-muted-light: #b8cbd0;
  --dp-cyan: #37c8e8;
  --dp-cyan-strong: #036a7c;
  --dp-cyan-soft: #c9f5fc;
  --dp-warning: #d9b44a;
  --dp-warning-soft: #f4e7bd;
  --dp-max: 1280px;
  --dp-narrow: 760px;
  --dp-radius: 6px;
  --dp-space-1: 8px;
  --dp-space-2: 12px;
  --dp-space-3: 16px;
  --dp-space-4: 24px;
  --dp-space-5: 32px;
  --dp-space-6: 48px;
  --dp-space-7: 72px;
  --dp-space-8: 104px;
  --dp-font-body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --dp-font-heading: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

/* Keep the approved homepage palette and type scale independent of global theme settings. */
body.home {
  --dp-ink: #0d262d;
  --dp-muted: #465f66;
  --dp-radius: 6px;
  --dp-font-body: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --dp-font-heading: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
}

body.home .dp-menu-toggle span:not(.screen-reader-text) {
  background: var(--dp-paper-strong) !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--dp-ink);
  background: var(--dp-paper);
  font-family: var(--dp-font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a,
button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(43, 196, 218, 0.2);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

p {
  margin: 0 0 1em;
}

h1,
h2,
h3 {
  margin: 0;
  max-width: 100%;
  color: inherit;
  font-family: var(--dp-font-heading);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  scroll-margin-top: 96px;
}

h1 {
  max-width: 780px;
  font-size: 5rem;
  line-height: 0.92;
}

h2 {
  max-width: 760px;
  font-size: 3.5rem;
  line-height: 0.98;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.05;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 0;
  clip: auto;
  color: var(--dp-ink-strong);
  background: var(--dp-cyan);
  font-weight: 700;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--dp-cyan);
  outline-offset: 4px;
}

.dp-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dp-main {
  flex: 1 0 auto;
}

.dp-shell {
  width: min(var(--dp-max), calc(100% - 64px));
  margin-inline: auto;
}

.dp-section {
  padding: var(--dp-space-8) 0;
}

.dp-section-soft {
  background: var(--dp-mist);
}

.dp-section-dark {
  color: var(--dp-paper-strong);
  background: var(--dp-ink-strong);
}

.dp-kicker {
  margin: 0 0 var(--dp-space-3);
  color: var(--dp-cyan-strong);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
}

.dp-lede {
  max-width: 700px;
  color: var(--dp-muted);
  font-size: 1.16rem;
  line-height: 1.68;
  text-wrap: pretty;
}

.dp-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dp-button:hover {
  transform: translateY(-2px);
}

.dp-button:active {
  transform: translateY(1px);
}

.dp-button-primary {
  color: var(--dp-ink-strong);
  background: var(--dp-cyan);
}

.dp-button-primary:hover {
  color: var(--dp-ink-strong);
  background: #60d9e8;
}

.dp-button-secondary {
  color: var(--dp-paper-strong);
  border-color: #496267;
  background: transparent;
}

.dp-button-secondary:hover {
  border-color: var(--dp-cyan);
  color: var(--dp-cyan-soft);
}

.dp-text-cta,
.dp-read-link,
.dp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dp-ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.dp-text-cta::after,
.dp-read-link::after,
.dp-text-link::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--dp-cyan-strong);
  transition: width 180ms ease;
}

a:hover .dp-read-link::after,
a:hover .dp-text-link::after,
.dp-text-cta:hover::after {
  width: 40px;
}

/* Header */

.dp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 76px;
  align-items: center;
  gap: var(--dp-space-5);
  padding: 12px max(32px, calc((100vw - var(--dp-max)) / 2));
  color: var(--dp-paper-strong);
  border-bottom: 1px solid var(--dp-line-dark);
  background: rgba(6, 20, 23, 0.97);
}

.dp-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
}

.dp-brand-logo {
  width: 188px;
  height: auto;
}

.dp-desktop-nav {
  justify-self: end;
}

.dp-menu,
.dp-mobile-menu,
.dp-prefooter-menu,
.dp-footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dp-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.dp-menu a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--dp-muted-light);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.dp-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--dp-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.dp-menu a:hover {
  color: var(--dp-paper-strong);
}

.dp-menu a:hover::after,
.dp-menu a:focus-visible::after {
  transform: scaleX(1);
}

.dp-menu .dp-cta a {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--dp-cyan);
  border-radius: 4px;
  color: var(--dp-paper-strong);
}

.dp-menu .dp-cta a::after {
  display: none;
}

.dp-menu .dp-cta a:hover {
  color: var(--dp-ink-strong);
  background: var(--dp-cyan);
}

.dp-menu-toggle,
.dp-mobile-nav {
  display: none;
}

/* Hero */

.dp-home-hero {
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  color: var(--dp-paper-strong);
  background: var(--dp-ink-strong);
}

.dp-home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(470px, 0.96fr);
  align-items: center;
  gap: var(--dp-space-7);
}

.dp-home-hero-copy {
  position: relative;
}

.dp-home-hero-copy::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -32px;
  width: 64px;
  height: 4px;
  background: var(--dp-cyan);
}

.dp-home-hero h1 {
  margin-bottom: var(--dp-space-5);
}

.dp-home-hero .dp-lede {
  color: var(--dp-muted-light);
}

.dp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dp-space-2);
  margin-top: var(--dp-space-5);
}

.dp-hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dp-space-4);
  margin-top: var(--dp-space-5);
  color: var(--dp-muted-light);
  font-size: 0.82rem;
  font-weight: 650;
}

.dp-hero-proofline span {
  position: relative;
  padding-left: 14px;
}

.dp-hero-proofline span::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--dp-cyan);
}

.dp-route-board {
  position: relative;
  padding: 22px;
  border: 1px solid #355157;
  border-radius: var(--dp-radius);
  background: var(--dp-ink-soft);
}

.dp-route-board::before,
.dp-route-board::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--dp-cyan);
}

.dp-route-board::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.dp-route-board::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.dp-route-board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--dp-space-3);
  padding-bottom: var(--dp-space-4);
  border-bottom: 1px solid var(--dp-line-dark);
}

.dp-route-board-head span {
  color: var(--dp-cyan);
  font-size: 0.74rem;
  font-weight: 700;
}

.dp-route-board-head strong {
  max-width: 220px;
  font-family: var(--dp-font-heading);
  font-size: 1.5rem;
  line-height: 1;
  text-align: right;
}

.dp-route-board-table {
  display: grid;
  grid-template-columns: minmax(96px, 1.3fr) repeat(3, minmax(0, 1fr));
  margin-top: var(--dp-space-3);
  border-top: 1px solid var(--dp-line-dark);
  border-left: 1px solid var(--dp-line-dark);
}

.dp-route-board-table > div {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  padding: 10px;
  border-right: 1px solid var(--dp-line-dark);
  border-bottom: 1px solid var(--dp-line-dark);
  color: var(--dp-muted-light);
  font-size: 0.72rem;
  line-height: 1.25;
}

.dp-route-board-table .dp-route-board-corner,
.dp-route-board-table .dp-route-name {
  min-height: 66px;
  color: var(--dp-paper-strong);
  font-weight: 700;
}

.dp-route-name {
  justify-content: center;
  text-align: center;
}

.dp-check-name {
  font-weight: 650;
}

.dp-signal {
  display: block;
  height: 6px;
  background: var(--dp-cyan);
}

.dp-signal-short {
  width: 38%;
}

.dp-signal-mid {
  width: 62%;
}

.dp-signal-long {
  width: 84%;
}

.dp-status {
  color: var(--dp-warning-soft);
  font-size: 0.68rem;
  font-weight: 700;
}

.dp-action-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #70878b;
}

.dp-route-board-note {
  margin: var(--dp-space-3) 0 0;
  color: var(--dp-muted-light);
  font-size: 0.76rem;
}

/* Shared section headings */

.dp-section-intro,
.dp-section-heading {
  margin-bottom: var(--dp-space-6);
}

.dp-section-intro-split {
  display: grid;
  grid-template-columns: 160px minmax(0, 760px) 1fr;
  align-items: end;
  gap: var(--dp-space-5);
}

.dp-section-intro-split .dp-kicker {
  margin: 0;
}

.dp-section-index {
  justify-self: end;
  margin: 0;
  color: var(--dp-muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.dp-section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--dp-space-6);
}

.dp-section-heading-row > div {
  max-width: 800px;
}

/* Situation chooser */

.dp-situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--dp-space-6);
  border-bottom: 1px solid var(--dp-line);
}

.dp-situation-card {
  border-top: 1px solid var(--dp-line);
}

.dp-situation-card .dp-card-link {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr) auto;
  min-height: 224px;
  align-items: start;
  gap: var(--dp-space-4);
  padding: var(--dp-space-5) var(--dp-space-2);
  color: inherit;
  text-decoration: none;
  transition: background-color 180ms ease, padding 180ms ease;
}

.dp-situation-card .dp-card-link:hover {
  padding-right: var(--dp-space-3);
  padding-left: var(--dp-space-3);
  background: rgba(255, 255, 255, 0.58);
}

.dp-situation-label {
  color: var(--dp-cyan-strong);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.dp-situation-card h3 {
  margin-bottom: var(--dp-space-2);
  font-size: 1.55rem;
}

.dp-situation-card p {
  max-width: 46ch;
  margin: 0;
  color: var(--dp-muted);
  font-size: 0.91rem;
  line-height: 1.58;
}

.dp-situation-card .dp-text-link {
  align-self: end;
  white-space: nowrap;
}

/* Featured guides */

.dp-featured-section {
  background: var(--dp-paper-strong);
}

.dp-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: var(--dp-space-6);
}

.dp-featured-lead,
.dp-featured-item {
  border-top: 3px solid var(--dp-ink);
}

.dp-featured-lead {
  display: flex;
  min-height: 520px;
  background: var(--dp-ink);
}

.dp-featured-lead .dp-card-link {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--dp-space-6);
  color: var(--dp-paper-strong);
  text-decoration: none;
}

.dp-featured-lead h3 {
  max-width: 650px;
  margin: var(--dp-space-5) 0 var(--dp-space-4);
  font-size: 3.5rem;
}

.dp-featured-lead p {
  max-width: 62ch;
  color: var(--dp-muted-light);
}

.dp-featured-lead .dp-read-link {
  margin-top: var(--dp-space-4);
  color: var(--dp-paper-strong);
}

.dp-featured-secondary {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: var(--dp-space-5);
}

.dp-featured-item .dp-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: var(--dp-space-4) 0;
  text-decoration: none;
}

.dp-featured-item h3 {
  margin: var(--dp-space-4) 0 var(--dp-space-3);
  font-size: 2.15rem;
}

.dp-featured-item p {
  color: var(--dp-muted);
  font-size: 0.92rem;
}

.dp-featured-item .dp-read-link {
  margin-top: auto;
  padding-top: var(--dp-space-3);
}

.dp-article-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--dp-space-2);
}

.dp-category {
  color: var(--dp-cyan-strong);
  font-size: 0.74rem;
  font-weight: 700;
}

.dp-featured-lead .dp-category {
  color: var(--dp-cyan);
}

.dp-article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--dp-muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.dp-featured-lead .dp-article-meta {
  color: var(--dp-muted-light);
}

/* Resource directory */

.dp-resource-section {
  background: var(--dp-paper);
}

.dp-resource-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: var(--dp-space-8);
}

.dp-resource-heading {
  position: sticky;
  top: 116px;
}

.dp-resource-heading h2 {
  margin-bottom: var(--dp-space-4);
}

.dp-resource-heading > p:last-child {
  max-width: 42ch;
  color: var(--dp-muted);
}

.dp-resource-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--dp-space-5);
  border-bottom: 1px solid var(--dp-line);
}

.dp-resource-card {
  border-top: 1px solid var(--dp-line);
}

.dp-resource-card a {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: var(--dp-space-5) 0;
  text-decoration: none;
}

.dp-resource-card h3 {
  margin-bottom: var(--dp-space-3);
}

.dp-resource-card p {
  max-width: 42ch;
  color: var(--dp-muted);
  font-size: 0.92rem;
}

.dp-resource-card .dp-text-link {
  margin-top: auto;
}

/* Risk section */

.dp-risk-section {
  border-top: 4px solid var(--dp-warning);
}

.dp-dark-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: start;
  gap: var(--dp-space-8);
}

.dp-risk-intro .dp-kicker {
  color: var(--dp-warning);
}

.dp-risk-intro h2 {
  margin-bottom: var(--dp-space-4);
}

.dp-risk-intro .dp-lede {
  color: var(--dp-muted-light);
}

.dp-avoid-list {
  border-bottom: 1px solid var(--dp-line-dark);
}

.dp-avoid-item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: var(--dp-space-4);
  padding: 26px 0;
  border-top: 1px solid var(--dp-line-dark);
}

.dp-avoid-item > span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  background: var(--dp-warning);
}

.dp-avoid-item p {
  max-width: 58ch;
  margin: 0;
  color: #d8e4e4;
  font-size: 1rem;
  font-weight: 600;
}

/* Latest signals */

.dp-latest-section {
  background: var(--dp-paper-strong);
}

.dp-signal-feed {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--dp-space-6);
  border-bottom: 1px solid var(--dp-line);
}

.dp-signal-item {
  border-top: 1px solid var(--dp-line);
}

.dp-signal-item a {
  display: grid;
  min-height: 280px;
  grid-template-rows: auto auto 1fr;
  padding: var(--dp-space-5) 0;
  color: inherit;
  text-decoration: none;
}

.dp-signal-item h3 {
  max-width: 580px;
  margin: var(--dp-space-4) 0 var(--dp-space-3);
  font-size: 2rem;
}

.dp-signal-item p {
  max-width: 60ch;
  margin: 0;
  color: var(--dp-muted);
  font-size: 0.91rem;
}

.dp-signal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--dp-muted);
  font-size: 0.72rem;
  font-weight: 650;
}

.dp-signal-meta span:first-child {
  color: var(--dp-cyan-strong);
}

.dp-signal-item a:hover h3,
.dp-featured-item a:hover h3,
.dp-resource-card a:hover h3,
.dp-situation-card a:hover h3 {
  color: #067f91;
}

.dp-featured-lead a:hover h3 {
  color: var(--dp-cyan-soft);
}

/* CTA sections */

.dp-newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--dp-space-6);
  padding: var(--dp-space-6);
  border: 1px solid #a8c2be;
  border-left: 6px solid var(--dp-cyan-strong);
  background: var(--dp-paper-strong);
}

.dp-newsletter-band h2 {
  max-width: 800px;
  margin-bottom: var(--dp-space-3);
  font-size: 3rem;
}

.dp-newsletter-band p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--dp-muted);
}

.dp-final-cta {
  padding: var(--dp-space-8) 0;
  overflow: hidden;
  color: var(--dp-paper-strong);
  background: var(--dp-ink);
}

.dp-final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: var(--dp-space-8);
}

.dp-final-cta h2 {
  margin-bottom: var(--dp-space-4);
}

.dp-final-cta p:not(.dp-kicker) {
  max-width: 64ch;
  margin-bottom: var(--dp-space-5);
  color: var(--dp-muted-light);
}

.dp-system-stack {
  position: relative;
  min-height: 390px;
}

.dp-system-sheet {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(86%, 430px);
  aspect-ratio: 4 / 3;
  padding: var(--dp-space-5);
  border: 1px solid #3b5a60;
  border-radius: 4px;
  background: #112b30;
}

.dp-system-sheet-back {
  top: 0;
  right: 0;
  color: var(--dp-muted-light);
}

.dp-system-sheet-mid {
  top: 36px;
  right: 36px;
  color: var(--dp-cyan-soft);
  background: #0d2428;
}

.dp-system-sheet-front {
  top: 72px;
  right: 72px;
  border-color: var(--dp-cyan-strong);
  background: var(--dp-ink-strong);
}

.dp-system-sheet span,
.dp-system-sheet small {
  font-size: 0.76rem;
  font-weight: 650;
}

.dp-system-sheet-front span {
  color: var(--dp-cyan);
}

.dp-system-sheet-front strong {
  max-width: 300px;
  margin: 8px 0 16px;
  font-family: var(--dp-font-heading);
  font-size: 2.6rem;
  line-height: 0.95;
}

.dp-system-sheet-front small {
  color: var(--dp-muted-light);
}

/* Conditional theme states: retained without forcing dormant content visible. */

.dp-carousel-track-wrap {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 max(32px, calc((100vw - var(--dp-max)) / 2)) var(--dp-space-4);
  scrollbar-color: var(--dp-cyan-strong) var(--dp-ink-soft);
}

.dp-carousel-track {
  display: flex;
  width: max-content;
  gap: var(--dp-space-4);
}

.dp-carousel-card {
  width: 210px;
  flex: 0 0 auto;
  color: var(--dp-paper-strong);
  text-decoration: none;
}

.dp-carousel-card[aria-hidden="true"] {
  display: none;
}

.dp-carousel-cover {
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border: 1px solid var(--dp-line-dark);
  background: var(--dp-ink-soft);
}

.dp-carousel-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dp-carousel-info {
  display: grid;
  gap: 4px;
  padding-top: var(--dp-space-3);
}

.dp-carousel-info strong {
  color: var(--dp-paper-strong);
  font-family: var(--dp-font-heading);
  font-size: 1.35rem;
  line-height: 1.05;
}

.dp-carousel-info span {
  color: var(--dp-muted-light);
  font-size: 0.78rem;
}

/* Footer */

.dp-prefooter {
  color: var(--dp-paper-strong);
  border-top: 1px solid var(--dp-line-dark);
  border-bottom: 1px solid var(--dp-line-dark);
  background: var(--dp-ink-strong);
}

.dp-prefooter .dp-shell {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: var(--dp-space-5);
}

.dp-prefooter-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dp-space-5);
}

.dp-prefooter-menu a,
.dp-footer-menu a {
  color: var(--dp-muted-light);
  font-size: 0.8rem;
  font-weight: 650;
  text-decoration: none;
}

.dp-prefooter-menu a:hover,
.dp-footer-menu a:hover {
  color: var(--dp-cyan-soft);
}

.dp-site-footer {
  color: var(--dp-paper-strong);
  background: var(--dp-ink-strong);
}

.dp-footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: var(--dp-space-7);
  padding-top: var(--dp-space-7);
  padding-bottom: var(--dp-space-7);
}

.dp-footer-logo {
  width: 190px;
  margin-bottom: var(--dp-space-4);
}

.dp-footer-brand p {
  max-width: 48ch;
  margin: 0;
  color: var(--dp-muted-light);
  font-size: 0.84rem;
}

.dp-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--dp-space-2);
  margin-top: var(--dp-space-4);
}

.dp-footer-social a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--dp-line-dark);
  color: var(--dp-muted-light);
  text-decoration: none;
}

.dp-footer-social a:hover {
  border-color: var(--dp-cyan);
  color: var(--dp-cyan-soft);
}

.dp-footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
}

.dp-footer-bottom {
  border-top: 1px solid var(--dp-line-dark);
}

.dp-footer-bottom .dp-shell {
  padding-top: var(--dp-space-4);
  padding-bottom: var(--dp-space-4);
}

.dp-footer-bottom p {
  margin: 0;
  color: #82999d;
  font-size: 0.74rem;
}

/* Responsive */

@media (max-width: 1100px) {
  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 3.15rem;
  }

  .dp-home-hero {
    min-height: auto;
  }

  .dp-home-hero-grid,
  .dp-resource-layout,
  .dp-dark-editorial,
  .dp-final-cta-grid {
    grid-template-columns: 1fr;
  }

  .dp-home-hero-grid {
    gap: var(--dp-space-6);
  }

  .dp-home-hero-copy {
    max-width: 820px;
  }

  .dp-route-board {
    max-width: 760px;
  }

  .dp-resource-layout,
  .dp-dark-editorial,
  .dp-final-cta-grid {
    gap: var(--dp-space-7);
  }

  .dp-resource-heading {
    position: static;
  }

  .dp-system-stack {
    width: min(620px, 100%);
  }
}

@media (max-width: 900px) {
  .dp-shell {
    width: min(var(--dp-max), calc(100% - 40px));
  }

  .dp-section {
    padding: var(--dp-space-7) 0;
  }

  .dp-site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 20px;
  }

  .dp-brand-logo {
    width: 158px;
  }

  .dp-desktop-nav {
    display: none;
  }

  .dp-menu-toggle {
    position: relative;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid #36545a;
    border-radius: 4px;
    background: transparent;
  }

  .dp-menu-toggle span:not(.screen-reader-text) {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--dp-paper-strong);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .dp-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .dp-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .dp-menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
  }

  .dp-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .dp-menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .dp-mobile-nav {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: env(safe-area-inset-top, 0) max(20px, env(safe-area-inset-right, 0)) max(40px, env(safe-area-inset-bottom, 0)) max(20px, env(safe-area-inset-left, 0));
    color: var(--dp-paper-strong);
    background: var(--dp-ink-strong);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 0s 180ms;
  }

  .dp-mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 180ms ease, visibility 0s;
  }

  .dp-mobile-nav-header {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--dp-line-dark);
  }

  .dp-mobile-close {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid #36545a;
    border-radius: 4px;
    color: var(--dp-paper-strong);
    background: transparent;
  }

  .dp-mobile-close span {
    position: absolute;
    top: 20px;
    left: 11px;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .dp-mobile-close span:first-child {
    transform: rotate(45deg);
  }

  .dp-mobile-close span:last-child {
    transform: rotate(-45deg);
  }

  .dp-mobile-menu {
    margin-top: var(--dp-space-5);
    border-top: 1px solid var(--dp-line-dark);
  }

  .dp-mobile-menu li {
    border-bottom: 1px solid var(--dp-line-dark);
  }

  .dp-mobile-menu a {
    display: block;
    padding: 18px 8px;
    color: var(--dp-paper-strong);
    font-size: 1.05rem;
    font-weight: 650;
    text-decoration: none;
  }

  .dp-mobile-menu .dp-cta {
    padding-top: var(--dp-space-4);
    border: 0;
  }

  .dp-mobile-menu .dp-cta a {
    color: var(--dp-ink-strong);
    background: var(--dp-cyan);
    text-align: center;
  }

  .dp-section-intro-split {
    grid-template-columns: 1fr;
    gap: var(--dp-space-3);
  }

  .dp-section-index {
    justify-self: start;
  }

  .dp-situation-grid,
  .dp-signal-feed {
    grid-template-columns: 1fr;
  }

  .dp-featured-grid {
    grid-template-columns: 1fr;
  }

  .dp-featured-lead {
    min-height: 460px;
  }

  .dp-featured-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .dp-resource-directory {
    grid-template-columns: 1fr;
  }

  .dp-resource-card a,
  .dp-signal-item a {
    min-height: auto;
  }

  .dp-newsletter-band {
    grid-template-columns: 1fr;
  }

  .dp-prefooter .dp-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-top: var(--dp-space-5);
    padding-bottom: var(--dp-space-5);
  }

  .dp-footer-cta {
    width: 100%;
  }

  .dp-footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dp-footer-menu {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 3.45rem;
    line-height: 0.94;
  }

  h2 {
    font-size: 2.65rem;
  }

  h3 {
    font-size: 1.55rem;
  }

  .dp-shell {
    width: min(var(--dp-max), calc(100% - 32px));
  }

  .dp-section {
    padding: 64px 0;
  }

  .dp-home-hero {
    padding-top: 76px;
    padding-bottom: 64px;
  }

  .dp-home-hero-copy::before {
    top: -22px;
    left: 0;
    width: 48px;
  }

  .dp-home-hero h1 {
    margin-bottom: var(--dp-space-4);
  }

  .dp-hero-actions {
    flex-direction: column;
  }

  .dp-hero-actions .dp-button {
    width: 100%;
  }

  .dp-hero-proofline {
    display: grid;
    gap: 8px;
  }

  .dp-route-board {
    padding: 14px;
  }

  .dp-route-board-head {
    align-items: start;
    flex-direction: column;
  }

  .dp-route-board-head strong {
    max-width: none;
    text-align: left;
  }

  .dp-route-board-table {
    grid-template-columns: minmax(72px, 1.16fr) repeat(3, minmax(0, 1fr));
  }

  .dp-route-board-table > div {
    min-height: 50px;
    padding: 7px 5px;
    font-size: 0.62rem;
  }

  .dp-route-board-table .dp-route-board-corner,
  .dp-route-board-table .dp-route-name {
    min-height: 62px;
  }

  .dp-status {
    font-size: 0.58rem;
  }

  .dp-section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--dp-space-4);
  }

  .dp-situation-card .dp-card-link {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: var(--dp-space-3);
    padding: 26px 0;
  }

  .dp-situation-card .dp-card-link:hover {
    padding-right: 8px;
    padding-left: 8px;
  }

  .dp-situation-card .dp-text-link {
    align-self: auto;
  }

  .dp-featured-lead {
    min-height: 500px;
  }

  .dp-featured-lead .dp-card-link {
    padding: var(--dp-space-5);
  }

  .dp-featured-lead h3 {
    font-size: 2.7rem;
  }

  .dp-featured-secondary {
    grid-template-columns: 1fr;
  }

  .dp-featured-item h3,
  .dp-signal-item h3 {
    font-size: 1.8rem;
  }

  .dp-resource-layout,
  .dp-dark-editorial,
  .dp-final-cta-grid {
    gap: var(--dp-space-6);
  }

  .dp-resource-card a {
    min-height: auto;
    padding: 26px 0;
  }

  .dp-avoid-item {
    padding: 22px 0;
  }

  .dp-signal-item a {
    min-height: auto;
    padding: 28px 0;
  }

  .dp-newsletter-band {
    padding: var(--dp-space-5) var(--dp-space-4);
  }

  .dp-newsletter-band h2 {
    font-size: 2.5rem;
  }

  .dp-newsletter-band .dp-button,
  .dp-final-cta .dp-button {
    width: 100%;
  }

  .dp-final-cta {
    padding: 72px 0;
  }

  .dp-system-stack {
    min-height: 300px;
  }

  .dp-system-sheet {
    width: 88%;
    padding: var(--dp-space-4);
  }

  .dp-system-sheet-mid {
    top: 24px;
    right: 18px;
  }

  .dp-system-sheet-front {
    top: 48px;
    right: 36px;
  }

  .dp-system-sheet-front strong {
    font-size: 2rem;
  }

  .dp-prefooter-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: var(--dp-space-3);
  }

  .dp-footer-grid {
    padding-top: var(--dp-space-6);
    padding-bottom: var(--dp-space-6);
  }

  .dp-footer-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.dp-system-stack-custom {
  display: grid;
  height: auto;
  place-items: center;
}

.dp-system-stack-custom img {
  width: min(100%, 520px);
  max-height: 390px;
  border: 1px solid var(--dp-line-dark);
  object-fit: contain;
}

/* Visual realignment: TradePathPro decision-system language. */

body {
  background: var(--dp-paper);
}

a:focus-visible,
button:focus-visible {
  outline-color: var(--dp-warning);
}

h1 {
  max-width: 690px;
  font-size: 4.75rem;
  line-height: 0.9;
}

h2 {
  font-size: 3.35rem;
  line-height: 0.94;
}

h3 {
  font-size: 1.72rem;
}

.dp-section {
  padding: 112px 0 124px;
}

.dp-kicker {
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.dp-site-header {
  min-height: 82px;
  border-bottom: 2px solid rgba(55, 200, 232, 0.78);
  background: rgba(3, 13, 18, 0.96);
  backdrop-filter: blur(12px);
}

.dp-brand-logo {
  width: 198px;
}

.dp-menu a {
  color: #c6d6d9;
}

.dp-menu .dp-cta a {
  border-color: rgba(55, 200, 232, 0.75);
  background: rgba(55, 200, 232, 0.08);
}

/* Cinematic hero with a decision dossier. */

.dp-home-hero {
  position: relative;
  z-index: 0;
  display: block;
  min-height: 930px;
  padding: 0;
  isolation: isolate;
  background: var(--dp-ink-strong);
}

.dp-home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 13, 18, 0.98) 0%, rgba(3, 13, 18, 0.92) 34%, rgba(3, 13, 18, 0.45) 64%, rgba(3, 13, 18, 0.12) 100%);
  content: "";
}

.dp-home-hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--dp-cyan);
  content: "";
}

.dp-home-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
}

.dp-home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dp-home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 690px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-height: 930px;
  align-content: center;
  gap: 38px 0;
  padding-top: 86px;
  padding-bottom: 54px;
}

.dp-home-hero-copy {
  grid-column: 1;
  align-self: end;
}

.dp-home-hero-copy::before {
  top: -22px;
  left: 0;
  width: 76px;
  height: 5px;
  background: var(--dp-warning);
}

.dp-hero-command {
  max-width: 520px;
  margin: 0 0 18px;
  color: var(--dp-cyan);
  font-family: var(--dp-font-heading);
  font-size: 1.52rem;
  font-weight: 700;
  line-height: 1;
}

.dp-home-hero h1 {
  margin-bottom: 24px;
  color: var(--dp-paper-strong);
}

.dp-home-hero .dp-lede {
  max-width: 650px;
  color: #d4e0e2;
  font-size: 1.05rem;
  line-height: 1.58;
}

.dp-hero-actions {
  margin-top: 26px;
}

.dp-hero-proofline {
  gap: 12px 24px;
  margin-top: 24px;
}

.dp-hero-proofline span {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.78rem;
}

.dp-route-board {
  grid-column: 1;
  width: 100%;
  margin: 0;
  padding: 22px 24px 18px;
  border-color: rgba(113, 205, 222, 0.42);
  background: rgba(3, 20, 27, 0.87);
  backdrop-filter: blur(12px);
}

.dp-route-board::before,
.dp-route-board::after {
  width: 34px;
  height: 34px;
  color: var(--dp-cyan);
}

.dp-route-board-head {
  padding-bottom: 16px;
}

.dp-route-board-head span {
  color: var(--dp-cyan);
  font-size: 0.7rem;
  font-variant-numeric: tabular-nums;
}

.dp-route-board-head strong {
  font-size: 1.25rem;
}

.dp-route-board-table > div {
  min-height: 35px;
  font-size: 0.68rem;
}

.dp-route-board-note {
  margin-top: 14px;
  font-size: 0.7rem;
}

/* Route selector. */

[data-section="situations"] {
  position: relative;
  border-bottom: 1px solid var(--dp-line);
  background-color: var(--dp-mist);
}

[data-section="situations"]::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--dp-cyan-strong);
  content: "";
}

.dp-section-intro-split {
  grid-template-columns: 150px minmax(0, 1fr) 220px;
  align-items: end;
  margin-bottom: 46px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(13, 38, 45, 0.42);
}

.dp-section-index {
  padding-left: 18px;
  border-left: 3px solid var(--dp-warning);
  color: var(--dp-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.dp-situation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(13, 38, 45, 0.44);
}

.dp-situation-card {
  position: relative;
  min-width: 0;
  border-right: 1px solid rgba(13, 38, 45, 0.28);
  border-bottom: 1px solid rgba(13, 38, 45, 0.28);
}

.dp-situation-card:nth-child(even) {
  border-right: 0;
}

.dp-situation-card::before {
  position: absolute;
  z-index: 1;
  top: 29px;
  left: 28px;
  color: var(--dp-cyan-strong);
  content: attr(data-route);
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-situation-card .dp-card-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  min-height: 280px;
  gap: 16px 28px;
  padding: 28px 30px 28px 88px;
  background: transparent;
  transition: background-color 180ms ease, transform 180ms ease;
}

.dp-situation-card .dp-card-link:hover {
  background: rgba(251, 253, 252, 0.82);
  transform: translateX(4px);
}

.dp-situation-label,
.dp-situation-card .dp-card-link > div {
  grid-column: 1 / -1;
}

.dp-situation-label {
  color: var(--dp-cyan-strong);
  font-size: 0.74rem;
}

.dp-situation-card h3 {
  max-width: 540px;
  font-size: 1.72rem;
}

.dp-situation-card p {
  max-width: 58ch;
}

.dp-situation-card .dp-text-link {
  grid-column: 1 / -1;
}

/* Evidence library. */

.dp-featured-section {
  position: relative;
  border-bottom: 1px solid var(--dp-line);
  background: var(--dp-paper-strong);
}

.dp-featured-section .dp-section-heading {
  padding-left: 26px;
  border-left: 4px solid var(--dp-cyan-strong);
}

.dp-featured-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 28px;
}

.dp-featured-lead {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--dp-line-dark);
  border-left: 5px solid var(--dp-cyan);
  background: var(--dp-ink);
  box-shadow: 14px 14px 0 #d3dfdb;
}

.dp-featured-lead::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 22px;
  height: 22px;
  border-right: 3px solid var(--dp-warning);
  border-bottom: 3px solid var(--dp-warning);
  content: "";
}

.dp-featured-lead .dp-card-link {
  min-height: 540px;
  padding: 36px 38px;
}

.dp-guide-stamp {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 48px;
  padding: 0 10px;
  border: 1px solid currentColor;
  color: var(--dp-cyan);
  font-size: 0.69rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-featured-lead h3 {
  max-width: 620px;
  font-size: 3.35rem;
  line-height: 0.94;
}

.dp-featured-lead p {
  max-width: 58ch;
  color: #c3d2d5;
}

.dp-featured-secondary {
  gap: 18px;
}

.dp-featured-item {
  min-height: 261px;
  border: 1px solid var(--dp-line);
  background: #e8efec;
}

.dp-featured-item .dp-card-link {
  min-height: 261px;
  padding: 24px 26px;
}

.dp-featured-item .dp-guide-stamp {
  margin-bottom: 18px;
  color: var(--dp-cyan-strong);
}

.dp-featured-item h3 {
  max-width: 550px;
  font-size: 2rem;
}

/* Resource architecture. */

.dp-resource-section {
  border-bottom: 1px solid var(--dp-line);
  background: #d7e4e0;
}

.dp-resource-layout {
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: 84px;
}

.dp-resource-heading {
  top: 112px;
}

.dp-resource-heading::after {
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 28px;
  background: var(--dp-warning);
  content: "";
}

.dp-resource-directory {
  display: block;
  border-top: 2px solid var(--dp-ink);
}

.dp-resource-card {
  border: 0;
  border-bottom: 1px solid rgba(13, 38, 45, 0.34);
  background: transparent;
}

.dp-resource-card a {
  display: grid;
  grid-template-columns: 88px minmax(160px, 0.75fr) minmax(0, 1.35fr) auto;
  min-height: 138px;
  align-items: center;
  gap: 20px 28px;
  padding: 20px 0;
  transition: background-color 180ms ease, padding 180ms ease;
}

.dp-resource-card a:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(251, 253, 252, 0.68);
}

.dp-resource-phase {
  color: var(--dp-cyan-strong);
  font-size: 0.72rem;
  font-weight: 800;
}

.dp-resource-card h3,
.dp-resource-card p,
.dp-resource-card .dp-text-link {
  margin: 0;
}

.dp-resource-card h3 {
  font-size: 1.86rem;
}

.dp-resource-card p {
  line-height: 1.52;
}

.dp-resource-card .dp-text-link {
  white-space: nowrap;
}

/* Risk checkpoint. */

.dp-risk-section {
  position: relative;
  padding-top: 104px;
  padding-bottom: 112px;
  border-top: 5px solid var(--dp-warning);
  background: #06171d;
}

.dp-risk-section::before {
  position: absolute;
  top: 34px;
  right: max(32px, calc((100vw - var(--dp-max)) / 2));
  color: #8fa6aa;
  content: "RISK CHECKPOINT / 04";
  font-size: 0.68rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-dark-editorial {
  grid-template-columns: minmax(0, 0.88fr) minmax(450px, 1.12fr);
  gap: 90px;
}

.dp-risk-intro h2 {
  font-size: 3.7rem;
}

.dp-avoid-list {
  gap: 0;
  border-top: 1px solid rgba(184, 203, 208, 0.28);
}

.dp-avoid-item {
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid rgba(184, 203, 208, 0.24);
  background: transparent;
}

.dp-avoid-item > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: 0;
  border: 1px solid var(--dp-warning);
  border-radius: 0;
  color: var(--dp-warning);
  background: rgba(217, 180, 74, 0.06);
  font-size: 0.72rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-avoid-item p {
  align-self: center;
  color: #c4d2d5;
}

/* Intelligence feed. */

.dp-latest-section {
  background: var(--dp-paper-strong);
}

.dp-latest-section .dp-section-heading {
  padding-bottom: 28px;
  border-bottom: 2px solid var(--dp-ink);
}

.dp-signal-feed {
  counter-reset: route-signal;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 44px;
}

.dp-signal-item {
  counter-increment: route-signal;
  border-top: 0;
  border-bottom: 1px solid var(--dp-line);
}

.dp-signal-item a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 6px 18px;
  min-height: 246px;
  align-content: start;
  padding: 26px 0 28px;
}

.dp-signal-item a::before {
  grid-column: 1;
  grid-row: 1 / 4;
  color: var(--dp-cyan-strong);
  content: "0" counter(route-signal);
  font-size: 0.74rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-signal-meta,
.dp-signal-item h3,
.dp-signal-item p {
  grid-column: 2;
}

.dp-signal-item h3 {
  max-width: 520px;
  font-size: 1.85rem;
}

.dp-signal-item p {
  max-width: 62ch;
}

.dp-signal-meta {
  gap: 6px 12px;
  font-size: 0.69rem;
  font-variant-numeric: tabular-nums;
}

/* Guided route worksheet. */

[data-section="route-cta"] {
  border-top: 1px solid var(--dp-line);
  border-bottom: 1px solid var(--dp-line);
  background: var(--dp-mist);
}

.dp-newsletter-band {
  grid-template-columns: minmax(0, 1fr) 300px auto;
  gap: 36px;
  padding: 44px 0;
  border: 0;
  border-top: 2px solid var(--dp-ink);
  border-bottom: 1px solid var(--dp-line);
  background: transparent;
}

.dp-newsletter-band > div:first-child {
  padding-left: 26px;
  border-left: 4px solid var(--dp-cyan-strong);
}

.dp-newsletter-band h2 {
  font-size: 2.9rem;
}

.dp-route-kit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--dp-line-dark);
  background: var(--dp-line-dark);
}

.dp-route-kit-label {
  grid-column: 1 / -1;
  color: var(--dp-cyan);
  background: var(--dp-ink-strong);
  font-size: 0.7rem;
  font-weight: 800;
}

.dp-route-kit > span {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--dp-paper-strong);
  background: var(--dp-ink);
  font-size: 0.72rem;
  font-weight: 700;
}

.dp-route-kit i {
  color: var(--dp-cyan);
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

/* Calm, decisive close. */

.dp-final-cta {
  position: relative;
  padding: 112px 0 124px;
  border-top: 5px solid var(--dp-cyan);
  background: #092229;
}

.dp-final-cta::before {
  position: absolute;
  top: 42px;
  right: max(32px, calc((100vw - var(--dp-max)) / 2));
  width: 86px;
  height: 5px;
  background: var(--dp-warning);
  content: "";
}

.dp-final-cta-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.72fr);
  gap: 88px;
}

.dp-final-cta h2 {
  max-width: 660px;
  font-size: 3.8rem;
}

.dp-system-stack {
  width: min(560px, 100%);
  height: 390px;
}

.dp-system-sheet {
  border-color: #41616a;
  border-radius: 2px;
  box-shadow: 18px 22px 0 rgba(2, 12, 16, 0.26);
}

.dp-system-sheet-back {
  border-top: 4px solid var(--dp-warning);
}

.dp-system-sheet-mid {
  border-top: 4px solid #8ea9ae;
}

.dp-system-sheet-front {
  border-top: 5px solid var(--dp-cyan);
}

.dp-prefooter {
  border-top: 0;
  background: #041419;
}

.dp-site-footer {
  background: var(--dp-ink-strong);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4.2rem;
  }

  .dp-home-hero-grid {
    grid-template-columns: minmax(0, 610px) minmax(0, 1fr);
  }

  .dp-route-board {
    width: min(610px, 100%);
  }

  .dp-resource-layout {
    gap: 52px;
  }

  .dp-resource-card a {
    grid-template-columns: 72px minmax(150px, 0.8fr) minmax(0, 1.2fr);
  }

  .dp-resource-card .dp-text-link {
    grid-column: 2 / -1;
  }

  .dp-newsletter-band {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .dp-newsletter-band > .dp-button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .dp-final-cta-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 52px;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .dp-section {
    padding: 88px 0 96px;
  }

  .dp-site-header {
    min-height: 68px;
  }

  .dp-brand-logo {
    width: 164px;
  }

  .dp-home-hero {
    min-height: 0;
  }

  .dp-home-hero::before {
    z-index: 1;
    bottom: auto;
    height: 520px;
    background: linear-gradient(0deg, rgba(3, 13, 18, 0.62), rgba(3, 13, 18, 0.08) 54%, rgba(3, 13, 18, 0.18));
  }

  .dp-home-hero-media {
    position: relative;
    z-index: 0;
    height: 520px;
  }

  .dp-home-hero-media img {
    object-position: 58% center;
  }

  .dp-home-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 38px;
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .dp-home-hero-copy,
  .dp-route-board {
    grid-column: 1;
  }

  .dp-route-board {
    width: 100%;
  }

  .dp-section-intro-split {
    grid-template-columns: 130px 1fr;
  }

  .dp-section-index {
    grid-column: 2;
  }

  .dp-situation-grid,
  .dp-featured-grid,
  .dp-resource-layout,
  .dp-dark-editorial,
  .dp-signal-feed,
  .dp-final-cta-grid {
    grid-template-columns: 1fr;
  }

  .dp-situation-card,
  .dp-situation-card:nth-child(even) {
    border-right: 0;
  }

  .dp-featured-lead,
  .dp-featured-lead .dp-card-link {
    min-height: 500px;
  }

  .dp-resource-heading {
    position: static;
  }

  .dp-resource-card a {
    grid-template-columns: 86px minmax(0, 0.75fr) minmax(0, 1.25fr);
  }

  .dp-dark-editorial {
    gap: 54px;
  }

  .dp-risk-section::before {
    right: 20px;
  }

  .dp-signal-feed {
    border-top: 1px solid var(--dp-line);
  }

  .dp-signal-item a {
    min-height: 0;
  }

  .dp-newsletter-band {
    grid-template-columns: 1fr;
  }

  .dp-newsletter-band > .dp-button {
    grid-column: 1;
  }

  .dp-route-kit {
    width: min(480px, 100%);
  }

  .dp-final-cta-grid {
    gap: 64px;
  }

  .dp-system-stack {
    width: min(600px, 100%);
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 3.25rem;
    line-height: 0.92;
  }

  h2 {
    font-size: 2.7rem;
  }

  h3 {
    font-size: 1.48rem;
  }

  .dp-section {
    padding: 72px 0 80px;
  }

  .dp-home-hero::before {
    height: 430px;
  }

  .dp-home-hero-media {
    height: 430px;
  }

  .dp-home-hero-media img {
    object-position: center;
  }

  .dp-home-hero-grid {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .dp-hero-command {
    font-size: 1.3rem;
  }

  .dp-home-hero .dp-lede {
    font-size: 1rem;
  }

  .dp-hero-actions .dp-button {
    width: 100%;
  }

  .dp-route-board {
    padding: 20px 18px;
  }

  .dp-route-board-head {
    align-items: start;
    flex-direction: column;
  }

  .dp-route-board-head strong {
    max-width: none;
    text-align: left;
  }

  .dp-route-board-table {
    grid-template-columns: minmax(0, 1fr) minmax(80px, 0.55fr);
  }

  .dp-route-board-table > div {
    display: none;
    min-height: 38px;
    border-right: 1px solid var(--dp-line-dark);
  }

  .dp-route-board-table > div:nth-child(5),
  .dp-route-board-table > div:nth-child(6),
  .dp-route-board-table > div:nth-child(9),
  .dp-route-board-table > div:nth-child(10),
  .dp-route-board-table > div:nth-child(13),
  .dp-route-board-table > div:nth-child(14),
  .dp-route-board-table > div:nth-child(17),
  .dp-route-board-table > div:nth-child(18),
  .dp-route-board-table > div:nth-child(21),
  .dp-route-board-table > div:nth-child(22) {
    display: flex;
  }

  .dp-section-intro-split {
    display: block;
    margin-bottom: 30px;
  }

  .dp-section-index {
    margin-top: 22px;
  }

  .dp-situation-card::before {
    top: 24px;
    left: 20px;
  }

  .dp-situation-card .dp-card-link {
    min-height: 0;
    padding: 24px 20px 26px 64px;
  }

  .dp-situation-card h3 {
    font-size: 1.55rem;
  }

  .dp-featured-section .dp-section-heading {
    padding-left: 18px;
  }

  .dp-featured-lead,
  .dp-featured-lead .dp-card-link {
    min-height: 480px;
  }

  .dp-featured-lead {
    box-shadow: 8px 8px 0 #d3dfdb;
  }

  .dp-featured-lead .dp-card-link {
    padding: 28px 24px;
  }

  .dp-guide-stamp {
    margin-bottom: 34px;
  }

  .dp-featured-lead h3 {
    font-size: 2.75rem;
  }

  .dp-featured-item h3 {
    font-size: 1.75rem;
  }

  .dp-resource-layout {
    gap: 42px;
  }

  .dp-resource-card a {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 10px;
    padding: 24px 0;
  }

  .dp-resource-card .dp-text-link {
    grid-column: 1;
    margin-top: 8px;
  }

  .dp-risk-section {
    padding-top: 90px;
  }

  .dp-risk-intro h2 {
    font-size: 2.85rem;
  }

  .dp-avoid-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .dp-avoid-item > span {
    width: 38px;
    height: 38px;
  }

  .dp-latest-section .dp-section-heading {
    padding-bottom: 22px;
  }

  .dp-signal-item a {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 6px 12px;
  }

  .dp-signal-item h3 {
    font-size: 1.58rem;
  }

  .dp-newsletter-band {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .dp-newsletter-band > div:first-child {
    padding-left: 18px;
  }

  .dp-newsletter-band h2 {
    font-size: 2.45rem;
  }

  .dp-route-kit {
    width: 100%;
  }

  .dp-newsletter-band > .dp-button {
    width: 100%;
  }

  .dp-final-cta {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .dp-final-cta h2 {
    font-size: 2.85rem;
  }

  .dp-system-stack {
    height: 340px;
  }
}

/* Prototype refinement: earlier mobile message and connected route map. */

h1 {
  font-size: 4.7rem;
  line-height: 0.98;
}

h2 {
  font-size: 3.2rem;
  line-height: 1;
}

.dp-home-hero,
.dp-home-hero-grid {
  min-height: 850px;
}

.dp-home-hero-grid {
  gap: 30px 0;
  padding-top: 72px;
  padding-bottom: 46px;
}

.dp-home-hero-media img {
  object-position: center center;
}

.dp-home-hero::before {
  background: linear-gradient(90deg, rgba(3, 13, 18, 0.99) 0%, rgba(3, 13, 18, 0.94) 35%, rgba(3, 13, 18, 0.56) 61%, rgba(3, 13, 18, 0.12) 100%);
}

.dp-home-hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
}

.dp-featured-lead h3 {
  font-size: 3.05rem;
  line-height: 0.98;
}

.dp-risk-intro h2 {
  font-size: 3.35rem;
}

.dp-final-cta h2 {
  font-size: 3.45rem;
}

.dp-resource-directory {
  position: relative;
  counter-reset: resource-step;
  border-top-width: 0;
}

.dp-resource-directory::before {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 21px;
  width: 2px;
  background: linear-gradient(var(--dp-cyan-strong), var(--dp-warning));
  content: "";
}

.dp-resource-card {
  counter-increment: resource-step;
}

.dp-resource-card:first-child {
  border-top: 2px solid var(--dp-ink);
}

.dp-resource-card a {
  grid-template-columns: 44px 82px minmax(150px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: auto auto;
  min-height: 134px;
  gap: 8px 22px;
  padding: 22px 0;
}

.dp-resource-card a::before {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  place-items: center;
  align-self: center;
  border: 2px solid var(--dp-cyan-strong);
  background: #d7e4e0;
  color: var(--dp-ink);
  content: "0" counter(resource-step);
  font-size: 0.7rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-resource-card:nth-child(4) a::before,
.dp-resource-card:nth-child(5) a::before,
.dp-resource-card:nth-child(6) a::before {
  border-color: var(--dp-warning);
}

.dp-resource-phase {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

.dp-resource-card h3 {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
  font-size: 1.72rem;
}

.dp-resource-card p {
  grid-column: 4;
  grid-row: 1 / 3;
  align-self: center;
}

.dp-resource-card .dp-text-link {
  grid-column: 3;
  grid-row: 2;
  align-self: start;
}

.dp-resource-card a:hover {
  padding-right: 0;
  padding-left: 0;
  background: rgba(251, 253, 252, 0.62);
  box-shadow: inset 4px 0 0 var(--dp-cyan-strong);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .dp-resource-card a {
    grid-template-columns: 44px 78px minmax(0, 1fr);
  }

  .dp-resource-card h3 {
    grid-column: 3;
  }

  .dp-resource-card p,
  .dp-resource-card .dp-text-link {
    grid-column: 3;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .dp-section {
    padding: 76px 0 84px;
  }

  .dp-home-hero,
  .dp-home-hero-grid {
    min-height: 0;
  }

  .dp-home-hero::before {
    z-index: 1;
    inset: 0;
    height: auto;
    background: linear-gradient(90deg, rgba(3, 13, 18, 0.96) 0%, rgba(3, 13, 18, 0.89) 58%, rgba(3, 13, 18, 0.66) 100%);
  }

  .dp-home-hero-media {
    position: absolute;
    z-index: 0;
    inset: 0;
    height: 100%;
  }

  .dp-home-hero-media img {
    object-position: 64% center;
  }

  .dp-home-hero-grid {
    z-index: 2;
    gap: 30px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .dp-home-hero-copy {
    max-width: 650px;
  }

  .dp-featured-lead,
  .dp-featured-lead .dp-card-link {
    min-height: 440px;
  }

  .dp-resource-card a {
    grid-template-columns: 44px 78px minmax(0, 1fr);
    min-height: 0;
    padding: 22px 0;
  }

  .dp-resource-phase {
    grid-column: 2;
  }

  .dp-resource-card h3 {
    grid-column: 3;
  }

  .dp-resource-card p,
  .dp-resource-card .dp-text-link {
    grid-column: 2 / 4;
    margin-left: 0;
  }

  .dp-resource-card p {
    grid-row: 2;
  }

  .dp-resource-card .dp-text-link {
    grid-row: 3;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 2.85rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.25rem;
    line-height: 1.02;
  }

  h3 {
    font-size: 1.4rem;
  }

  .dp-section {
    padding: 56px 0 64px;
  }

  .dp-home-hero::before {
    height: auto;
    background: linear-gradient(180deg, rgba(3, 13, 18, 0.94) 0%, rgba(3, 13, 18, 0.82) 52%, rgba(3, 13, 18, 0.97) 100%);
  }

  .dp-home-hero-media {
    position: absolute;
    height: 100%;
  }

  .dp-home-hero-media img {
    object-position: 52% center;
  }

  .dp-home-hero-grid {
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .dp-home-hero-copy::before {
    top: -14px;
  }

  .dp-home-hero h1 {
    margin-bottom: 16px;
  }

  .dp-hero-command {
    margin-bottom: 14px;
    font-size: 1.12rem;
  }

  .dp-home-hero .dp-lede {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .dp-hero-actions {
    margin-top: 20px;
  }

  .dp-hero-proofline {
    margin-top: 18px;
  }

  .dp-route-board {
    padding: 18px 16px;
    background: rgba(3, 20, 27, 0.93);
  }

  .dp-featured-lead,
  .dp-featured-lead .dp-card-link {
    min-height: 410px;
  }

  .dp-featured-lead h3 {
    font-size: 2.4rem;
  }

  .dp-resource-directory::before {
    left: 19px;
  }

  .dp-resource-card a {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 7px 16px;
    padding: 20px 0;
  }

  .dp-resource-card a::before {
    grid-column: 1;
    grid-row: 1 / 5;
    width: 40px;
    height: 40px;
    align-self: start;
  }

  .dp-resource-phase,
  .dp-resource-card h3,
  .dp-resource-card p,
  .dp-resource-card .dp-text-link {
    grid-column: 2;
    grid-row: auto;
  }

  .dp-resource-phase {
    align-self: auto;
  }

  .dp-resource-card h3 {
    font-size: 1.55rem;
  }

  .dp-risk-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .dp-risk-intro h2,
  .dp-final-cta h2 {
    font-size: 2.45rem;
  }

  .dp-final-cta {
    padding-top: 76px;
    padding-bottom: 82px;
  }
}

/* Final polish: compact mobile evidence, accessible counters, editorial feed. */

html {
  scroll-padding-top: 104px;
}

h1,
h2,
h3 {
  scroll-margin-top: 112px;
}

.dp-situation-card::before,
.dp-signal-item a::before,
.dp-resource-card a::before {
  display: none;
  content: none;
}

.dp-route-number {
  position: absolute;
  z-index: 1;
  top: 29px;
  left: 28px;
  color: var(--dp-cyan-strong);
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-route-board-mobile {
  display: none;
}

.dp-featured-lead:focus-within {
  box-shadow: 14px 14px 0 var(--dp-warning);
}

.dp-featured-item:focus-within {
  outline: 3px solid var(--dp-warning);
  outline-offset: 3px;
}

.dp-resource-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  place-items: center;
  align-self: center;
  border: 2px solid var(--dp-cyan-strong);
  background: #d7e4e0;
  color: var(--dp-ink);
  font-size: 0.7rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-resource-card:nth-child(4) .dp-resource-step,
.dp-resource-card:nth-child(5) .dp-resource-step,
.dp-resource-card:nth-child(6) .dp-resource-step {
  border-color: var(--dp-warning);
}

.dp-latest-section .dp-section-heading {
  margin-bottom: 0;
}

.dp-signal-feed {
  display: block;
  border-top: 0;
}

.dp-signal-item {
  border-top: 0;
  border-bottom: 1px solid var(--dp-line);
}

.dp-signal-item a {
  display: grid;
  grid-template-columns: 46px 170px minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: 18px 26px;
  min-height: 136px;
  align-items: center;
  padding: 22px 14px 22px 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.dp-signal-number {
  grid-column: 1;
  grid-row: 1;
  color: var(--dp-cyan-strong);
  font-size: 0.74rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.dp-signal-meta {
  grid-column: 2;
  grid-row: 1;
  align-content: center;
}

.dp-signal-item h3 {
  grid-column: 3;
  grid-row: 1;
  max-width: 520px;
  font-size: 1.72rem;
}

.dp-signal-item p {
  grid-column: 4;
  grid-row: 1;
  max-width: 62ch;
  margin: 0;
}

.dp-signal-item a:hover,
.dp-signal-item a:focus-visible {
  background: #e8efec;
  box-shadow: inset 4px 0 0 var(--dp-cyan-strong);
}

.dp-signal-item a:hover h3,
.dp-signal-item a:focus-visible h3 {
  color: var(--dp-cyan-strong);
}

.dp-risk-section .dp-lede,
.dp-avoid-item p {
  color: #d2dfe1;
}

@media (max-width: 1100px) {
  .dp-signal-item a {
    grid-template-columns: 40px 138px minmax(220px, 0.9fr) minmax(0, 1.1fr);
    gap: 16px 20px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 88px;
  }

  h1,
  h2,
  h3 {
    scroll-margin-top: 96px;
  }

  .dp-signal-item a {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 7px 16px;
    min-height: 0;
    align-items: start;
    padding: 24px 0;
  }

  .dp-signal-number {
    grid-column: 1;
    grid-row: 1 / 4;
    padding-top: 3px;
  }

  .dp-signal-meta,
  .dp-signal-item h3,
  .dp-signal-item p {
    grid-column: 2;
  }

  .dp-signal-meta {
    grid-row: 1;
  }

  .dp-signal-item h3 {
    grid-row: 2;
    max-width: 640px;
  }

  .dp-signal-item p {
    grid-row: 3;
  }
}

@media (max-width: 620px) {
  .dp-route-number {
    top: 24px;
    left: 20px;
  }

  .dp-route-board-table {
    display: none;
  }

  .dp-route-board-mobile {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--dp-line-dark);
    list-style: none;
  }

  .dp-route-board-mobile li {
    position: relative;
    display: grid;
    grid-template-columns: minmax(108px, 0.7fr) minmax(0, 1.3fr);
    gap: 12px;
    padding: 12px 0 12px 22px;
    border-bottom: 1px solid var(--dp-line-dark);
  }

  .dp-route-board-mobile li::before {
    position: absolute;
    top: 17px;
    left: 1px;
    width: 9px;
    height: 5px;
    border-bottom: 2px solid var(--dp-cyan);
    border-left: 2px solid var(--dp-cyan);
    content: "";
    transform: rotate(-45deg);
  }

  .dp-route-board-mobile strong {
    color: var(--dp-paper-strong);
    font-size: 0.76rem;
  }

  .dp-route-board-mobile span {
    color: var(--dp-muted-light);
    font-size: 0.72rem;
  }

  .dp-resource-step {
    grid-column: 1;
    grid-row: 1 / 5;
    width: 40px;
    height: 40px;
    align-self: start;
  }

  .dp-signal-item h3 {
    font-size: 1.46rem;
    line-height: 1.04;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final overlap and CTA corrections from implementation review. */

.dp-menu .dp-cta a,
.dp-menu .dp-cta a:visited,
.dp-home-hero .dp-hero-actions .dp-button-secondary,
.dp-home-hero .dp-hero-actions .dp-button-secondary:visited {
  border-color: var(--dp-cyan);
  color: var(--dp-ink-strong) !important;
  background: var(--dp-cyan);
}

.dp-menu .dp-cta a:hover,
.dp-menu .dp-cta a:focus-visible,
.dp-home-hero .dp-hero-actions .dp-button-secondary:hover,
.dp-home-hero .dp-hero-actions .dp-button-secondary:focus-visible {
  border-color: #60d9e8;
  color: var(--dp-ink-strong) !important;
  background: #60d9e8;
}

.dp-hero-proofline span {
  padding-left: 15px;
}

.dp-hero-proofline span::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.dp-situation-card .dp-card-link:hover,
.dp-situation-card .dp-card-link:focus-visible {
  padding: 28px 30px 28px 88px;
  transform: none;
}

@media (max-width: 620px) {
  .dp-situation-card .dp-card-link:hover,
  .dp-situation-card .dp-card-link:focus-visible {
    padding: 24px 20px 26px 64px;
  }
}
