::before,
::after {
  content: none;
  box-sizing: inherit
}

body {
  margin: 0;
  position: relative;
  min-height: 100vh
}

.site_header {
  position: relative;
  background: linear-gradient(160deg, #1a2e2f 0%, #1e3535 40%, #243c3c 100%);
  border-bottom: 1px solid #45808647;
  box-shadow: 1px 7px 22px -2px #4580861c;
  overflow: hidden;
  padding: 0
}

.site_header::before {
  content: none
}

.header_accent_bar {
  height: 3px;
  background: linear-gradient(90deg, #458086 0%, #87B8AE 55%, #E2E9E8 100%);
  width: 100%
}

.header_body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px
}

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

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

.nav_link {
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #E2E9E8;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 0;
  position: relative;
  display: inline-block;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow: hidden;
  white-space: nowrap
}

.nav_link::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #4580862e 0%, #87b8ae1f 100%);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-radius: 0;
  pointer-events: none
}

.nav_link:hover::after {
  transform: translateX(0)
}

.nav_link:hover {
  color: #87B8AE
}

.nav_link:focus {
  outline: 2px solid;
  outline-color: #87B8AE;
  outline-offset: 3px
}

.logo_mount {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.logo_hex_frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 8px;
  background: #45808626;
  border: 2px solid #87b8ae80;
  box-shadow: 1px 7px 22px -2px #4580861c inset 0 2px 8px #87b8ae14;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  transition: border-color .42s ease-in-out, box-shadow .42s ease-in-out
}

.logo_hex_frame:hover {
  border-color: #87b8aed9;
  box-shadow: 1px 12px 40px -2px #45808624 inset 0 2px 8px #87b8ae1f
}

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

.header_tagline {
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .04em;
  color: #87B8AE;
  text-align: center;
  margin: 0;
  padding-bottom: 16px
}

.header_tagline span {
  background: linear-gradient(90deg, #87B8AE 0%, #E2E9E8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.header_bottom_rule {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.header_divider_line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #45808666 30%, #87b8ae80 50%, #45808666 70%, transparent 100%);
  margin-top: 16px
}

.site_footer {
  background: linear-gradient(175deg, #111d1e 0%, #0d1819 60%, #0a1415 100%);
  border-top: 1px solid #4580864d;
  font-family: 'Literata', Georgia, serif
}

.footer_top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 48px;
  align-items: start
}

.footer_brand_col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px
}

.footer_logo_frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 8px;
  background: #4580861f;
  border: 2px solid #87b8ae66;
  box-shadow: 1px 7px 22px -2px #4580861c;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%)
}

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

.footer_brand_desc {
  font-size: 16px;
  line-height: 1.9;
  color: #87B8AE;
  margin: 0;
  max-width: 200px
}

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

.footer_group_label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .06em;
  color: #E2E9E8;
  font-weight: 700;
  margin: 0 0 8px;
  text-transform: uppercase
}

.footer_link {
  font-size: 16px;
  line-height: 1.9;
  color: #87B8AE;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .35s ease-in-out;
  position: relative;
  overflow: hidden;
  padding: 0
}

.footer_link::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #458086;
  border-top: 2px solid #458086;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: border-color .35s ease-in-out
}

.footer_link:hover {
  color: #E2E9E8
}

.footer_link:hover::before {
  border-color: #E2E9E8
}

.footer_link:focus {
  outline: 2px solid #87B8AE;
  outline-offset: 3px
}

.footer_contact_item {
  font-size: 16px;
  line-height: 1.9;
  color: #87B8AE;
  margin: 0
}

.footer_contact_item a {
  color: #87B8AE;
  text-decoration: none;
  transition: color .35s ease-in-out
}

.footer_contact_item a:hover {
  color: #E2E9E8
}

.footer_contact_item a:focus {
  outline: 2px solid #87B8AE;
  outline-offset: 2px
}

.footer_divider_row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px
}

.footer_divider_gem {
  width: 8px;
  height: 8px;
  background: #458086;
  transform: rotate(45deg);
  flex-shrink: 0
}

.footer_divider_line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #45808699 0%, #87b8ae4d 50%, #4580861a 100%)
}

.footer_divider_gem_right {
  width: 8px;
  height: 8px;
  background: #87B8AE;
  transform: rotate(45deg);
  flex-shrink: 0
}

.footer_bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px
}

.footer_copyright {
  font-size: 16px;
  line-height: 1.5;
  color: #87b8aeb3;
  margin: 0
}

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

.footer_legal_link {
  font-size: 16px;
  line-height: 1.5;
  color: #87b8aeb3;
  text-decoration: none;
  transition: color .38s ease-in-out
}

.footer_legal_link:hover {
  color: #E2E9E8
}

.footer_legal_link:focus {
  outline: 2px solid #87B8AE;
  outline-offset: 2px
}

.consent_bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: linear-gradient(95deg, #1a2e2f 0%, #1e3535 100%);
  border-bottom: 2px solid #45808680;
  box-shadow: 1px 12px 40px -2px #45808624;
  transform: translateX(-100%);
  transition: transform 380ms cubic-bezier(0.34, 1.2, 0.64, 1);
  display: none
}

.consent_bar.consent_visible {
  transform: translateX(0)
}

.consent_bar_inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap
}

.consent_text_block {
  flex: 1;
  min-width: 240px
}

.consent_description {
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.9;
  color: #E2E9E8;
  margin: 0 0 8px
}

.consent_toggle_trigger {
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  transition: color .35s ease-in-out
}

.consent_toggle_trigger:hover {
  color: #E2E9E8
}

.consent_toggle_trigger:focus {
  outline: 2px solid #87B8AE;
  outline-offset: 2px
}

.consent_detail_panel {
  display: none;
  padding-top: 8px
}

.consent_detail_panel.panel_open {
  display: block
}

.consent_category_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #45808633
}

.consent_category_label {
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  color: #E2E9E8;
  margin: 0
}

.consent_category_note {
  font-size: 16px;
  color: #87b8aeb3;
  margin-left: 8px
}

.consent_toggle_switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0
}

.consent_toggle_switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute
}

.consent_toggle_track {
  display: block;
  width: 44px;
  height: 24px;
  background: #4580864d;
  border-radius: 36px;
  cursor: pointer;
  transition: background .35s ease-in-out;
  position: relative
}

.consent_toggle_track::after {
  content: '';
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #87B8AE;
  border-radius: 36px;
  transition: transform .35s ease-in-out
}

.consent_toggle_switch input:checked+.consent_toggle_track {
  background: #458086
}

.consent_toggle_switch input:checked+.consent_toggle_track::after {
  transform: translateX(20px)
}

.consent_toggle_switch input:focus+.consent_toggle_track {
  outline: 2px solid #87B8AE;
  outline-offset: 2px
}

.consent_always_on {
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  color: #87b8aeb3
}

.consent_actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  min-width: 140px;
  justify-content: center
}

.consent_btn {
  font-family: 'Literata', Georgia, serif;
  font-size: 16px;
  line-height: 1.5;
  padding: 8px 16px;
  border-radius: 0;
  border: 2px solid #458086;
  cursor: pointer;
  text-align: center;
  transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1), color .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden
}

.consent_btn_accept {
  background: #458086;
  color: #E2E9E8
}

.consent_btn_accept:hover {
  background: #87B8AE;
  border-color: #87B8AE;
  color: #111d1e
}

.consent_btn_accept:focus {
  outline: 2px solid #E2E9E8;
  outline-offset: 2px
}

.consent_btn_reject {
  background: transparent;
  color: #87B8AE
}

.consent_btn_reject:hover {
  background: #45808626;
  color: #E2E9E8
}

.consent_btn_reject:focus {
  outline: 2px solid #87B8AE;
  outline-offset: 2px
}

.consent_reopen_btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: #458086;
  border: none;
  border-radius: 36px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 7px 22px -2px #4580861c;
  transition: background .38s ease-in-out, box-shadow .38s ease-in-out
}

.consent_reopen_btn:hover {
  background: #87B8AE;
  box-shadow: 1px 12px 40px -2px #45808624
}

.consent_reopen_btn:focus {
  outline: 2px solid #E2E9E8;
  outline-offset: 2px
}

.consent_reopen_icon {
  width: 20px;
  height: 20px;
  display: block
}

@media (max-width: 1024px) {
  .header_body {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    padding: 16px 16px 0
  }

  .footer_top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 48px 16px 24px
  }

  .footer_brand_col {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center
  }
}

@media (max-width: 768px) {
  .header_body {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 16px 16px 0
  }

  .nav_left,
  .nav_right {
    justify-content: center
  }

  .footer_top {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer_brand_col {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start
  }

  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }
}

@media (max-width: 480px) {
  .nav_link {
    font-size: 16px;
    padding: 8px
  }

  .consent_bar_inner {
    flex-direction: column
  }

  .consent_actions {
    flex-direction: row;
    min-width: auto;
    width: 100%
  }

  .consent_btn {
    flex: 1
  }
}

.policy-data-zfch {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #E2E9E8;
  background: #1b2426
}

.policy-data-zfch p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
  letter-spacing: .015em;
  color: #c8d8d6
}

.policy-data-zfch ul,
.policy-data-zfch ol {
  margin: 0 0 24px;
  padding-left: 24px
}

.policy-data-zfch li {
  font-size: 16px;
  line-height: 1.9;
  color: #c8d8d6;
  margin-bottom: 8px;
  letter-spacing: .015em
}

.policy-data-zfch ul li::marker {
  color: #87B8AE
}

.policy-data-zfch ol li::marker {
  color: #87B8AE;
  font-size: 16px
}

.policy-data-zfch a {
  color: #87B8AE;
  text-decoration: underline;
  text-decoration-color: #87b8ae66;
  text-underline-offset: 3px;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), text-decoration-color .38s ease-in-out
}

.policy-data-zfch a:hover {
  color: #E2E9E8;
  text-decoration-color: #e2e9e899
}

.policy-data-zfch table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 16px;
  box-shadow: 1px 7px 22px -2px #4580861c;
  border-radius: 0;
  overflow: hidden
}

.policy-data-zfch thead {
  background: #45808659
}

.policy-data-zfch tbody tr {
  border-bottom: 1px solid #87b8ae26;
  transition: background .35s ease-in-out
}

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

.policy-data-zfch tbody tr:hover {
  background: #4580861f
}

.policy-data-zfch th {
  padding: 16px;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  color: #E2E9E8;
  letter-spacing: .04em;
  font-weight: 700
}

.policy-data-zfch td {
  padding: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #c8d8d6;
  vertical-align: top
}

.policy-data-zfch hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #458086, #87B8AE, #458086, transparent);
  margin: 48px 0;
  opacity: .5
}

@media (max-width: 768px) {
  .policy-data-zfch {
    padding: 24px 16px
  }

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

  .policy-data-zfch th,
  .policy-data-zfch td {
    padding: 8px 16px;
    min-width: 140px
  }
}

@media (max-width: 480px) {

  .policy-data-zfch p,
  .policy-data-zfch li,
  .policy-data-zfch td,
  .policy-data-zfch th {
    font-size: 16px
  }

  .policy-data-zfch ul,
  .policy-data-zfch ol {
    padding-left: 16px
  }

  .policy-data-zfch hr {
    margin: 24px 0
  }
}

.learning-program_detail {
  background: #18201f;
  color: #E2E9E8;
  min-height: 100vh;
  overflow-x: hidden
}

.learning-program_detail .reveal_item {
  opacity: 0;
  transform: translateY(0px);
  animation: reveal_up .42s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.learning-program_detail .reveal_item:nth-child(2) {
  animation-delay: .08s;
  transform: translateY(16px)
}

.learning-program_detail .reveal_item:nth-child(3) {
  animation-delay: .16s;
  transform: translateY(24px)
}

.learning-program_detail .reveal_item:nth-child(4) {
  animation-delay: .24s;
  transform: translateY(32px)
}

.learning-program_detail .reveal_item:nth-child(5) {
  animation-delay: .32s;
  transform: translateY(40px)
}

@keyframes reveal_up {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.learning-program_detail .page_frame {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px
}

.learning-program_detail .split_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative
}

.learning-program_detail .split_top::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 80px;
  transform: translateX(-50%) skewX(-4deg);
  background: linear-gradient(31deg, #458086 0%, #87B8AE 60%, #E2E9E8 100%);
  opacity: .08;
  pointer-events: none
}

.learning-program_detail .text_zone {
  padding: 48px 48px 48px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1
}

.learning-program_detail .text_zone_decoration {
  position: absolute;
  top: 24px;
  left: 16px;
  font-size: 70px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -4px;
  color: #458086;
  opacity: .07;
  pointer-events: none;
  user-select: none;
  z-index: 0
}

.learning-program_detail .overline_label {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #87B8AE;
  font-weight: 600;
  margin-bottom: 16px;
  display: block
}

.learning-program_detail .page_heading {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #E2E9E8;
  margin: 0 0 16px;
  position: relative;
  z-index: 1
}

.learning-program_detail .audience_badge {
  display: inline-block;
  background: linear-gradient(31deg, #458086, #87B8AE);
  color: #18201f;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 36px;
  margin-bottom: 16px
}

.learning-program_detail .meta_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px
}

.learning-program_detail .meta_item {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.learning-program_detail .meta_item strong {
  color: #E2E9E8;
  font-size: 19px
}

.learning-program_detail .meta_divider {
  width: 1px;
  background: #458086;
  opacity: .4;
  align-self: stretch
}

.learning-program_detail .price_block {
  background: linear-gradient(31deg, #4580862e, #87b8ae14);
  border: 1px solid #45808659;
  border-radius: 36px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 1px 7px 22px -2px #4580861c
}

.learning-program_detail .price_amount {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 8px
}

.learning-program_detail .price_note_text {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE
}

.learning-program_detail .seats_indicator {
  font-size: 16px;
  line-height: 1.5;
  color: #E2E9E8;
  background: #45808638;
  border-radius: 0;
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 24px
}

.learning-program_detail .seats_indicator span {
  color: #87B8AE;
  font-weight: 700
}

.learning-program_detail .enroll_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 700;
  color: #18201f;
  background: linear-gradient(31deg, #458086, #87B8AE);
  border: none;
  border-radius: 36px;
  padding: 16px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 1px 12px 40px -2px #45808624;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  text-decoration: none
}

.learning-program_detail .enroll_button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-radius: 36px
}

.learning-program_detail .enroll_button:hover::before {
  transform: translateX(0)
}

.learning-program_detail .enroll_button:hover {
  box-shadow: 1px 12px 40px -2px #45808638;
  transform: translateY(-2px)
}

.learning-program_detail .enroll_button_label {
  position: relative;
  z-index: 1
}

.learning-program_detail .button_arrow {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  display: inline-block
}

.learning-program_detail .image_zone {
  position: relative;
  overflow: hidden
}

.learning-program_detail .image_zone_inner {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.learning-program_detail .program_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  filter: sepia(0.35) contrast(1.12) brightness(0.82) saturate(0.8);
  display: block
}

.learning-program_detail .image_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, #18201fb8 0%, #45808647 100%);
  mix-blend-mode: multiply
}

.learning-program_detail .publish_stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #E2E9E8;
  background: #18201fb8;
  padding: 8px 16px;
  border-radius: 0;
  letter-spacing: .04em
}

.learning-program_detail .section_fade {
  height: 48px;
  background: linear-gradient(to bottom, #18201f 0%, transparent 100%);
  pointer-events: none
}

.learning-program_detail .detail_section {
  background: #1e2928;
  padding: 48px 0;
  position: relative
}

.learning-program_detail .detail_section::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(31deg, #458086 0%, #87B8AE 60%, transparent 100%);
  margin-bottom: 48px
}

.learning-program_detail .detail_grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.learning-program_detail .program_column h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #E2E9E8;
  margin: 0 0 16px
}

.learning-program_detail .program_column h3 {
  font-size: 24px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 24px 0 8px
}

.learning-program_detail .program_column p {
  font-size: 16px;
  line-height: 1.9;
  color: #c8d8d6;
  margin: 0 0 16px
}

.learning-program_detail .program_column ul {
  margin: 0 0 16px;
  padding-left: 24px
}

.learning-program_detail .program_column li {
  font-size: 16px;
  line-height: 1.9;
  color: #c8d8d6;
  margin-bottom: 8px
}

.learning-program_detail .program_column strong {
  color: #458086;
  font-weight: 700
}

.learning-program_detail .program_column em {
  color: #87B8AE;
  font-style: italic
}

.learning-program_detail .program_column cite {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  border-top: 1px solid #4580864d;
  padding-top: 8px;
  margin-top: 16px;
  font-style: normal
}

.learning-program_detail .program_column figure {
  margin: 24px 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 7px 22px -2px #4580861c
}

.learning-program_detail .program_column figcaption {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  padding: 8px 16px;
  background: #4580861a
}

.learning-program_detail .program_column details {
  border: 1px solid #45808640;
  border-radius: 36px;
  margin-bottom: 16px;
  overflow: hidden
}

.learning-program_detail .program_column summary {
  font-size: 19px;
  line-height: 1.5;
  color: #E2E9E8;
  padding: 16px 24px;
  cursor: pointer;
  background: #45808614;
  transition: background .35s ease-in-out
}

.learning-program_detail .program_column summary:hover {
  background: #4580862e
}

.learning-program_detail .program_column details[open] summary {
  border-bottom: 1px solid #45808633
}

.learning-program_detail .program_column details> :not(summary) {
  padding: 16px 24px
}

.learning-program_detail .side_column {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.learning-program_detail .description_panel {
  background: #45808614;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 1px 3px -2px #45808612
}

.learning-program_detail .description_panel h2 {
  font-size: 24px;
  line-height: 1.5;
  color: #E2E9E8;
  margin: 0 0 16px
}

.learning-program_detail .description_panel h3 {
  font-size: 19px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 16px 0 8px
}

.learning-program_detail .description_panel p {
  font-size: 16px;
  line-height: 1.9;
  color: #c8d8d6;
  margin: 0 0 16px
}

.learning-program_detail .description_panel strong {
  color: #458086;
  font-weight: 700
}

.learning-program_detail .description_panel abbr {
  text-decoration: underline dotted;
  color: #87B8AE;
  cursor: help
}

.learning-program_detail .description_panel ol {
  margin: 0 0 16px;
  padding-left: 24px
}

.learning-program_detail .description_panel li {
  font-size: 16px;
  line-height: 1.9;
  color: #c8d8d6;
  margin-bottom: 8px
}

.learning-program_detail .description_panel dl {
  margin: 0 0 16px
}

.learning-program_detail .description_panel dt {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  font-weight: 700;
  margin-top: 8px
}

.learning-program_detail .description_panel dd {
  font-size: 16px;
  line-height: 1.9;
  color: #c8d8d6;
  margin-left: 16px
}

.learning-program_detail .description_panel figure {
  margin: 16px 0;
  border-radius: 36px;
  overflow: hidden
}

.learning-program_detail .description_panel figcaption {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  padding: 8px
}

.learning-program_detail .description_panel details {
  border: 1px solid #45808640;
  border-radius: 36px;
  margin-bottom: 8px;
  overflow: hidden
}

.learning-program_detail .description_panel summary {
  font-size: 16px;
  line-height: 1.5;
  color: #E2E9E8;
  padding: 8px 16px;
  cursor: pointer;
  background: #45808614;
  transition: background .35s ease-in-out
}

.learning-program_detail .description_panel summary:hover {
  background: #4580862e
}

.learning-program_detail .description_panel details> :not(summary) {
  padding: 8px 16px
}

.learning-program_detail .error_report_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 36px;
  border: 1px solid #4580864d;
  transition: color .35s ease-in-out, border-color .35s ease-in-out, box-shadow .35s ease-in-out;
  align-self: flex-start
}

.learning-program_detail .error_report_link:hover {
  color: #E2E9E8;
  border-color: #458086;
  box-shadow: 0 0 12px #4580864d
}

.learning-program_detail .error_icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  flex-shrink: 0
}

@media (max-width: 1024px) {
  .learning-program_detail .split_top {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .learning-program_detail .split_top::after {
    display: none
  }

  .learning-program_detail .image_zone {
    height: 320px;
    position: relative
  }

  .learning-program_detail .image_zone_inner {
    position: absolute
  }

  .learning-program_detail .text_zone {
    padding: 48px 24px
  }

  .learning-program_detail .detail_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 768px) {
  .learning-program_detail .page_heading {
    font-size: 32px
  }

  .learning-program_detail .price_amount {
    font-size: 32px
  }

  .learning-program_detail .meta_row {
    gap: 8px
  }

  .learning-program_detail .text_zone {
    padding: 24px 16px
  }

  .learning-program_detail .detail_section {
    padding: 24px 0
  }
}

@media (max-width: 480px) {
  .learning-program_detail .page_heading {
    font-size: 24px
  }

  .learning-program_detail .page_frame {
    padding: 0 16px
  }

  .learning-program_detail .image_zone {
    height: 220px
  }
}

.sponsorship {
  background-color: #181412;
  color: #E2E9E8;
  overflow-x: clip
}

.sponsorship .page_schema {
  display: none
}

.sponsorship .wave_divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block
}

.sponsorship .wave_divider svg {
  display: block;
  width: 100%
}

.sponsorship .title_block {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center
}

.sponsorship .title_overline {
  font-size: 16px;
  letter-spacing: .12em;
  color: #87B8AE;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.sponsorship .title_heading {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 0 0 24px;
  color: #E2E9E8
}

.sponsorship .title_heading .accent_word {
  color: #458086;
  font-weight: 800
}

.sponsorship .title_sub {
  font-size: 19px;
  line-height: 1.5;
  color: #b8ceca;
  max-width: 540px;
  margin: 0 0 24px
}

.sponsorship .title_problem {
  font-size: 16px;
  line-height: 1.9;
  color: #87B8AE;
  border-top: 1px solid #458086;
  padding-top: 16px;
  max-width: 480px
}

.sponsorship .title_image_column {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1
}

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

.sponsorship .title_image_fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, #181412 0%, transparent 100%);
  pointer-events: none
}

.sponsorship .title_deco_lines {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none
}

.sponsorship .title_deco_lines span {
  display: block;
  height: 2px;
  background: #87b8ae59;
  border-radius: 0
}

.sponsorship .title_deco_lines span:nth-child(1) {
  width: 48px
}

.sponsorship .title_deco_lines span:nth-child(2) {
  width: 32px
}

.sponsorship .title_deco_lines span:nth-child(3) {
  width: 24px
}

.sponsorship .title_deco_lines span:nth-child(4) {
  width: 16px
}

.sponsorship .title_cta_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #E2E9E8;
  text-decoration: none;
  padding: 16px 24px;
  border: 1px solid #458086;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .38s ease-in-out
}

.sponsorship .title_cta_link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #458086;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-radius: 36px;
  z-index: 0
}

.sponsorship .title_cta_link:hover::before {
  transform: translateX(0)
}

.sponsorship .title_cta_link:hover {
  color: #E2E9E8;
  border-color: #458086
}

.sponsorship .title_cta_link span {
  position: relative;
  z-index: 1
}

.sponsorship .title_cta_link .arrow_shape {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center
}

.sponsorship .title_cta_link .arrow_shape svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.sponsorship .title_cta_link:hover .arrow_shape svg {
  transform: translateX(4px)
}

.sponsorship .section_one_bg {
  background: linear-gradient(31deg, #1e2c2b 0%, #232f2e 100%);
  position: relative
}

.sponsorship .sponsorship_details {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.sponsorship .details_primary {
  padding-right: 24px
}

.sponsorship .overline_label {
  font-size: 16px;
  letter-spacing: .1em;
  color: #458086;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px
}

.sponsorship .details_heading {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  color: #E2E9E8;
  margin: 0 0 24px
}

.sponsorship .details_body {
  font-size: 16px;
  line-height: 1.9;
  color: #b8ceca;
  margin: 0 0 16px
}

.sponsorship .details_body strong {
  color: #458086;
  font-weight: 700
}

.sponsorship .keyword_highlight {
  display: inline;
  font-weight: 700;
  color: #87B8AE
}

.sponsorship .details_stat_card {
  background: #181412;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 7px 22px -2px #4580861c;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%
}

.sponsorship .stat_icon_box {
  width: 48px;
  height: 48px;
  border: 1px solid #458086;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sponsorship .stat_icon_box svg {
  width: 22px;
  height: 22px;
  stroke: #87B8AE;
  fill: none;
  stroke-width: 1.8
}

.sponsorship .stat_number {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  background: linear-gradient(31deg, #458086, #87B8AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.sponsorship .stat_label {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  font-weight: 600
}

.sponsorship .stat_desc {
  font-size: 16px;
  line-height: 1.5;
  color: #7a9e9a
}

.sponsorship .section_tiers_bg {
  background: #181412;
  position: relative
}

.sponsorship .tiers_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px
}

.sponsorship .tiers_top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px
}

.sponsorship .tiers_heading {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #E2E9E8;
  margin: 0
}

.sponsorship .tiers_sub {
  font-size: 16px;
  line-height: 1.9;
  color: #87B8AE;
  max-width: 320px;
  text-align: right;
  margin: 0
}

.sponsorship .tiers_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.sponsorship .tier_card {
  border-radius: 36px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .4s ease-in-out, transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  cursor: default
}

.sponsorship .tier_card.standard {
  background: #1e2c2b;
  border: 1px solid #2d4240;
  box-shadow: 1px 1px 3px -2px #45808612
}

.sponsorship .tier_card.featured {
  background: linear-gradient(31deg, #1e3a3a 0%, #1a2e2d 100%);
  border: 1px solid #458086;
  box-shadow: 1px 12px 40px -2px #45808624
}

.sponsorship .tier_card.premium {
  background: #1a2020;
  border: 1px solid #2a3a38;
  box-shadow: 1px 1px 3px -2px #87b8ae12
}

.sponsorship .tier_card:hover {
  box-shadow: 1px 12px 40px -2px #45808624;
  transform: translateY(-4px)
}

.sponsorship .tier_badge {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #458086
}

.sponsorship .tier_card.featured .tier_badge {
  color: #87B8AE
}

.sponsorship .tier_price {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #E2E9E8
}

.sponsorship .tier_price_note {
  font-size: 16px;
  color: #7a9e9a;
  margin-top: 8px
}

.sponsorship .tier_divider {
  height: 1px;
  background: #45808633
}

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

.sponsorship .tier_features li {
  font-size: 16px;
  line-height: 1.5;
  color: #b8ceca;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.sponsorship .tier_features li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: #458086;
  margin-top: 7px;
  flex-shrink: 0
}

.sponsorship .tier_card.featured .tier_features li {
  color: #E2E9E8
}

.sponsorship .tier_action {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #E2E9E8;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid #458086;
  transition: color .35s ease-in-out;
  width: fit-content
}

.sponsorship .tier_action::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #458086;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.sponsorship .tier_action:hover::before {
  transform: translateX(0)
}

.sponsorship .tier_action span {
  position: relative;
  z-index: 1
}

.sponsorship .tier_action svg {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.sponsorship .tier_action:hover svg {
  transform: translateX(4px)
}

.sponsorship .tier_card.featured .tier_action {
  background: #458086 !important;
  border-color: #458086
}

.sponsorship .tier_card.featured .tier_action::before {
  background: #87B8AE
}

.sponsorship .section_quote_bg {
  background: linear-gradient(31deg, #1a2828 0%, #1c2a29 60%, #181412 100%);
  position: relative
}

.sponsorship .quote_analysis_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  align-items: start
}

.sponsorship .quote_left {
  display: flex;
  flex-direction: column;
  gap: 48px
}

.sponsorship .large_quote_block {
  position: relative;
  padding: 48px;
  background: #181412;
  border-radius: 36px;
  box-shadow: 1px 12px 40px -2px #45808624
}

.sponsorship .quote_mark {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 800;
  color: #458086;
  position: absolute;
  top: 16px;
  left: 24px;
  pointer-events: none
}

.sponsorship .quote_text {
  font-size: 24px;
  line-height: 1.5;
  color: #E2E9E8;
  font-weight: 600;
  margin: 0 0 16px;
  padding-top: 24px
}

.sponsorship .quote_attribution {
  font-size: 16px;
  color: #87B8AE;
  font-weight: 700
}

.sponsorship .quote_attribution_role {
  font-size: 16px;
  color: #7a9e9a;
  font-weight: 400
}

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

.sponsorship .analysis_heading {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #E2E9E8;
  margin: 0
}

.sponsorship .analysis_body {
  font-size: 16px;
  line-height: 1.9;
  color: #b8ceca;
  margin: 0
}

.sponsorship .analysis_body strong {
  color: #87B8AE;
  font-weight: 700
}

.sponsorship .quote_right_column {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.sponsorship .right_metric {
  background: #181412;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 7px 22px -2px #4580861c;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sponsorship .right_metric_number {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #87B8AE
}

.sponsorship .right_metric_label {
  font-size: 16px;
  line-height: 1.5;
  color: #7a9e9a
}

.sponsorship .cycling_words_block {
  background: #45808614;
  border-radius: 36px;
  padding: 24px;
  border: 1px solid #45808633
}

.sponsorship .cycling_label {
  font-size: 16px;
  color: #7a9e9a;
  margin-bottom: 16px;
  display: block
}

.sponsorship .cycling_words {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sponsorship .cycling_words span {
  font-size: 16px;
  line-height: 1.5;
  color: #b8ceca;
  padding: 8px 16px;
  border-radius: 36px;
  transition: background-color .4s ease-in-out, color .4s ease-in-out
}

.sponsorship .cycling_words span.word_active {
  background: #458086;
  color: #E2E9E8;
  font-weight: 700
}

.sponsorship .section_audience_bg {
  background: #181412;
  position: relative
}

.sponsorship .audience_container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px
}

.sponsorship .audience_top_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start
}

.sponsorship .audience_heading {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #E2E9E8;
  margin: 0 0 16px
}

.sponsorship .audience_body {
  font-size: 16px;
  line-height: 1.9;
  color: #b8ceca;
  margin: 0 0 16px
}

.sponsorship .audience_body strong {
  color: #87B8AE;
  font-weight: 700
}

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

.sponsorship .audience_fact {
  background: linear-gradient(31deg, #1e2c2b 0%, #1a2928 100%);
  border-radius: 36px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 1px 1px 3px -2px #45808612;
  transition: box-shadow .38s ease-in-out
}

.sponsorship .audience_fact:hover {
  box-shadow: 1px 7px 22px -2px #4580861c
}

.sponsorship .fact_icon {
  width: 44px;
  height: 44px;
  border: 1px solid #458086;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sponsorship .fact_icon svg {
  width: 20px;
  height: 20px;
  stroke: #87B8AE;
  fill: none;
  stroke-width: 1.8
}

.sponsorship .fact_text_group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sponsorship .fact_heading {
  font-size: 16px;
  font-weight: 700;
  color: #E2E9E8;
  margin: 0
}

.sponsorship .fact_body {
  font-size: 16px;
  line-height: 1.5;
  color: #7a9e9a;
  margin: 0
}

.sponsorship .contact_strip {
  background: linear-gradient(31deg, #1e3a3a 0%, #1a2e2d 100%);
  border-radius: 36px;
  padding: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 1px 12px 40px -2px #45808624;
  position: relative;
  overflow: hidden
}

.sponsorship .contact_strip_deco {
  position: absolute;
  top: 16px;
  right: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none
}

.sponsorship .contact_strip_deco span {
  display: block;
  height: 2px;
  background: #87b8ae33;
  border-radius: 0
}

.sponsorship .contact_strip_deco span:nth-child(1) {
  width: 64px
}

.sponsorship .contact_strip_deco span:nth-child(2) {
  width: 48px
}

.sponsorship .contact_strip_deco span:nth-child(3) {
  width: 32px
}

.sponsorship .contact_strip_left {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sponsorship .contact_strip_heading {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  color: #E2E9E8;
  margin: 0
}

.sponsorship .contact_strip_sub {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 0
}

.sponsorship .contact_strip_links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end
}

.sponsorship .contact_link {
  font-size: 16px;
  color: #E2E9E8;
  text-decoration: none;
  font-weight: 600;
  transition: color .35s ease-in-out;
  display: flex;
  align-items: center;
  gap: 8px
}

.sponsorship .contact_link:hover {
  color: #87B8AE
}

.sponsorship .contact_link svg {
  width: 16px;
  height: 16px;
  stroke: #458086;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0
}

@media (max-width: 1024px) {
  .sponsorship .title_block {
    grid-template-columns: 1fr 260px;
    gap: 24px
  }

  .sponsorship .title_heading {
    font-size: 44px
  }

  .sponsorship .sponsorship_details {
    grid-template-columns: 1fr 1fr
  }

  .sponsorship .details_primary {
    grid-column: 1 / -1;
    padding-right: 0
  }

  .sponsorship .tiers_grid {
    grid-template-columns: 1fr 1fr
  }

  .sponsorship .tiers_grid .tier_card:last-child {
    grid-column: 1 / -1
  }

  .sponsorship .quote_analysis_container {
    grid-template-columns: 1fr
  }

  .sponsorship .quote_right_column {
    flex-direction: row;
    flex-wrap: wrap
  }

  .sponsorship .right_metric {
    flex: 1;
    min-width: 140px
  }

  .sponsorship .cycling_words_block {
    flex: 1;
    min-width: 200px
  }

  .sponsorship .audience_top_row {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .sponsorship .title_block {
    grid-template-columns: 1fr;
    padding: 24px 16px
  }

  .sponsorship .title_image_column {
    max-width: 320px;
    margin: 0 auto
  }

  .sponsorship .title_heading {
    font-size: 44px
  }

  .sponsorship .sponsorship_details {
    grid-template-columns: 1fr;
    padding: 24px 16px
  }

  .sponsorship .tiers_grid {
    grid-template-columns: 1fr
  }

  .sponsorship .tiers_grid .tier_card:last-child {
    grid-column: auto
  }

  .sponsorship .tiers_top {
    flex-direction: column;
    align-items: flex-start
  }

  .sponsorship .tiers_sub {
    text-align: left
  }

  .sponsorship .large_quote_block {
    padding: 24px
  }

  .sponsorship .contact_strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px
  }

  .sponsorship .contact_strip_links {
    align-items: flex-start
  }

  .sponsorship .tiers_container {
    padding: 24px 16px
  }

  .sponsorship .quote_analysis_container {
    padding: 24px 16px
  }

  .sponsorship .audience_container {
    padding: 24px 16px
  }
}

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

  .sponsorship .details_heading {
    font-size: 32px
  }

  .sponsorship .tiers_heading {
    font-size: 32px
  }

  .sponsorship .analysis_heading {
    font-size: 24px
  }

  .sponsorship .audience_heading {
    font-size: 32px
  }

  .sponsorship .contact_strip_heading {
    font-size: 24px
  }

  .sponsorship .quote_text {
    font-size: 19px
  }

  .sponsorship .stat_number {
    font-size: 32px
  }

  .sponsorship .tier_price {
    font-size: 32px
  }
}

@keyframes word_cycle {

  0%,
  18% {
    background-color: #458086;
    color: #E2E9E8;
    font-weight: 700
  }

  20%,
  100% {
    background-color: transparent;
    color: #b8ceca;
    font-weight: 400
  }
}

.sponsorship .cycling_words span:nth-child(1) {
  animation: word_cycle 5s infinite 0s
}

.sponsorship .cycling_words span:nth-child(2) {
  animation: word_cycle 5s infinite 1s
}

.sponsorship .cycling_words span:nth-child(3) {
  animation: word_cycle 5s infinite 2s
}

.sponsorship .cycling_words span:nth-child(4) {
  animation: word_cycle 5s infinite 3s
}

.sponsorship .cycling_words span:nth-child(5) {
  animation: word_cycle 5s infinite 4s
}

.sponsorship .cycling_words span {
  animation-fill-mode: both
}

.launch {
  background-color: #181614;
  overflow-x: clip;
  position: relative
}

.launch .dot_grid_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #4580862e 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0
}

.launch .reading_arrow {
  position: absolute;
  right: 48px;
  bottom: 24px;
  width: 18px;
  height: 32px;
  opacity: .22;
  pointer-events: none;
  z-index: 1
}

.launch .reading_arrow svg {
  width: 18px;
  height: 32px
}

.launch .scallop_divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none
}

.launch .scallop_divider svg {
  display: block;
  width: 100%
}

.launch .page_max {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px
}

@media (max-width: 768px) {
  .launch .page_max {
    padding-left: 24px;
    padding-right: 24px
  }
}

@media (max-width: 480px) {
  .launch .page_max {
    padding-left: 16px;
    padding-right: 16px
  }
}

.launch .overline_label {
  display: block;
  font-size: 16px;
  letter-spacing: .12em;
  color: #87B8AE;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.5
}

.launch .accent_word {
  font-weight: 700;
  color: #87B8AE
}

.launch .outlined_word {
  -webkit-text-stroke: 1.5px #458086;
  color: transparent
}

.launch a.glow_link {
  color: #87B8AE;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), color .38s ease-in-out
}

.launch a.glow_link:hover {
  color: #E2E9E8;
  text-shadow: 0 0 12px #87b8ae8c
}

.launch .press_effect {
  transition: transform .22s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.launch .press_effect:active {
  transform: scale(0.96) translateY(1px)
}

.launch .title_block {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
  z-index: 1
}

.launch .title_block .dot_grid_bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  background-image: radial-gradient(circle, #45808633 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0
}

.launch .title_block .title_inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px
}

.launch .title_block .title_description {
  font-size: 19px;
  color: #87B8AE;
  line-height: 1.9;
  margin-bottom: 24px;
  letter-spacing: .02em
}

.launch .title_block .title_h1 {
  font-size: 70px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #E2E9E8;
  margin-bottom: 24px;
  font-weight: 700
}

.launch .title_block .title_h1 span.gradient_text {
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.launch .title_block .title_sub {
  font-size: 19px;
  color: #87B8AE;
  line-height: 1.9;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px
}

.launch .title_block .title_image_row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 48px
}

.launch .title_block .title_img_wrap {
  position: relative;
  width: 340px;
  flex-shrink: 0;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 12px 40px -2px #45808624
}

.launch .title_block .title_img_wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block
}

.launch .title_block .title_img_wrap .img_gradient_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, #181614b8, transparent);
  pointer-events: none
}

.launch .title_block .title_img_shifted {
  margin-top: 80px
}

.launch .title_cta_row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap
}

.launch .btn_arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #E2E9E8;
  background: transparent;
  border: 1.5px solid #45808680;
  border-radius: 0;
  padding: 16px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: color .35s ease-in-out, border-color .35s ease-in-out;
  letter-spacing: .04em
}

.launch .btn_arrow::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(31deg, #458086, #87B8AE);
  z-index: 0;
  transition: width .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.launch .btn_arrow:hover::before {
  width: 100%;
  left: 0;
  right: auto
}

.launch .btn_arrow:hover {
  border-color: #458086;
  color: #181614
}

.launch .btn_arrow span {
  position: relative;
  z-index: 1
}

.launch .btn_arrow .arrow_icon {
  position: relative;
  z-index: 1;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.launch .btn_arrow:hover .arrow_icon {
  transform: translateX(5px)
}

@media (max-width: 768px) {
  .launch .title_block .title_h1 {
    font-size: 44px
  }

  .launch .title_block .title_image_row {
    flex-direction: column;
    align-items: center
  }

  .launch .title_block .title_img_wrap {
    width: 100%;
    max-width: 400px
  }

  .launch .title_block .title_img_shifted {
    margin-top: 0
  }
}

@media (max-width: 480px) {
  .launch .title_block .title_h1 {
    font-size: 32px
  }

  .launch .title_block {
    padding-top: 48px;
    padding-bottom: 48px
  }
}

.launch .hesitation_block {
  position: relative;
  background: linear-gradient(31deg, #4580861a, #87b8ae0f);
  padding-top: 80px;
  padding-bottom: 80px
}

.launch .hesitation_block .hesitation_grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.launch .hesitation_block .hesitation_main h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #E2E9E8;
  margin-bottom: 24px;
  letter-spacing: -.02em;
  font-weight: 700
}

.launch .hesitation_block .hesitation_main p {
  font-size: 19px;
  line-height: 1.9;
  color: #87B8AE;
  margin-bottom: 16px;
  letter-spacing: .01em
}

.launch .hesitation_block .hesitation_aside {
  padding-top: 24px
}

.launch .hesitation_block .hesitation_aside .stat_item {
  border-top: 1px solid #4580864d;
  padding-top: 16px;
  padding-bottom: 16px
}

.launch .hesitation_block .hesitation_aside .stat_number {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em
}

.launch .hesitation_block .hesitation_aside .stat_label {
  font-size: 16px;
  color: #87B8AE;
  line-height: 1.5;
  margin-top: 8px
}

.launch .hesitation_block .hesitation_image {
  margin-top: 48px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 7px 22px -2px #4580861c
}

.launch .hesitation_block .hesitation_image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block
}

@keyframes card_flip_in {
  0% {
    transform: rotateY(90deg);
    opacity: 0
  }

  100% {
    transform: rotateY(0deg);
    opacity: 1
  }
}

.launch .flip_card {
  animation: card_flip_in .45s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

.launch .flip_card:nth-child(1) {
  animation-delay: .1s
}

.launch .flip_card:nth-child(2) {
  animation-delay: .22s
}

.launch .flip_card:nth-child(3) {
  animation-delay: .34s
}

@media (max-width: 768px) {
  .launch .hesitation_block .hesitation_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .launch .hesitation_block .hesitation_main h2 {
    font-size: 32px
  }
}

.launch .belonging_block {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #1e1b18
}

.launch .belonging_block .belonging_header {
  text-align: center;
  margin-bottom: 48px
}

.launch .belonging_block .belonging_header h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #E2E9E8;
  letter-spacing: -.02em;
  font-weight: 700;
  margin-bottom: 16px
}

.launch .belonging_block .belonging_header p {
  font-size: 19px;
  color: #87B8AE;
  line-height: 1.9;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto
}

.launch .belonging_block .profiles_row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap
}

.launch .belonging_block .profile_card {
  flex: 1 1 280px;
  background: #45808614;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 7px 22px -2px #4580861c;
  border: 1px solid #45808626;
  transition: box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .4s ease-in-out
}

.launch .belonging_block .profile_card:hover {
  box-shadow: 1px 12px 40px -2px #45808624;
  border-color: #45808666
}

@keyframes border_pulse {
  0% {
    border-color: #45808666
  }

  50% {
    border-color: #87b8aeb3
  }

  100% {
    border-color: #45808666
  }
}

.launch .belonging_block .profile_card:hover {
  animation: border_pulse .42s cubic-bezier(0.34, 1.2, 0.64, 1) 1
}

.launch .belonging_block .profile_card h4 {
  font-size: 19px;
  color: #E2E9E8;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5
}

.launch .belonging_block .profile_card p {
  font-size: 16px;
  color: #87B8AE;
  line-height: 1.9
}

.launch .belonging_block .not_for_strip {
  margin-top: 48px;
  background: #4580860f;
  border-radius: 0;
  padding: 24px;
  border-top: 1px solid #45808633
}

.launch .belonging_block .not_for_strip h5 {
  font-size: 16px;
  color: #87B8AE;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px
}

.launch .belonging_block .not_for_strip p {
  font-size: 16px;
  color: #87B8AE;
  line-height: 1.9
}

.launch .belonging_block .image_pair {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 48px
}

.launch .belonging_block .image_pair .pair_img {
  flex: 1;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 1px 3px -2px #45808612
}

.launch .belonging_block .image_pair .pair_img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block
}

.launch .belonging_block .image_pair .pair_img_shifted {
  margin-top: 48px
}

@media (max-width: 768px) {
  .launch .belonging_block .profiles_row {
    flex-direction: column
  }

  .launch .belonging_block .image_pair {
    flex-direction: column
  }

  .launch .belonging_block .image_pair .pair_img_shifted {
    margin-top: 0
  }

  .launch .belonging_block .belonging_header h2 {
    font-size: 32px
  }
}

.launch .longterm_block {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  background: #181614
}

.launch .longterm_block .longterm_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.launch .longterm_block .longterm_left h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #E2E9E8;
  letter-spacing: -.02em;
  font-weight: 700;
  margin-bottom: 24px
}

.launch .longterm_block .longterm_left p {
  font-size: 19px;
  color: #87B8AE;
  line-height: 1.9;
  margin-bottom: 16px
}

.launch .longterm_block .longterm_right {
  padding-top: 48px
}

.launch .longterm_block .value_item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #45808626
}

.launch .longterm_block .value_item:last-child {
  border-bottom: none
}

.launch .longterm_block .value_dot {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: linear-gradient(31deg, #458086, #87B8AE);
  flex-shrink: 0;
  margin-top: 8px
}

.launch .longterm_block .value_text h5 {
  font-size: 16px;
  color: #E2E9E8;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5
}

.launch .longterm_block .value_text p {
  font-size: 16px;
  color: #87B8AE;
  line-height: 1.9;
  margin: 0
}

@media (max-width: 768px) {
  .launch .longterm_block .longterm_layout {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .launch .longterm_block .longterm_right {
    padding-top: 0
  }

  .launch .longterm_block .longterm_left h2 {
    font-size: 32px
  }
}

.launch .support_block {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(31deg, #4580861f, #87b8ae0d)
}

.launch .support_block .support_layout {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start
}

.launch .support_block .support_image_col {
  flex: 0 0 320px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 12px 40px -2px #45808624;
  position: relative
}

.launch .support_block .support_image_col img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block
}

.launch .support_block .support_image_col .img_inset_shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, #18161473, transparent);
  pointer-events: none
}

.launch .support_block .support_text_col {
  flex: 1
}

.launch .support_block .support_text_col h2 {
  font-size: 44px;
  line-height: 1.1;
  color: #E2E9E8;
  letter-spacing: -.02em;
  font-weight: 700;
  margin-bottom: 24px
}

.launch .support_block .support_text_col p {
  font-size: 19px;
  color: #87B8AE;
  line-height: 1.9;
  margin-bottom: 16px
}

.launch .support_block .support_cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px
}

.launch .support_block .support_card {
  background: #181614b3;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 1px 3px -2px #45808612;
  border: 1px solid #4580861f;
  transition: box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .42s ease-in-out
}

.launch .support_block .support_card:hover {
  box-shadow: 1px 7px 22px -2px #4580861c;
  border-color: #45808659
}

.launch .support_block .support_card h5 {
  font-size: 16px;
  color: #E2E9E8;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5
}

.launch .support_block .support_card p {
  font-size: 16px;
  color: #87B8AE;
  line-height: 1.9;
  margin: 0
}

.launch .support_block .support_contact_strip {
  margin-top: 24px;
  font-size: 16px;
  color: #87B8AE;
  line-height: 1.9
}

@media (max-width: 768px) {
  .launch .support_block .support_layout {
    flex-direction: column
  }

  .launch .support_block .support_image_col {
    flex: 0 0 auto;
    width: 100%
  }

  .launch .support_block .support_text_col h2 {
    font-size: 32px
  }
}

@media (max-width: 480px) {
  .launch .support_block .support_text_col h2 {
    font-size: 24px
  }
}

.launch .schema_data {
  display: none
}

.contact-us-page {
  background: #1a120e;
  background: #18120f;
  background-color: #171210;
  min-height: 100vh;
  overflow-x: clip;
  position: relative
}

.contact-us-page .animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden
}

.contact-us-page .animated-background::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: repeating-linear-gradient(31deg, transparent, transparent 60px, #4580860a 60px, #4580860a 61px), repeating-linear-gradient(121deg, transparent, transparent 80px, #87b8ae08 80px, #87b8ae08 81px);
  animation: diagonal-drift 18s linear infinite
}

@keyframes diagonal-drift {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(80px, 80px)
  }
}

.contact-us-page .page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1
}

.contact-us-page .reach-block {
  padding: 48px 0 0;
  position: relative
}

.contact-us-page .reach-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  opacity: .18
}

.contact-us-page .reach_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.contact-us-page .reach_left {
  padding: 48px 0
}

.contact-us-page .overline_label {
  display: block;
  font-size: 16px;
  letter-spacing: .12em;
  color: #87B8AE;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding-top: 24px
}

.contact-us-page .overline_label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(31deg, #458086, #87B8AE);
  border-radius: 0
}

.contact-us-page .reach_heading {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #E2E9E8;
  margin: 0 0 24px;
  font-weight: 700
}

.contact-us-page .reach_heading .accent_word {
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.contact-us-page .reach_description {
  font-size: 19px;
  line-height: 1.5;
  color: #b8ccc9;
  margin: 0 0 48px;
  max-width: 420px
}

.contact-us-page .metric_block {
  background: linear-gradient(31deg, #4580861f, #87b8ae0f);
  border: 1px solid #87b8ae2e;
  border-radius: 36px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 1px 7px 22px -2px #4580861c;
  position: relative;
  overflow: hidden
}

.contact-us-page .metric_block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e9e84d, transparent)
}

.contact-us-page .metric_number {
  font-size: 70px;
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 800;
  background: linear-gradient(31deg, #458086, #87B8AE, #E2E9E8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block
}

.contact-us-page .metric_label {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  letter-spacing: .04em;
  margin-top: 8px;
  display: block
}

.contact-us-page .metric_context {
  font-size: 16px;
  line-height: 1.5;
  color: #7a9e9a;
  margin-top: 8px
}

.contact-us-page .contact_details_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-us-page .contact_details_list li {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-us-page .detail_label {
  font-size: 16px;
  letter-spacing: .08em;
  color: #458086;
  text-transform: uppercase;
  font-weight: 600
}

.contact-us-page .detail_value {
  font-size: 19px;
  line-height: 1.5;
  color: #E2E9E8;
  text-decoration: none;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-us-page .detail_value:hover {
  color: #87B8AE;
  text-shadow: 0 0 16px #87b8ae59
}

.contact-us-page .reach_right {
  background: radial-gradient(ellipse at 50% 30%, #45808621 0%, #17121000 70%);
  border-radius: 36px;
  padding: 48px;
  border: 1px solid #87b8ae1f;
  box-shadow: 1px 12px 40px -2px #45808624;
  position: relative
}

.contact-us-page .reach_right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(31deg, #458086, #87B8AE, transparent);
  border-radius: 36px 36px 0 0
}

.contact-us-page .form_overline {
  display: block;
  font-size: 16px;
  letter-spacing: .1em;
  color: #87B8AE;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  padding-top: 24px;
  position: relative
}

.contact-us-page .form_overline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #87B8AE
}

.contact-us-page .form_heading {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #E2E9E8;
  margin: 0 0 24px;
  font-weight: 700
}

.contact-us-page .contact_form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-us-page .field_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.contact-us-page .field_group {
  display: flex;
  flex-direction: column;
  position: relative
}

.contact-us-page .field_group input,
.contact-us-page .field_group select {
  background: #17121099;
  border: 1px solid #87b8ae40;
  border-radius: 0;
  padding: 16px;
  font-size: 16px;
  color: #E2E9E8;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: inset 0 2px 6px #45808612;
  appearance: none;
  -webkit-appearance: none
}

.contact-us-page .field_group input::placeholder {
  color: transparent
}

.contact-us-page .field_group label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 16px;
  color: #7a9e9a;
  pointer-events: none;
  transition: top .35s cubic-bezier(0.34, 1.2, 0.64, 1), font-size .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s ease-in-out;
  background: transparent
}

.contact-us-page .field_group input:focus+label,
.contact-us-page .field_group input:not(:placeholder-shown)+label {
  top: -10px;
  font-size: 16px;
  color: #87B8AE;
  background: #1d1613;
  padding: 0 8px;
  left: 8px;
  font-size: 16px
}

.contact-us-page .field_group input:focus,
.contact-us-page .field_group select:focus {
  border-color: #458086;
  box-shadow: inset 0 2px 6px #45808612 0 0 0 2px #4580862e
}

.contact-us-page .select_wrapper {
  position: relative
}

.contact-us-page .select_wrapper::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #87B8AE;
  pointer-events: none
}

.contact-us-page .select_wrapper select {
  cursor: pointer;
  color: #7a9e9a;
  padding-right: 48px
}

.contact-us-page .select_wrapper select option {
  background: #1d1613;
  color: #E2E9E8
}

.contact-us-page .select_wrapper select:valid {
  color: #E2E9E8
}

.contact-us-page .select_label {
  display: block;
  font-size: 16px;
  color: #7a9e9a;
  margin-bottom: 8px;
  letter-spacing: .04em
}

.contact-us-page .privacy_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 0
}

.contact-us-page .privacy_row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: #458086;
  cursor: pointer;
  margin-top: 2px
}

.contact-us-page .privacy_text {
  font-size: 16px;
  line-height: 1.5;
  color: #7a9e9a
}

.contact-us-page .privacy_text a {
  color: #87B8AE;
  text-decoration: underline;
  text-decoration-color: #87b8ae66;
  transition: color .35s ease-in-out, text-shadow .35s ease-in-out
}

.contact-us-page .privacy_text a:hover {
  color: #E2E9E8;
  text-shadow: 0 0 12px #87b8ae66
}

.contact-us-page .submit_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid #87b8ae66;
  border-radius: 0;
  padding: 16px 24px;
  font-size: 19px;
  color: #E2E9E8;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .42s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .42s cubic-bezier(0.34, 1.2, 0.64, 1);
  align-self: flex-start
}

.contact-us-page .submit_button::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(31deg, #458086, #87B8AE);
  transition: width .42s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.contact-us-page .submit_button:hover::before {
  width: 100%;
  left: 0;
  right: auto
}

.contact-us-page .submit_button:hover {
  color: #171210;
  border-color: #458086
}

.contact-us-page .submit_button span {
  position: relative;
  z-index: 1
}

.contact-us-page .submit_button .arrow_indicator {
  position: relative;
  z-index: 1;
  transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-us-page .submit_button:hover .arrow_indicator {
  transform: translateX(6px)
}

.contact-us-page .submit_button:focus {
  outline: 2px solid #87B8AE;
  outline-offset: 2px
}

.contact-us-page .info_block {
  position: relative;
  padding: 48px 0;
  background: #141110;
  clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
  margin-top: 48px
}

.contact-us-page .info_block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, #45808617 0%, transparent 65%);
  pointer-events: none
}

.contact-us-page .info_grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 48px
}

.contact-us-page .info_primary {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-us-page .info_heading {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #E2E9E8;
  margin: 0;
  font-weight: 700
}

.contact-us-page .info_body {
  font-size: 16px;
  line-height: 1.9;
  color: #9ab8b4
}

.contact-us-page .info_body strong {
  color: #87B8AE;
  font-weight: 700
}

.contact-us-page .sponsorship_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #87B8AE;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), text-shadow .38s ease-in-out;
  padding: 8px 0
}

.contact-us-page .sponsorship_link:hover {
  color: #E2E9E8;
  text-shadow: 0 0 14px #87b8ae73
}

.contact-us-page .sponsorship_link .link_arrow {
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-us-page .sponsorship_link:hover .link_arrow {
  transform: translateX(5px)
}

.contact-us-page .info_aside {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-us-page .address_card {
  background: linear-gradient(31deg, #4580861a, #87b8ae0d);
  border: 1px solid #87b8ae26;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 7px 22px -2px #4580861c;
  position: relative
}

.contact-us-page .address_card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 36px;
  box-shadow: inset 0 2px 8px #45808614;
  pointer-events: none
}

.contact-us-page .address_overline {
  font-size: 16px;
  letter-spacing: .1em;
  color: #458086;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 16px
}

.contact-us-page .address_text {
  font-size: 16px;
  line-height: 1.9;
  color: #b8ccc9
}

.contact-us-page .punctuation_anchor {
  position: absolute;
  right: -24px;
  top: 48px;
  font-size: 220px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #87b8ae12;
  pointer-events: none;
  user-select: none;
  font-weight: 900;
  letter-spacing: -.05em;
  z-index: 0
}

.contact-us-page .keyword_note {
  font-size: 16px;
  line-height: 1.5;
  color: #6a8e8a;
  border-top: 1px solid #87b8ae1a;
  padding-top: 16px;
  margin-top: 8px
}

@media (max-width: 1024px) {
  .contact-us-page .reach_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .contact-us-page .reach_heading {
    font-size: 44px
  }

  .contact-us-page .info_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .contact-us-page .punctuation_anchor {
    display: none
  }
}

@media (max-width: 768px) {
  .contact-us-page .reach_right {
    padding: 24px
  }

  .contact-us-page .field_row {
    grid-template-columns: 1fr
  }

  .contact-us-page .reach_heading {
    font-size: 32px
  }

  .contact-us-page .metric_number {
    font-size: 60px
  }

  .contact-us-page .info_heading {
    font-size: 32px
  }

  .contact-us-page .info_block {
    clip-path: polygon(0 1.5%, 100% 0, 100% 100%, 0 100%)
  }
}

@media (max-width: 480px) {
  .contact-us-page .page-container {
    padding: 0 16px
  }

  .contact-us-page .reach_heading {
    font-size: 32px
  }

  .contact-us-page .reach_right {
    padding: 16px
  }

  .contact-us-page .submit_button {
    width: 100%;
    justify-content: center
  }
}

.about-us-page {
  background-color: #1a120e;
  color: #E2E9E8;
  overflow-x: clip
}

.about-us-page *,
.about-us-page ::before,
.about-us-page ::after {
  box-sizing: border-box
}

.about-us-page ::selection {
  background: #4580861a;
  color: #E2E9E8
}

@keyframes reveal_scale {
  from {
    opacity: 0;
    transform: scale(0.96)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.about-us-page .page_reveal {
  animation: reveal_scale .42s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

.about-us-page .max_bound {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px
}

@media (max-width: 768px) {
  .about-us-page .max_bound {
    padding-left: 24px;
    padding-right: 24px
  }
}

@media (max-width: 480px) {
  .about-us-page .max_bound {
    padding-left: 16px;
    padding-right: 16px
  }
}

.about-us-page .overline_label {
  display: block;
  font-size: 16px;
  letter-spacing: .12em;
  color: #87B8AE;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
  padding-top: 24px
}

.about-us-page .overline_label::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  margin-bottom: 16px
}

.about-us-page .accent_bold {
  color: #458086;
  font-weight: 700
}

.about-us-page .curved_connector {
  position: absolute;
  pointer-events: none
}

.about-us-page .brushstroke_divider {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

.about-us-page .brushstroke_divider svg {
  display: block;
  width: 100%
}

.about-us-page .identity_stage {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative
}

.about-us-page .identity_stage .decorative_stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(31deg, #458086, #87B8AE, #E2E9E8);
  border-radius: 0 36px 36px 0
}

.about-us-page .identity_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

@media (max-width: 768px) {
  .about-us-page .identity_layout {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.about-us-page .identity_text_side {
  padding-left: 24px
}

.about-us-page .identity_heading {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin: 0 0 24px;
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

@media (max-width: 1024px) {
  .about-us-page .identity_heading {
    font-size: 44px
  }
}

@media (max-width: 480px) {
  .about-us-page .identity_heading {
    font-size: 32px
  }
}

.about-us-page .identity_image_side {
  position: relative
}

.about-us-page .image_blur_frame {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 1px 12px 40px -2px #45808624
}

.about-us-page .image_blur_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 60%, transparent 100%);
  transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us-page .image_blur_frame:hover img {
  transform: scale(1.04)
}

.about-us-page .image_graphic_accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-radius: 36px;
  background: linear-gradient(31deg, #458086, #87B8AE);
  box-shadow: 1px 7px 22px -2px #4580861c;
  z-index: 1
}

.about-us-page .image_graphic_accent::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 2px solid #e2e9e84d
}

.about-us-page .divider_brush_one {
  margin: 0;
  padding: 0
}

.about-us-page .story_band {
  background: linear-gradient(31deg, #0f1e1f 0%, #162424 100%);
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative
}

.about-us-page .story_band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: linear-gradient(31deg, transparent, #45808612);
  border-radius: 36px 0 0 36px;
  pointer-events: none
}

.about-us-page .story_grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

@media (max-width: 768px) {
  .about-us-page .story_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.about-us-page .story_main_column h2 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 24px;
  color: #E2E9E8
}

@media (max-width: 768px) {
  .about-us-page .story_main_column h2 {
    font-size: 32px
  }
}

.about-us-page .story_paragraph {
  font-size: 19px;
  line-height: 1.9;
  color: #c8d8d6;
  margin: 0 0 16px
}

.about-us-page .story_side_column {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.about-us-page .stat_accent_block {
  background: #4580861a;
  border-radius: 36px;
  padding: 24px;
  border: 1px solid #87b8ae26;
  box-shadow: 1px 7px 22px -2px #4580861c;
  transition: border-color .38s ease-in-out, box-shadow .38s ease-in-out
}

.about-us-page .stat_accent_block:hover {
  border-color: #87b8ae59;
  box-shadow: 1px 12px 40px -2px #45808624
}

.about-us-page .stat_number {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: #458086;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 4px
}

.about-us-page .stat_number sup {
  font-size: 24px;
  line-height: 1.5;
  color: #87B8AE;
  margin-top: 8px
}

.about-us-page .stat_label {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 8px 0 0;
  letter-spacing: .04em
}

.about-us-page .mini_contrast_card {
  background: linear-gradient(31deg, #458086, #2a5a5f);
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 12px 40px -2px #45808624
}

.about-us-page .mini_contrast_card h5 {
  font-size: 16px;
  line-height: 1.5;
  color: #E2E9E8;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase
}

.about-us-page .mini_contrast_card p {
  font-size: 16px;
  line-height: 1.5;
  color: #e2e9e8d9;
  margin: 0
}

.about-us-page .divider_brush_two {
  margin: 0;
  padding: 0
}

.about-us-page .method_stage {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #120e0b
}

.about-us-page .method_layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start
}

@media (max-width: 1024px) {
  .about-us-page .method_layout {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

.about-us-page .method_image_panel {
  position: relative
}

.about-us-page .method_image_frame {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 1px 7px 22px -2px #4580861c;
  position: relative
}

.about-us-page .method_image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mask-image: radial-gradient(ellipse 78% 78% at 50% 48%, black 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 78% 78% at 50% 48%, black 55%, transparent 100%);
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us-page .method_image_frame:hover img {
  transform: scale(1.05)
}

.about-us-page .method_image_badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #120e0bd9;
  border: 1px solid #87b8ae40;
  border-radius: 36px;
  padding: 8px 16px;
  font-size: 16px;
  color: #87B8AE;
  letter-spacing: .06em;
  backdrop-filter: blur(6px)
}

.about-us-page .method_text_panel h2 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  color: #E2E9E8
}

@media (max-width: 768px) {
  .about-us-page .method_text_panel h2 {
    font-size: 32px
  }
}

.about-us-page .method_paragraph {
  font-size: 19px;
  line-height: 1.9;
  color: #c8d8d6;
  margin: 0 0 16px
}

.about-us-page .method_steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px
}

@media (max-width: 480px) {
  .about-us-page .method_steps {
    grid-template-columns: 1fr
  }
}

.about-us-page .step_item {
  background: #45808612;
  border-radius: 36px;
  padding: 24px;
  border: 1px solid #87b8ae1a;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
  overflow: hidden
}

.about-us-page .step_item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, #4580861f, transparent);
  border-radius: 36px;
  opacity: 0;
  transition: opacity .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us-page .step_item:hover::before {
  opacity: 1
}

.about-us-page .step_item:hover {
  border-color: #87b8ae47
}

.about-us-page .step_number {
  font-size: 32px;
  line-height: 1.1;
  color: #458086;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 8px
}

.about-us-page .step_description {
  font-size: 16px;
  line-height: 1.5;
  color: #c8d8d6;
  margin: 0
}

.about-us-page .divider_brush_three {
  margin: 0;
  padding: 0;
  background-color: #120e0b
}

.about-us-page .team_stage {
  background: linear-gradient(31deg, #0c1a1b 0%, #111a18 100%);
  padding-top: 48px;
  padding-bottom: 48px
}

.about-us-page .team_header_row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px
}

@media (max-width: 768px) {
  .about-us-page .team_header_row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px
  }
}

.about-us-page .team_header_row h2 {
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0;
  color: #E2E9E8
}

@media (max-width: 768px) {
  .about-us-page .team_header_row h2 {
    font-size: 32px
  }
}

.about-us-page .team_subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  max-width: 280px;
  margin: 0;
  text-align: right
}

@media (max-width: 768px) {
  .about-us-page .team_subtitle {
    text-align: left;
    max-width: 100%
  }
}

.about-us-page .team_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

@media (max-width: 1024px) {
  .about-us-page .team_grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 480px) {
  .about-us-page .team_grid {
    grid-template-columns: 1fr
  }
}

.about-us-page .person_card {
  background: #e2e9e80a;
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid #87b8ae1a;
  box-shadow: 1px 1px 3px -2px #45808612;
  transition: box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us-page .person_card:hover {
  box-shadow: 1px 12px 40px -2px #45808624;
  border-color: #87b8ae40
}

.about-us-page .person_image_wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative
}

.about-us-page .person_image_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.about-us-page .person_card:hover .person_image_wrap img {
  transform: scale(1.06)
}

.about-us-page .person_details {
  padding: 24px
}

.about-us-page .person_name {
  font-size: 19px;
  line-height: 1.5;
  color: #E2E9E8;
  font-weight: 700;
  margin: 0 0 8px
}

.about-us-page .person_role {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 0 0 8px;
  letter-spacing: .04em
}

.about-us-page .person_bio {
  font-size: 16px;
  line-height: 1.5;
  color: #a8bfbd;
  margin: 0
}

.about-us-page .team_extra_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px
}

@media (max-width: 768px) {
  .about-us-page .team_extra_row {
    grid-template-columns: 1fr
  }
}

.about-us-page .team_extra_image_card {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 1px 7px 22px -2px #4580861c;
  position: relative
}

.about-us-page .team_extra_image_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .38s ease-in-out
}

.about-us-page .team_extra_image_card:hover img {
  transform: scale(1.04)
}

.about-us-page .team_closing_text {
  border-radius: 36px;
  background: #45808614;
  border: 1px solid #87b8ae1f;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}

.about-us-page .team_closing_text h4 {
  font-size: 24px;
  line-height: 1.5;
  color: #E2E9E8;
  margin: 0
}

.about-us-page .team_closing_text p {
  font-size: 16px;
  line-height: 1.5;
  color: #a8bfbd;
  margin: 0
}

.about-us-page .contact_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #87B8AE;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  transition: color .35s ease-in-out
}

.about-us-page .contact_link::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: #87B8AE;
  transition: width .35s cubic-bezier(0.34, 1.2, 0.64, 1), background .35s ease-in-out
}

.about-us-page .contact_link:hover {
  color: #E2E9E8;
  text-shadow: 0 0 12px #87b8ae66
}

.about-us-page .contact_link:hover::after {
  width: 32px;
  background: #E2E9E8
}

.services_page {
  background: #1a1208;
  background: linear-gradient(31deg, #0e1a1a 0%, #111e1d 60%, #0d1615 100%);
  color: #E2E9E8;
  overflow-x: clip
}

.services_page .page_schema {
  display: none
}

.services_page .max_bound {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.services_page .overline_label {
  display: block;
  font-size: 16px;
  letter-spacing: .12em;
  color: #87B8AE;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px
}

.services_page .dash_divider {
  border: none;
  height: 2px;
  background: repeating-linear-gradient(90deg, #458086 0px, #458086 6px, transparent 6px, transparent 10px, #87B8AE 10px, #87B8AE 12px, transparent 12px, transparent 18px);
  margin: 48px 0;
  opacity: .45
}

.services_page .accent_number {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block
}

.services_page .accent_number_label {
  font-size: 16px;
  color: #87B8AE;
  line-height: 1.5;
  margin-top: 8px;
  display: block
}

.services_page .text_link_arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #87B8AE;
  text-decoration: none;
  padding: 16px 24px;
  border: 1px solid #458086;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 1px 7px 22px -2px #4580861c
}

.services_page .text_link_arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, #458086, #87B8AE);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1);
  z-index: 0
}

.services_page .text_link_arrow:hover::before {
  transform: translateX(0)
}

.services_page .text_link_arrow:hover {
  color: #0e1a1a;
  border-color: #87B8AE
}

.services_page .text_link_arrow span {
  position: relative;
  z-index: 1
}

.services_page .text_link_arrow svg {
  position: relative;
  z-index: 1;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.services_page .text_link_arrow:hover svg {
  transform: translateX(4px)
}

@keyframes border_pulse_once {
  0% {
    box-shadow: 0 0 0 0 #45808680
  }

  60% {
    box-shadow: 0 0 0 8px #45808600
  }

  100% {
    box-shadow: 0 0 0 0 #45808600
  }
}

.services_page .text_link_arrow:hover {
  animation: border_pulse_once .44s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.services_page .drop_bounce {
  animation: drop_and_bounce .45s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

@keyframes drop_and_bounce {
  0% {
    opacity: 0;
    transform: translateY(-18px)
  }

  70% {
    opacity: 1;
    transform: translateY(3px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

.services_page .type_reveal {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #87B8AE;
  width: 0;
  animation: type_in 1.8s steps(38, end) .3s forwards, blink_cursor .7s step-end .3s 5
}

@keyframes type_in {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes blink_cursor {

  0%,
  100% {
    border-color: #87B8AE
  }

  50% {
    border-color: transparent
  }
}

.services_page .title_block {
  padding: 48px 0 0;
  position: relative
}

.services_page .title_block .stripe_bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(31deg, transparent 0px, transparent 18px, #4580860a 18px, #4580860a 20px);
  pointer-events: none
}

.services_page .title_image_wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 420px;
  box-shadow: 1px 12px 40px -2px #45808624
}

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

.services_page .title_image_wrap .tint_overlay {
  position: absolute;
  inset: 0;
  background: #45808638;
  pointer-events: none
}

.services_page .title_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 48px
}

.services_page .title_text_zone h1 {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: #E2E9E8;
  margin: 16px 0 24px
}

.services_page .title_text_zone h1 strong {
  color: #458086;
  font-weight: 800
}

.services_page .title_text_zone p {
  font-size: 19px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 0 0 24px;
  max-width: 460px
}

.services_page .title_stat_row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 24px
}

.services_page .title_stat_item {
  display: flex;
  flex-direction: column
}

.services_page .title_stat_item .big_num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #458086
}

.services_page .title_stat_item .num_desc {
  font-size: 16px;
  color: #87B8AE;
  line-height: 1.5
}

.services_page .diagonal_section {
  position: relative;
  padding: 48px 0;
  background: linear-gradient(31deg, #0b2020 0%, #112828 100%);
  clip-path: none
}

.services_page .diagonal_section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #112a2a 0%, #112a2a 48%, #0d1e1e 48%, #0d1e1e 100%);
  pointer-events: none
}

.services_page .diagonal_section .max_bound {
  position: relative;
  z-index: 1
}

.services_page .services_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.services_page .service_card {
  background: #45808612;
  border: 1px solid #45808633;
  border-radius: 36px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 1px 7px 22px -2px #4580861c;
  transition: border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.services_page .service_card:hover {
  border-color: #458086;
  box-shadow: 1px 12px 40px -2px #45808624;
  animation: border_pulse_once .44s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.services_page .service_card .card_icon_wrap {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.services_page .service_card .card_icon_wrap svg {
  width: 32px;
  height: 32px
}

.services_page .service_card h4 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  color: #E2E9E8;
  margin: 0
}

.services_page .service_card p {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 0
}

.services_page .diagonal_section .section_heading {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #E2E9E8;
  margin: 8px 0 0
}

.services_page .diagonal_section .section_lead {
  font-size: 19px;
  line-height: 1.5;
  color: #87B8AE;
  max-width: 560px;
  margin: 16px 0 0
}

.services_page .detail_block {
  padding: 48px 0;
  background: #0e1a1a
}

.services_page .detail_two_col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start
}

.services_page .detail_main h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #E2E9E8;
  margin: 8px 0 24px
}

.services_page .detail_main p {
  font-size: 19px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 0 0 16px
}

.services_page .detail_main p strong {
  color: #458086;
  font-weight: 700
}

.services_page .pull_quote {
  border-radius: 36px;
  background: linear-gradient(31deg, #458086, #87B8AE);
  padding: 24px;
  margin: 24px 0;
  position: relative
}

.services_page .pull_quote .quotemark {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 900;
  color: #0e1a1a59;
  position: absolute;
  top: 8px;
  left: 24px;
  pointer-events: none
}

.services_page .pull_quote blockquote {
  margin: 0;
  padding: 16px 0 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  color: #0e1a1a
}

.services_page .checklist_progress {
  background: #45808617;
  border: 1px solid #45808638;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 1px 3px -2px #45808612
}

.services_page .checklist_progress h5 {
  font-size: 16px;
  font-weight: 700;
  color: #E2E9E8;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.services_page .progress_status {
  font-size: 16px;
  color: #87B8AE;
  margin-bottom: 16px
}

.services_page .progress_bar_track {
  height: 6px;
  background: #4580862e;
  border-radius: 0;
  margin-bottom: 16px;
  overflow: hidden
}

.services_page .progress_bar_fill {
  height: 100%;
  width: 71.4%;
  background: linear-gradient(31deg, #458086, #87B8AE);
  border-radius: 0;
  animation: fill_progress 1.2s cubic-bezier(0.34, 1.2, 0.64, 1) .5s both
}

@keyframes fill_progress {
  from {
    width: 0
  }

  to {
    width: 71.4%
  }
}

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

.services_page .checklist_items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE
}

.services_page .checklist_items li.done {
  color: #E2E9E8
}

.services_page .check_dot {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.services_page .detail_side_image {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 1px 12px 40px -2px #45808624
}

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

.services_page .side_stats_col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.services_page .side_stat_box {
  background: #45808612;
  border: 1px solid #4580862e;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 1px 1px 3px -2px #45808612
}

.services_page .competitor_block {
  padding: 48px 0;
  background: linear-gradient(31deg, #112828 0%, #0e1a1a 100%);
  position: relative
}

.services_page .competitor_block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(31deg, transparent 0px, transparent 22px, #87b8ae08 22px, #87b8ae08 24px);
  pointer-events: none
}

.services_page .competitor_block .max_bound {
  position: relative;
  z-index: 1
}

.services_page .competitor_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.services_page .competitor_image_side {
  position: relative
}

.services_page .competitor_image_frame {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 1px 12px 40px -2px #45808624
}

.services_page .competitor_image_frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.services_page .competitor_image_frame:hover img {
  transform: scale(1.04)
}

.services_page .floating_accent {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: linear-gradient(31deg, #458086, #87B8AE);
  border-radius: 36px;
  padding: 16px 24px;
  box-shadow: 1px 12px 40px -2px #45808624
}

.services_page .floating_accent .fa_num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #0e1a1a;
  display: block
}

.services_page .floating_accent .fa_label {
  font-size: 16px;
  color: #0e1a1a;
  line-height: 1.5;
  display: block
}

.services_page .competitor_text h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #E2E9E8;
  margin: 8px 0 24px
}

.services_page .competitor_text p {
  font-size: 19px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 0 0 16px
}

.services_page .competitor_text p strong {
  color: #458086;
  font-weight: 700
}

.services_page .method_steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px
}

.services_page .method_step {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.services_page .step_num {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #458086;
  flex-shrink: 0;
  width: 40px
}

.services_page .step_body h6 {
  font-size: 16px;
  font-weight: 700;
  color: #E2E9E8;
  margin: 0 0 8px;
  line-height: 1.5
}

.services_page .step_body p {
  font-size: 16px;
  line-height: 1.5;
  color: #87B8AE;
  margin: 0
}

.services_page a.glow_link {
  color: #87B8AE;
  text-decoration: underline;
  transition: text-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.services_page a.glow_link:hover {
  text-shadow: 0 0 12px #87b8ae99
}

@media (max-width: 1024px) {
  .services_page .title_grid {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .services_page .title_image_wrap {
    max-width: 100%
  }

  .services_page .services_grid {
    grid-template-columns: 1fr 1fr
  }

  .services_page .detail_two_col {
    grid-template-columns: 1fr
  }

  .services_page .competitor_layout {
    grid-template-columns: 1fr
  }

  .services_page .title_text_zone h1 {
    font-size: 44px
  }
}

@media (max-width: 768px) {
  .services_page .services_grid {
    grid-template-columns: 1fr
  }

  .services_page .title_stat_row {
    flex-direction: column;
    gap: 16px
  }

  .services_page .title_text_zone h1 {
    font-size: 32px
  }

  .services_page .diagonal_section .section_heading {
    font-size: 32px
  }

  .services_page .detail_main h2 {
    font-size: 32px
  }

  .services_page .competitor_text h2 {
    font-size: 32px
  }

  .services_page .type_reveal {
    white-space: normal;
    width: auto;
    animation: none;
    border-right: none
  }
}

@media (max-width: 480px) {
  .services_page .max_bound {
    padding-left: 16px;
    padding-right: 16px
  }

  .services_page .title_text_zone h1 {
    font-size: 32px
  }

  .services_page .accent_number {
    font-size: 44px
  }

  .services_page .pull_quote blockquote {
    font-size: 16px
  }
}

.learning-program {
  background: #1a120e;
  color: #E2E9E8;
  overflow-x: hidden
}

.learning-program .grain-overlay {
  position: relative
}

.learning-program .grain-overlay::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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  border-radius: 0
}

.learning-program .title_band {
  padding: 48px 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.learning-program .title_band .overline_label {
  display: block;
  font-size: 16px;
  letter-spacing: .12em;
  color: #87B8AE;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase
}

.learning-program .title_band .page_heading {
  font-size: 60px;
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 0 0 24px;
  background: linear-gradient(31deg, #87B8AE, #E2E9E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 700px
}

.learning-program .title_band .page_subtext {
  font-size: 19px;
  line-height: 1.5;
  color: #b8ccc9;
  max-width: 560px;
  margin: 0
}

.learning-program .title_divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(31deg, #458086, #87B8AE);
  border-radius: 36px;
  margin: 24px auto
}

.learning-program .programs_grid_area {
  padding: 48px 24px;
  max-width: 1100px;
  margin: 0 auto
}

.learning-program .programs_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.learning-program .program_card {
  background: #1e1510;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 1px 7px 22px -2px #4580861c;
  transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: flex;
  flex-direction: column;
  position: relative
}

.learning-program .program_card:hover {
  box-shadow: 1px 12px 40px -2px #45808624;
  transform: translateY(-4px)
}

.learning-program .program_card .card_image_box {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  max-height: 220px
}

.learning-program .program_card .card_image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.learning-program .program_card .card_badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #458086;
  color: #E2E9E8;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 36px;
  box-shadow: 1px 1px 3px -2px #45808612
}

.learning-program .program_card .card_body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1
}

.learning-program .program_card .card_meta_row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.learning-program .program_card .meta_chip {
  font-size: 16px;
  color: #87B8AE;
  font-weight: 600;
  background: #45808621;
  border-radius: 36px;
  padding: 8px 16px
}

.learning-program .program_card .seats_chip {
  font-size: 16px;
  color: #E2E9E8;
  opacity: .7
}

.learning-program .program_card .card_title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #E2E9E8;
  margin: 0;
  letter-spacing: -.01em
}

.learning-program .program_card .card_description {
  font-size: 16px;
  line-height: 1.5;
  color: #b8ccc9;
  margin: 0
}

.learning-program .program_card .card_price_row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
  border-top: 1px solid #87b8ae26;
  padding-top: 16px;
  margin-top: 8px
}

.learning-program .program_card .price_figure {
  font-size: 32px;
  font-weight: 800;
  color: #87B8AE;
  line-height: 1.1;
  letter-spacing: -.02em
}

.learning-program .program_card .price_note_text {
  font-size: 16px;
  color: #b8ccc9;
  line-height: 1.5
}

.learning-program .program_card .card_link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #E2E9E8;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 36px;
  background: #458086;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  transition: color .35s ease-in-out;
  align-self: flex-start
}

.learning-program .program_card .card_link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #87B8AE;
  transform: translateX(101%);
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-radius: 36px;
  z-index: 0
}

.learning-program .program_card .card_link:hover::after {
  transform: translateX(0)
}

.learning-program .program_card .card_link span {
  position: relative;
  z-index: 1
}

.learning-program .program_card .card_link:hover {
  color: #1a120e
}

.learning-program .program_card .duration_label {
  font-size: 16px;
  color: #87B8AE;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.learning-program .program_card .duration_label svg {
  flex-shrink: 0
}

.learning-program .info_strip {
  background: #E2E9E8;
  padding: 48px 24px
}

.learning-program .info_strip_inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

.learning-program .info_strip_lead .strip_overline {
  display: block;
  font-size: 16px;
  letter-spacing: .1em;
  color: #458086;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px
}

.learning-program .info_strip_lead .strip_heading {
  font-size: 32px;
  font-weight: 800;
  color: #1a120e;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -.01em
}

.learning-program .info_strip_lead .strip_body {
  font-size: 16px;
  line-height: 1.5;
  color: #2e2520;
  margin: 0
}

.learning-program .info_stat {
  border-top: 2px solid #458086;
  padding-top: 16px
}

.learning-program .info_stat .stat_value {
  font-size: 44px;
  font-weight: 800;
  color: #458086;
  line-height: 1.1;
  letter-spacing: -.02em
}

.learning-program .info_stat .stat_label {
  font-size: 16px;
  color: #2e2520;
  margin-top: 8px;
  line-height: 1.5
}

.learning-program .approach_area {
  padding: 48px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.learning-program .approach_image_side {
  position: relative
}

.learning-program .approach_image_side img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 36px;
  display: block;
  box-shadow: 1px 12px 40px -2px #45808624;
  filter: blur(0px)
}

.learning-program .approach_image_side .blur_plane {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, #1a120eb3, transparent);
  border-radius: 0 0 36px 36px;
  pointer-events: none
}

.learning-program .approach_text_side .section_overline {
  display: block;
  font-size: 16px;
  letter-spacing: .1em;
  color: #87B8AE;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px
}

.learning-program .approach_text_side .approach_heading {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  color: #E2E9E8;
  margin: 0 0 24px;
  letter-spacing: -.02em
}

.learning-program .approach_text_side .approach_body {
  font-size: 16px;
  line-height: 1.5;
  color: #b8ccc9;
  margin: 0 0 16px
}

.learning-program .approach_text_side .approach_body strong {
  color: #87B8AE;
  font-weight: 700
}

.learning-program .approach_text_side .approach_link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: #87B8AE;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
  position: relative;
  transition: color .35s ease-in-out
}

.learning-program .approach_text_side .approach_link:hover {
  color: #E2E9E8;
  text-shadow: 0 0 18px #87b8ae80
}

.learning-program .approach_text_side .approach_link svg {
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.learning-program .approach_text_side .approach_link:hover svg {
  transform: translateX(6px)
}

.learning-program .faq_area {
  background: #45808614;
  padding: 48px 24px
}

.learning-program .faq_inner {
  max-width: 1100px;
  margin: 0 auto
}

.learning-program .faq_inner .faq_overline {
  display: block;
  font-size: 16px;
  letter-spacing: .1em;
  color: #87B8AE;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px
}

.learning-program .faq_inner .faq_heading {
  font-size: 32px;
  font-weight: 800;
  color: #E2E9E8;
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: -.01em
}

.learning-program .faq_list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.learning-program .faq_item {
  background: #1e1510;
  border-radius: 36px;
  overflow: hidden
}

.learning-program .faq_item summary {
  font-size: 19px;
  font-weight: 600;
  color: #E2E9E8;
  padding: 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: color .35s ease-in-out
}

.learning-program .faq_item summary:hover {
  color: #87B8AE
}

.learning-program .faq_item summary::-webkit-details-marker {
  display: none
}

.learning-program .faq_item summary .faq_icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.learning-program .faq_item[open] summary .faq_icon {
  transform: rotate(45deg)
}

.learning-program .faq_item .faq_answer {
  padding: 0 24px 24px;
  font-size: 16px;
  line-height: 1.5;
  color: #b8ccc9
}

.learning-program .corner_bracket_box {
  position: relative;
  padding: 24px
}

.learning-program .corner_bracket_box::before,
.learning-program .corner_bracket_box::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none
}

.learning-program .corner_bracket_box::before {
  top: 0;
  left: 0;
  border-top: 2px solid #458086;
  border-left: 2px solid #458086
}

.learning-program .corner_bracket_box::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #458086;
  border-right: 2px solid #458086
}

@media (max-width: 1024px) {
  .learning-program .title_band .page_heading {
    font-size: 44px
  }

  .learning-program .programs_grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .learning-program .info_strip_inner {
    grid-template-columns: 1fr 1fr
  }

  .learning-program .approach_area {
    grid-template-columns: 1fr;
    gap: 24px
  }
}

@media (max-width: 768px) {
  .learning-program .title_band .page_heading {
    font-size: 32px
  }

  .learning-program .programs_grid {
    grid-template-columns: 1fr
  }

  .learning-program .info_strip_inner {
    grid-template-columns: 1fr
  }

  .learning-program .approach_area {
    grid-template-columns: 1fr
  }
}

@media (max-width: 480px) {
  .learning-program .title_band .page_heading {
    font-size: 24px
  }

  .learning-program .program_card .price_figure {
    font-size: 24px
  }

  .learning-program .approach_text_side .approach_heading {
    font-size: 32px
  }
}

.success_page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: #1a2e2e;
  background: linear-gradient(31deg, #1b2c2c 0%, #223535 60%, #2a3d3d 100%)
}

.success_page .success_card {
  max-width: 560px;
  width: 100%;
  background: linear-gradient(31deg, #1e3030 0%, #253a3a 100%);
  border-radius: 36px;
  padding: 48px;
  box-shadow: 1px 7px 22px -2px #4580861c 1px 12px 40px -2px #45808624;
  text-align: center;
  position: relative;
  border: 1px solid #87b8ae2e
}

.success_page .success_card .checkmark_wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 36px;
  background: linear-gradient(31deg, #458086, #87B8AE);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 1px 7px 22px -2px #45808624
}

.success_page .success_card .checkmark_wrapper svg {
  width: 36px;
  height: 36px;
  display: block
}

.success_page .success_card .success_overline {
  font-size: 16px;
  letter-spacing: .12em;
  color: #87B8AE;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.5
}

.success_page .success_card .success_heading {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #E2E9E8;
  margin: 0 0 16px
}

.success_page .success_card .success_body {
  font-size: 19px;
  line-height: 1.5;
  color: #e2e9e8bf;
  margin: 0 0 48px
}

.success_page .success_card .success_body strong {
  color: #87B8AE;
  font-weight: 700
}

.success_page .success_card .return_link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: #E2E9E8;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 36px;
  border: 1px solid #87b8ae4d;
  position: relative;
  overflow: hidden;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .38s ease-in-out
}

.success_page .success_card .return_link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(31deg, #458086, #87B8AE);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1);
  border-radius: 36px;
  z-index: 0
}

.success_page .success_card .return_link:hover::before {
  transform: translateX(0)
}

.success_page .success_card .return_link:hover {
  color: #1b2c2c;
  border-color: transparent
}

.success_page .success_card .return_link span,
.success_page .success_card .return_link svg {
  position: relative;
  z-index: 1
}

.success_page .success_card .return_link svg {
  width: 18px;
  height: 18px;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.success_page .success_card .return_link:hover svg {
  transform: translateX(-3px)
}

.success_page .success_card .divider_line {
  width: 48px;
  height: 2px;
  background: linear-gradient(31deg, #458086, #87B8AE);
  margin: 0 auto 24px;
  border-radius: 0
}

@media (max-width: 480px) {
  .success_page .success_card {
    padding: 24px
  }

  .success_page .success_card .success_heading {
    font-size: 24px
  }

  .success_page .success_card .success_body {
    font-size: 16px;
    margin-bottom: 24px
  }
}