:root {
  /* Typeface */
  --marketing-font-sans: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Base type */
  --marketing-body-size: 1rem;
  --marketing-body-line-height: 1.6;
  --marketing-content-line-height: 1.7;

  /* Hero */
  --marketing-hero-h1-size: clamp(1.45rem, 1.78vw, 1.82rem);
  --marketing-hero-h1-line-height: 1.15;
  --marketing-hero-h1-letter-spacing: 0.012em;
  --marketing-hero-h1-weight: 700;

  --marketing-hero-lead-size: clamp(1rem, 1.3vw, 1.3rem);
  --marketing-hero-lead-line-height: 1.45;
  --marketing-hero-lead-weight: 700;

  --marketing-hero-subtitle-size: clamp(1.35rem, 2vw, 1.95rem);
  --marketing-hero-subtitle-line-height: 1.2;
  --marketing-hero-subtitle-letter-spacing: 0.01em;
  --marketing-hero-subtitle-weight: 800;

  /* Eyebrows / section labels */
  --marketing-eyebrow-size: 0.7rem;
  --marketing-eyebrow-line-height: 1.4;
  --marketing-eyebrow-letter-spacing: 0.16em;
  --marketing-eyebrow-weight: 800;

  /* Section headings */
  --marketing-h2-size: clamp(1.65rem, 2.15vw, 2.2rem);
  --marketing-h2-line-height: 1.16;
  --marketing-h2-letter-spacing: 0.005em;
  --marketing-h2-weight: 700;

  --marketing-h3-size: 1.06rem;
  --marketing-h3-line-height: 1.3;
  --marketing-h3-letter-spacing: 0;
  --marketing-h3-weight: 700;

  /* Supporting copy */
  --marketing-lead-size: clamp(0.98rem, 1.15vw, 1.08rem);
  --marketing-lead-line-height: 1.7;
  --marketing-small-size: 0.95rem;
  --marketing-small-line-height: 1.7;

  /* Navigation / utility type */
  --marketing-nav-size: 0.87rem;
  --marketing-nav-line-height: 1.35;
  --marketing-nav-letter-spacing: 0;

  --marketing-nav-label-size: 0.76rem;
  --marketing-nav-label-line-height: 1.35;
  --marketing-nav-label-letter-spacing: 0.15em;
  --marketing-nav-label-weight: 800;

  --marketing-account-size: 0.76rem;
  --marketing-account-letter-spacing: 0.01em;
  --marketing-account-weight: 650;

  --marketing-breadcrumb-size: 0.77rem;
  --marketing-breadcrumb-line-height: 1.45;

  /* Buttons */
  --marketing-button-size: 0.78rem;
  --marketing-button-line-height: 1.2;
  --marketing-button-letter-spacing: 0.1em;
  --marketing-button-weight: 800;

  /* Layout rhythm */
  --marketing-content-max: 1180px;
  --marketing-reading-max: 760px;
  --marketing-heading-max: 800px;
  --marketing-section-block: 88px;
  --marketing-section-block-compact: 76px;
  --marketing-section-inline: 24px;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--marketing-font-sans);
  font-size: var(--marketing-body-size);
  line-height: var(--marketing-body-line-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}
.marketing-container,
.container {
  width: min(var(--marketing-content-max), 100%);
  margin-inline: auto;
}
.mega-title,
.mega-col h2,
.mega-col h3 {
  margin: 0 0 14px;
  font-size: var(--marketing-nav-label-size);
  line-height: var(--marketing-nav-label-line-height);
  letter-spacing: var(--marketing-nav-label-letter-spacing);
  font-weight: var(--marketing-nav-label-weight);
  text-transform: uppercase;
}
.mega-links a,
.mega-col a,
.site-nav a {
  font-size: var(--marketing-nav-size);
  line-height: var(--marketing-nav-line-height);
  letter-spacing: var(--marketing-nav-letter-spacing);
}
@media  (max-width: 800px) {:root {
    --marketing-section-block: 72px;
    --marketing-section-block-compact: 64px;
    --marketing-section-inline: 20px;
  }}
@media  (max-width: 540px) {:root {
    --marketing-section-block: 60px;
    --marketing-section-block-compact: 54px;
    --marketing-section-inline: 18px;
  }}
:root {
      --dps-navy: #223671;
      --dps-deep: #19365F;
      --dps-cyan: #76EAF7;
      --dps-white: #FFFFFF;
      --dps-slate: #66758A;
      --dps-light: #F3F6FA;
      --ink: #0D1B33;
      --muted: #53657A;
      --line: #DDE5EE;
      --card: #FFFFFF;
      --shadow: 0 18px 48px rgba(17, 37, 72, 0.12);
      --shadow-soft: 0 10px 30px rgba(17, 37, 72, 0.08);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max: 1180px;
      --header-h: 78px;
    }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
      color: var(--ink);
      background: var(--dps-white);
    }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.skip-link {
      position: fixed;
      left: 18px;
      top: -90px;
      z-index: 9999;
      background: var(--dps-white);
      color: var(--dps-navy);
      padding: 12px 16px;
      border-radius: 10px;
      font-weight: 800;
      box-shadow: var(--shadow);
    }
.skip-link:focus { top: 14px; }
.container { width: min(calc(100% - 48px), var(--marketing-content-max)); margin-inline: auto; }
.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      height: var(--header-h);
      background: rgba(25,54,95,.96);
      border-bottom: 1px solid rgba(255,255,255,.11);
      backdrop-filter: blur(16px);
    }
.header-inner {
      width: min(calc(100% - 48px), 1580px);
      height: 100%;
      display: flex;
      align-items: center;
      gap: clamp(12px, 1.2vw, 20px);
      margin-inline: auto;
      min-width: 0;
    }
.brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }
.brand-logo {
      width: 46px;
      height: 46px;
      object-fit: contain;
      display: block;
    }
.brand-copy { line-height: 1.05; }
.brand-name {
      color: var(--dps-white);
      font-size: 1.05rem;
      font-weight: 900;
      letter-spacing: .08em;
    }
.brand-tagline {
      display: block;
      margin-top: 5px;
      color: rgba(255,255,255,.68);
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
.brand--horizontal {
      display: inline-flex;
      align-items: center;
      min-width: 0;
    }
.brand-logo--horizontal {
      width: clamp(170px, 14.5vw, 238px);
      height: auto;
      max-height: 46px;
      display: block;
      object-fit: contain;
    }
@media  (max-width: 760px) {.brand-logo--horizontal {
        width: min(176px, 44vw);
        max-height: 36px;
      }}
@media  (max-width: 420px) {.brand-logo--horizontal {
        width: min(160px, 43vw);
        max-height: 32px;
      }}
.desktop-nav { margin-left: clamp(18px, 1.5vw, 28px); display: flex; align-items: stretch; height: 100%; min-width: 0; flex: 1 1 auto; justify-content: flex-start; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: stretch; min-width: 0; flex: 1 1 auto; justify-content: flex-start; }
.nav-item { display: flex; align-items: stretch; min-width: 0; }
.nav-link,
    .nav-toggle {
      appearance: none;
      border: 0;
      background: none;
      color: rgba(255,255,255,.88);
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 0 clamp(5px, .52vw, 9px);
      font-size: clamp(.74rem, .64vw, .83rem);
      font-weight: 750;
      white-space: nowrap;
      cursor: pointer;
    }
.nav-link:hover,
    .nav-toggle:hover,
    .nav-toggle[aria-expanded="true"] { color: var(--dps-cyan); }
.nav-toggle svg { width: 13px; height: 13px; }
.header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: clamp(10px, .9vw, 16px);
      flex: 0 0 auto;
    }
.header-action {
      min-width: 108px;
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 18px;
      color: #B9D5EB;
      text-decoration: none;
      border: 1px solid rgba(185,213,235,.62);
      border-radius: 999px;
      background: transparent;
      font-size: .78rem;
      font-weight: 650;
      white-space: nowrap;
      transition: color .16s ease, border-color .16s ease, background .16s ease, transform .16s ease;
    }
.header-action:hover {
      color: var(--dps-white);
      border-color: var(--dps-cyan);
      background: rgba(118,234,247,.06);
      transform: translateY(-1px);
    }
.mobile-menu-button {
      display: none;
      flex: 0 0 auto;
      margin-left: 0;
      color: var(--dps-cyan);
      background: transparent;
      border: 0;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      align-items: center;
      justify-content: center;
    }
.mobile-menu-button:hover { background: rgba(118,234,247,.06); }
.mega-wrap {
      position: absolute;
      inset: var(--header-h) 0 auto 0;
      height: 0;
      pointer-events: none;
    }
.mega-menu {
      position: absolute;
      top: 0;
      left: 50%;
      width: min(calc(100% - 48px), var(--marketing-content-max));
      margin: 0;
      background: rgba(255,255,255,.99);
      border: 1px solid rgba(34,54,113,.12);
      border-radius: 0 0 22px 22px;
      box-shadow: 0 28px 60px rgba(3,17,43,.18);
      padding: 28px;
      opacity: 0;
      transform: translate(-50%, -8px);
      visibility: hidden;
      transition: .18s ease;
      color: var(--ink);
      pointer-events: auto;
    }
.mega-menu.is-open {
      opacity: 1;
      transform: translate(-50%, 0);
      visibility: visible;
    }
.mega-close {
      position: absolute;
      top: 14px;
      right: 16px;
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(34,54,113,.14);
      border-radius: 10px;
      background: rgba(243,246,250,.92);
      color: var(--dps-navy);
      cursor: pointer;
      transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
    }
.mega-close svg { width: 18px; height: 18px; }
.mega-close:hover {
      background: rgba(118,234,247,.14);
      border-color: rgba(34,54,113,.22);
      color: var(--dps-deep);
      transform: translateY(-1px);
    }
.mega-close:focus-visible {
      outline: 3px solid rgba(118,234,247,.55);
      outline-offset: 2px;
    }
.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mega-column h3 {
      display: flex;
      align-items: center;
      gap: 9px;
      color: var(--dps-navy);
      font-size: .88rem;
      margin-bottom: 10px;
      letter-spacing: .04em;
      text-transform: uppercase;
    }
.mega-column h3 svg { width: 18px; height: 18px; }
.mega-column ul { list-style: none; padding: 0; margin: 0; }
.mega-column li + li { margin-top: 5px; }
.mega-column a {
      display: block;
      padding: 8px 10px;
      border-radius: 9px;
      color: #33455d;
      font-size: .92rem;
      font-weight: 650;
    }
.mega-column a:hover { background: var(--dps-light); color: var(--dps-navy); }
.definition-brand {
      position: relative;
      overflow: hidden;
      min-height: 390px;
      border-radius: var(--radius-xl);
      background: var(--dps-deep);
      display: grid;
      place-items: center;
      box-shadow: var(--shadow);
    }
.definition-brand::before,
    .definition-brand::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(118,234,247,.25);
    }
.definition-brand::before { width: 390px; height: 390px; right: -110px; top: -130px; }
.definition-brand::after { width: 290px; height: 290px; left: -120px; bottom: -90px; }
.definition-brand img { width: 210px; height: 210px; object-fit: contain; position: relative; z-index: 1; }
.credential-brand {
      min-height: 430px;
      border-radius: var(--radius-xl);
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      background: linear-gradient(145deg, #f8fbff, #edf3fa);
      border: 1px solid var(--line);
    }
.credential-brand::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border: 1px solid rgba(34,54,113,.13);
      border-radius: 50%;
      box-shadow: 0 0 0 55px rgba(34,54,113,.025), 0 0 0 110px rgba(118,234,247,.05);
    }
.credential-brand img { position: relative; width: 210px; height: 210px; object-fit: contain; }
.site-footer { background: #102846; color: var(--dps-white); padding: 62px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.25fr repeat(5,minmax(0,1fr)); gap: 28px; align-items: start; }
.footer-brand img { width: 58px; height: 58px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { max-width: 300px; font-size: .88rem; }
.footer-col h3 { font-size: .78rem; color: var(--dps-cyan); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li + li { margin-top: 8px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .86rem; }
.footer-col a:hover { color: var(--dps-white); }
.footer-bottom {
      display: flex;
      gap: 20px;
      justify-content: space-between;
      align-items: center;
      margin-top: 42px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.54);
      font-size: .78rem;
    }
.footer-legal { display: flex; flex-wrap: wrap; gap: 14px; }
.mobile-panel {
      display: none;
      position: fixed;
      inset: var(--header-h) 0 0 0;
      z-index: 990;
      background: var(--dps-deep);
      overflow-y: auto;
      padding: 18px 20px 40px;
    }
.mobile-panel.is-open { display: block; }
.mobile-group {
      border-bottom: 1px solid rgba(255,255,255,.12);
      padding: 8px 0;
    }
.mobile-group summary { color: var(--dps-white); padding: 14px 30px 14px 0; }
.mobile-group summary::after { color: var(--dps-cyan); }
.mobile-links { display: grid; gap: 5px; padding: 0 0 14px; }
.mobile-links a { color: rgba(255,255,255,.72); padding: 7px 2px; font-size: .93rem; }
.mobile-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
.mobile-actions .header-action { width: 100%; min-height: 42px; color: #D8EAF6; }
@media  (max-width: 1240px) {.header-inner { width: min(calc(100% - 32px), 1220px); }.desktop-nav { display: none; }.header-actions { margin-left: auto; }.mobile-menu-button { display: inline-flex; }.mobile-menu-button svg { width: 24px; height: 24px; }.footer-top { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; }.footer-brand { grid-column: 1 / -1; grid-row: auto; }}
@media  (max-width: 760px) {.header-inner { width: calc(100% - 28px); gap: 8px; }.brand-copy { min-width: 0; }.brand-tagline { display: none; }.header-actions { gap: 8px; }.header-action { min-width: 0; min-height: 36px; padding: 0 14px; font-size: .72rem; }.header-actions .header-action:first-child { display: none; }.mobile-menu-button { width: 40px; height: 40px; }.mobile-menu-button svg { width: 22px; height: 22px; }}
@media  (max-width: 900px) {.footer-top { grid-template-columns: repeat(2,minmax(0,1fr)); }.footer-brand { grid-column: 1 / -1; }.definition-brand, .credential-brand { min-height: 310px; }}
@media  (max-width: 640px) {:root { --header-h: 70px; }.container { width: min(calc(100% - 28px), var(--max)); }.brand-logo { width: 40px; height: 40px; }.brand-name { font-size: .96rem; }.footer-top { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1 / -1; grid-row: auto; }.footer-bottom { flex-direction: column; align-items: flex-start; }}
@media  (max-width: 420px) {.brand { gap: 8px; }.brand-logo { width: 38px; height: 38px; }.brand-name { font-size: .9rem; letter-spacing: .06em; }.header-action { padding: 0 11px; font-size: .68rem; }}
@media  (prefers-reduced-motion: reduce) {html { scroll-behavior: auto; }*, *::before, *::after { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }}
body {
      font-family: var(--marketing-font-sans);
      font-size: var(--marketing-body-size);
      line-height: var(--marketing-body-line-height);
      font-weight: 400;
    }
.container {
      width: min(calc(100% - 48px), var(--marketing-content-max));
      margin-inline: auto;
    }
.nav-link,
    .nav-toggle {
      font-family: var(--marketing-font-sans);
      font-size: var(--marketing-nav-size);
      line-height: var(--marketing-nav-line-height);
      letter-spacing: var(--marketing-nav-letter-spacing);
      font-weight: 600;
    }
.mega-column h3 {
      font-size: var(--marketing-nav-label-size);
      line-height: var(--marketing-nav-label-line-height);
      letter-spacing: var(--marketing-nav-label-letter-spacing);
      font-weight: var(--marketing-nav-label-weight);
    }
.mega-column a {
      font-size: var(--marketing-nav-size);
      line-height: var(--marketing-nav-line-height);
      letter-spacing: var(--marketing-nav-letter-spacing);
      font-weight: 400;
    }
.header-action {
      font-family: var(--marketing-font-sans);
      font-size: var(--marketing-account-size);
      letter-spacing: var(--marketing-account-letter-spacing);
      font-weight: var(--marketing-account-weight);
    }
.mega-wrap { overflow: visible; }
.mega-menu { pointer-events: none; }
.mega-menu.is-open { pointer-events: auto; }
@media  (max-width: 800px) {.container { width: min(calc(100% - 40px), var(--marketing-content-max)); }}
@media  (max-width: 540px) {.container { width: min(calc(100% - 36px), var(--marketing-content-max)); }}
@keyframes dps-hero-marquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}
/* Global production fixes */
.dps-infrastructure-badge,.dps-infrastructure-mark{background-image:url(../images/DPS_Logo_Dark_Background_No_TM.png)!important;background-repeat:no-repeat!important;background-position:center!important;background-size:44px 44px!important;}
.proof-badge.dps-infrastructure-badge{background-size:44px 44px!important;}

/* ==========================================================
   DPS GLOBAL FOOTER LINK COLOR
   Ensures page-specific launch CSS cannot alter shared footer links.
   Keep at the END of shell.css.
   ========================================================== */

.site-footer .footer-legal > a,
.site-footer .footer-legal > a:link,
.site-footer .footer-legal > a:visited {
    color: rgba(255, 255, 255, 0.54) !important;
}

.site-footer .footer-legal > a:hover,
.site-footer .footer-legal > a:focus {
    color: #76eaf7 !important;
}


/* ==========================================================
   DPS CONTACT FORM SELECT NORMALIZATION
   Keeps the Zoho-backed inquiry dropdown consistent with the
   existing DPS contact form design.
   ========================================================== */

.contact-page .contact-form .field select{
  -webkit-appearance:none;
  appearance:none;
  width:100%;
  min-height:50px;
  padding:13px 44px 13px 14px;
  border:1px solid #cbd7e6;
  border-radius:12px;
  background-color:#fff;
  color:var(--ink);
  font:inherit;
  font-size:.95rem;
  line-height:1.35;
  background-image:
    linear-gradient(45deg,transparent 50%,#315276 50%),
    linear-gradient(135deg,#315276 50%,transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:5px 5px,5px 5px;
  background-repeat:no-repeat;
}

.contact-page .contact-form .field select:focus{
  border-color:var(--cyan);
  box-shadow:0 0 0 3px rgba(118,234,247,.16);
}

.form-success{

  margin:0 0 22px;

  padding:14px 16px;

  border:1px solid rgba(11,101,216,.22);

  border-left:4px solid var(--cyan);

  border-radius:12px;

  background:#f3fbfd;

  color:var(--navy);

  font-size:.9rem;

  font-weight:700;

  line-height:1.5;

}

.form-success[hidden]{

  display:none!important;

}
