.dp-page {
  background: var(--body-bg);
}

.dp-page .edge-lock-layer {
  z-index: 15;
  opacity: calc(var(--edge-opacity) * 1.2);
}

.dp-page main {
  margin-top: 62px;
  position: relative;
  z-index: 10;
}

.dp-page .hero-header,
.dp-page .site-footer {
  position: relative;
  z-index: 30;
}

.dp-page .site-footer {
  margin-top: 0;
}

.dp-header {
  z-index: 200;
}

.dp-shell {
  width: min(1320px, 92vw);
  margin: 0 auto;
}

.dp-section {
  position: relative;
  padding: clamp(54px, 6vw, 96px) 0;
  overflow: hidden;
}

.dp-section--light {
  background: transparent;
  color: #535962;
}

.dp-section--light h1,
.dp-section--light h2,
.dp-section--light h3 {
  color: #515862;
}

.dp-section--dark {
  background: linear-gradient(98deg, #242628 0%, #1b1d20 56%, #242628 100%);
  color: #eef3f8;
}

.dp-media {
  position: relative;
  background: linear-gradient(145deg, rgb(226 232 239 / 0.9), rgb(201 210 220 / 0.96));
  border: 1px solid rgb(118 132 148 / 0.35);
  overflow: hidden;
}

.dp-section--dark .dp-media {
  background: linear-gradient(145deg, rgb(54 63 74 / 0.75), rgb(39 45 53 / 0.88));
  border-color: rgb(169 186 206 / 0.28);
}

.dp-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dp-media--cover img {
  object-fit: cover;
}

.dp-media__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 16px;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 1.1rem);
  color: #31455f;
  line-height: 1.35;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.36) 25%, transparent 25%) -16px 0 / 32px 32px,
    linear-gradient(225deg, rgb(255 255 255 / 0.36) 25%, transparent 25%) -16px 0 / 32px 32px,
    linear-gradient(315deg, rgb(255 255 255 / 0.36) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(45deg, rgb(255 255 255 / 0.36) 25%, transparent 25%) 0 0 / 32px 32px;
}

.dp-media__placeholder code {
  display: inline-block;
  margin-top: 6px;
  color: #1f3b5b;
}

.dp-section--dark .dp-media__placeholder {
  color: #e9f2ff;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) -16px 0 / 32px 32px,
    linear-gradient(225deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) -16px 0 / 32px 32px,
    linear-gradient(315deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) 0 0 / 32px 32px,
    linear-gradient(45deg, rgb(255 255 255 / 0.08) 25%, transparent 25%) 0 0 / 32px 32px;
}

.dp-section--dark .dp-media__placeholder code {
  color: #ca0d00;
}

.dp-media.has-media .dp-media__placeholder {
  display: none;
}

.dp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent-blue);
  padding: 12px 22px;
}

.dp-btn--solid {
  color: #ffffff;
  background: #ca0d00;
}

.dp-hero {
  position: relative;
  min-height: clamp(500px, 60vh, 680px);
  display: grid;
  align-items: center;
  color: #ffffff;
  background: #0e1218;
}

.dp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(6 10 16 / 0.78) 0%, rgb(6 10 16 / 0.56) 50%, rgb(6 10 16 / 0.76) 100%);
}

.dp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.dp-hero__content h1 {
  margin: 0 auto;
  width: min(900px, 94%);
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.dp-hero__content p {
  margin: 16px auto 0;
  width: min(940px, 94%);
  font-size: clamp(1rem, 1.16vw, 1.3rem);
  line-height: 1.5;
  color: rgb(243 248 253 / 0.95);
}

.dp-wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 44px;
  z-index: 4;
  background: var(--story-bg);
  clip-path: polygon(0 30%, 10% 42%, 24% 34%, 35% 45%, 50% 32%, 65% 46%, 80% 35%, 92% 43%, 100% 32%, 100% 100%, 0 100%);
}

.dp-wave-divider--bottom {
  bottom: auto;
  top: -2px;
  transform: scaleY(-1);
}

.dp-pillars {
  padding-bottom: clamp(26px, 3vw, 40px);
}

.dp-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 34px);
}

.dp-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: clamp(10px, 1.2vw, 14px);
}

.dp-pillar__icon {
  width: clamp(36px, 2.8vw, 50px);
  height: clamp(36px, 2.8vw, 50px);
  color: #ca0d00;
}

.dp-pillar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.dp-pillar h3 {
  margin: 0;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3f4855;
}

.dp-pillar p {
  margin: 6px 0 0;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.45;
  color: #4f5661;
}

.dp-titleline {
  margin-top: clamp(24px, 2.4vw, 36px);
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.dp-titleline span {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgb(120 145 178 / 0.36) 45%,
    rgb(120 145 178 / 0.1) 100%
  );
}

.dp-titleline span:last-child {
  background: linear-gradient(
    to left,
    transparent 0%,
    rgb(120 145 178 / 0.36) 45%,
    rgb(120 145 178 / 0.1) 100%
  );
}

.dp-titleline h2 {
  margin: 0;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 3vw, 3.5rem);
  line-height: 1.08;
  color: #3a475f;
  text-align: center;
}

.dp-explainer {
  padding-top: clamp(20px, 2vw, 28px);
}

.dp-explainer__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 2.5vw, 36px);
  align-items: end;
}

.dp-explainer__copy {
  font-size: clamp(1rem, 1.08vw, 1.17rem);
  line-height: 1.58;
  color: #2f4258;
}

.dp-explainer__copy p {
  margin: 0 0 16px;
}

.dp-explainer__copy h3 {
  margin: 22px 0 8px;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 1.55rem);
  color: #3d4e64;
}

.dp-explainer__copy ul {
  margin: 0 0 24px;
  padding-left: 26px;
  display: grid;
  gap: 8px;
}

.dp-faq {
  border-top: 1px solid rgb(110 128 150 / 0.24);
}

.dp-faq details {
  border-bottom: 1px solid rgb(110 128 150 / 0.24);
}

.dp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 8px;
  font-family: "MyriadProRegular", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.2vw, 1.35rem);
  line-height: 1.35;
  color: #35506f;
  position: relative;
  padding-left: 38px;
}

.dp-faq summary::-webkit-details-marker {
  display: none;
}

.dp-faq summary::before,
.dp-faq summary::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #7a8fa8;
  transform: translateY(-50%);
}

.dp-faq summary::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 180ms ease;
}

.dp-faq details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.dp-faq details p {
  margin: 0;
  padding: 0 8px 16px 38px;
  color: #516377;
}

.dp-explainer__media {
  min-height: clamp(300px, 31vw, 450px);
}

.dp-band {
  min-height: clamp(300px, 34vw, 430px);
  display: grid;
  align-items: center;
}

.dp-band__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dp-band__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgb(4 10 18 / 0.8) 0%, rgb(4 10 18 / 0.52) 48%, rgb(4 10 18 / 0.8) 100%);
}

.dp-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.dp-band__content h2 {
  margin: 0;
  font-family: "MyriadProRegular", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  line-height: 1.05;
  color: #ffffff;
}

.dp-band__content p {
  margin: 14px auto 0;
  width: min(900px, 94%);
  font-size: clamp(1rem, 1.14vw, 1.26rem);
  line-height: 1.5;
  color: rgb(239 246 255 / 0.94);
}

.dp-band__content .dp-btn {
  margin-top: 20px;
}

.dp-services {
  padding-top: clamp(58px, 6.2vw, 96px);
}

.dp-services__title {
  margin: 0;
  text-align: center;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3.65rem);
  line-height: 1.08;
  color: #3a475f;
}

.dp-services__lead {
  margin: 16px auto 0;
  width: min(940px, 94%);
  text-align: center;
  font-size: clamp(1.06rem, 1.2vw, 1.35rem);
  line-height: 1.5;
  color: #4c5f75;
}

.dp-services__grid {
  margin-top: clamp(30px, 3.2vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.2vw, 32px);
}

.dp-service-card {
  text-align: center;
}

.dp-service-card .dp-media {
  min-height: clamp(190px, 15vw, 250px);
}

.dp-service-card h3 {
  margin: 16px 0 0;
  font-family: "MyriadProBold", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 1.95vw, 2.3rem);
  line-height: 1.2;
  color: #3f4b60;
}

.dp-service-card p {
  margin: 10px auto 0;
  max-width: 420px;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.5;
  color: #4d5f75;
}

.dp-service-card a {
  margin-top: 18px;
  display: inline-block;
  text-decoration: none;
  font-family: "MyriadProRegular", "Segoe UI", sans-serif;
  font-size: clamp(1.05rem, 1.22vw, 1.35rem);
  color: #ca0d00;
  position: relative;
  padding-bottom: 5px;
}

.dp-service-card a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgb(202 13 0 / 0.55);
}

body.theme-dark .dp-section--light {
  color: #c9d5e4;
}

body.theme-dark .dp-section--light h1,
body.theme-dark .dp-section--light h2,
body.theme-dark .dp-section--light h3 {
  color: #e5eef8;
}

body.theme-dark .dp-pillar p,
body.theme-dark .dp-explainer__copy,
body.theme-dark .dp-faq details p,
body.theme-dark .dp-services__lead,
body.theme-dark .dp-service-card p {
  color: #bdccde;
}

body.theme-dark .dp-titleline h2,
body.theme-dark .dp-services__title {
  color: #f0f6ff;
}

body.theme-dark .dp-faq {
  border-top-color: rgb(152 173 198 / 0.22);
}

body.theme-dark .dp-faq details {
  border-bottom-color: rgb(152 173 198 / 0.22);
}

body.theme-dark .dp-faq summary {
  color: #d8e4f3;
}

@media (max-width: 1200px) {
  .dp-pillar {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

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

  .dp-explainer__media {
    min-height: clamp(300px, 46vw, 460px);
  }
}

@media (max-width: 980px) {
  .dp-pillars__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dp-services__grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 760px) {
  .dp-page main {
    margin-top: 56px;
  }

  .dp-shell {
    width: min(1320px, 94vw);
  }

  .dp-hero {
    min-height: clamp(420px, 58vh, 560px);
  }

  .dp-hero__content h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .dp-hero__content p {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
  }

  .dp-wave-divider {
    height: 34px;
  }

  .dp-pillars__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dp-titleline h2 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .dp-faq summary {
    font-size: clamp(1rem, 4.8vw, 1.2rem);
  }

  .dp-band__content h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }
}
