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

body {
  margin: 0;
  min-height: 100dvh;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

.hd-strip {
  background: linear-gradient(135deg, #0082D2 0%, #005fa0 55%, #D6345D 100%);
  padding: 6px 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  max-width: 100%;
}

.hd-strip-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hd-strip-link {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  line-height: 1.4;
  color: #FFFEF5;
  text-decoration: none;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 0.88;
}

.hd-strip-link:hover {
  opacity: 1;
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(255,254,245,0.4);
}

.hd-strip-link:focus {
  outline: 2px solid #FFFEF5;
  outline-offset: 2px;
  border-radius: 4px;
  transform: scale(1.02);
}

.hd-strip-link .mdi {
  font-size: 15px;
}

.hd-strip-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,254,245,0.35);
  display: inline-block;
}

.hd-main {
  background: #FFFEF5;
  border-bottom: 1px solid rgba(0,130,210,0.14);
  box-shadow: -1px 5px 22px -2px rgba(0,130,210,0.10);
  padding: 0 28px;
  max-width: 100%;
}

.hd-main-plate {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 0;
}

.hd-nav-left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}

.hd-logo-pod {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0,130,210,0.25), 0 0 0 4px rgba(0,130,210,0.10), -1px 2px 6px -2px rgba(0,130,210,0.05);
  border-radius: 0;
  overflow: hidden;
}

.hd-logo-pod:focus {
  outline: 2px solid #0082D2;
  outline-offset: 3px;
  transform: scale(1.02);
}

.hd-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.hd-nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: flex-start;
}

.hd-nav-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1a3a52;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background-color 0.5s ease-in-out, border-color 0.5s ease-in-out, color 0.5s ease-in-out;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.hd-nav-link:hover {
  background: rgba(0,130,210,0.07);
  border-color: rgba(0,130,210,0.18);
  color: #0082D2;
  box-shadow: inset -1px 2px 6px -2px rgba(0,130,210,0.08);
}

.hd-nav-link:focus {
  outline: 2px solid #0082D2;
  outline-offset: 2px;
  transform: scale(1.02);
}

.hd-nav-link-active {
  color: #0082D2;
  background: rgba(0,130,210,0.06);
  border-color: rgba(0,130,210,0.15);
}

.hd-region-sel {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #1a3a52;
  background: transparent;
  border: 1px solid rgba(0,130,210,0.22);
  border-radius: 4px;
  padding: 6px 14px;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.55s ease-in-out, background-color 0.55s ease-in-out;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230082D2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.hd-region-sel:hover {
  border-color: #0082D2;
  background-color: rgba(0,130,210,0.05);
}

.hd-region-sel:focus {
  outline: 2px solid #0082D2;
  outline-offset: 2px;
  transform: scale(1.02);
}

.ft-outer {
  background: #f2f4f7;
  box-shadow: -1px -5px 22px -2px rgba(0,130,210,0.10), -1px -2px 6px -2px rgba(0,130,210,0.05);
  padding: 56px 28px 28px;
  position: relative;
}

.ft-plate {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.ft-body-deck {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
}

.ft-brand-cell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
  flex: 0 0 auto;
}

.ft-logo-pod {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0,130,210,0.22), 0 0 0 4px rgba(0,130,210,0.08), -1px 2px 6px -2px rgba(0,130,210,0.05);
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
}

.ft-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.ft-brand-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0f2a3d;
}

.ft-address-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ft-address-line {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #3a5068;
  letter-spacing: 0.01em;
}

.ft-contact-link {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #0082D2;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.5s ease-in-out;
}

.ft-contact-link:hover {
  color: #005fa0;
  box-shadow: inset 0 -1px 0 rgba(0,130,210,0.3);
}

.ft-contact-link:focus {
  outline: 2px solid #0082D2;
  outline-offset: 2px;
  border-radius: 4px;
  transform: scale(1.02);
}

.ft-trust-cell {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-trust-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #0f2a3d;
  text-transform: uppercase;
}

.ft-trust-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #3a5068;
  letter-spacing: 0.01em;
}

.ft-trust-icon {
  color: #0082D2;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ft-nav-cell {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-nav-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #0f2a3d;
  text-transform: uppercase;
}

.ft-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-nav-link {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #3a5068;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.5s ease-in-out;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.ft-nav-link:hover {
  color: #0082D2;
  border-bottom-color: rgba(0,130,210,0.3);
}

.ft-nav-link:focus {
  outline: 2px solid #0082D2;
  outline-offset: 2px;
  border-radius: 4px;
  transform: scale(1.02);
}

.ft-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0,130,210,0.18) 0%, rgba(214,52,93,0.12) 60%, rgba(0,130,210,0.05) 100%);
  border: none;
  margin: 0;
}

.ft-bottom-deck {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.ft-copy {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  line-height: 1.4;
  color: #5a7590;
  letter-spacing: 0.01em;
}

.ft-copy-accent {
  color: #0082D2;
  font-weight: 600;
}

.ft-bottom-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border-radius: 42px;
  border: 1px solid rgba(0,130,210,0.15);
  box-shadow: -1px 2px 6px -2px rgba(0,130,210,0.05);
}

.ft-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0082D2;
  flex-shrink: 0;
}

.ft-badge-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #3a5068;
  letter-spacing: 0.02em;
}

.ck-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #fff;
  border-bottom: 2px solid rgba(0,130,210,0.18);
  box-shadow: -1px 5px 22px -2px rgba(0,130,210,0.10);
  padding: 14px 28px;
}

.ck-bar-plate {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.ck-text-pod {
  flex: 1;
  min-width: 240px;
}

.ck-headline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #0f2a3d;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.ck-desc {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #3a5068;
  letter-spacing: 0.01em;
  margin: 0;
}

.ck-policy-link {
  color: #0082D2;
  text-decoration: underline;
  transition: color 0.5s ease-in-out;
}

.ck-policy-link:hover {
  color: #005fa0;
}

.ck-uses {
  margin: 6px 0 0;
  padding-left: 14px;
  list-style: disc;
}

.ck-uses li {
  font-family: 'Inconsolata', monospace;
  font-size: 15px;
  line-height: 1.6;
  color: #3a5068;
}

.ck-pref-pod {
  display: none;
  margin-top: 14px;
  padding: 14px;
  background: rgba(0,130,210,0.04);
  border: 1px solid rgba(0,130,210,0.14);
  border-radius: 4px;
}

.ck-pref-pod.open {
  display: block;
}

.ck-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ck-toggle-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #0f2a3d;
}

.ck-toggle-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0082D2;
}

.ck-actions-pod {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  align-items: stretch;
  min-width: 140px;
}

.ck-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 4px;
  border: 2px solid #0082D2;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.55s cubic-bezier(0.25,0.46,0.45,0.94), color 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  text-align: center;
}

.ck-btn:focus {
  outline: 2px solid #0082D2;
  outline-offset: 2px;
  transform: scale(1.02);
}

.ck-btn-accept {
  background: #0082D2;
  color: #fff;
}

.ck-btn-accept:hover {
  background: #005fa0;
  border-color: #005fa0;
  box-shadow: inset -1px 2px 6px -2px rgba(0,130,210,0.2);
}

.ck-btn-decline {
  background: transparent;
  color: #0082D2;
}

.ck-btn-decline:hover {
  background: rgba(0,130,210,0.06);
  box-shadow: inset -1px 2px 6px -2px rgba(0,130,210,0.08);
}

.ck-btn-pref {
  background: transparent;
  color: #3a5068;
  border-color: rgba(0,130,210,0.3);
  font-weight: 500;
}

.ck-btn-pref:hover {
  background: rgba(0,130,210,0.04);
  border-color: rgba(0,130,210,0.5);
}

.ck-settings-trigger {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 1199;
  width: 44px;
  height: 44px;
  border-radius: 42px;
  background: #0082D2;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: -1px 5px 22px -2px rgba(0,130,210,0.14);
  transition: background-color 0.5s ease-in-out;
}

.ck-settings-trigger.visible {
  display: flex;
}

.ck-settings-trigger:hover {
  background: #005fa0;
  box-shadow: inset -1px 2px 6px -2px rgba(0,130,210,0.15);
}

.ck-settings-trigger:focus {
  outline: 2px solid #0082D2;
  outline-offset: 3px;
  transform: scale(1.02);
}

.ck-settings-trigger .mdi {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 768px) {
  .hd-strip-contact {
    gap: 6px;
  }
  .hd-strip {
    padding: 6px 14px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .hd-main {
    padding: 0 14px;
  }
  .hd-main-plate {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 0;
    justify-content: center;
  }
  .hd-nav-left, .hd-nav-right {
    justify-content: center;
    flex-wrap: wrap;
  }
  .ft-outer {
    padding: 56px 14px 28px;
  }
  .ft-body-deck {
    flex-direction: column;
    gap: 28px;
  }
  .ft-bottom-deck {
    flex-direction: column;
    align-items: flex-start;
  }
  .ck-bar {
    padding: 14px;
  }
  .ck-bar-plate {
    flex-direction: column;
    gap: 14px;
  }
}.legal-article {
    max-width: 1440px;
    margin: 0 auto;
    padding: 56px 96px;
    background: #FFFEF5;
    box-sizing: border-box;
}

.legal-article p {
    font-size: 17px;
    line-height: 1.9;
    color: #1b1b2e;
    margin-bottom: 28px;
    letter-spacing: 0.01em;
}

.legal-article strong,
.legal-article b {
    font-weight: 700;
    color: #111126;
}

.legal-article em,
.legal-article i {
    font-style: italic;
    color: #2a2a42;
}

.legal-article a {
    color: #0082D2;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.55s ease-in-out, text-decoration-color 0.55s ease-in-out;
}

.legal-article a:hover {
    color: #D6345D;
    text-decoration-color: #D6345D;
    box-shadow: inset 0 0 0 0 transparent;
}

.legal-article table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
}

.legal-article thead {
    background: #0082D2;
}

.legal-article thead th {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    text-align: left;
    border: none;
}

.legal-article tbody tr {
    border-bottom: 1px solid rgba(0, 130, 210, 0.12);
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.legal-article tbody tr:last-child {
    border-bottom: none;
}

.legal-article tbody tr:nth-child(even) {
    background: rgba(0, 130, 210, 0.04);
}

.legal-article tbody tr:hover {
    background: rgba(0, 130, 210, 0.09);
    box-shadow: inset 0 0 0 0 transparent;
}

.legal-article td {
    padding: 14px 28px;
    font-size: 15px;
    line-height: 1.6;
    color: #1b1b2e;
    vertical-align: top;
    border: none;
}

.legal-article th {
    padding: 14px 28px;
    font-size: 15px;
    line-height: 1.4;
    vertical-align: middle;
    border: none;
}

@media (max-width: 900px) {
    .legal-article {
        padding: 56px 28px;
    }

    .legal-article table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 600px) {
    .legal-article {
        padding: 28px 14px;
    }

    .legal-article p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .legal-article thead th,
    .legal-article td,
    .legal-article th {
        padding: 14px;
    }
}
.ld-root {
  max-width: 100%;
  overflow-x: hidden;
}

.ld-root .ld-constrain {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 56px;
  padding-right: 56px;
}

@keyframes ld-clip-reveal {
  from { clip-path: inset(0 0 100% 0); opacity: 0; }
  to { clip-path: inset(0 0 0% 0); opacity: 1; }
}

@keyframes ld-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.ld-root ::selection {
  background-color: #0082D2;
  color: #ffffff;
}

.ld-root input::placeholder,
.ld-root textarea::placeholder {
  font-size: 15px;
  color: #8a8a8a;
}

/* ── SECTION 1: TITLE BLOCK ── */

.ld-title-block {
  background-color: #FFFEF5;
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
}

.ld-title-block::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: rgba(0, 130, 210, 0.08);
  border-radius: 42px;
  filter: blur(60px);
  pointer-events: none;
}

.ld-title-block::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(214, 52, 93, 0.07);
  border-radius: 42px;
  filter: blur(50px);
  pointer-events: none;
}

.ld-title-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.ld-title-text-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ld-title-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #0082D2;
  text-transform: uppercase;
  line-height: 1.4;
}

.ld-title-h1 {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1b1b2e;
  font-style: italic;
  animation: ld-clip-reveal 0.65s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.ld-title-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a4a;
  max-width: 440px;
}

.ld-title-link {
  display: inline-block;
  background-color: #0082D2;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
  transition: box-shadow 0.55s ease-in-out, transform 0.55s ease-in-out, background-color 0.45s ease-in-out;
}

.ld-title-link:hover {
  background-color: #006ab0;
  transform: translateY(-2px);
  box-shadow: -1px 10px 44px -2px rgba(0, 130, 210, 0.14);
}

.ld-title-link:focus {
  outline: 2px solid #0082D2;
  outline-offset: 3px;
}

.ld-title-images-col {
  flex: 1 1 46%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  position: relative;
}

.ld-title-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.ld-title-img-wrap.tall {
  grid-row: span 2;
}

.ld-title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.55s ease-in-out;
  opacity: 0;
}

.ld-title-img-wrap img.ld-loaded {
  opacity: 1;
}

.ld-title-img-wrap img:hover {
  transform: scale(1.03);
}

.ld-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,254,245,0.18) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 4px;
}

/* divider scallop */
.ld-divider-scallop {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.ld-divider-scallop svg {
  display: block;
  width: 100%;
}

/* ── SECTION 2: PEOPLE / TEAM ── */

.ld-team-block {
  background-color: #ffffff;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.ld-team-inner {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.ld-team-portrait-col {
  flex: 0 0 300px;
}

.ld-team-portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0;
  box-shadow: -1px 10px 44px -2px rgba(0, 130, 210, 0.14);
}

.ld-team-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ld-team-portrait-frame:hover img {
  transform: scale(1.04);
}

.ld-team-text-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ld-team-eyebrow {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #D6345D;
  text-transform: uppercase;
  line-height: 1.4;
}

.ld-team-h2 {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #1b1b2e;
  font-style: italic;
}

.ld-team-quote-block {
  border-left: 3px solid #0082D2;
  border-top: 1px solid rgba(0,130,210,0.15);
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(0,130,210,0.04) 0%, transparent 100%);
  border-radius: 0 4px 4px 0;
}

.ld-team-quote-block p {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a3a;
}

.ld-team-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a4a;
}

.ld-team-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ld-team-cred-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.ld-team-cred-num {
  font-size: 27px;
  font-weight: 700;
  color: #0082D2;
  line-height: 1.2;
  min-width: 36px;
}

.ld-team-cred-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a4a;
  padding-top: 6px;
}

/* divider line with center element */
.ld-divider-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding-left: 56px;
  padding-right: 56px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.ld-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,130,210,0.2), transparent);
}

.ld-divider-diamond {
  width: 10px;
  height: 10px;
  background-color: #D6345D;
  transform: rotate(45deg);
  border-radius: 0;
  flex-shrink: 0;
}

/* ── SECTION 3: EXPERIENCE / JOURNEY ── */

.ld-journey-block {
  background-color: #FFFEF5;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.ld-journey-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ld-journey-bg-pattern svg {
  width: 100%;
  height: 100%;
  opacity: 0.06;
}

.ld-journey-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.ld-journey-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 56px;
}

.ld-journey-h2-col {
  flex: 0 0 auto;
}

.ld-journey-h2 {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #1b1b2e;
  font-style: italic;
}

.ld-journey-intro-col {
  flex: 1 1 0;
}

.ld-journey-intro-col p {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a4a;
}

.ld-journey-phases {
  display: flex;
  flex-direction: row;
  gap: 28px;
}

.ld-phase-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: -1px 2px 6px -2px rgba(0, 130, 210, 0.05), -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
  transition: box-shadow 0.55s ease-in-out, transform 0.55s ease-in-out;
  position: relative;
}

.ld-phase-card:hover {
  transform: translateY(-4px);
  box-shadow: -1px 10px 44px -2px rgba(0, 130, 210, 0.14);
}

.ld-phase-num {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgba(0, 130, 210, 0.10);
  font-weight: 700;
  position: absolute;
  top: 14px;
  right: 14px;
}

.ld-phase-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,130,210,0.12) 0%, transparent 100%);
  border-radius: 4px;
}

.ld-phase-icon .mdi {
  font-size: 22px;
  color: #0082D2;
}

.ld-phase-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1b1b2e;
  line-height: 1.4;
  text-transform: uppercase;
}

.ld-phase-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a4a;
}

.ld-journey-img-strip {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  height: 260px;
}

.ld-journey-img-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ld-journey-img-strip:hover img {
  transform: scale(1.04);
}

/* ── SECTION 4: STATS / SCALE ── */

.ld-scale-block {
  background-color: #0082D2;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
}

.ld-scale-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0082D2 0%, rgba(214, 52, 93, 0.25) 100%);
  pointer-events: none;
}

.ld-scale-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.ld-scale-header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}

.ld-scale-h2 {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #ffffff;
  font-style: italic;
  max-width: 480px;
}

.ld-scale-desc {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
  max-width: 360px;
}

.ld-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ld-stat-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.55s ease-in-out, background-color 0.55s ease-in-out, box-shadow 0.55s ease-in-out;
}

.ld-stat-shape:hover {
  border-color: rgba(255,255,255,0.75);
  background-color: rgba(255,255,255,0.08);
  box-shadow: -1px 10px 44px -2px rgba(214, 52, 93, 0.14);
}

.ld-stat-number {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #ffffff;
  font-weight: 700;
  animation: ld-fade-up 0.65s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.ld-stat-unit {
  font-size: 27px;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
}

.ld-stat-label {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

.ld-scale-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ld-scale-img-frame {
  border-radius: 4px;
  overflow: hidden;
  height: 200px;
}

.ld-scale-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.ld-scale-img-frame:hover img {
  transform: scale(1.05);
}

/* ── SECTION 5: GRADUATION / OUTCOMES ── */

.ld-outcome-block {
  background-color: #ffffff;
  padding-top: 96px;
  padding-bottom: 96px;
}

.ld-outcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.ld-outcome-lead-col {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ld-outcome-eyebrow {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #D6345D;
  text-transform: uppercase;
  line-height: 1.4;
}

.ld-outcome-h2 {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #1b1b2e;
  font-style: italic;
}

.ld-outcome-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #3a3a4a;
}

.ld-outcome-cards-col {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ld-outcome-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, #FFFEF5 0%, rgba(0,130,210,0.03) 100%);
  border: 1px solid rgba(0,130,210,0.10);
  box-shadow: -1px 2px 6px -2px rgba(0, 130, 210, 0.05);
  transition: box-shadow 0.55s ease-in-out, transform 0.55s ease-in-out, border-color 0.45s ease-in-out;
}

.ld-outcome-item:hover {
  transform: translateY(-3px);
  box-shadow: -1px 10px 44px -2px rgba(0, 130, 210, 0.14);
  border-color: rgba(0,130,210,0.22);
}

.ld-outcome-item-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background-color: rgba(214, 52, 93, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ld-outcome-item-icon .mdi {
  font-size: 20px;
  color: #D6345D;
}

.ld-outcome-item-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ld-outcome-item-title {
  font-size: 15px;
  font-weight: 600;
  color: #1b1b2e;
  line-height: 1.4;
}

.ld-outcome-item-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #3a3a4a;
}

.ld-outcome-closing {
  grid-column: span 3;
  padding: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(0,130,210,0.06) 0%, rgba(214,52,93,0.04) 100%);
  border: 1px solid rgba(0,130,210,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}

.ld-outcome-closing-text {
  flex: 1;
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a3a;
}

.ld-outcome-closing-link {
  flex-shrink: 0;
  display: inline-block;
  background-color: transparent;
  color: #0082D2;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 4px;
  border: 2px solid #0082D2;
  text-decoration: none;
  transition: background-color 0.45s ease-in-out, color 0.45s ease-in-out, box-shadow 0.55s ease-in-out;
}

.ld-outcome-closing-link:hover {
  background-color: #0082D2;
  color: #ffffff;
  box-shadow: -1px 10px 44px -2px rgba(0, 130, 210, 0.14);
}

.ld-outcome-closing-link:focus {
  outline: 2px solid #0082D2;
  outline-offset: 3px;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .ld-root .ld-constrain {
    padding-left: 28px;
    padding-right: 28px;
  }

  .ld-title-inner {
    flex-direction: column;
  }

  .ld-title-images-col {
    display: none;
  }

  .ld-title-h1 {
    font-size: 27px;
  }

  .ld-team-inner {
    flex-direction: column;
  }

  .ld-team-portrait-col {
    display: none;
  }

  .ld-journey-phases {
    flex-direction: column;
  }

  .ld-scale-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .ld-stats-row {
    grid-template-columns: 1fr;
  }

  .ld-scale-images {
    display: none;
  }

  .ld-outcome-inner {
    grid-template-columns: 1fr;
  }

  .ld-outcome-lead-col {
    grid-column: span 1;
  }

  .ld-outcome-cards-col {
    grid-column: span 1;
  }

  .ld-outcome-closing {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .ld-journey-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .ld-root .ld-constrain {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ld-title-block {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .ld-team-block,
  .ld-journey-block,
  .ld-scale-block,
  .ld-outcome-block {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .ld-stat-number {
    font-size: 27px;
  }

  .ld-journey-img-strip {
    display: none;
  }

  .ld-divider-center {
    padding-left: 14px;
    padding-right: 14px;
  }
}

.cu-pg {
  display: block;
  width: 100%;
  overflow-x: clip;
}

.cu-pg .reach-band {
  background: #0082D2;
  padding: 96px 56px;
  position: relative;
  border-top: 3px solid #D6345D;
  border-bottom: 3px solid #D6345D;
  overflow: hidden;
}

.cu-pg .reach-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, #D6345D 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.08;
  pointer-events: none;
}

.cu-pg .reach-band-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

.cu-pg .reach-img-col {
  flex: 0 0 420px;
  position: relative;
}

.cu-pg .reach-img-frame {
  position: relative;
  width: 420px;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: -1px 10px 44px -2px rgba(0, 130, 210, 0.14);
}

.cu-pg .reach-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #D6345D 0%, transparent 60%);
  opacity: 0.45;
  transition: opacity 0.55s ease-in-out;
}

.cu-pg .reach-img-frame:hover::after {
  opacity: 0.72;
}

.cu-pg .reach-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.4) brightness(0.85);
}

.cu-pg .reach-img-corner-tl {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 40px;
  height: 40px;
  border-top: 2px solid #FFFEF5;
  border-left: 2px solid #FFFEF5;
  border-radius: 4px 0 0 0;
  pointer-events: none;
}

.cu-pg .reach-img-corner-br {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid #FFFEF5;
  border-right: 2px solid #FFFEF5;
  border-radius: 0 0 4px 0;
  pointer-events: none;
}

.cu-pg .reach-text-col {
  flex: 1;
  padding: 28px 56px 28px 28px;
}

.cu-pg .reach-eyebrow {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  color: #FFFEF5;
  opacity: 0.75;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.cu-pg .reach-h1 {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFEF5;
  font-style: italic;
  margin-bottom: 14px;
}

.cu-pg .reach-h1 em {
  font-style: normal;
  color: #FFFEF5;
  opacity: 0.65;
  font-size: 27px;
  display: block;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 6px;
}

.cu-pg .reach-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #FFFEF5;
  opacity: 0.88;
  max-width: 480px;
}

.cu-pg .reach-divider {
  display: block;
  width: 100%;
  height: 28px;
  overflow: visible;
}

.cu-pg .reach-divider svg {
  width: 100%;
  height: 28px;
  display: block;
}

.cu-pg .form-strip {
  background: #FFFEF5;
  padding: 96px 56px;
  position: relative;
}

.cu-pg .form-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 96px;
  align-items: flex-start;
}

.cu-pg .form-aside {
  flex: 0 0 300px;
  padding-top: 6px;
}

.cu-pg .form-aside-label {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #D6345D;
  margin-bottom: 28px;
}

.cu-pg .form-aside-hed {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #1b2a3b;
  font-style: italic;
  margin-bottom: 14px;
}

.cu-pg .form-aside-note {
  font-size: 15px;
  line-height: 1.6;
  color: #3d4f60;
  margin-bottom: 28px;
}

.cu-pg .form-aside-urgency-list {
  list-style: decimal;
  padding-left: 28px;
  margin: 0;
}

.cu-pg .form-aside-urgency-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #3d4f60;
  margin-bottom: 6px;
}

.cu-pg .form-col {
  flex: 1;
}

.cu-pg .contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cu-pg .form-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
}

.cu-pg .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cu-pg .form-field-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.cu-pg .field-lbl {
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #1b2a3b;
  font-weight: 600;
}

.cu-pg .field-lbl span {
  color: #D6345D;
  margin-left: 2px;
}

.cu-pg .txt-input {
  border: 1.5px solid #c8d8e8;
  border-radius: 4px;
  padding: 14px;
  font-size: 17px;
  line-height: 1.4;
  color: #1b2a3b;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  outline: none;
}

.cu-pg .txt-input::placeholder {
  font-size: 15px;
  color: #8fa4b8;
}

.cu-pg .txt-input:focus {
  border-color: #0082D2;
  box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
}

.cu-pg .txt-input:hover {
  box-shadow: inset 0 1px 4px rgba(0, 130, 210, 0.08);
  border-color: #7ab8dc;
}

.cu-pg .priority-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cu-pg .priority-opts {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}

.cu-pg .priority-opt {
  position: relative;
}

.cu-pg .priority-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cu-pg .priority-opt label {
  display: inline-block;
  padding: 6px 28px;
  border: 1.5px solid #c8d8e8;
  border-radius: 42px;
  font-size: 15px;
  line-height: 1.4;
  color: #3d4f60;
  cursor: pointer;
  transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out, color 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
  background: #fff;
}

.cu-pg .priority-opt label:hover {
  border-color: #0082D2;
  color: #0082D2;
  box-shadow: inset 0 1px 5px rgba(0, 130, 210, 0.09);
}

.cu-pg .priority-opt input[type="radio"]:checked + label {
  background: #0082D2;
  border-color: #0082D2;
  color: #fff;
  box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
}

.cu-pg .priority-opt input[type="radio"]:focus-visible + label {
  outline: 2px solid #D6345D;
  outline-offset: 2px;
}

.cu-pg .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}

.cu-pg .privacy-chk {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #0082D2;
  cursor: pointer;
}

.cu-pg .privacy-txt {
  font-size: 15px;
  line-height: 1.6;
  color: #3d4f60;
}

.cu-pg .privacy-txt a {
  color: #0082D2;
  text-decoration: underline;
  transition: color 0.5s ease-in-out;
}

.cu-pg .privacy-txt a:hover {
  color: #D6345D;
}

.cu-pg .submit-btn {
  align-self: flex-start;
  background: #D6345D;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 56px;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.55s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.55s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.45s ease-in-out;
  box-shadow: -1px 5px 22px -2px rgba(214, 52, 93, 0.10);
}

.cu-pg .submit-btn:hover {
  background: #b82a4e;
  box-shadow: inset 0 2px 8px rgba(214, 52, 93, 0.18), -1px 10px 44px -2px rgba(214, 52, 93, 0.14);
  transform: translateY(1px);
}

.cu-pg .submit-btn:focus-visible {
  outline: 2px solid #0082D2;
  outline-offset: 3px;
}

.cu-pg .form-divider {
  display: block;
  width: 100%;
  height: 28px;
  overflow: visible;
}

.cu-pg .form-divider svg {
  width: 100%;
  height: 28px;
  display: block;
}

.cu-pg .details-strip {
  background: #fff;
  padding: 96px 56px;
  position: relative;
  border-top: 2px solid rgba(0, 130, 210, 0.08);
}

.cu-pg .details-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.cu-pg .details-left {
  flex: 1;
}

.cu-pg .details-hed {
  font-size: 27px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #1b2a3b;
  font-style: italic;
  margin-bottom: 28px;
}

.cu-pg .details-blockquote {
  border-left: 3px solid #D6345D;
  border-right: 1px solid rgba(0, 130, 210, 0.15);
  padding: 14px 28px;
  background: rgba(0, 130, 210, 0.03);
  border-radius: 4px;
  margin-bottom: 28px;
}

.cu-pg .details-blockquote p {
  font-size: 17px;
  line-height: 1.6;
  color: #1b2a3b;
  margin: 0;
}

.cu-pg .contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cu-pg .contact-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 4px;
  border: 1.5px solid rgba(0, 130, 210, 0.12);
  background: #FFFEF5;
  transition: box-shadow 0.5s ease-in-out, border-color 0.5s ease-in-out;
  box-shadow: -1px 2px 6px -2px rgba(0, 130, 210, 0.05);
}

.cu-pg .contact-item:hover {
  box-shadow: inset 0 1px 6px rgba(0, 130, 210, 0.07), -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
  border-color: rgba(0, 130, 210, 0.28);
}

.cu-pg .contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #0082D2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu-pg .contact-item-icon i {
  color: #fff;
  font-size: 17px;
}

.cu-pg .contact-item-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cu-pg .contact-item-lbl {
  font-size: 15px;
  line-height: 1.4;
  color: #8fa4b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cu-pg .contact-item-val {
  font-size: 17px;
  line-height: 1.4;
  color: #1b2a3b;
  font-weight: 600;
}

.cu-pg .contact-item-val a {
  color: #1b2a3b;
  text-decoration: none;
  transition: color 0.5s ease-in-out;
}

.cu-pg .contact-item-val a:hover {
  color: #0082D2;
}

.cu-pg .details-right {
  flex: 0 0 380px;
}

.cu-pg .schedule-grid-hed {
  font-size: 17px;
  line-height: 1.4;
  color: #1b2a3b;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  text-transform: uppercase;
  font-size: 15px;
}

.cu-pg .schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 28px;
}

.cu-pg .sched-cell {
  padding: 14px;
  border-radius: 4px;
  background: #FFFEF5;
  border: 1.5px solid rgba(0, 130, 210, 0.10);
  transition: background 0.5s ease-in-out, border-color 0.5s ease-in-out;
}

.cu-pg .sched-cell:hover {
  background: rgba(0, 130, 210, 0.05);
  border-color: rgba(0, 130, 210, 0.22);
}

.cu-pg .sched-day {
  font-size: 15px;
  line-height: 1.4;
  color: #8fa4b8;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cu-pg .sched-time {
  font-size: 17px;
  line-height: 1.4;
  color: #1b2a3b;
  font-weight: 600;
}

.cu-pg .sched-cell.closed .sched-time {
  color: #c8d8e8;
}

.cu-pg .response-note {
  padding: 14px 28px;
  background: rgba(214, 52, 93, 0.05);
  border-radius: 4px;
  border-top: 2px solid #D6345D;
  border-bottom: 1px solid rgba(214, 52, 93, 0.12);
}

.cu-pg .response-note p {
  font-size: 15px;
  line-height: 1.6;
  color: #3d4f60;
  margin: 0;
}

@media (max-width: 1024px) {
  .cu-pg .reach-band-inner {
    flex-direction: column;
    gap: 28px;
  }
  .cu-pg .reach-img-col {
    display: none;
  }
  .cu-pg .reach-text-col {
    padding: 0;
  }
  .cu-pg .reach-h1 {
    font-size: 27px;
  }
  .cu-pg .form-strip-inner {
    flex-direction: column;
    gap: 28px;
  }
  .cu-pg .form-aside {
    flex: none;
    width: 100%;
  }
  .cu-pg .details-strip-inner {
    flex-direction: column;
    gap: 28px;
  }
  .cu-pg .details-right {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .cu-pg .reach-band {
    padding: 56px 28px;
  }
  .cu-pg .form-strip {
    padding: 56px 28px;
  }
  .cu-pg .details-strip {
    padding: 56px 28px;
  }
  .cu-pg .form-row {
    flex-direction: column;
    gap: 14px;
  }
  .cu-pg .priority-opts {
    flex-direction: column;
    gap: 6px;
  }
  .cu-pg .submit-btn {
    width: 100%;
    text-align: center;
  }
  .cu-pg .schedule-grid {
    grid-template-columns: 1fr;
  }
  .cu-pg .reach-img-col {
    display: none;
  }
}

.abt-pg {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.abt-pg .dark-lead {
  background: #111827;
  padding: 96px 56px 56px;
  position: relative;
  overflow: hidden;
}

.abt-pg .dark-lead-geo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.abt-pg .dark-lead-geo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.abt-pg .dark-lead-geo-circle.lg {
  width: 480px;
  height: 480px;
  border: 1px solid #0082D2;
  top: -140px;
  right: -80px;
}

.abt-pg .dark-lead-geo-circle.sm {
  width: 220px;
  height: 220px;
  border: 1px solid #D6345D;
  bottom: -60px;
  left: 14%;
}

.abt-pg .dark-lead-geo-rect {
  position: absolute;
  opacity: 0.05;
  border: 1px dashed #0082D2;
  border-radius: 4px;
  width: 160px;
  height: 160px;
  top: 56px;
  right: 22%;
  transform: rotate(18deg);
}

.abt-pg .dark-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 130, 210, 0.15);
  border: 1px solid rgba(0, 130, 210, 0.35);
  border-radius: 4px;
  padding: 6px 14px;
  margin-bottom: 28px;
}

.abt-pg .dark-lead-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0082D2;
  flex-shrink: 0;
}

.abt-pg .dark-lead-badge-text {
  font-size: 15px;
  color: #0082D2;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.abt-pg .dark-lead-h1 {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFEF5;
  font-style: italic;
  max-width: 780px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.abt-pg .dark-lead-h1 span {
  background: linear-gradient(135deg, #0082D2, #D6345D);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-pg .dark-lead-accent-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #0082D2, transparent);
  border-radius: 4px;
  position: relative;
  z-index: 1;
}

.abt-pg .story-strip {
  background: #FFFEF5;
  padding: 96px 56px;
  animation: color-wave 9s ease-in-out infinite;
}

@keyframes color-wave {
  0%   { background-color: #FFFEF5; }
  45%  { background-color: #f5fbff; }
  100% { background-color: #FFFEF5; }
}

.abt-pg .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.abt-pg .story-left {
  position: relative;
}

.abt-pg .story-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: -1px 10px 44px -2px rgba(0, 130, 210, 0.14);
  display: block;
}

.abt-pg .story-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.55s ease-in-out;
}

.abt-pg .story-img-wrap:hover img {
  filter: grayscale(100%);
}

.abt-pg .story-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.82);
  color: #FFFEF5;
  font-size: 15px;
  line-height: 1.6;
  padding: 14px 28px;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.abt-pg .story-img-wrap:hover .story-img-caption {
  transform: translateY(0);
}

.abt-pg .story-dashed-frame {
  border: 1.5px dashed rgba(0, 130, 210, 0.35);
  border-radius: 4px;
  position: absolute;
  top: 14px;
  left: 14px;
  right: -14px;
  bottom: -14px;
  pointer-events: none;
  z-index: 0;
}

.abt-pg .story-img-outer {
  position: relative;
  z-index: 1;
}

.abt-pg .story-right {
  padding-top: 28px;
}

.abt-pg .story-eyebrow {
  font-size: 15px;
  color: #D6345D;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.abt-pg .story-h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #111827;
  font-style: italic;
  margin-bottom: 28px;
}

.abt-pg .story-blockquote {
  border-left: 3px solid #0082D2;
  border-top: 1px solid rgba(0, 130, 210, 0.2);
  border-right: 1px solid rgba(0, 130, 210, 0.1);
  border-bottom: 1px solid rgba(0, 130, 210, 0.1);
  border-radius: 4px;
  padding: 14px 28px;
  margin: 0 0 28px;
  background: rgba(0, 130, 210, 0.04);
}

.abt-pg .story-blockquote p {
  font-size: 17px;
  line-height: 1.9;
  color: #1d2d44;
  margin: 0;
}

.abt-pg .story-body {
  font-size: 15px;
  line-height: 1.9;
  color: #2d3a4a;
}

.abt-pg .story-body p {
  margin-bottom: 14px;
}

.abt-pg .story-body p:last-child {
  margin-bottom: 0;
}

.abt-pg .metrics-band {
  background: linear-gradient(160deg, #0082D2 0%, #005fa0 100%);
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
}

.abt-pg .metrics-band-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 30%, transparent 60%);
  animation: band-wave-move 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes band-wave-move {
  0%   { transform: translateX(-50%); }
  50%  { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.abt-pg .metrics-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.abt-pg .metric-card {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.abt-pg .metric-card:hover {
  background: rgba(255,255,255,0.16);
  box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
}

.abt-pg .metric-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
}

.abt-pg .metric-num {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFEF5;
}

.abt-pg .metric-label {
  font-size: 17px;
  line-height: 1.4;
  color: rgba(255,254,245,0.8);
}

.abt-pg .metric-desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,254,245,0.6);
  margin-top: 6px;
}

.abt-pg .team-approach {
  background: #ffffff;
  padding: 96px 56px;
}

.abt-pg .team-approach-top {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.abt-pg .team-approach-intro {
  flex: 1;
}

.abt-pg .team-approach-h2 {
  font-size: 27px;
  line-height: 1.4;
  color: #111827;
  font-style: italic;
  margin-bottom: 14px;
}

.abt-pg .team-approach-lead {
  font-size: 17px;
  line-height: 1.9;
  color: #2d3a4a;
}

.abt-pg .team-approach-aside {
  flex: 0 0 320px;
  padding-top: 6px;
}

.abt-pg .approach-list {
  list-style: decimal;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.abt-pg .approach-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #2d3a4a;
}

.abt-pg .team-portraits-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: start;
}

.abt-pg .portrait-card {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: start;
  background: #FFFEF5;
  border: 1px solid rgba(0, 130, 210, 0.12);
  border-radius: 4px;
  padding: 28px;
  flex: 1;
  box-shadow: -1px 2px 6px -2px rgba(0, 130, 210, 0.05);
  transition: box-shadow 0.6s ease-in-out;
}

.abt-pg .portrait-card:hover {
  box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
}

.abt-pg .portrait-img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 120px;
  border-radius: 42px;
  overflow: hidden;
}

.abt-pg .portrait-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.55s ease-in-out;
}

.abt-pg .portrait-card:hover .portrait-img-wrap img {
  filter: grayscale(100%);
}

.abt-pg .portrait-info {
  flex: 1;
}

.abt-pg .portrait-name {
  font-size: 17px;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 6px;
}

.abt-pg .portrait-role {
  font-size: 15px;
  line-height: 1.4;
  color: #0082D2;
  margin-bottom: 14px;
}

.abt-pg .portrait-bio {
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}

.abt-pg .img-grid-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.abt-pg .img-grid-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
}

.abt-pg .img-grid-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter 0.6s ease-in-out;
}

.abt-pg .img-grid-item:hover img {
  filter: grayscale(100%);
}

.abt-pg .img-grid-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.82);
  color: #FFFEF5;
  font-size: 15px;
  line-height: 1.6;
  padding: 14px;
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}

.abt-pg .img-grid-item:hover .img-grid-caption {
  transform: translateY(0);
}

.abt-pg .img-grid-counter {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 130, 210, 0.85);
  color: #FFFEF5;
  font-size: 15px;
  line-height: 1.2;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-pg .shifted-col-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.abt-pg .shifted-col-second {
  margin-top: 56px;
}

@media (max-width: 900px) {
  .abt-pg .dark-lead {
    padding: 56px 28px 56px;
  }
  .abt-pg .dark-lead-h1 {
    font-size: 27px;
  }
  .abt-pg .story-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .abt-pg .story-left {
    display: none;
  }
  .abt-pg .metrics-row {
    flex-direction: column;
    gap: 14px;
  }
  .abt-pg .team-approach-top {
    flex-direction: column;
    gap: 28px;
  }
  .abt-pg .team-approach-aside {
    flex: none;
    width: 100%;
  }
  .abt-pg .team-portraits-row {
    flex-direction: column;
    gap: 14px;
  }
  .abt-pg .img-grid-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .abt-pg .img-grid-item {
    display: none;
  }
  .abt-pg .img-grid-item:first-child {
    display: block;
  }
  .abt-pg .story-strip {
    padding: 56px 28px;
  }
  .abt-pg .metrics-band {
    padding: 56px 28px;
  }
  .abt-pg .team-approach {
    padding: 56px 28px;
  }
  .abt-pg .shifted-col-wrap {
    grid-template-columns: 1fr;
  }
  .abt-pg .shifted-col-second {
    margin-top: 0;
  }
}

  .success-page-root {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 28px;
    background-color: #FFFEF5;
  }

  .success-page-root .success-card {
    max-width: 560px;
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
    padding: 56px;
    box-shadow: -1px 10px 44px -2px rgba(0, 130, 210, 0.14);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .success-page-root .success-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 42px;
    background: linear-gradient(135deg, #0082D2, rgba(0, 130, 210, 0));
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
    flex-shrink: 0;
  }

  .success-page-root .success-checkmark {
    width: 28px;
    height: 28px;
    display: block;
  }

  .success-page-root .success-heading {
    font-size: 27px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-style: italic;
    color: #0d1b2a;
    margin: 0;
  }

  .success-page-root .success-body-text {
    font-size: 17px;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    max-width: 440px;
  }

  .success-page-root .success-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #0082D2, rgba(0, 130, 210, 0));
    border: none;
    margin: 0;
  }

  .success-page-root .success-note {
    font-size: 15px;
    line-height: 1.9;
    color: #4a5568;
    margin: 0;
  }

  .success-page-root .success-return-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    background-color: #0082D2;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid #0082D2;
    box-shadow: -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
    transition: background-color 0.55s ease-in-out, box-shadow 0.55s ease-in-out, color 0.55s ease-in-out;
  }

  .success-page-root .success-return-link:hover {
    background-color: #ffffff;
    color: #0082D2;
    box-shadow: inset 0 2px 6px rgba(0, 130, 210, 0.12), -1px 5px 22px -2px rgba(0, 130, 210, 0.10);
  }

  .success-page-root .success-return-link:focus {
    outline: 3px solid #D6345D;
    outline-offset: 3px;
  }

  .success-page-root .success-brand-label {
    font-size: 15px;
    line-height: 1.4;
    color: #0082D2;
    letter-spacing: 0.04em;
    margin: 0;
  }

  @media (max-width: 600px) {
    .success-page-root .success-card {
      padding: 28px;
      gap: 28px;
    }

    .success-page-root .success-heading {
      font-size: 27px;
    }
  }
