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

html {
  scroll-behavior: auto
}

body {
  margin: 0;
  overflow-x: hidden;
  min-height: 100vh
}

:focus-visible {
  outline: 3px solid;
  outline-color: #6083A3;
  outline-offset: 3px;
  outline-image: linear-gradient(135deg, #4F5E70, #6083A3, #A2B2BB) 1
}

.pg_hdr {
  position: relative;
  background: linear-gradient(160deg, #fffffff5 0%, #f0f4f8f7 100%);
  border-bottom: 1px solid #6083a32e;
  box-shadow: 2px 6px 14px 0 #4f5e7014;
  z-index: 100;
  overflow: visible
}

.pg_hdr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4F5E70 0%, #6083A3 55%, #A2B2BB 100%)
}

.hdr_top_bar {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  gap: 32px
}

.brand_pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px 0;
  flex-shrink: 0;
  position: relative
}

.brand_pod::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #6083A3, #A2B2BB);
  margin-top: 12px;
  border-radius: 6px
}

.logo_cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 2px 3px 6px 0 #4f5e7014 inset 0 0 0 1px #6083a326;
  width: 72px;
  height: 80px
}

.logo_cell img {
  width: 55px;
  height: 60px;
  object-fit: contain;
  display: block
}

.brand_name_lbl {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #4F5E70;
  text-transform: uppercase;
  margin-top: 8px;
  white-space: nowrap
}

.hdr_main_row {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 64px
}

.pri_nav_deck {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
  justify-content: center
}

.pri_nav_deck a {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 400;
  color: #4F5E70;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px
}

.pri_nav_deck a:hover {
  background: #6083a31a;
  color: #6083A3
}

.pri_nav_deck a[aria-current="page"] {
  background: #4f5e7014;
  color: #4F5E70;
  font-weight: 700
}

.nav_ic {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: .7
}

.hdr_contact_pod {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
  padding: 16px 0
}

.hdr_phone_lnk {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #4F5E70;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.hdr_phone_lnk:hover {
  color: #6083A3
}

.hdr_email_lnk {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: #6083A3;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  transition: color .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.hdr_email_lnk:hover {
  color: #4F5E70
}

.ic_svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.pg_ftr {
  background: #4F5E70;
  position: relative;
  overflow: visible
}

.pg_ftr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #A2B2BB 0%, #6083A3 50%, #4F5E70 100%)
}

.ftr_top_deck {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 64px;
  align-items: start
}

.ftr_left_col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ftr_col_heading {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: #A2B2BB;
  text-transform: uppercase;
  margin: 0 0 8px
}

.ftr_nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ftr_nav_list li a {
  font-family: 'Fira Code', monospace;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 8px 0;
  min-height: 44px;
  line-height: 1.55;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ftr_nav_list li a:hover {
  color: #A2B2BB
}

.ftr_brand_pod {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.ftr_logo_cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 2px 10px 48px 0 #4f5e701c;
  width: 72px;
  height: 80px
}

.ftr_logo_cell img {
  width: 55px;
  height: 60px;
  object-fit: contain;
  display: block
}

.ftr_brand_name {
  font-family: 'Fira Code', monospace;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.1;
  text-align: center
}

.ftr_founded_note {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: #A2B2BB;
  letter-spacing: .08em;
  text-align: center
}

.ftr_right_col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end
}

.ftr_contact_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end
}

.ftr_contact_list li {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: #A2B2BB;
  line-height: 1.55;
  text-align: right
}

.ftr_contact_list li a {
  color: #fff;
  text-decoration: none;
  min-height: 44px;
  display: inline-block;
  padding: 8px 0;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ftr_contact_list li a:hover {
  color: #A2B2BB
}

.ftr_contact_list li span {
  display: block;
  font-size: 13px;
  color: #A2B2BB;
  margin-bottom: 4px;
  letter-spacing: .1em;
  text-transform: uppercase
}

.ftr_bottom_bar {
  border-top: 1px solid #a2b2bb33;
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.ftr_copy_txt {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: #A2B2BB;
  line-height: 1.55
}

.ftr_legal_nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px
}

.ftr_legal_nav a {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: #A2B2BB;
  text-decoration: none;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ftr_legal_nav a:hover {
  color: #fff
}

@media (max-width: 960px) {
  .hdr_top_bar {
    padding: 0 16px;
    gap: 16px
  }

  .hdr_main_row {
    padding: 0 16px;
    flex-wrap: wrap;
    gap: 16px;
    min-height: auto;
    padding-bottom: 16px
  }

  .pri_nav_deck {
    justify-content: flex-start;
    order: 3;
    width: 100%
  }

  .hdr_contact_pod {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
  }

  .ftr_top_deck {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 16px
  }

  .ftr_right_col {
    align-items: flex-start
  }

  .ftr_contact_list {
    align-items: flex-start
  }

  .ftr_contact_list li {
    text-align: left
  }

  .ftr_bottom_bar {
    padding: 16px
  }
}

@media (max-width: 480px) {
  .hdr_top_bar {
    padding: 0 8px
  }

  .hdr_main_row {
    padding: 0 8px 8px
  }

  .pri_nav_deck a {
    font-size: 13px;
    padding: 8px
  }

  .ftr_top_deck {
    padding: 32px 8px
  }

  .ftr_bottom_bar {
    padding: 16px 8px;
    flex-direction: column;
    align-items: flex-start
  }

  .ftr_legal_nav {
    gap: 8px
  }
}

.policy-box {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 96px
}

.policy-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #2c3540;
  margin-bottom: 16px
}

.policy-box ul,
.policy-box ol {
  margin: 16px 0 32px;
  padding-left: 32px
}

.policy-box ul {
  list-style: none;
  padding-left: 0
}

.policy-box ul li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.8;
  color: #2c3540;
  margin-bottom: 8px
}

.policy-box ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background-color: #6083A3
}

.policy-box ol {
  list-style: none;
  counter-reset: policy-counter;
  padding-left: 0
}

.policy-box ol li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.8;
  color: #2c3540;
  margin-bottom: 8px;
  counter-increment: policy-counter
}

.policy-box ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 13px;
  font-weight: 700;
  color: #4F5E70;
  line-height: 1.8;
  letter-spacing: .02em
}

.policy-box ul ul,
.policy-box ol ol,
.policy-box ul ol,
.policy-box ol ul {
  margin: 8px 0 8px 16px
}

.policy-box ul ul li::before {
  background-color: #A2B2BB;
  width: 4px;
  height: 4px;
  top: 11px
}

.policy-box strong,
.policy-box b {
  font-weight: 700;
  color: #2c3540
}

.policy-box em,
.policy-box i {
  font-style: italic;
  color: #3d4d5c
}

.policy-box a {
  color: #4F5E70;
  text-decoration: underline;
  text-decoration-color: #A2B2BB;
  text-underline-offset: 3px;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-box a:hover {
  color: #6083A3;
  text-decoration-color: #6083A3
}

.policy-box a:active {
  color: #4F5E70
}

.policy-box table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 15px;
  box-shadow: 2px 3px 6px 0 #4f5e7014;
  border-radius: 6px;
  overflow: hidden
}

.policy-box thead {
  background-color: #4F5E70
}

.policy-box thead th {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 16px;
  text-align: left;
  line-height: 1.35
}

.policy-box tbody tr {
  border-bottom: 1px solid #d4dde5;
  transition: background-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-box tbody tr:last-child {
  border-bottom: none
}

.policy-box tbody tr:nth-child(even) {
  background-color: #f2f5f8
}

.policy-box tbody tr:hover {
  background-color: #e8eef4
}

.policy-box td {
  padding: 16px;
  color: #2c3540;
  line-height: 1.55;
  vertical-align: top
}

.policy-box th {
  padding: 16px;
  line-height: 1.35;
  vertical-align: middle
}

.policy-box div {
  margin-bottom: 16px
}

@media (max-width: 960px) {
  .policy-box {
    padding: 64px 32px
  }

  .policy-box table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (max-width: 480px) {
  .policy-box {
    padding: 32px 16px
  }

  .policy-box p,
  .policy-box ul li,
  .policy-box ol li,
  .policy-box td {
    font-size: 13px
  }

  .policy-box thead th {
    font-size: 13px;
    padding: 8px
  }

  .policy-box td {
    padding: 8px
  }
}

.abt {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.abt .pg-lead {
  padding: 96px 64px 64px;
  position: relative;
  background: #fff
}

.abt .pg-lead::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#4f5e700f 1px, transparent 1px), linear-gradient(90deg, #4f5e700f 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none
}

.abt .lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative
}

.abt .lead-label {
  font-size: 13px;
  letter-spacing: .12em;
  color: #6083A3;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.abt .lead-h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 2px #4F5E70;
  margin: 0 0 32px
}

.abt .lead-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #4F5E70;
  max-width: 480px
}

.abt .lead-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 10px 48px 0 #4f5e701c
}

.abt .lead-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.97);
  transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .lead-img-wrap:hover img {
  filter: saturate(1) brightness(1)
}

.abt .lead-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #4f5e7047 0%, transparent 55%);
  pointer-events: none;
  transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .lead-img-wrap:hover::after {
  opacity: 0
}

.abt .lead-arrow {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  opacity: .35
}

.abt .lead-arrow svg {
  width: 24px;
  height: 24px
}

.abt .zigzag-div {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.abt .zigzag-div svg {
  display: block;
  width: 100%
}

.abt .story-seg {
  padding: 64px 64px 96px;
  background: linear-gradient(to right, #f5f7f9, #eef2f6)
}

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

.abt .story-h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px #4F5E70;
  margin: 0 0 32px
}

.abt .story-body p {
  font-size: 18px;
  line-height: 1.55;
  color: #2e3a47;
  margin: 0 0 16px
}

.abt .story-body p:first-child {
  font-size: 23px;
  line-height: 1.35;
  color: #4F5E70
}

.abt .story-aside {
  padding-top: 8px
}

.abt .aside-stat {
  padding: 32px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 2px 6px 14px 0 #6083a314;
  margin-bottom: 16px
}

.abt .aside-stat-num {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #6083A3;
  display: block
}

.abt .aside-stat-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #4F5E70;
  margin-top: 8px;
  display: block
}

.abt .prog-trail {
  margin-top: 32px;
  padding: 32px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 2px 3px 6px 0 #4f5e7014
}

.abt .prog-trail-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6083A3;
  margin-bottom: 16px;
  display: block
}

.abt .trail-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.abt .trail-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0;
  font-size: 15px;
  line-height: 1.55;
  color: #2e3a47;
  position: relative
}

.abt .trail-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 22px;
  width: 2px;
  height: calc(100% - 6px);
  background: linear-gradient(to bottom, #6083A3, #A2B2BB)
}

.abt .trail-dot {
  width: 16px;
  height: 16px;
  border-radius: 48px;
  background: #A2B2BB;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .trail-list li:first-child .trail-dot {
  background: #6083A3;
  box-shadow: 0 0 0 3px #6083a333
}

.abt .trail-list li:hover .trail-dot {
  background: #4F5E70
}

.abt .approach-seg {
  padding: 96px 64px;
  background: #fff
}

.abt .approach-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px
}

.abt .approach-h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px #4F5E70;
  grid-column: 1 / 3;
  margin: 0
}

.abt .approach-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70;
  margin: 0
}

.abt .method-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.abt .method-card {
  background: linear-gradient(135deg, #f5f7f9, #eef2f6);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  box-shadow: 2px 3px 6px 0 #4f5e7014;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .method-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to bottom, transparent, #6083a31f);
  border-radius: 0 0 6px 6px;
  pointer-events: none
}

.abt .method-card:hover {
  box-shadow: 2px 10px 48px 0 #4f5e701c;
  transform: translateY(-4px)
}

.abt .method-num {
  font-size: 32px;
  line-height: 1.1;
  color: #6083A3;
  font-weight: 700;
  margin-bottom: 16px;
  display: block
}

.abt .method-h4 {
  font-size: 18px;
  line-height: 1.35;
  color: #2e3a47;
  margin: 0 0 16px
}

.abt .method-p {
  font-size: 15px;
  line-height: 1.55;
  color: #4F5E70;
  margin: 0
}

.abt .stats-seg {
  padding: 64px;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  position: relative
}

.abt .stats-seg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#ffffff0a 1px, transparent 1px), linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none
}

.abt .stats-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
  position: relative
}

.abt .stats-h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 16px
}

.abt .stats-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffffd1;
  margin: 0
}

.abt .stats-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.abt .stat-item {
  padding: 32px;
  background: #ffffff1a;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt .stat-item:hover {
  background: #ffffff2e
}

.abt .stat-item-num {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #fff;
  display: block;
  margin-bottom: 8px
}

.abt .stat-item-label {
  font-size: 13px;
  line-height: 1.55;
  color: #ffffffbf;
  display: block
}

.abt .stat-bar {
  margin-top: 16px;
  height: 4px;
  background: #fff3;
  border-radius: 48px;
  overflow: hidden
}

.abt .stat-bar-fill {
  height: 100%;
  background: #fff;
  border-radius: 48px;
  animation: barIn .8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left
}

@keyframes barIn {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.abt .vis-seg {
  padding: 96px 64px;
  background: linear-gradient(to right, #f5f7f9, #eef2f6)
}

.abt .vis-h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px #4F5E70;
  margin: 0 0 64px;
  max-width: 600px
}

.abt .vis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.abt .vis-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 6px 14px 0 #6083a314;
  position: relative
}

.abt .vis-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8) brightness(0.96);
  transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .vis-img-wrap:hover img {
  filter: saturate(1) brightness(1)
}

.abt .vis-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #4f5e704d 0%, transparent 50%);
  pointer-events: none;
  transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .vis-img-wrap:hover::after {
  opacity: 0
}

.abt .vis-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px
}

.abt .vis-text-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px
}

.abt .vis-main-p {
  font-size: 18px;
  line-height: 1.55;
  color: #2e3a47;
  margin: 0
}

.abt .vis-side-p {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70;
  margin: 0
}

.abt .vis-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center
}

.abt .btn-prim {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 6px 14px 0 #4f5e7014
}

.abt .btn-prim:hover {
  transform: scale(1.04);
  box-shadow: 2px 10px 48px 0 #4f5e701c
}

.abt .btn-prim:active {
  box-shadow: inset 0 2px 6px 0 #4f5e702e;
  transform: scale(0.98)
}

.abt .btn-sec {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #4F5E70;
  font-size: 15px;
  letter-spacing: .04em;
  border-radius: 6px;
  border: 1.5px solid #6083A3 !important;
  cursor: pointer;
  text-decoration: none;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .btn-sec:hover {
  background: #6083a314;
  transform: scale(1.03)
}

.abt .btn-sec:active {
  box-shadow: inset 0 2px 4px 0 #4f5e701f
}

.abt .link-accent {
  color: #4F5E70;
  text-decoration: underline;
  text-decoration-color: #A2B2BB;
  transition: text-decoration-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .link-accent:hover {
  color: #6083A3;
  text-decoration-color: #6083A3
}

.abt .seg-arrow {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  opacity: .3
}

.abt .seg-arrow svg {
  width: 20px;
  height: 20px
}

@keyframes colorReveal {
  from {
    color: transparent;
    -webkit-text-stroke-color: #A2B2BB
  }

  to {
    color: transparent;
    -webkit-text-stroke-color: #4F5E70
  }
}

.abt .lead-h1 {
  animation: colorReveal .7s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@media (max-width: 960px) {
  .abt .pg-lead {
    padding: 64px 32px
  }

  .abt .lead-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .abt .lead-h1 {
    font-size: 45px
  }

  .abt .story-seg {
    padding: 64px 32px
  }

  .abt .story-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .abt .approach-seg {
    padding: 64px 32px
  }

  .abt .approach-top {
    grid-template-columns: 1fr
  }

  .abt .approach-h2 {
    grid-column: 1
  }

  .abt .method-row {
    grid-template-columns: 1fr
  }

  .abt .stats-seg {
    padding: 64px 32px
  }

  .abt .stats-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .abt .stats-right {
    grid-template-columns: 1fr 1fr
  }

  .abt .vis-seg {
    padding: 64px 32px
  }

  .abt .vis-grid {
    grid-template-columns: 1fr
  }

  .abt .vis-text-body {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

@media (max-width: 480px) {
  .abt .pg-lead {
    padding: 64px 16px 32px
  }

  .abt .lead-h1 {
    font-size: 32px
  }

  .abt .story-seg,
  .abt .approach-seg,
  .abt .vis-seg {
    padding: 64px 16px
  }

  .abt .stats-seg {
    padding: 64px 16px
  }

  .abt .stats-right {
    grid-template-columns: 1fr
  }

  .abt .vis-cta-row {
    flex-direction: column;
    align-items: flex-start
  }

  .abt .story-h2,
  .abt .approach-h2,
  .abt .vis-h2 {
    font-size: 32px
  }

  .abt .stats-h2 {
    font-size: 32px
  }
}

.lrn-prog {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
  position: relative
}

.lrn-prog .pg-band {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #4F5E70, #6083A3)
}

.lrn-prog .ttl-blk {
  position: relative;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  padding: 96px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.lrn-prog .ttl-blk::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #a2b2bb4d
}

.lrn-prog .ttl-blk::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #4f5e7000 60%, #4f5e702e 100%);
  pointer-events: none
}

.lrn-prog .ttl-grain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1
}

.lrn-prog .ttl-txt {
  position: relative;
  z-index: 2
}

.lrn-prog .ttl-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  color: #A2B2BB;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid #a2b2bb59;
  border-radius: 6px
}

.lrn-prog .ttl-h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  margin: 0 0 32px
}

.lrn-prog .ttl-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffd1;
  margin: 0
}

.lrn-prog .ttl-img-col {
  position: relative;
  z-index: 2
}

.lrn-prog .ttl-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 10px 48px 0 #4f5e701c
}

.lrn-prog .ttl-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1);
  filter: saturate(0.7) brightness(0.88)
}

.lrn-prog .ttl-img-wrap:hover img {
  filter: saturate(1) brightness(1)
}

.lrn-prog .ttl-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #4f5e7061, #6083a32e);
  transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.lrn-prog .ttl-img-wrap:hover .ttl-img-overlay {
  opacity: 0
}

.lrn-prog .ttl-stripe {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #A2B2BB, #6083A3);
  z-index: 3
}

.lrn-prog .zigzag-div {
  width: 100%;
  height: 24px;
  background: #fff;
  position: relative
}

.lrn-prog .zigzag-div svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px
}

.lrn-prog .mod-grid-sec {
  background: #fff;
  padding: 96px 64px;
  position: relative
}

.lrn-prog .mod-grid-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #fff 0%, #a2b2bb0f 100%);
  pointer-events: none
}

.lrn-prog .sec-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6083A3;
  margin-bottom: 16px;
  display: block
}

.lrn-prog .mod-h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: transparent;
  -webkit-text-stroke: 1.5px #4F5E70;
  margin: 0 0 64px
}

.lrn-prog .mod-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1
}

.lrn-prog .mod-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0
}

.lrn-prog .mod-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid #a2b2bb40;
  position: relative
}

.lrn-prog .mod-item:first-child {
  border-top: 1px solid #a2b2bb40
}

.lrn-prog .mod-dot-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  height: 100%
}

.lrn-prog .mod-dot {
  width: 16px;
  height: 16px;
  border-radius: 48px;
  border: 2px solid #A2B2BB;
  background: #fff;
  flex-shrink: 0;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prog .mod-item:hover .mod-dot {
  background: #6083A3;
  border-color: #6083A3
}

.lrn-prog .mod-line {
  width: 2px;
  flex: 1;
  background: #a2b2bb4d;
  margin-top: 8px
}

.lrn-prog .mod-num {
  font-size: 13px;
  color: #6083A3;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 8px;
  display: block
}

.lrn-prog .mod-item-h {
  font-size: 18px;
  line-height: 1.35;
  color: #4F5E70;
  margin: 0 0 8px;
  font-weight: 600
}

.lrn-prog .mod-item-p {
  font-size: 15px;
  line-height: 1.55;
  color: #4F5E70;
  margin: 0;
  opacity: .82
}

.lrn-prog .mod-aside {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.lrn-prog .aside-card {
  background: linear-gradient(135deg, #4f5e700d 0%, #6083a314 100%);
  border: 1px solid #a2b2bb4d;
  border-radius: 6px;
  padding: 32px;
  position: relative
}

.lrn-prog .aside-notch {
  position: absolute;
  left: 0;
  top: 24px;
  width: 4px;
  height: 40px;
  background: linear-gradient(to bottom, #6083A3, #A2B2BB);
  border-radius: 0 6px 6px 0
}

.lrn-prog .aside-card-h {
  font-size: 15px;
  line-height: 1.35;
  color: #4F5E70;
  font-weight: 700;
  margin: 0 0 16px;
  padding-left: 16px
}

.lrn-prog .aside-stat {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #6083A3;
  font-weight: 700;
  display: block;
  padding-left: 16px
}

.lrn-prog .aside-stat-lbl {
  font-size: 13px;
  color: #4F5E70;
  opacity: .7;
  padding-left: 16px;
  display: block;
  margin-top: 8px
}

.lrn-prog .aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px
}

.lrn-prog .aside-list li {
  font-size: 13px;
  line-height: 1.55;
  color: #4F5E70;
  opacity: .85;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.lrn-prog .aside-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #A2B2BB;
  flex-shrink: 0;
  margin-top: 5px
}

.lrn-prog .thin-div {
  width: 100%;
  height: 1px;
  background: #a2b2bb4d
}

.lrn-prog .outcome-sec {
  background: linear-gradient(180deg, #4f5e700a 0%, #6083a317 100%);
  padding: 96px 64px;
  position: relative
}

.lrn-prog .outcome-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start
}

.lrn-prog .outcome-left {
  position: sticky;
  top: 32px
}

.lrn-prog .outcome-h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: transparent;
  -webkit-text-stroke: 1.5px #4F5E70;
  margin: 0 0 32px
}

.lrn-prog .outcome-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70;
  margin: 0 0 32px;
  opacity: .88
}

.lrn-prog .prog-btn {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 6px 14px 0 #4f5e7014
}

.lrn-prog .prog-btn:hover {
  transform: scale(1.04);
  box-shadow: 2px 10px 48px 0 #4f5e701c
}

.lrn-prog .prog-btn:active {
  transform: scale(0.98);
  box-shadow: inset 2px 3px 6px 0 #4f5e7014
}

.lrn-prog .prog-btn:focus {
  outline: 2px solid #4F5E70;
  outline-offset: 3px
}

.lrn-prog .outcome-right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.lrn-prog .skill-row {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 2px 3px 6px 0 #6083a314;
  border: 1px solid #a2b2bb33;
  transition: box-shadow .2s cubic-bezier(0.0, 0, 0.2, 1), transform .18s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.lrn-prog .skill-row:hover {
  box-shadow: 2px 6px 14px 0 #4f5e7014;
  transform: translateY(-2px)
}

.lrn-prog .skill-notch {
  position: absolute;
  left: 0;
  top: 20px;
  width: 4px;
  height: 32px;
  border-radius: 0 6px 6px 0
}

.lrn-prog .skill-notch.n1 {
  background: #4F5E70
}

.lrn-prog .skill-notch.n2 {
  background: #6083A3
}

.lrn-prog .skill-notch.n3 {
  background: #A2B2BB
}

.lrn-prog .skill-notch.n4 {
  background: #4F5E70
}

.lrn-prog .skill-notch.n5 {
  background: #6083A3
}

.lrn-prog .skill-row-h {
  font-size: 18px;
  line-height: 1.35;
  color: #4F5E70;
  font-weight: 600;
  margin: 0 0 8px;
  padding-left: 16px
}

.lrn-prog .skill-row-p {
  font-size: 15px;
  line-height: 1.55;
  color: #4F5E70;
  margin: 0;
  opacity: .8;
  padding-left: 16px
}

.lrn-prog .skill-tag {
  display: inline-block;
  font-size: 13px;
  color: #6083A3;
  background: #6083a31a;
  border-radius: 6px;
  padding: 4px 8px;
  margin-left: 16px;
  margin-top: 8px;
  letter-spacing: .04em
}

.lrn-prog .entry-exit-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px
}

.lrn-prog .ee-dot {
  width: 12px;
  height: 12px;
  border-radius: 48px;
  background: #6083A3;
  flex-shrink: 0
}

.lrn-prog .ee-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #6083A3, #a2b2bb33)
}

.lrn-prog .ee-lbl {
  font-size: 13px;
  color: #6083A3;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap
}

.lrn-prog .exit-mark {
  margin-top: 32px;
  margin-bottom: 0
}

.lrn-prog .exit-mark .ee-line {
  background: linear-gradient(to right, #a2b2bb33, #4F5E70)
}

.lrn-prog .exit-mark .ee-dot {
  background: #4F5E70
}

.lrn-prog .vignette-bg {
  position: relative
}

.lrn-prog .vignette-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 10% 50%, transparent 55%, #4f5e7017 100%);
  animation: vig-pulse 5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0
}

@keyframes vig-pulse {
  from {
    opacity: .6
  }

  to {
    opacity: 1
  }
}

@media (max-width: 960px) {
  .lrn-prog .ttl-blk {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    gap: 32px
  }

  .lrn-prog .ttl-h1 {
    font-size: 45px
  }

  .lrn-prog .mod-grid-sec {
    padding: 64px 32px
  }

  .lrn-prog .mod-layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .lrn-prog .mod-aside {
    position: static
  }

  .lrn-prog .outcome-sec {
    padding: 64px 32px
  }

  .lrn-prog .outcome-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .lrn-prog .outcome-left {
    position: static
  }

  .lrn-prog .outcome-h2 {
    font-size: 32px
  }

  .lrn-prog .mod-h2 {
    font-size: 32px
  }
}

@media (max-width: 480px) {
  .lrn-prog .ttl-blk {
    padding: 64px 16px
  }

  .lrn-prog .ttl-h1 {
    font-size: 32px
  }

  .lrn-prog .mod-grid-sec,
  .lrn-prog .outcome-sec {
    padding: 64px 16px
  }

  .lrn-prog .mod-item {
    grid-template-columns: 32px 1fr
  }

  .lrn-prog .aside-stat {
    font-size: 32px
  }
}

@media (min-width: 1440px) {
  .lrn-prog .ttl-h1 {
    font-size: 62px
  }
}

.cnt_us {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip;
  position: relative
}

.cnt_us .pg_lead {
  background: #2d3640;
  padding: 64px 96px;
  position: relative;
  overflow: hidden
}

.cnt_us .pg_lead::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .18;
  pointer-events: none
}

.cnt_us .pg_lead::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, #4f5e7038, #6083a31a);
  pointer-events: none
}

.cnt_us .pg_lead_h {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #f2f4f6;
  -webkit-text-stroke: 1.5px #A2B2BB;
  color: transparent;
  position: relative;
  z-index: 1;
  max-width: 820px
}

.cnt_us .pg_lead_sub {
  font-size: 15px;
  line-height: 1.55;
  color: #A2B2BB;
  position: relative;
  z-index: 1;
  margin-top: 16px;
  max-width: 480px;
  letter-spacing: .02em
}

.cnt_us .divider_a {
  height: 2px;
  background: linear-gradient(to right, #4F5E70, #6083A3, transparent);
  transform: skewX(-12deg);
  margin: 0
}

.cnt_us .reach_panel {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  background: #f4f6f8;
  position: relative
}

.cnt_us .reach_panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 31px, #4f5e700d 31px, #4f5e700d 32px);
  pointer-events: none
}

.cnt_us .reach_form_col {
  padding: 64px 64px 64px 96px;
  border-right: 1px solid #4f5e701f;
  position: relative;
  z-index: 1
}

.cnt_us .reach_detail_col {
  padding: 64px 32px;
  border-right: 1px solid #4f5e701f;
  position: relative;
  z-index: 1
}

.cnt_us .reach_metric_col {
  padding: 64px 32px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.cnt_us .form_label {
  display: block;
  font-size: 13px;
  letter-spacing: .06em;
  color: #4F5E70;
  margin-bottom: 8px;
  text-transform: uppercase
}

.cnt_us .form_field {
  width: 100%;
  background: #fff;
  border: 1px solid #4f5e7033;
  border-radius: 6px;
  padding: 16px;
  font-size: 15px;
  color: #2d3640;
  box-shadow: 2px 3px 6px 0 #4f5e7014;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  box-sizing: border-box
}

.cnt_us .form_field::placeholder {
  font-style: italic;
  opacity: .55;
  color: #4F5E70
}

.cnt_us .form_field:focus {
  border-color: #6083A3;
  box-shadow: 2px 6px 14px 0 #6083a314
}

.cnt_us .form_field.textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55
}

.cnt_us .form_row {
  margin-bottom: 32px
}

.cnt_us .form_row.last {
  margin-bottom: 0
}

.cnt_us .form_pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px
}

.cnt_us .privacy_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 32px
}

.cnt_us .privacy_chk {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: #4F5E70;
  margin-top: 2px;
  cursor: pointer
}

.cnt_us .privacy_chk:active {
  box-shadow: inset 0 1px 3px 0 #4f5e704d
}

.cnt_us .privacy_txt {
  font-size: 13px;
  line-height: 1.55;
  color: #4F5E70
}

.cnt_us .privacy_txt a {
  color: #4F5E70;
  text-decoration: underline;
  text-decoration-color: #A2B2BB;
  transition: text-decoration-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.cnt_us .privacy_txt a:hover {
  color: #6083A3;
  text-decoration-color: #6083A3
}

.cnt_us .submit_btn {
  display: inline-block;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  color: #fff;
  font-size: 15px;
  letter-spacing: .04em;
  padding: 16px 32px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 2px 6px 14px 0 #4f5e7014;
  transition: transform .2s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.cnt_us .submit_btn:hover {
  transform: scale(1.04);
  box-shadow: 2px 10px 48px 0 #4f5e701c
}

.cnt_us .submit_btn:focus {
  outline: 2px solid #6083A3;
  outline-offset: 3px
}

.cnt_us .submit_btn:active {
  box-shadow: inset 0 2px 6px 0 #4f5e702e;
  transform: scale(0.99)
}

.cnt_us .detail_heading {
  font-size: 13px;
  letter-spacing: .08em;
  color: #A2B2BB;
  text-transform: uppercase;
  margin-bottom: 32px
}

.cnt_us .detail_item {
  margin-bottom: 32px
}

.cnt_us .detail_item_label {
  font-size: 13px;
  color: #A2B2BB;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px
}

.cnt_us .detail_item_val {
  font-size: 15px;
  line-height: 1.55;
  color: #2d3640
}

.cnt_us .detail_item_val a {
  color: #4F5E70;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.cnt_us .detail_item_val a:hover {
  text-decoration-color: #6083A3
}

.cnt_us .metric_item {
  padding: 32px 0;
  border-bottom: 1px solid #4f5e701a
}

.cnt_us .metric_item:last-child {
  border-bottom: none
}

.cnt_us .metric_num {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #4F5E70;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.cnt_us .metric_arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 13px solid #6083A3;
  margin-bottom: 4px
}

.cnt_us .metric_desc {
  font-size: 13px;
  color: #4F5E70;
  letter-spacing: .04em;
  margin-top: 8px;
  line-height: 1.35
}

.cnt_us .divider_b {
  height: 1px;
  background: linear-gradient(to right, transparent, #6083A3 40%, #A2B2BB 70%, transparent)
}

.cnt_us .addr_strip {
  background: #fff;
  padding: 64px 96px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  position: relative
}

.cnt_us .addr_strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(120deg, transparent, transparent 60px, #6083a308 60px, #6083a308 61px);
  pointer-events: none
}

.cnt_us .addr_col {
  position: relative;
  z-index: 1
}

.cnt_us .addr_col_h {
  font-size: 18px;
  line-height: 1.35;
  color: #2d3640;
  letter-spacing: -.01em;
  margin-bottom: 16px
}

.cnt_us .addr_col_body {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70
}

.cnt_us .addr_col_body a {
  color: #4F5E70;
  text-decoration: underline;
  text-decoration-color: #A2B2BB;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.cnt_us .addr_col_body a:hover {
  color: #6083A3;
  text-decoration-color: #6083A3
}

.cnt_us .addr_accent {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.02em;
  -webkit-text-stroke: 1px #A2B2BB;
  color: transparent;
  margin-bottom: 16px
}

.cnt_us .curve_sep {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.cnt_us .curve_sep svg {
  display: block;
  width: 100%
}

.cnt_us .hover_letters {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap
}

.cnt_us .ltr {
  display: inline-block;
  transition: color .15s cubic-bezier(0.4, 0, 0.2, 1);
  color: #A2B2BB
}

.cnt_us .pg_lead:hover .ltr:nth-child(1) {
  color: #6083A3;
  transition-delay: 0s
}

.cnt_us .pg_lead:hover .ltr:nth-child(2) {
  color: #6083A3;
  transition-delay: .03s
}

.cnt_us .pg_lead:hover .ltr:nth-child(3) {
  color: #6083A3;
  transition-delay: .06s
}

.cnt_us .pg_lead:hover .ltr:nth-child(4) {
  color: #6083A3;
  transition-delay: .09s
}

.cnt_us .pg_lead:hover .ltr:nth-child(5) {
  color: #6083A3;
  transition-delay: .12s
}

.cnt_us .pg_lead:hover .ltr:nth-child(6) {
  color: #6083A3;
  transition-delay: .15s
}

.cnt_us .pg_lead:hover .ltr:nth-child(7) {
  color: #6083A3;
  transition-delay: .18s
}

.cnt_us .pg_lead:hover .ltr:nth-child(8) {
  color: #6083A3;
  transition-delay: .21s
}

.cnt_us .pg_lead:hover .ltr:nth-child(9) {
  color: #6083A3;
  transition-delay: .24s
}

.cnt_us .pg_lead:hover .ltr:nth-child(10) {
  color: #6083A3;
  transition-delay: .27s
}

.cnt_us .pg_lead:hover .ltr:nth-child(11) {
  color: #6083A3;
  transition-delay: .3s
}

.cnt_us .pg_lead:hover .ltr:nth-child(12) {
  color: #6083A3;
  transition-delay: .33s
}

.cnt_us .pg_lead:hover .ltr:nth-child(13) {
  color: #6083A3;
  transition-delay: .36s
}

.cnt_us .pg_lead:hover .ltr:nth-child(14) {
  color: #6083A3;
  transition-delay: .39s
}

.cnt_us .pg_lead:hover .ltr:nth-child(15) {
  color: #6083A3;
  transition-delay: .42s
}

.cnt_us .pg_lead:hover .ltr:nth-child(16) {
  color: #6083A3;
  transition-delay: .45s
}

.cnt_us .pg_lead:hover .ltr:nth-child(17) {
  color: #6083A3;
  transition-delay: .48s
}

.cnt_us .pg_lead:hover .ltr:nth-child(18) {
  color: #6083A3;
  transition-delay: .51s
}

.cnt_us .pg_lead:hover .ltr:nth-child(19) {
  color: #6083A3;
  transition-delay: .54s
}

.cnt_us .pg_lead:hover .ltr:nth-child(20) {
  color: #6083A3;
  transition-delay: .57s
}

.cnt_us .glow_anim {
  animation: soft_glow 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate
}

@keyframes soft_glow {
  0% {
    background: #f4f6f8
  }

  50% {
    background: #eef1f5
  }

  100% {
    background: #f4f6f8
  }
}

@media (max-width: 960px) {
  .cnt_us .pg_lead {
    padding: 64px 32px
  }

  .cnt_us .pg_lead_h {
    font-size: 45px
  }

  .cnt_us .reach_panel {
    grid-template-columns: 1fr
  }

  .cnt_us .reach_form_col {
    padding: 64px 32px;
    border-right: none;
    border-bottom: 1px solid #4f5e701f
  }

  .cnt_us .reach_detail_col {
    padding: 32px;
    border-right: none;
    border-bottom: 1px solid #4f5e701f
  }

  .cnt_us .reach_metric_col {
    padding: 32px
  }

  .cnt_us .addr_strip {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    gap: 32px
  }
}

@media (max-width: 480px) {
  .cnt_us .pg_lead {
    padding: 32px 16px
  }

  .cnt_us .pg_lead_h {
    font-size: 32px
  }

  .cnt_us .form_pair {
    grid-template-columns: 1fr
  }

  .cnt_us .addr_strip {
    padding: 32px 16px
  }

  .cnt_us .reach_form_col {
    padding: 32px 16px
  }

  .cnt_us .reach_detail_col,
  .cnt_us .reach_metric_col {
    padding: 32px 16px
  }
}

@media (min-width: 1440px) {
  .cnt_us .pg_lead_h {
    font-size: 62px
  }
}

.prtns {
  background: #f2f4f6;
  overflow-x: clip;
  position: relative
}

.prtns .prtns-schema {
  display: none
}

.prtns .deco-line-v {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #6083A3, #A2B2BB, transparent);
  opacity: .35;
  pointer-events: none
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.prtns .anim-1 {
  animation: slideInLeft .25s cubic-bezier(0.4, 0, 0.2, 1) both
}

.prtns .anim-2 {
  animation: slideInLeft .22s cubic-bezier(0.4, 0, 0.2, 1) .08s both
}

.prtns .anim-3 {
  animation: slideInLeft .2s cubic-bezier(0.4, 0, 0.2, 1) .14s both
}

.prtns .anim-4 {
  animation: slideInLeft .2s cubic-bezier(0.4, 0, 0.2, 1) .2s both
}

.prtns .grad-band {
  background: linear-gradient(to right, #4F5E70, #6083A3);
  padding: 96px 64px;
  position: relative;
  overflow: hidden
}

.prtns .grad-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #a2b2bb66;
  pointer-events: none
}

.prtns .grad-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, #ffffff0f 0%, transparent 65%);
  pointer-events: none
}

.prtns .grad-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.prtns .grad-label {
  font-size: 13px;
  letter-spacing: .12em;
  color: #A2B2BB;
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block
}

.prtns .grad-h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffffd9;
  margin: 0 0 32px;
  max-width: 820px
}

.prtns .grad-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #ffffffc7;
  max-width: 560px;
  margin: 0
}

.prtns .grad-img-col {
  position: absolute;
  right: 64px;
  bottom: 0;
  width: 380px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  pointer-events: none
}

.prtns .grad-img-wrap {
  width: 380px;
  height: 340px;
  overflow: hidden;
  border-radius: 6px;
  position: relative
}

.prtns .grad-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0px) brightness(0.72) saturate(0.85);
  transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1);
  display: block
}

.prtns .grad-img-wrap:hover img {
  filter: blur(0px) brightness(0.95) saturate(1.1)
}

.prtns .grad-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #4F5E70 0%, transparent 55%);
  pointer-events: none
}

.prtns .collab-seg {
  background: #fff;
  padding: 96px 64px;
  position: relative
}

.prtns .collab-seg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #6083a312 0%, transparent 68%);
  pointer-events: none
}

.prtns .collab-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.prtns .collab-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start
}

.prtns .collab-h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: transparent;
  -webkit-text-stroke: 1.5px #4F5E70;
  margin: 0 0 32px
}

.prtns .collab-body {
  font-size: 15px;
  line-height: 1.55;
  color: #2d3640;
  margin: 0 0 16px
}

.prtns .collab-body a {
  color: #4F5E70;
  text-decoration: underline;
  text-decoration-color: #A2B2BB;
  transition: text-decoration-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtns .collab-body a:hover {
  color: #6083A3;
  text-decoration-color: #6083A3
}

.prtns .collab-aside {
  padding-top: 8px
}

.prtns .metric-stack {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.prtns .metric-item {
  border-top: 1px solid #d0d8e0;
  padding-top: 16px
}

.prtns .metric-num {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #6083A3;
  display: block;
  margin-bottom: 8px
}

.prtns .metric-desc {
  font-size: 13px;
  line-height: 1.35;
  color: #4F5E70;
  letter-spacing: .04em
}

.prtns .trail-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative
}

.prtns .trail-list::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, #6083A3, #A2B2BB)
}

.prtns .trail-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  position: relative
}

.prtns .trail-dot {
  width: 15px;
  height: 15px;
  border-radius: 48px;
  background: #fff;
  border: 2px solid #A2B2BB;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1
}

.prtns .trail-item:hover .trail-dot {
  border-color: #6083A3;
  background: #6083A3
}

.prtns .trail-text {
  font-size: 15px;
  line-height: 1.55;
  color: #2d3640
}

.prtns .trail-text strong {
  color: #4F5E70
}

.prtns .roster-seg {
  background: #edf0f3;
  padding: 64px;
  position: relative
}

.prtns .roster-inner {
  max-width: 1600px;
  margin: 0 auto
}

.prtns .roster-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 32px
}

.prtns .roster-h2 {
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -.015em;
  color: #2d3640;
  margin: 0;
  max-width: 480px
}

.prtns .roster-note {
  font-size: 13px;
  line-height: 1.55;
  color: #4F5E70;
  max-width: 280px;
  text-align: right
}

.prtns .partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.prtns .p-card {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 2px 6px 14px 0 #4f5e7014;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 16px
}

.prtns .p-card:hover {
  box-shadow: 2px 10px 48px 0 #4f5e701c;
  transform: translateY(-4px)
}

.prtns .p-card-type {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6083A3
}

.prtns .p-card-name {
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: #2d3640;
  margin: 0
}

.prtns .p-card-role {
  font-size: 13px;
  color: #4F5E70;
  line-height: 1.35
}

.prtns .p-card-body {
  font-size: 15px;
  line-height: 1.55;
  color: #3a4450;
  margin: 0;
  flex-grow: 1
}

.prtns .p-card-tag {
  display: inline-block;
  font-size: 13px;
  color: #6083A3;
  background: #6083a317;
  border-radius: 48px;
  padding: 4px 16px;
  letter-spacing: .04em
}

.prtns .img-feature-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
  align-items: stretch
}

.prtns .img-feat-wrap {
  width: 320px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  position: relative
}

.prtns .img-feat-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.8);
  transition: filter .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.prtns .img-feat-wrap:hover img {
  filter: brightness(0.98) saturate(1.15)
}

.prtns .p-card-hover-chars span {
  display: inline-block;
  transition: color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(1) {
  color: #4F5E70;
  transition-delay: 0s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(2) {
  color: #4F5E70;
  transition-delay: .02s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(3) {
  color: #6083A3;
  transition-delay: .04s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(4) {
  color: #6083A3;
  transition-delay: .06s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(5) {
  color: #4F5E70;
  transition-delay: .08s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(6) {
  color: #A2B2BB;
  transition-delay: .1s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(7) {
  color: #6083A3;
  transition-delay: .12s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(8) {
  color: #4F5E70;
  transition-delay: .14s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(9) {
  color: #6083A3;
  transition-delay: .16s
}

.prtns .p-card:hover .p-card-hover-chars span:nth-child(10) {
  color: #A2B2BB;
  transition-delay: .18s
}

.prtns .p-card-hover-chars span {
  color: #2d3640
}

@media (max-width: 960px) {
  .prtns .grad-band {
    padding: 64px 32px
  }

  .prtns .grad-h1 {
    font-size: 45px
  }

  .prtns .grad-img-col {
    display: none
  }

  .prtns .collab-seg {
    padding: 64px 32px
  }

  .prtns .collab-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .prtns .roster-seg {
    padding: 64px 32px
  }

  .prtns .partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px
  }

  .prtns .roster-top {
    flex-direction: column;
    align-items: flex-start
  }

  .prtns .roster-note {
    text-align: left
  }

  .prtns .img-feature-row {
    flex-direction: column
  }

  .prtns .img-feat-wrap {
    width: 100%;
    height: 240px
  }
}

@media (max-width: 480px) {
  .prtns .grad-band {
    padding: 64px 16px
  }

  .prtns .grad-h1 {
    font-size: 32px
  }

  .prtns .grad-sub {
    font-size: 15px
  }

  .prtns .collab-seg {
    padding: 64px 16px
  }

  .prtns .collab-h2 {
    font-size: 32px
  }

  .prtns .roster-seg {
    padding: 64px 16px
  }

  .prtns .partner-grid {
    grid-template-columns: 1fr
  }

  .prtns .metric-num {
    font-size: 32px
  }
}

@media (min-width: 1440px) {
  .prtns .grad-img-col {
    right: 96px
  }
}

.ptl {
  background: #fff;
  overflow-x: hidden
}

.ptl .pg_bound {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px
}

.ptl .split_lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0
}

.ptl .lead_img_col {
  position: relative;
  overflow: hidden
}

.ptl .lead_img_col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.ptl .lead_img_col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, #4f5e7061 0%, transparent 70%);
  pointer-events: none
}

.ptl .lead_text_col {
  background: #fff;
  padding: 96px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px
}

.ptl .lead_eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  color: #6083A3;
  text-transform: uppercase;
  line-height: 1.55
}

.ptl .lead_h1 {
  font-size: 62px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #4F5E70;
  -webkit-text-stroke: 1.5px #4F5E70;
  color: transparent;
  margin: 0
}

.ptl .lead_sub {
  font-size: 18px;
  line-height: 1.55;
  color: #4F5E70;
  max-width: 480px
}

.ptl .lead_action {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.ptl .btn_prim {
  display: inline-block;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  color: #fff;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.35;
  letter-spacing: .02em;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 6px 14px 0 #4f5e7014
}

.ptl .btn_prim:hover {
  transform: scale(1.04);
  box-shadow: 2px 10px 48px 0 #4f5e701c
}

.ptl .btn_prim:active {
  box-shadow: inset 0 2px 6px 0 #4f5e702e;
  transform: scale(0.99)
}

.ptl .btn_ghost {
  display: inline-block;
  background: transparent;
  color: #4F5E70;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 6px;
  border: 1.5px solid #A2B2BB;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.35;
  letter-spacing: .02em;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .btn_ghost:hover {
  border-color: #6083A3;
  transform: scale(1.03)
}

.ptl .divider_band {
  height: 64px;
  background: linear-gradient(to bottom, #fff 0%, #a2b2bb21 50%, #fff 100%);
  filter: blur(2px)
}

.ptl .divider_line {
  border: none;
  border-top: 1.5px dashed #A2B2BB;
  opacity: .5;
  margin: 0 32px
}

.ptl .divider_thick {
  height: 32px;
  background: linear-gradient(to bottom, #6083a314 0%, transparent 100%)
}

.ptl .cond_sec {
  background: linear-gradient(to right, #f4f6f8, #edf1f5);
  padding: 96px 0;
  position: relative
}

.ptl .cond_sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #6083a317 0%, transparent 65%);
  animation: bg_pulse 7s ease-in-out infinite;
  pointer-events: none
}

@keyframes bg_pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: .7
  }

  50% {
    transform: scale(1.18);
    opacity: 1
  }
}

.ptl .cond_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.ptl .cond_left h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  -webkit-text-stroke: 1.5px #4F5E70;
  color: transparent;
  margin: 0 0 32px
}

.ptl .cond_left .cond_desc {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70
}

.ptl .cond_right {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ptl .cond_item {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 2px 3px 6px 0 #4f5e7014;
  position: relative;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .cond_item:hover {
  box-shadow: 2px 6px 14px 0 #6083a314 inset 0 0 18px 0 #6083a312
}

.ptl .cond_num {
  font-size: 13px;
  color: #6083A3;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 8px;
  display: block
}

.ptl .cond_item h5 {
  font-size: 18px;
  line-height: 1.35;
  color: #4F5E70;
  margin: 0 0 8px
}

.ptl .cond_item p {
  font-size: 15px;
  line-height: 1.55;
  color: #4F5E70;
  margin: 0;
  opacity: .82
}

.ptl .val_sec {
  padding: 96px 0;
  background: #fff
}

.ptl .val_mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 32px
}

.ptl .val_img_main {
  grid-row: 1 / 3;
  border-radius: 6px;
  overflow: hidden;
  position: relative
}

.ptl .val_img_main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.88) saturate(0.85)
}

.ptl .val_img_main:hover img {
  filter: brightness(1) saturate(1)
}

.ptl .val_text_top {
  grid-column: 2 / 4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-end
}

.ptl .val_text_top h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  -webkit-text-stroke: 1.5px #4F5E70;
  color: transparent;
  margin: 0
}

.ptl .val_text_top p {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70;
  margin: 0
}

.ptl .val_stat_a {
  grid-column: 2;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ptl .val_stat_a .stat_num {
  font-size: 45px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -.03em
}

.ptl .val_stat_a .stat_label {
  font-size: 13px;
  color: #fffc;
  line-height: 1.55;
  letter-spacing: .06em
}

.ptl .val_stat_b {
  grid-column: 3;
  border: 1.5px solid #A2B2BB;
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ptl .val_stat_b .stat_num {
  font-size: 45px;
  line-height: 1.1;
  color: #6083A3;
  letter-spacing: -.03em
}

.ptl .val_stat_b .stat_label {
  font-size: 13px;
  color: #4F5E70;
  line-height: 1.55;
  letter-spacing: .06em;
  opacity: .75
}

.ptl .avail_sec {
  background: #4F5E70;
  padding: 96px 0;
  position: relative
}

.ptl .avail_sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #6083a338 0%, transparent 65%);
  animation: bg_pulse 9s ease-in-out infinite;
  pointer-events: none
}

.ptl .avail_head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px
}

.ptl .avail_head h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  -webkit-text-stroke: 1.5px #ffffffd9;
  color: transparent;
  margin: 0;
  max-width: 520px
}

.ptl .avail_head p {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffffb8;
  max-width: 360px;
  margin: 0
}

.ptl .avail_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.ptl .av_card {
  background: #ffffff0f;
  border: 1px solid #ffffff1f;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .av_card:hover {
  background: #ffffff1c;
  box-shadow: inset 0 0 24px 0 #a2b2bb1f 2px 10px 48px 0 #4f5e701c
}

.ptl .av_card_img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative
}

.ptl .av_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.78) saturate(0.8);
  transition: filter .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.ptl .av_card:hover .av_card_img img {
  filter: brightness(1) saturate(1)
}

.ptl .av_card_body {
  padding: 32px
}

.ptl .av_card_tag {
  font-size: 13px;
  color: #A2B2BB;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block
}

.ptl .av_card_body h4 {
  font-size: 23px;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 16px
}

.ptl .av_card_body p {
  font-size: 15px;
  line-height: 1.55;
  color: #ffffffa6;
  margin: 0
}

.ptl .av_dashed {
  border-top: 1px dashed #a2b2bb59;
  margin: 16px 0 0
}

.ptl .av_card_meta {
  padding-top: 16px;
  font-size: 13px;
  color: #a2b2bbbf;
  line-height: 1.55
}

.ptl .rep_sec {
  padding: 96px 0;
  background: #fff
}

.ptl .rep_layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start
}

.ptl .rep_left h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  -webkit-text-stroke: 1.5px #4F5E70;
  color: transparent;
  margin: 0 0 32px
}

.ptl .rep_left p {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70;
  margin: 0
}

.ptl .rep_right {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ptl .rep_quote_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px
}

.ptl .rep_quote {
  background: linear-gradient(to right, #f4f6f8, #edf1f5);
  border-radius: 6px;
  padding: 32px;
  position: relative;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .rep_quote:hover {
  box-shadow: inset 0 0 20px 0 #6083a317 2px 6px 14px 0 #4f5e7014
}

.ptl .rep_quote blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70;
  margin: 0 0 16px;
  font-style: italic
}

.ptl .rep_quote cite {
  font-size: 13px;
  color: #6083A3;
  font-style: normal;
  letter-spacing: .05em
}

.ptl .rep_assoc {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center
}

.ptl .rep_assoc_item {
  background: #fff;
  border: 1.5px solid #A2B2BB;
  border-radius: 48px;
  padding: 8px 32px;
  font-size: 13px;
  color: #4F5E70;
  letter-spacing: .06em;
  line-height: 1.55;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .rep_assoc_item:hover {
  border-color: #6083A3;
  color: #6083A3
}

.ptl .rep_img_strip {
  width: 100%;
  height: 220px;
  border-radius: 6px;
  overflow: hidden
}

.ptl .rep_img_strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.85);
  transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .rep_img_strip:hover img {
  filter: brightness(1) saturate(1)
}

.ptl .curr_sec {
  background: linear-gradient(to right, #edf1f5, #f4f6f8);
  padding: 96px 0;
  position: relative
}

.ptl .curr_sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #4f5e7012 0%, transparent 60%);
  animation: bg_pulse 11s ease-in-out infinite;
  pointer-events: none
}

.ptl .curr_grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: center
}

.ptl .curr_left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ptl .curr_left h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  -webkit-text-stroke: 1.5px #4F5E70;
  color: transparent;
  margin: 0
}

.ptl .curr_body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px
}

.ptl .curr_body p {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70;
  margin: 0
}

.ptl .curr_side {
  font-size: 13px;
  line-height: 1.8;
  color: #6083A3;
  border-top: 1.5px solid #A2B2BB;
  padding-top: 16px
}

.ptl .curr_trail {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ptl .trail_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  position: relative
}

.ptl .trail_dot {
  width: 12px;
  height: 12px;
  border-radius: 48px;
  background: #A2B2BB;
  flex-shrink: 0;
  position: relative;
  transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .trail_item.active .trail_dot {
  background: #6083A3;
  box-shadow: 0 0 0 4px #6083a32e
}

.ptl .trail_connector {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, #A2B2BB, transparent);
  margin-left: 5px
}

.ptl .trail_item span {
  font-size: 15px;
  line-height: 1.55;
  color: #4F5E70
}

.ptl .trail_item.active span {
  color: #6083A3;
  font-weight: 600
}

.ptl .curr_right {
  border-radius: 6px;
  overflow: hidden;
  position: relative
}

.ptl .curr_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.82);
  transition: filter .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.ptl .curr_right:hover img {
  filter: brightness(1) saturate(1)
}

.ptl .exp_sec {
  padding: 96px 0;
  background: #fff
}

.ptl .exp_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.ptl .exp_left {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.ptl .exp_left h2 {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.025em;
  -webkit-text-stroke: 1.5px #4F5E70;
  color: transparent;
  margin: 0
}

.ptl .exp_body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px
}

.ptl .exp_body p {
  font-size: 15px;
  line-height: 1.8;
  color: #4F5E70;
  margin: 0
}

.ptl .exp_aside {
  font-size: 13px;
  line-height: 1.8;
  color: #6083A3;
  border-top: 1.5px solid #A2B2BB;
  padding-top: 16px
}

.ptl .exp_phases {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ptl .phase_item {
  border-radius: 6px;
  padding: 32px;
  border: 1.5px solid #A2B2BB;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .phase_item:hover {
  border-color: #6083A3;
  box-shadow: inset 0 0 16px 0 #6083a314 2px 3px 6px 0 #4f5e7014
}

.ptl .phase_num {
  font-size: 23px;
  line-height: 1.1;
  color: #6083A3;
  font-weight: 700;
  letter-spacing: -.02em
}

.ptl .phase_text h5 {
  font-size: 18px;
  line-height: 1.35;
  color: #4F5E70;
  margin: 0 0 8px
}

.ptl .phase_text p {
  font-size: 15px;
  line-height: 1.55;
  color: #4F5E70;
  margin: 0;
  opacity: .8
}

.ptl .exp_img_pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px
}

.ptl .exp_img_wrap {
  border-radius: 6px;
  overflow: hidden
}

.ptl .exp_img_wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.8);
  transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ptl .exp_img_wrap:hover img {
  filter: brightness(1) saturate(1)
}

@media (max-width: 960px) {
  .ptl .split_lead {
    grid-template-columns: 1fr
  }

  .ptl .lead_img_col {
    height: 360px
  }

  .ptl .lead_text_col {
    padding: 64px 32px
  }

  .ptl .lead_h1 {
    font-size: 45px
  }

  .ptl .cond_grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ptl .val_mosaic {
    grid-template-columns: 1fr 1fr
  }

  .ptl .val_img_main {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 280px
  }

  .ptl .val_text_top {
    grid-column: 1 / 3
  }

  .ptl .val_stat_a {
    grid-column: 1
  }

  .ptl .val_stat_b {
    grid-column: 2
  }

  .ptl .avail_cards {
    grid-template-columns: 1fr 1fr
  }

  .ptl .avail_head {
    flex-direction: column;
    align-items: flex-start
  }

  .ptl .rep_layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ptl .rep_quote_row {
    grid-template-columns: 1fr
  }

  .ptl .curr_grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ptl .curr_body {
    grid-template-columns: 1fr
  }

  .ptl .exp_layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ptl .exp_body {
    grid-template-columns: 1fr
  }

  .ptl .exp_img_pair {
    margin-top: 16px
  }
}

@media (max-width: 480px) {
  .ptl .lead_h1 {
    font-size: 32px
  }

  .ptl .lead_text_col {
    padding: 32px 16px;
    gap: 16px
  }

  .ptl .pg_bound {
    padding-left: 16px;
    padding-right: 16px
  }

  .ptl .cond_sec,
  .ptl .val_sec,
  .ptl .avail_sec,
  .ptl .rep_sec,
  .ptl .curr_sec,
  .ptl .exp_sec {
    padding: 64px 0
  }

  .ptl .avail_cards {
    grid-template-columns: 1fr
  }

  .ptl .val_mosaic {
    grid-template-columns: 1fr
  }

  .ptl .val_img_main {
    grid-column: 1;
    height: 200px
  }

  .ptl .val_text_top {
    grid-column: 1
  }

  .ptl .val_stat_a,
  .ptl .val_stat_b {
    grid-column: 1
  }

  .ptl .exp_img_pair {
    grid-template-columns: 1fr
  }

  .ptl .avail_head h2 {
    font-size: 32px
  }

  .ptl .rep_left h2,
  .ptl .curr_left h2,
  .ptl .exp_left h2,
  .ptl .val_text_top h2 {
    font-size: 32px
  }
}

.success_pg {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: #fff
}

.success_pg .success_wrap {
  max-width: 640px;
  width: 100%;
  text-align: center
}

.success_pg .success_icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 32px;
  display: block
}

.success_pg .success_hdg {
  font-size: 45px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #4F5E70;
  margin: 0 0 16px;
  -webkit-text-stroke: 1.5px #4F5E70;
  color: transparent
}

.success_pg .success_msg {
  font-size: 18px;
  line-height: 1.55;
  color: #4F5E70;
  margin: 0 0 32px
}

.success_pg .success_sub {
  font-size: 15px;
  line-height: 1.55;
  color: #6083A3;
  margin: 0 0 64px
}

.success_pg .success_divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  margin: 0 auto 64px;
  border-radius: 6px
}

.success_pg .success_nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.success_pg .btn_primary {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(to right, #4F5E70, #6083A3);
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  box-shadow: 2px 6px 14px 0 #4f5e7014;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.success_pg .btn_primary:hover {
  transform: scale(1.04);
  box-shadow: 2px 10px 48px 0 #4f5e701c
}

.success_pg .btn_primary:active {
  transform: scale(0.98);
  box-shadow: inset 2px 3px 6px 0 #4f5e7014
}

.success_pg .btn_secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #4F5E70;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 6px;
  border: 1.5px solid #A2B2BB;
  cursor: pointer;
  box-shadow: 2px 3px 6px 0 #6083a314;
  transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.success_pg .btn_secondary:hover {
  transform: scale(1.04);
  border-color: #6083A3;
  box-shadow: 2px 6px 14px 0 #6083a314
}

.success_pg .btn_secondary:active {
  transform: scale(0.98);
  box-shadow: inset 2px 3px 6px 0 #6083a314
}

@media (max-width: 480px) {
  .success_pg {
    padding: 64px 16px
  }

  .success_pg .success_hdg {
    font-size: 32px
  }

  .success_pg .success_msg {
    font-size: 15px
  }

  .success_pg .success_nav {
    flex-direction: column;
    align-items: center
  }

  .success_pg .btn_primary,
  .success_pg .btn_secondary {
    width: 100%;
    text-align: center
  }
}