html {
  box-sizing: border-box
}

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

body {
  margin: 0;
  padding: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%
}

:focus-visible {
  outline: 2px solid #1D5860;
  outline-offset: 3px
}

:focus:not(:focus-visible) {
  outline: none
}

.page-header {
  position: relative;
  background: linear-gradient(135deg, #1D5860 0%, #2a7080 55%, #69B9C9 100%);
  overflow: hidden
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent 0%, #FDFDFD 100%);
  pointer-events: none;
  z-index: 1
}

.page-header__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 120px;
  position: relative;
  z-index: 2
}

.page-header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  border-top: 2px solid #69b9c959;
  border-bottom: 2px solid #69b9c959;
  position: relative
}

.page-header__divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, #69b9c980 30%, #69b9c980 70%, transparent 100%);
  margin: 16px 0
}

.page-header__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 32px
}

.brand-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #FDFDFD;
  border-radius: 0;
  box-shadow: 0 3px 5px 1px #1d586014 0 7px 20px 1px #1d586014;
  padding: 4px;
  flex-shrink: 0
}

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

.brand-name {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FDFDFD;
  letter-spacing: .12em;
  margin-top: 8px;
  text-align: center;
  line-height: 1.1
}

.availability-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border: 1px solid #69b9c966;
  border-radius: 0;
  background: #69b9c91f;
  align-self: flex-end
}

.availability-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 32px;
  background-color: #69B9C9;
  flex-shrink: 0
}

.availability-badge__text {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #FDFDFD;
  letter-spacing: .06em;
  line-height: 1.55;
  white-space: nowrap
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  align-self: center
}

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center
}

.primary-nav__item {
  display: flex
}

.primary-nav__link {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fdfdfde0;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 0;
  border: 1px solid transparent;
  line-height: 1.55;
  letter-spacing: .04em;
  display: block;
  position: relative;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1), background-color .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.primary-nav__link::before,
.primary-nav__link::after {
  content: '';
  position: absolute;
  background-color: #69B9C9;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scaleX(0)
}

.primary-nav__link::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  transform-origin: left center
}

.primary-nav__link::after {
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  transform-origin: right center
}

.primary-nav__link:hover {
  color: #FDFDFD;
  border-color: #69b9c980;
  background-color: #69b9c926
}

.primary-nav__link:hover::before,
.primary-nav__link:hover::after {
  transform: scaleX(1)
}

.primary-nav__link[aria-current="page"] {
  color: #FDFDFD;
  border-color: #69b9c999;
  background-color: #69b9c933
}

@media (max-width: 960px) {
  .page-header__grid {
    grid-template-columns: auto 1px 1fr;
    min-height: 100px
  }

  .page-header__brand {
    padding: 16px
  }

  .page-header__right {
    padding: 16px
  }

  .availability-badge {
    display: none
  }

  .primary-nav__link {
    padding: 8px;
    font-size: 14px
  }
}

@media (max-width: 480px) {
  .page-header__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto
  }

  .page-header__divider {
    display: none
  }

  .page-header__brand {
    flex-direction: row;
    gap: 8px;
    padding: 16px;
    border-bottom: none;
    justify-content: flex-start
  }

  .brand-name {
    margin-top: 0
  }

  .page-header__right {
    padding: 0 16px 32px;
    justify-content: flex-start
  }

  .primary-nav__list {
    gap: 4px
  }
}

.page-footer {
  background: linear-gradient(180deg, #FDFDFD 0%, #e8f4f6 40%, #1D5860 100%);
  position: relative
}

.page-footer__upper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

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

.footer-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #FDFDFD;
  border-radius: 0;
  box-shadow: 0 7px 20px 1px #1d586014 0 9px 48px 1px #1d58601a;
  padding: 4px
}

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

.footer-brand__name {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1D5860;
  letter-spacing: .1em;
  line-height: 1.1
}

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px
}

.footer-contact-item__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer-contact-item__label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1D5860;
  line-height: 1.55
}

.footer-contact-item__link {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #1D5860;
  text-decoration: none;
  line-height: 1.55;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-contact-item__link:hover {
  color: #69B9C9
}

.page-footer__lower {
  border-top: 1px solid #69b9c94d;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.footer-legal-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px
}

.footer-legal-nav__link {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fdfdfdbf;
  text-decoration: none;
  line-height: 1.55;
  letter-spacing: .03em;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-legal-nav__link:hover {
  color: #FDFDFD
}

.footer-copyright {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #fdfdfda6;
  line-height: 1.55
}

@media (max-width: 960px) {
  .page-footer__upper {
    padding: 32px 16px
  }

  .page-footer__lower {
    padding: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center
  }
}

@media (max-width: 480px) {
  .footer-contact-row {
    flex-direction: column;
    gap: 16px;
    align-items: center
  }

  .footer-legal-nav {
    justify-content: center
  }
}

.cookie-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  background: #FDFDFD;
  border-bottom: 2px solid #69B9C9;
  box-shadow: 0 7px 20px 1px #1d586014;
  transform: translateY(-100%);
  transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1);
  display: none
}

.cookie-bar.cookie-bar--visible {
  transform: translateY(0)
}

.cookie-bar__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between
}

.cookie-bar__text-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 240px
}

.cookie-bar__headline {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1D5860;
  line-height: 1.1;
  letter-spacing: .04em
}

.cookie-bar__description {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2a7080;
  line-height: 1.55
}

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

.cookie-bar__accept {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1D5860;
  background: transparent;
  border: 2px solid #1D5860;
  border-radius: 0;
  padding: 8px 32px;
  cursor: pointer;
  letter-spacing: .06em;
  line-height: 1.55;
  position: relative;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), background-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.cookie-bar__accept:hover {
  background-color: #1D5860;
  color: #FDFDFD
}

.cookie-bar__accept:focus-visible {
  outline: 2px solid #69B9C9;
  outline-offset: 3px
}

.cookie-bar__decline {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2a7080;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
  text-decoration: underline;
  line-height: 1.55;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.cookie-bar__decline:hover {
  color: #1D5860
}

.cookie-bar__decline:focus-visible {
  outline: 2px solid #1D5860;
  outline-offset: 2px
}

.pref-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3900;
  display: none
}

.pref-tab__trigger {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FDFDFD;
  background: #1D5860;
  border: none;
  padding: 16px 8px;
  cursor: pointer;
  letter-spacing: .06em;
  border-radius: 0;
  box-shadow: 0 3px 5px 1px #1d586014;
  transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px
}

.pref-tab__trigger:hover {
  background-color: #2a7080
}

.pref-panel {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-100%);
  z-index: 3950;
  background: #FDFDFD;
  border: 1px solid #69B9C9;
  border-left: none;
  box-shadow: 0 9px 48px 1px #1d58601a;
  border-radius: 0;
  padding: 32px;
  width: 320px;
  display: none;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.pref-panel.pref-panel--open {
  transform: translateY(-50%) translateX(0)
}

.pref-panel__title {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1D5860;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: .04em
}

.pref-panel__option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px
}

.pref-panel__option label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #1D5860;
  line-height: 1.55;
  cursor: pointer
}

.pref-panel__option input[type="checkbox"] {
  accent-color: #1D5860;
  width: 16px;
  height: 16px;
  cursor: pointer
}

.pref-panel__save {
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FDFDFD;
  background: #1D5860;
  border: 2px solid #1D5860;
  border-radius: 0;
  padding: 8px 32px;
  cursor: pointer;
  margin-top: 16px;
  width: 100%;
  letter-spacing: .06em;
  line-height: 1.55;
  transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.pref-panel__save:hover {
  background-color: #2a7080;
  border-color: #2a7080
}

.pref-panel__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D5860;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.pref-panel__close:hover {
  color: #69B9C9
}

@media (max-width: 480px) {
  .cookie-bar__inner {
    padding: 16px
  }

  .pref-panel {
    width: 280px
  }
}

.policy-data {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px;
  color: #1D5860;
  line-height: 1.55
}

.policy-data h1 {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.5px;
  color: #1D5860;
  margin-bottom: 32px;
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #69B9C9
}

.policy-data h2 {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.25px;
  color: #1D5860;
  margin-top: 64px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid #69B9C9;
  border-bottom: 1px solid #69b9c94d;
  padding-bottom: 8px
}

.policy-data h3 {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1D5860;
  margin-top: 32px;
  margin-bottom: 8px;
  padding: 8px 16px;
  background-color: #69b9c91a;
  border-radius: 0;
  border-left: 3px solid #1D5860;
  border-bottom: 1px solid #1d586026
}

.policy-data h4 {
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .05em;
  color: #1D5860;
  margin-top: 32px;
  margin-bottom: 8px;
  font-weight: 700
}

.policy-data h5 {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1d5860cc;
  margin-top: 16px;
  margin-bottom: 4px;
  font-weight: 600
}

.policy-data h6 {
  font-size: 14px;
  line-height: 2;
  letter-spacing: .04em;
  color: #1d5860b3;
  margin-top: 16px;
  margin-bottom: 4px;
  font-weight: 600
}

.policy-data em,
.policy-data i {
  font-style: italic;
  color: #1d5860d9
}

.policy-data a {
  color: #1D5860;
  text-decoration: underline;
  text-decoration-color: #69B9C9;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .15s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-data a:hover {
  color: #69B9C9;
  text-decoration-color: #1D5860
}

.policy-data a:focus-visible {
  outline: 2px solid #69B9C9;
  outline-offset: 2px;
  border-radius: 0
}

.policy-data hr {
  border: none;
  border-top: 1px solid #69b9c959;
  margin: 64px 0;
  position: relative
}

.policy-data hr::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: #69B9C9;
  position: absolute;
  top: -2px;
  left: 0;
  border-radius: 0
}

.policy-data div {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860
}

.policy-data div+div {
  margin-top: 16px
}

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

  .policy-data h1 {
    font-size: 42px
  }

  .policy-data h2 {
    font-size: 42px;
    margin-top: 32px
  }
}

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

  .policy-data h1 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1.1
  }

  .policy-data h2 {
    font-size: clamp(20px, 6vw, 42px);
    margin-top: 32px;
    padding-left: 8px
  }

  .policy-data h3 {
    font-size: 14px;
    padding: 8px
  }

  .policy-data hr {
    margin: 32px 0
  }
}

.analytics-detail {
  max-width: 1440px;
  margin: 0 auto;
  background: #FDFDFD;
  overflow: hidden
}

.analytics-detail .article-lead {
  position: relative;
  padding: 64px 64px 32px;
  background: #1D5860;
  overflow: hidden
}

.analytics-detail .article-lead::before {
  content: '';
  position: absolute;
  top: -64px;
  right: -32px;
  width: 520px;
  height: 520px;
  border-radius: 32px;
  border: 2px solid #69b9c92e;
  transform: rotate(18deg);
  pointer-events: none
}

.analytics-detail .article-lead::after {
  content: '';
  position: absolute;
  top: 32px;
  right: 64px;
  width: 320px;
  height: 320px;
  border-radius: 32px;
  border: 1.5px solid #69b9c91a;
  transform: rotate(-8deg);
  pointer-events: none
}

.analytics-detail .lead-curve-one {
  position: absolute;
  bottom: -40px;
  left: 8%;
  width: 380px;
  height: 180px;
  border-top: 2px solid #69b9c921;
  border-radius: 32px 32px 0 0;
  pointer-events: none
}

.analytics-detail .lead-curve-two {
  position: absolute;
  bottom: -16px;
  left: 22%;
  width: 220px;
  height: 120px;
  border-top: 1.5px solid #69b9c917;
  border-radius: 32px 32px 0 0;
  pointer-events: none
}

.analytics-detail .lead-meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px
}

.analytics-detail .lead-category-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: 0;
  border: 1px solid #69b9c980;
  font-size: 14px;
  line-height: 2;
  letter-spacing: .08em;
  color: #69B9C9;
  text-transform: uppercase
}

.analytics-detail .lead-category-tag svg {
  flex-shrink: 0
}

.analytics-detail .lead-author-line {
  font-size: 14px;
  line-height: 2;
  color: #fdfdfd99;
  letter-spacing: .04em
}

.analytics-detail .lead-author-line span {
  color: #fdfdfde6
}

.analytics-detail .lead-columns {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start
}

.analytics-detail .lead-text-column {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.analytics-detail .lead-heading {
  font-size: 56px;
  line-height: 1.1;
  color: #FDFDFD;
  margin: 0;
  clip-path: inset(0 100% 0 0);
  animation: reveal-heading .28s cubic-bezier(0.0, 0, 0.2, 1) .08s forwards
}

@keyframes reveal-heading {
  to {
    clip-path: inset(0 0% 0 0)
  }
}

.analytics-detail .lead-heading .accent-bracket {
  color: #69B9C9
}

.analytics-detail .lead-summary {
  font-size: 15px;
  line-height: 1.55;
  color: #fdfdfdc7;
  max-width: 560px;
  clip-path: inset(0 100% 0 0);
  animation: reveal-heading .25s cubic-bezier(0.0, 0, 0.2, 1) .18s forwards
}

.analytics-detail .lead-image-column {
  position: relative;
  clip-path: inset(0 0 100% 0);
  animation: reveal-image .26s cubic-bezier(0.4, 0, 0.2, 1) .12s forwards
}

@keyframes reveal-image {
  to {
    clip-path: inset(0 0 0% 0)
  }
}

.analytics-detail .lead-image-wrap {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 9px 48px 1px #1d58601a
}

.analytics-detail .lead-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics-detail .lead-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(circle at top right, #1d58608c 0%, transparent 55%), radial-gradient(circle at bottom left, #1d586073 0%, transparent 50%);
  pointer-events: none
}

.analytics-detail .lead-image-wrap:hover img {
  transform: scale(1.03)
}

.analytics-detail .image-annotation-list {
  position: absolute;
  right: -32px;
  top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2
}

.analytics-detail .annotation-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #FDFDFD;
  border-radius: 32px;
  padding: 8px 16px;
  box-shadow: 0 7px 20px 1px #1d586014;
  min-width: 140px
}

.analytics-detail .annotation-number {
  font-size: 15px;
  line-height: 1.1;
  color: #1D5860;
  font-weight: 700
}

.analytics-detail .annotation-label {
  font-size: 14px;
  line-height: 1.55;
  color: #1d5860bf
}

.analytics-detail .lead-scallop {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 32px
}

.analytics-detail .lead-scallop svg {
  display: block;
  width: 100%
}

.analytics-detail .article-body {
  padding: 64px;
  background: #FDFDFD;
  position: relative
}

.analytics-detail .body-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto
}

.analytics-detail .body-text-column {
  min-width: 0
}

.analytics-detail .body-text-column p {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0 0 16px
}

.analytics-detail .body-text-column h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 32px 0 16px;
  background: linear-gradient(90deg, #1D5860 40%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.analytics-detail .body-text-column h4 {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  letter-spacing: .06em;
  margin: 32px 0 8px;
  text-transform: uppercase
}

.analytics-detail .body-text-column del {
  color: #69B9C9;
  text-decoration: line-through
}

.analytics-detail .body-text-column abbr {
  border-bottom: 1px dashed #1d586066;
  cursor: help;
  color: #1D5860
}

.analytics-detail .body-text-column blockquote {
  margin: 32px 0;
  padding: 16px 32px;
  border-left: 4px solid #69B9C9;
  border-radius: 0;
  background: #69b9c912;
  box-shadow: inset 0 3px 5px 1px #69b9c914
}

.analytics-detail .body-text-column blockquote p {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0 0 8px
}

.analytics-detail .body-text-column blockquote cite {
  font-size: 14px;
  line-height: 2;
  color: #1d586099;
  font-style: normal;
  letter-spacing: .04em
}

.analytics-detail .body-text-column table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
  line-height: 1.55;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #1d586014
}

.analytics-detail .body-text-column thead {
  background: #1D5860
}

.analytics-detail .body-text-column thead td,
.analytics-detail .body-text-column thead th {
  color: #FDFDFD;
  padding: 16px;
  font-size: 14px;
  letter-spacing: .05em
}

.analytics-detail .body-text-column td {
  padding: 16px;
  color: #1D5860;
  border-bottom: 1px solid #1d586014;
  vertical-align: top
}

.analytics-detail .body-text-column tr:last-child td {
  border-bottom: none
}

.analytics-detail .body-text-column tr:nth-child(even) {
  background: #69b9c90d
}

.analytics-detail .body-text-column details {
  margin: 16px 0;
  border: 1px solid #1d586026;
  border-radius: 32px;
  overflow: hidden
}

.analytics-detail .body-text-column summary {
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  cursor: pointer;
  background: #69b9c90f;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.analytics-detail .body-text-column summary:hover {
  background: #69b9c91f
}

.analytics-detail .body-text-column details[open] summary {
  border-bottom: 1px solid #1d58601a
}

.analytics-detail .body-text-column details> :not(summary) {
  padding: 16px 32px
}

.analytics-detail .body-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px
}

.analytics-detail .sidebar-card {
  background: #FDFDFD;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 7px 20px 1px #1d586014;
  border: 1px solid #1d586014
}

.analytics-detail .sidebar-card-label {
  font-size: 14px;
  line-height: 2;
  letter-spacing: .08em;
  color: #69B9C9;
  text-transform: uppercase;
  margin: 0 0 16px
}

.analytics-detail .sidebar-author-name {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0 0 8px
}

.analytics-detail .sidebar-author-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #1d5860a6;
  margin: 0
}

.analytics-detail .sidebar-cta-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 0;
  background: #1D5860;
  color: #FDFDFD;
  font-size: 15px;
  line-height: 1.55;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 5px 1px #1d586014
}

.analytics-detail .sidebar-cta-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #69B9C9;
  border-radius: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics-detail .sidebar-cta-link:hover::before {
  transform: scaleX(1)
}

.analytics-detail .sidebar-cta-link:hover {
  background: #1D5860;
  color: #69B9C9
}

.analytics-detail .sidebar-metric-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.analytics-detail .sidebar-metric-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1d586012
}

.analytics-detail .sidebar-metric-item:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.analytics-detail .metric-key {
  font-size: 14px;
  line-height: 1.55;
  color: #1d5860a6
}

.analytics-detail .metric-value {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860
}

.analytics-detail .sidebar-service-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  text-decoration: none;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics-detail .sidebar-service-link:hover {
  color: #69B9C9
}

.analytics-detail .sidebar-service-link svg {
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics-detail .sidebar-service-link:hover svg {
  transform: translateX(4px)
}

.analytics-detail .body-scallop-top {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 0
}

.analytics-detail .body-scallop-top svg {
  display: block;
  width: 100%
}

.analytics-detail .geo-pulse {
  position: absolute;
  right: 32px;
  top: 64px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  opacity: .12
}

.analytics-detail .geo-pulse-ring {
  fill: none;
  stroke: #1D5860;
  stroke-width: 1.5;
  animation: geo-expand 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  transform-origin: 60px 60px
}

.analytics-detail .geo-pulse-ring:nth-child(2) {
  animation-delay: .9s
}

.analytics-detail .geo-pulse-ring:nth-child(3) {
  animation-delay: 1.8s
}

@keyframes geo-expand {
  0% {
    transform: scale(0.6);
    opacity: 0
  }

  40% {
    opacity: 1
  }

  100% {
    transform: scale(1.4);
    opacity: 0
  }
}

@media (max-width: 960px) {
  .analytics-detail .article-lead {
    padding: 32px 32px 16px
  }

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

  .analytics-detail .lead-heading {
    font-size: 42px
  }

  .analytics-detail .image-annotation-list {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 16px
  }

  .analytics-detail .article-body {
    padding: 32px
  }

  .analytics-detail .body-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .analytics-detail .body-sidebar {
    position: static
  }

  .analytics-detail .geo-pulse {
    display: none
  }
}

@media (max-width: 480px) {
  .analytics-detail .article-lead {
    padding: 32px 16px 16px
  }

  .analytics-detail .lead-heading {
    font-size: 42px
  }

  .analytics-detail .lead-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .analytics-detail .article-body {
    padding: 32px 16px
  }
}

.analytics {
  background: #FDFDFD;
  overflow-x: clip;
  position: relative
}

.analytics .posts-grid-area {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px
}

.analytics .posts-grid-area .grid-label {
  font-size: 14px;
  letter-spacing: .12em;
  color: #1D5860;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.55
}

.analytics .posts-grid-area .grid-heading {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: 700px
}

.analytics .posts-grid-area .grid-heading .part-one {
  color: #1D5860
}

.analytics .posts-grid-area .grid-heading .part-two {
  background: linear-gradient(135deg, #1D5860, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.analytics .posts-grid-area .grid-description {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a50;
  max-width: 520px;
  margin: 0 0 64px
}

.analytics .posts-grid-area .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.analytics .posts-grid-area .post-card {
  background: #FDFDFD;
  border-radius: 32px;
  box-shadow: 0 7px 20px 1px #1d586014;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.analytics .posts-grid-area .post-card:hover {
  box-shadow: 0 9px 48px 1px #1d58601a;
  transform: translateY(-4px)
}

.analytics .posts-grid-area .post-card .card-image-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0
}

.analytics .posts-grid-area .post-card .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics .posts-grid-area .post-card:hover .card-image-wrap img {
  transform: scale(1.04)
}

.analytics .posts-grid-area .post-card .card-image-wrap .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, #1d586052 100%);
  pointer-events: none
}

.analytics .posts-grid-area .post-card .card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: inset 0 3px 5px 1px #1d586014
}

.analytics .posts-grid-area .post-card .card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.analytics .posts-grid-area .post-card .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 0;
  background: linear-gradient(135deg, #1D5860, #69B9C9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.analytics .posts-grid-area .post-card .author-avatar svg {
  width: 16px;
  height: 16px;
  fill: #FDFDFD
}

.analytics .posts-grid-area .post-card .author-name {
  font-size: 14px;
  line-height: 1.55;
  color: #69B9C9;
  letter-spacing: .06em
}

.analytics .posts-grid-area .post-card .card-title {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0 0 16px;
  font-weight: 700
}

.analytics .posts-grid-area .post-card .card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #2a4a50;
  margin: 0 0 32px;
  flex: 1
}

.analytics .posts-grid-area .post-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .04em;
  position: relative;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics .posts-grid-area .post-card .card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #69B9C9;
  transition: width .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.analytics .posts-grid-area .post-card .card-link:hover {
  color: #69B9C9
}

.analytics .posts-grid-area .post-card .card-link:hover::after {
  width: 100%
}

.analytics .posts-grid-area .post-card .card-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics .posts-grid-area .post-card .card-link:hover svg {
  transform: translateX(4px)
}

.analytics .about-strip {
  background: #1D5860;
  position: relative;
  overflow: hidden
}

.analytics .about-strip .noise-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px
}

.analytics .about-strip .strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1
}

.analytics .about-strip .strip-label {
  font-size: 14px;
  letter-spacing: .12em;
  color: #69B9C9;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.55
}

.analytics .about-strip .strip-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #FDFDFD, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.analytics .about-strip .strip-text {
  font-size: 15px;
  line-height: 1.55;
  color: #fdfdfdcc;
  margin: 0
}

.analytics .about-strip .strip-aside {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.analytics .about-strip .metric-item {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.analytics .about-strip .metric-number {
  font-size: 42px;
  line-height: 1.1;
  color: #FDFDFD;
  font-weight: 700
}

.analytics .about-strip .metric-label {
  font-size: 14px;
  line-height: 1.55;
  color: #fdfdfda6;
  letter-spacing: .06em
}

.analytics .about-strip .metric-bar-track {
  height: 2px;
  background: #fdfdfd26;
  border-radius: 0;
  position: relative;
  overflow: hidden
}

.analytics .about-strip .metric-bar-fill {
  height: 100%;
  background: #69B9C9;
  border-radius: 0
}

.analytics .about-strip .decorative-strokes {
  position: absolute;
  top: 32px;
  right: 64px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: .18;
  pointer-events: none
}

.analytics .about-strip .decorative-strokes span {
  display: block;
  height: 2px;
  background: #69B9C9;
  border-radius: 0
}

.analytics .features-band {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px
}

.analytics .features-band .band-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px
}

.analytics .features-band .band-label {
  font-size: 14px;
  letter-spacing: .12em;
  color: #69B9C9;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.55
}

.analytics .features-band .band-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0
}

.analytics .features-band .band-heading .part-one {
  color: #1D5860
}

.analytics .features-band .band-heading .part-two {
  background: linear-gradient(135deg, #1D5860, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.analytics .features-band .band-intro {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a50;
  margin: 0;
  align-self: center
}

.analytics .features-band .category-group {
  margin-bottom: 32px
}

.analytics .features-band .category-group:last-child {
  margin-bottom: 0
}

.analytics .features-band .category-name {
  font-size: 14px;
  letter-spacing: .1em;
  color: #1D5860;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1d586026;
  border-left: 3px solid #69B9C9;
  padding-left: 16px
}

.analytics .features-band .feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.analytics .features-band .feature-list li {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a50;
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.analytics .features-band .feature-list li .feat-dot {
  width: 6px;
  height: 6px;
  background: #69B9C9;
  border-radius: 0;
  flex-shrink: 0;
  margin-top: 9px
}

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

.analytics .contact-row {
  background: linear-gradient(135deg, #1d58600f, #69b9c914);
  border-top: 1px solid #1d58601f
}

.analytics .contact-row .contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center
}

.analytics .contact-row .contact-label {
  font-size: 14px;
  letter-spacing: .12em;
  color: #69B9C9;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.55
}

.analytics .contact-row .contact-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px
}

.analytics .contact-row .contact-heading .part-one {
  color: #1D5860
}

.analytics .contact-row .contact-heading .part-two {
  background: linear-gradient(135deg, #1D5860, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.analytics .contact-row .contact-body {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a50;
  margin: 0
}

.analytics .contact-row .contact-form {
  background: #FDFDFD;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 7px 20px 1px #1d586014;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.analytics .contact-row .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.analytics .contact-row .form-field label {
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  font-weight: 600;
  letter-spacing: .04em
}

.analytics .contact-row .input-wrap {
  position: relative;
  display: flex;
  align-items: center
}

.analytics .contact-row .input-wrap svg {
  position: absolute;
  left: 16px;
  width: 15px;
  height: 15px;
  stroke: #69B9C9;
  fill: none;
  pointer-events: none;
  flex-shrink: 0
}

.analytics .contact-row .input-wrap input,
.analytics .contact-row .input-wrap textarea {
  width: 100%;
  padding: 16px 16px 16px 40px;
  border: 1px solid #1d586033;
  border-radius: 0;
  background: #1d586008;
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  outline: none;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box
}

.analytics .contact-row .input-wrap textarea {
  resize: vertical;
  min-height: 100px
}

.analytics .contact-row .input-wrap input::placeholder,
.analytics .contact-row .input-wrap textarea::placeholder {
  color: #1d586066
}

.analytics .contact-row .input-wrap input:focus,
.analytics .contact-row .input-wrap textarea:focus {
  border-color: #69B9C9;
  box-shadow: 0 3px 5px 1px #69b9c914
}

.analytics .contact-row .submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #1D5860;
  color: #FDFDFD;
  border: 2px solid #1D5860;
  border-radius: 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics .contact-row .submit-button::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #69B9C9;
  border-radius: 0;
  transform: scale(0.92);
  opacity: 0;
  transition: transform .22s cubic-bezier(0.0, 0, 0.2, 1), opacity .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.analytics .contact-row .submit-button:hover {
  background: #FDFDFD;
  color: #1D5860
}

.analytics .contact-row .submit-button:hover::before {
  transform: scale(1);
  opacity: 1
}

.analytics .contact-row .submit-button svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.analytics .contact-row .submit-button:hover svg {
  transform: translateX(4px)
}

.analytics .section-divider {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  gap: 16px
}

.analytics .section-divider .divider-line {
  flex: 1;
  height: 1px;
  background: #1d58601f;
  position: relative
}

.analytics .section-divider .divider-line::before,
.analytics .section-divider .divider-line::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background: #1d586040
}

.analytics .section-divider .divider-line::before {
  left: 20%
}

.analytics .section-divider .divider-line::after {
  left: 60%
}

.analytics .section-divider .divider-dot {
  width: 6px;
  height: 6px;
  background: #69B9C9;
  border-radius: 0;
  flex-shrink: 0
}

@keyframes bg-pan-up {
  0% {
    background-position: center 60%
  }

  100% {
    background-position: center 30%
  }
}

@media (max-width: 960px) {
  .analytics .posts-grid-area {
    padding: 64px 32px
  }

  .analytics .posts-grid-area .card-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .analytics .posts-grid-area .grid-heading {
    font-size: 42px
  }

  .analytics .about-strip .strip-inner {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    gap: 32px
  }

  .analytics .features-band {
    padding: 64px 32px
  }

  .analytics .features-band .band-top {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .analytics .features-band .features-columns {
    grid-template-columns: repeat(2, 1fr)
  }

  .analytics .contact-row .contact-inner {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    gap: 32px
  }

  .analytics .section-divider {
    padding: 0 32px
  }
}

@media (max-width: 480px) {
  .analytics .posts-grid-area {
    padding: 32px 16px
  }

  .analytics .posts-grid-area .card-grid {
    grid-template-columns: 1fr
  }

  .analytics .posts-grid-area .grid-heading {
    font-size: 42px
  }

  .analytics .about-strip .strip-inner {
    padding: 32px 16px
  }

  .analytics .about-strip .strip-heading {
    font-size: 42px
  }

  .analytics .features-band {
    padding: 32px 16px
  }

  .analytics .features-band .band-heading {
    font-size: 42px
  }

  .analytics .features-band .features-columns {
    grid-template-columns: 1fr
  }

  .analytics .contact-row .contact-inner {
    padding: 32px 16px
  }

  .analytics .contact-row .contact-heading {
    font-size: 42px
  }

  .analytics .section-divider {
    padding: 0 16px
  }
}

.launch-page {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
  background: #FDFDFD
}

.launch-page .dotted-divider {
  border: none;
  border-top: 2px dotted #1d58602e;
  margin: 0
}

.launch-page .opening-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative
}

.launch-page .opening-image-side {
  position: relative;
  overflow: hidden;
  min-height: 560px
}

.launch-page .opening-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) contrast(1.05)
}

.launch-page .opening-image-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, #69b9c938 0%, transparent 65%), linear-gradient(to right, #1d586061 0%, transparent 60%);
  pointer-events: none
}

.launch-page .opening-curves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.launch-page .opening-curves svg {
  width: 100%;
  height: 100%
}

.launch-page .opening-text-side {
  background: #FDFDFD;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative
}

.launch-page .opening-label {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .12em;
  color: #69B9C9;
  text-transform: uppercase
}

.launch-page .opening-heading {
  font-size: 56px;
  line-height: 1.1;
  margin: 0
}

.launch-page .opening-heading .part-primary {
  color: #1D5860
}

.launch-page .opening-heading .part-accent {
  background: linear-gradient(135deg, #1D5860, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.launch-page .opening-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a50;
  max-width: 440px;
  margin: 0
}

.launch-page .opening-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1D5860;
  color: #FDFDFD;
  font-size: 15px;
  line-height: 1.55;
  padding: 16px 32px;
  border-radius: 0;
  border: 2px solid #1D5860;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  text-decoration: none
}

.launch-page .opening-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #69B9C9;
  border-radius: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.launch-page .opening-cta:hover::before {
  clip-path: inset(0 0% 0 0)
}

.launch-page .opening-cta:hover {
  background: #FDFDFD;
  color: #1D5860
}

.launch-page .pattern-section {
  background: linear-gradient(160deg, #1d58600a 0%, #69b9c912 100%);
  padding: 64px;
  position: relative
}

.launch-page .pattern-section::before {
  content: '';
  position: absolute;
  top: 32px;
  right: 64px;
  width: 180px;
  height: 180px;
  border: 1.5px solid #69b9c933;
  border-radius: 32px;
  animation: geo-pulse 5s ease-in-out infinite;
  pointer-events: none
}

.launch-page .pattern-section::after {
  content: '';
  position: absolute;
  top: 48px;
  right: 80px;
  width: 148px;
  height: 148px;
  border: 1.5px solid #1d58601f;
  border-radius: 32px;
  animation: geo-pulse 5s ease-in-out infinite 1.2s;
  pointer-events: none
}

@keyframes geo-pulse {

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

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

.launch-page .pattern-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px
}

.launch-page .pattern-label-col {
  padding-top: 8px
}

.launch-page .pattern-eyebrow {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .1em;
  color: #69B9C9;
  text-transform: uppercase;
  margin: 0 0 16px
}

.launch-page .pattern-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(125deg, #1D5860 30%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.launch-page .pattern-cards {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.launch-page .pattern-card {
  background: #FDFDFD;
  border-radius: 32px;
  padding: 32px;
  box-shadow: inset 0 3px 5px 1px #1d58600f 0 7px 20px 1px #1d586014;
  border-top: 3px solid #69b9c959;
  transition: box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch-page .pattern-card:hover {
  box-shadow: inset 0 3px 5px 1px #1d58600f 0 9px 48px 1px #1d58601a;
  border-color: #69b9c9b3
}

.launch-page .pattern-card-name {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .08em;
  color: #69B9C9;
  text-transform: uppercase;
  margin: 0 0 8px
}

.launch-page .pattern-card-text {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0
}

.launch-page .audience-section {
  padding: 64px;
  background: #FDFDFD
}

.launch-page .audience-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start
}

.launch-page .audience-featured {
  grid-column: 1;
  background: #1D5860;
  border-radius: 32px;
  padding: 32px;
  color: #FDFDFD;
  box-shadow: 0 9px 48px 1px #1d58601a;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch
}

.launch-page .audience-featured-label {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .1em;
  color: #69B9C9;
  text-transform: uppercase
}

.launch-page .audience-featured-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
  color: #FDFDFD
}

.launch-page .audience-featured-text {
  font-size: 15px;
  line-height: 1.55;
  color: #fdfdfdd1;
  margin: 0
}

.launch-page .audience-cards-group {
  grid-column: 2 / 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.launch-page .audience-card {
  background: #FDFDFD;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 7px 20px 1px #69b9c914;
  border: 1.5px solid #69b9c938;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch-page .audience-card:hover {
  border-color: #69B9C9;
  box-shadow: 0 9px 48px 1px #69b9c91a
}

.launch-page .audience-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px
}

.launch-page .audience-card-heading {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0;
  font-weight: 700
}

.launch-page .audience-card-text {
  font-size: 14px;
  line-height: 1.55;
  color: #2a4a50;
  margin: 0
}

.launch-page .readiness-section {
  background: #132e33;
  padding: 64px;
  position: relative;
  overflow: hidden
}

.launch-page .readiness-bg-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.launch-page .readiness-bg-anim svg {
  width: 100%;
  height: 100%;
  animation: grad-shift 12s linear infinite
}

@keyframes grad-shift {
  0% {
    transform: rotate(0deg) scale(1.1)
  }

  100% {
    transform: rotate(360deg) scale(1.1)
  }
}

.launch-page .readiness-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto
}

.launch-page .readiness-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 32px;
  background: linear-gradient(110deg, #FDFDFD 40%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center
}

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

.launch-page .readiness-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  padding: 32px;
  background: #69b9c912;
  border-radius: 32px;
  border: 1.5px solid #69b9c926;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.launch-page .readiness-item:hover {
  background: #69b9c921;
  border-color: #69b9c961
}

.launch-page .readiness-num {
  font-size: 42px;
  line-height: 1.1;
  color: #69b9c959;
  font-weight: 700;
  text-align: right
}

.launch-page .readiness-text-col {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.launch-page .readiness-item-heading {
  font-size: 15px;
  line-height: 1.55;
  color: #FDFDFD;
  margin: 0;
  font-weight: 700
}

.launch-page .readiness-item-text {
  font-size: 14px;
  line-height: 1.55;
  color: #fdfdfdb8;
  margin: 0
}

.launch-page .situations-section {
  padding: 64px;
  background: linear-gradient(175deg, #69b9c90f 0%, #1d58600a 100%);
  position: relative
}

.launch-page .situations-section::before {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 48px;
  width: 120px;
  height: 120px;
  border: 1.5px solid #69b9c92e;
  border-radius: 32px;
  animation: geo-pulse 6s ease-in-out infinite .8s;
  pointer-events: none
}

.launch-page .situations-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 32px
}

.launch-page .situations-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(130deg, #1D5860 20%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.launch-page .situations-intro {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a50;
  margin: 0
}

.launch-page .situations-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.launch-page .situations-image-wrap {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #1d586014;
  position: relative
}

.launch-page .situations-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch-page .situations-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, #1d586073 100%);
  pointer-events: none
}

.launch-page .situations-image-wrap:hover img {
  transform: scale(1.03)
}

.launch-page .situations-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.launch-page .situations-tag {
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  background: #69b9c91f;
  border: 1.5px solid #69b9c94d;
  border-radius: 32px;
  padding: 4px 16px;
  transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch-page .situations-tag:hover {
  background: #69b9c940;
  border-color: #69B9C9
}

.launch-page .example-section {
  padding: 64px;
  background: #FDFDFD
}

.launch-page .example-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.launch-page .example-image-side {
  position: relative
}

.launch-page .example-image-wrap {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 9px 48px 1px #1d58601a
}

.launch-page .example-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block
}

.launch-page .example-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 35%, #1d586066 100%);
  pointer-events: none;
  border-radius: 32px
}

.launch-page .example-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: #1D5860;
  color: #FDFDFD;
  font-size: 14px;
  line-height: 1.55;
  padding: 8px 16px;
  border-radius: 32px;
  letter-spacing: .06em;
  box-shadow: 0 7px 20px 1px #1d586014
}

.launch-page .example-text-side {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.launch-page .example-eyebrow {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .1em;
  color: #69B9C9;
  text-transform: uppercase;
  margin: 0
}

.launch-page .example-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(120deg, #1D5860 25%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.launch-page .example-body {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a50;
  margin: 0
}

.launch-page .example-progress-label {
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: .06em
}

.launch-page .progress-bar-segmented {
  display: flex;
  gap: 4px
}

.launch-page .progress-segment {
  height: 8px;
  flex: 1;
  background: #69b9c92e;
  border-radius: 0;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch-page .progress-segment.filled {
  background: #1D5860
}

.launch-page .progress-segment.filled-mid {
  background: #69B9C9
}

.launch-page .example-detail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0
}

.launch-page .example-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #2a4a50
}

.launch-page .example-detail-dot {
  width: 6px;
  height: 6px;
  background: #69B9C9;
  border-radius: 0;
  margin-top: 8px;
  flex-shrink: 0
}

.launch-page .evidence-section {
  background: linear-gradient(168deg, #1d58600d 0%, #69b9c917 100%);
  padding: 64px;
  position: relative
}

.launch-page .evidence-section::after {
  content: '';
  position: absolute;
  top: 48px;
  right: 120px;
  width: 200px;
  height: 200px;
  border: 1.5px solid #1d58601a;
  border-radius: 32px;
  animation: geo-pulse 7s ease-in-out infinite 2s;
  pointer-events: none
}

.launch-page .evidence-top {
  max-width: 640px;
  margin-bottom: 64px
}

.launch-page .evidence-eyebrow {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .1em;
  color: #69B9C9;
  text-transform: uppercase;
  margin: 0 0 16px
}

.launch-page .evidence-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 16px;
  background: linear-gradient(115deg, #1D5860 30%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.launch-page .evidence-intro {
  font-size: 15px;
  line-height: 1.55;
  color: #2a4a50;
  margin: 0
}

.launch-page .evidence-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px
}

.launch-page .evidence-metric {
  background: #FDFDFD;
  border-radius: 32px;
  padding: 32px;
  box-shadow: inset 0 3px 5px 1px #1d58600f 0 7px 20px 1px #69b9c914;
  border-bottom: 3px solid #69b9c94d;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.launch-page .evidence-metric:hover {
  box-shadow: inset 0 3px 5px 1px #1d58600f 0 9px 48px 1px #1d58601a;
  border-color: #69B9C9
}

.launch-page .evidence-metric-value {
  font-size: 42px;
  line-height: 1.1;
  color: #1D5860;
  font-weight: 700
}

.launch-page .evidence-metric-label {
  font-size: 14px;
  line-height: 1.55;
  color: #2a4a50
}

.launch-page .evidence-metric-sub {
  font-size: 14px;
  line-height: 1.55;
  color: #1d586080
}

.launch-page .evidence-stories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.launch-page .evidence-story {
  background: #FDFDFD;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 7px 20px 1px #1d586014;
  border-left: 4px solid #69B9C9;
  border-top: 1.5px solid #69b9c933;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-left-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch-page .evidence-story:hover {
  border-left-color: #1D5860;
  box-shadow: 0 9px 48px 1px #1d58601a
}

.launch-page .evidence-story-name {
  font-size: 14px;
  line-height: 1.55;
  color: #69B9C9;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0
}

.launch-page .evidence-story-text {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0
}

.launch-page .evidence-story-context {
  font-size: 14px;
  line-height: 1.55;
  color: #2a4a50;
  margin: 0
}

@media (max-width: 960px) {
  .launch-page .opening-row {
    grid-template-columns: 1fr
  }

  .launch-page .opening-image-side {
    min-height: 320px
  }

  .launch-page .opening-text-side {
    padding: 32px
  }

  .launch-page .opening-heading {
    font-size: clamp(32px, 6vw, 56px)
  }

  .launch-page .pattern-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .launch-page .pattern-section {
    padding: 32px
  }

  .launch-page .audience-layout {
    grid-template-columns: 1fr
  }

  .launch-page .audience-featured {
    grid-column: 1
  }

  .launch-page .audience-cards-group {
    grid-column: 1;
    grid-template-columns: 1fr 1fr
  }

  .launch-page .audience-section {
    padding: 32px
  }

  .launch-page .readiness-section {
    padding: 32px
  }

  .launch-page .situations-section {
    padding: 32px
  }

  .launch-page .situations-top {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .launch-page .situations-image-row {
    grid-template-columns: 1fr
  }

  .launch-page .example-section {
    padding: 32px
  }

  .launch-page .example-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .launch-page .evidence-section {
    padding: 32px
  }

  .launch-page .evidence-metrics {
    grid-template-columns: 1fr 1fr
  }

  .launch-page .evidence-stories {
    grid-template-columns: 1fr
  }

  .launch-page .pattern-heading,
  .launch-page .audience-featured-heading,
  .launch-page .readiness-heading,
  .launch-page .situations-heading,
  .launch-page .example-heading,
  .launch-page .evidence-heading {
    font-size: clamp(28px, 5vw, 42px)
  }
}

@media (max-width: 480px) {
  .launch-page .opening-text-side {
    padding: 16px;
    gap: 16px
  }

  .launch-page .opening-heading {
    font-size: 32px
  }

  .launch-page .pattern-section,
  .launch-page .audience-section,
  .launch-page .readiness-section,
  .launch-page .situations-section,
  .launch-page .example-section,
  .launch-page .evidence-section {
    padding: 16px
  }

  .launch-page .audience-cards-group {
    grid-template-columns: 1fr
  }

  .launch-page .evidence-metrics {
    grid-template-columns: 1fr
  }

  .launch-page .situations-image-wrap img {
    height: 220px
  }

  .launch-page .example-image-wrap img {
    height: 260px
  }
}

@media (min-width: 1440px) {
  .launch-page .opening-image-side {
    min-height: 640px
  }
}

.services-root {
  max-width: 1440px;
  margin: 0 auto;
  background: #FDFDFD;
  overflow: hidden
}

.services-root .clip-reveal {
  clip-path: inset(0 100% 0 0);
  animation: clip-expand .85s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

@keyframes clip-expand {
  to {
    clip-path: inset(0 0% 0 0)
  }
}

.services-root .fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fade-up-in .6s cubic-bezier(0.4, 0, 0.2, 1) .2s forwards
}

@keyframes fade-up-in {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.services-root .fade-up-delayed {
  opacity: 0;
  transform: translateY(24px);
  animation: fade-up-in .7s cubic-bezier(0.4, 0, 0.2, 1) .45s forwards
}

.services-root .fade-up-slow {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up-in .75s cubic-bezier(0.4, 0, 0.2, 1) .65s forwards
}

.services-root .title-block {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  padding-top: 64px;
  padding-bottom: 32px;
  position: relative
}

.services-root .title-block .image-column {
  position: relative;
  min-height: 520px
}

.services-root .title-block .image-column .image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0 32px 32px 0
}

.services-root .title-block .image-column .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block
}

.services-root .title-block .image-column .image-frame .image-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent, #1D5860 88%);
  pointer-events: none
}

.services-root .title-block .image-column .atmosphere-spot {
  position: absolute;
  border-radius: 32px;
  pointer-events: none;
  z-index: 0
}

.services-root .title-block .image-column .atmosphere-spot.spot-a {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at top right, #69b9c92e, transparent 70%);
  top: -32px;
  right: 16px;
  filter: blur(32px)
}

.services-root .title-block .image-column .atmosphere-spot.spot-b {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, #1d58601f, transparent 70%);
  bottom: 32px;
  left: 8px;
  filter: blur(24px)
}

.services-root .title-block .text-column {
  padding: 64px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  position: relative
}

.services-root .title-block .text-column .corner-bracket {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 32px;
  height: 32px;
  border-top: 2px solid #69B9C9;
  border-right: 2px solid #69B9C9;
  border-radius: 0 8px 0 0;
  pointer-events: none
}

.services-root .title-block .text-column .corner-bracket-bottom {
  position: absolute;
  bottom: 16px;
  left: 64px;
  width: 24px;
  height: 24px;
  border-bottom: 2px solid #1d586040;
  border-left: 2px solid #1d586040;
  pointer-events: none
}

.services-root .title-block .text-column .label-tag {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .12em;
  color: #69B9C9;
  text-transform: uppercase
}

.services-root .title-block .text-column h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 0;
  color: #1D5860
}

.services-root .title-block .text-column h1 .accent-word {
  background: linear-gradient(90deg, #1D5860, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.services-root .title-block .text-column h1 .accent-punct {
  color: #69B9C9;
  -webkit-text-fill-color: #69B9C9
}

.services-root .title-block .text-column .lead-text {
  font-size: 15px;
  line-height: 1.55;
  color: #2c5f66;
  max-width: 480px;
  margin: 0
}

.services-root .title-block .text-column .stat-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 16px
}

.services-root .title-block .text-column .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.services-root .title-block .text-column .stat-item .stat-number {
  font-size: 42px;
  line-height: 1.1;
  color: #1D5860;
  font-weight: 700
}

.services-root .title-block .text-column .stat-item .stat-label {
  font-size: 14px;
  line-height: 1.55;
  color: #69B9C9;
  letter-spacing: .06em
}

.services-root .divider-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 32px 64px
}

.services-root .divider-text .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #69B9C9, transparent)
}

.services-root .divider-text .word {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .14em;
  color: #69B9C9;
  text-transform: uppercase
}

.services-root .service-detail {
  padding: 64px;
  background: linear-gradient(135deg, #1d58600a 0%, #69b9c90f 100%);
  position: relative
}

.services-root .service-detail .bracket-decoration {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 28px;
  height: 28px;
  border-top: 2px solid #1d586033;
  border-left: 2px solid #1d586033;
  pointer-events: none
}

.services-root .service-detail .bracket-decoration-right {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid #69b9c94d;
  border-right: 2px solid #69b9c94d;
  pointer-events: none
}

.services-root .service-detail .detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto
}

.services-root .service-detail .detail-grid .left-column {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.services-root .service-detail .detail-grid .right-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 64px
}

.services-root .service-detail .section-label {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .12em;
  color: #1D5860;
  text-transform: uppercase
}

.services-root .service-detail h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(90deg, #1D5860 30%, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.services-root .service-detail .body-text {
  font-size: 15px;
  line-height: 1.55;
  color: #2c5f66;
  margin: 0
}

.services-root .service-detail .service-card {
  background: #FDFDFD;
  border-radius: 32px;
  padding: 32px;
  box-shadow: inset 0 3px 5px 1px #1d58600d 0 7px 20px 1px #1d586014;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  border: 1px solid #69b9c926;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.services-root .service-detail .service-card:hover {
  box-shadow: inset 0 3px 5px 1px #1d58600a 0 9px 48px 1px #1d58601a;
  border-color: #69b9c959
}

.services-root .service-detail .service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.services-root .service-detail .service-card .card-icon svg {
  width: 32px;
  height: 32px
}

.services-root .service-detail .service-card h4 {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0
}

.services-root .service-detail .service-card .card-text {
  font-size: 14px;
  line-height: 1.55;
  color: #3d7a82;
  margin: 0
}

.services-root .service-detail .image-preview-block {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #1d586014
}

.services-root .service-detail .image-preview-block img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block
}

.services-root .service-detail .image-preview-block .overlay-reveal {
  position: absolute;
  inset: 0;
  background: #1d5860b8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  opacity: 1;
  transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 32px
}

.services-root .service-detail .image-preview-block:hover .overlay-reveal {
  opacity: 0;
  pointer-events: none
}

.services-root .service-detail .image-preview-block .overlay-reveal .reveal-label {
  font-size: 15px;
  line-height: 1.55;
  color: #FDFDFD;
  text-align: center;
  letter-spacing: .04em
}

.services-root .service-detail .image-preview-block .overlay-reveal .reveal-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #69b9c999;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center
}

.services-root .service-detail .image-preview-block .overlay-reveal .reveal-icon svg {
  width: 22px;
  height: 22px
}

.services-root .divider-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 64px
}

.services-root .divider-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 32px;
  background: #69B9C9;
  opacity: .4
}

.services-root .divider-dots .dot.active {
  opacity: 1;
  background: #1D5860;
  width: 18px
}

.services-root .subscribe-block {
  padding: 64px;
  background: #FDFDFD;
  position: relative
}

.services-root .subscribe-block .subscribe-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.services-root .subscribe-block .benefit-side {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.services-root .subscribe-block .benefit-side h3 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(90deg, #1D5860, #69B9C9 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.services-root .subscribe-block .benefit-side .benefit-intro {
  font-size: 15px;
  line-height: 1.55;
  color: #2c5f66;
  margin: 0
}

.services-root .subscribe-block .benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0
}

.services-root .subscribe-block .benefit-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #2c5f66
}

.services-root .subscribe-block .benefit-list li .benefit-marker {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px
}

.services-root .subscribe-block .benefit-list li .benefit-marker svg {
  width: 18px;
  height: 18px
}

.services-root .subscribe-block .free-resource-badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1d586014, #69b9c91f);
  border: 1px solid #69b9c94d;
  border-radius: 32px;
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860
}

.services-root .subscribe-block .free-resource-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.services-root .subscribe-block .form-side {
  background: linear-gradient(160deg, #1d58600d, #69b9c914);
  border-radius: 32px;
  padding: 32px;
  border: 1px solid #69b9c933;
  box-shadow: inset 0 3px 5px 1px #1d58600a 0 7px 20px 1px #69b9c914;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.services-root .subscribe-block .form-side h4 {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0
}

.services-root .subscribe-block .form-side .form-note {
  font-size: 14px;
  line-height: 1.55;
  color: #3d7a82;
  margin: 0
}

.services-root .subscribe-block .field-group {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.services-root .subscribe-block .field-group label {
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  letter-spacing: .04em
}

.services-root .subscribe-block .field-group .input-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center
}

.services-root .subscribe-block .field-group .input-wrap .field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center
}

.services-root .subscribe-block .field-group .input-wrap .field-icon svg {
  width: 16px;
  height: 16px;
  color: #69B9C9
}

.services-root .subscribe-block .field-group input,
.services-root .subscribe-block .field-group select {
  width: 100%;
  padding: 16px 16px 16px 44px;
  border-radius: 32px;
  border: 1px solid #69b9c959;
  background: #FDFDFD;
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  outline: none;
  box-sizing: border-box;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none
}

.services-root .subscribe-block .field-group input::placeholder {
  color: #69B9C9;
  opacity: .7
}

.services-root .subscribe-block .field-group input:focus,
.services-root .subscribe-block .field-group select:focus {
  border-color: #1D5860;
  box-shadow: 0 3px 5px 1px #1d586014
}

.services-root .subscribe-block .field-group .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none
}

.services-root .subscribe-block .field-group .select-arrow svg {
  width: 14px;
  height: 14px;
  color: #69B9C9
}

.services-root .subscribe-block .submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: #1D5860;
  color: #FDFDFD;
  border: none;
  border-radius: 32px;
  font-size: 15px;
  line-height: 1.55;
  cursor: pointer;
  overflow: hidden;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%
}

.services-root .subscribe-block .submit-button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  border: 2px solid transparent;
  background: linear-gradient(#1D5860, #1D5860) padding-box, linear-gradient(90deg, #69B9C9, #1D5860) border-box;
  opacity: 0;
  transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.services-root .subscribe-block .submit-button:hover {
  background: #164850;
  box-shadow: 0 7px 20px 1px #1d586014
}

.services-root .subscribe-block .submit-button:hover::before {
  opacity: 1
}

.services-root .subscribe-block .submit-button:focus {
  outline: 2px solid #69B9C9;
  outline-offset: 4px
}

.services-root .subscribe-block .submit-button:active {
  background: #12383e
}

.services-root .subscribe-block .submit-button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.services-root .subscribe-block .privacy-note {
  font-size: 14px;
  line-height: 1.55;
  color: #69B9C9;
  text-align: center;
  margin: 0
}

@media (max-width: 960px) {
  .services-root .title-block {
    grid-template-columns: 1fr;
    padding-top: 32px
  }

  .services-root .title-block .image-column {
    min-height: 300px
  }

  .services-root .title-block .image-column .image-frame {
    border-radius: 0
  }

  .services-root .title-block .text-column {
    padding: 32px
  }

  .services-root .title-block .text-column h1 {
    font-size: 42px
  }

  .services-root .title-block .text-column .stat-row {
    gap: 16px
  }

  .services-root .title-block .text-column .stat-item .stat-number {
    font-size: 32px
  }

  .services-root .service-detail {
    padding: 32px
  }

  .services-root .service-detail .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .services-root .service-detail .detail-grid .right-column {
    padding-top: 0
  }

  .services-root .subscribe-block {
    padding: 32px
  }

  .services-root .subscribe-block .subscribe-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .services-root .divider-text {
    padding: 32px
  }

  .services-root .divider-dots {
    padding: 32px
  }
}

@media (max-width: 480px) {
  .services-root .title-block .text-column {
    padding: 16px
  }

  .services-root .title-block .text-column h1 {
    font-size: clamp(32px, 8vw, 42px)
  }

  .services-root .title-block .text-column .stat-row {
    flex-direction: column;
    gap: 8px
  }

  .services-root .service-detail {
    padding: 16px
  }

  .services-root .service-detail h2 {
    font-size: clamp(28px, 7vw, 42px)
  }

  .services-root .subscribe-block {
    padding: 16px
  }

  .services-root .subscribe-block .benefit-side h3 {
    font-size: clamp(28px, 7vw, 42px)
  }

  .services-root .subscribe-block .form-side {
    padding: 16px
  }

  .services-root .divider-text {
    padding: 16px 32px
  }
}

@media (min-width: 1440px) {
  .services-root .title-block {
    grid-template-columns: 1.8fr 3.2fr
  }
}

.podcast {
  max-width: 1440px;
  margin: 0 auto;
  background: #FDFDFD;
  overflow: hidden
}

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

.podcast ::selection {
  background: #69b9c91a;
  color: #1D5860
}

.podcast .reading-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 16px 0
}

.podcast .reading-arrows span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #1d586059;
  border-bottom: 2px solid #1d586059;
  transform: rotate(-45deg)
}

.podcast .reading-arrows span:nth-child(2) {
  opacity: .6
}

.podcast .reading-arrows span:nth-child(3) {
  opacity: .35
}

.podcast .title-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative
}

.podcast .title-block .text-zone {
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background: #FDFDFD;
  position: relative;
  z-index: 1
}

.podcast .title-block .text-zone::after {
  content: '';
  position: absolute;
  right: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #69B9C9, transparent)
}

.podcast .title-block .label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border: 1px solid #69b9c980;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: .12em;
  color: #1D5860;
  text-transform: uppercase;
  width: fit-content
}

.podcast .title-block .label-tag .dot {
  width: 6px;
  height: 6px;
  background: #69B9C9;
  border-radius: 0;
  display: block;
  flex-shrink: 0
}

.podcast .title-block .primary-heading {
  font-size: clamp(42px, 5vw, 56px);
  line-height: 1.1;
  color: #1D5860;
  margin: 0
}

.podcast .title-block .primary-heading .accent-word {
  background: linear-gradient(135deg, #1D5860, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block
}

.podcast .title-block .primary-heading .accent-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, #69B9C9, transparent)
}

.podcast .title-block .lead-paragraph {
  font-size: 15px;
  line-height: 1.55;
  color: #2a5a60;
  max-width: 420px;
  margin: 0
}

.podcast .title-block .image-zone {
  position: relative;
  overflow: hidden
}

.podcast .title-block .image-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  display: block;
  transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.podcast .title-block .image-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #69b9c938, transparent 70%);
  z-index: 1;
  pointer-events: none
}

.podcast .title-block .image-zone::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fdfdfd14;
  z-index: 1;
  pointer-events: none
}

.podcast .divider-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 64px;
  background: #FDFDFD
}

.podcast .divider-arrows .arrow-unit {
  width: 12px;
  height: 12px;
  border-right: 2px solid #1d58604d;
  border-bottom: 2px solid #1d58604d;
  transform: rotate(-45deg);
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.podcast .divider-arrows .arrow-unit:nth-child(even) {
  border-color: #69b9c966
}

.podcast .episodes-section {
  background: linear-gradient(160deg, #1d58600a 0%, #69b9c90f 100%);
  padding: 64px;
  position: relative
}

.podcast .episodes-section .section-label {
  font-size: 14px;
  letter-spacing: .14em;
  color: #69B9C9;
  text-transform: uppercase;
  margin: 0 0 8px
}

.podcast .episodes-section .section-heading {
  font-size: 42px;
  line-height: 1.1;
  color: #1D5860;
  margin: 0 0 32px;
  max-width: 540px
}

.podcast .episodes-section .section-heading em {
  font-style: normal;
  background: linear-gradient(90deg, #1D5860 30%, #69B9C9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.podcast .episodes-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start
}

.podcast .episodes-list {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.podcast .episode-card {
  background: #FDFDFD;
  border-radius: 0;
  padding: 32px;
  border: 1px solid #69b9c933;
  box-shadow: inset 0 2px 6px 1px #1d58600d;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.podcast .episode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, #69B9C9, #1D5860);
  border-right: 1px solid #1d58601a;
  transition: width .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.podcast .episode-card:hover {
  border-color: #69b9c980;
  box-shadow: 0 7px 20px 1px #1d586014
}

.podcast .episode-card:hover::before {
  width: 5px
}

.podcast .episode-card .episode-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px
}

.podcast .episode-card .episode-number {
  font-size: 14px;
  letter-spacing: .1em;
  color: #69B9C9;
  text-transform: uppercase
}

.podcast .episode-card .episode-duration {
  font-size: 14px;
  color: #1d58608c;
  display: flex;
  align-items: center;
  gap: 4px
}

.podcast .episode-card .episode-duration svg {
  flex-shrink: 0
}

.podcast .episode-card .episode-title {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0 0 8px;
  font-weight: 600
}

.podcast .episode-card .episode-summary {
  font-size: 14px;
  line-height: 1.55;
  color: #1d5860bf;
  margin: 0 0 16px
}

.podcast .episode-card .read-link {
  font-size: 14px;
  color: #1D5860;
  text-decoration: none;
  letter-spacing: .06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #69b9c966;
  padding-bottom: 2px;
  transition: color .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.podcast .episode-card .read-link:hover {
  color: #69B9C9;
  border-color: #69B9C9
}

.podcast .episode-card .read-link svg {
  transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.podcast .episode-card .read-link:hover svg {
  transform: translateX(4px)
}

.podcast .sidebar-panel {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.podcast .sidebar-panel .panel-card {
  background: #1D5860;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 9px 48px 1px #1d58601a;
  color: #FDFDFD
}

.podcast .sidebar-panel .panel-card .panel-heading {
  font-size: 15px;
  line-height: 1.55;
  color: #FDFDFD;
  margin: 0 0 16px;
  font-weight: 600
}

.podcast .sidebar-panel .panel-card .panel-text {
  font-size: 14px;
  line-height: 1.55;
  color: #fdfdfdbf;
  margin: 0 0 16px
}

.podcast .sidebar-panel .topic-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.podcast .sidebar-panel .topic-list li {
  font-size: 14px;
  line-height: 1.55;
  color: #fdfdfdcc;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px solid #69b9c926
}

.podcast .sidebar-panel .topic-list li:last-child {
  border-bottom: none
}

.podcast .sidebar-panel .topic-list li .topic-dot {
  width: 5px;
  height: 5px;
  background: #69B9C9;
  border-radius: 0;
  flex-shrink: 0;
  margin-top: 6px
}

.podcast .sidebar-panel .info-card {
  background: #69b9c914;
  border: 1px solid #69b9c94d;
  border-radius: 0;
  padding: 32px;
  box-shadow: inset 0 3px 5px 1px #69b9c914
}

.podcast .sidebar-panel .info-card .info-heading {
  font-size: 15px;
  color: #1D5860;
  margin: 0 0 8px;
  font-weight: 600
}

.podcast .sidebar-panel .info-card .info-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1d5860bf;
  margin: 0
}

.podcast .divider-line {
  padding: 16px 64px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FDFDFD
}

.podcast .divider-line .line-segment {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #69b9c966, transparent)
}

.podcast .divider-line .line-diamond {
  width: 8px;
  height: 8px;
  background: #69B9C9;
  transform: rotate(45deg);
  flex-shrink: 0
}

.podcast .format-section {
  padding: 64px;
  background: #FDFDFD;
  position: relative
}

.podcast .format-section .curl-decoration {
  position: absolute;
  top: 32px;
  right: 64px;
  width: 80px;
  height: 80px;
  opacity: .08;
  pointer-events: none
}

.podcast .format-section .format-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start
}

.podcast .format-section .format-sidebar {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px
}

.podcast .format-section .format-sidebar .sidebar-heading {
  font-size: 42px;
  line-height: 1.1;
  color: #1D5860;
  margin: 0
}

.podcast .format-section .format-sidebar .sidebar-heading span {
  background: linear-gradient(135deg, #69B9C9, #1D5860);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.podcast .format-section .format-sidebar .sidebar-desc {
  font-size: 15px;
  line-height: 1.55;
  color: #1d5860b3;
  margin: 0
}

.podcast .format-section .format-sidebar .stat-row {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.podcast .format-section .format-sidebar .stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border: 1px solid #69b9c940;
  border-radius: 0;
  border-left: 3px solid #69B9C9
}

.podcast .format-section .format-sidebar .stat-item .stat-number {
  font-size: 42px;
  line-height: 1.1;
  color: #1D5860;
  font-weight: 700
}

.podcast .format-section .format-sidebar .stat-item .stat-label {
  font-size: 14px;
  color: #1d586099;
  letter-spacing: .08em
}

.podcast .format-section .format-content {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.podcast .format-section .format-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 32px;
  border-radius: 32px;
  background: #1d586008;
  border: 1px solid #1d586012;
  box-shadow: inset 0 2px 5px 1px #1d58600a;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.podcast .format-section .format-item:hover {
  background: #69b9c90f;
  border-color: #69b9c94d
}

.podcast .format-section .format-item .item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1D5860, #69B9C9);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.podcast .format-section .format-item .item-body {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.podcast .format-section .format-item .item-heading {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0;
  font-weight: 600
}

.podcast .format-section .format-item .item-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1d5860b3;
  margin: 0
}

.podcast .divider-thick {
  padding: 16px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(160deg, #1d58600a, #69b9c90f)
}

.podcast .divider-thick .thick-arrow {
  width: 14px;
  height: 14px;
  border-right: 3px solid #1d586040;
  border-bottom: 3px solid #1d586040;
  transform: rotate(-45deg)
}

.podcast .divider-thick .thick-arrow:nth-child(2) {
  border-color: #69b9c980
}

.podcast .divider-thick .thick-arrow:nth-child(3) {
  border-color: #1d586026
}

.podcast .context-section {
  padding: 64px;
  background: linear-gradient(160deg, #1d58600a 0%, #69b9c90f 100%);
  position: relative
}

.podcast .context-section .context-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start
}

.podcast .context-section .context-main {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.podcast .context-section .context-heading {
  font-size: 42px;
  line-height: 1.1;
  color: #1D5860;
  margin: 0
}

.podcast .context-section .context-heading .gradient-word {
  background: linear-gradient(90deg, #1D5860, #69B9C9 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.podcast .context-section .context-body {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.podcast .context-section .context-paragraph {
  font-size: 15px;
  line-height: 1.55;
  color: #1d5860cc;
  margin: 0
}

.podcast .context-section .context-paragraph.single {
  font-size: 15px;
  line-height: 2;
  color: #1D5860;
  font-weight: 500
}

.podcast .context-section .quote-block {
  border-left: 3px solid #69B9C9;
  border-top: 1px solid #69b9c94d;
  padding: 16px 32px;
  background: #69b9c90f;
  border-radius: 0
}

.podcast .context-section .quote-block .quote-text {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0 0 8px;
  font-style: italic
}

.podcast .context-section .quote-block .quote-author {
  font-size: 14px;
  color: #1d586099;
  letter-spacing: .08em;
  margin: 0
}

.podcast .context-section .context-aside {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.podcast .context-section .aside-card {
  background: #FDFDFD;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 7px 20px 1px #1d586014;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.podcast .context-section .aside-card .aside-icon {
  width: 40px;
  height: 40px;
  background: #69b9c926;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.podcast .context-section .aside-card .aside-heading {
  font-size: 15px;
  color: #1D5860;
  margin: 0;
  font-weight: 600;
  line-height: 1.55
}

.podcast .context-section .aside-card .aside-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1d5860b3;
  margin: 0
}

.podcast .context-section .aside-highlight {
  background: #1D5860;
  border-radius: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 9px 48px 1px #1d58601a
}

.podcast .context-section .aside-highlight .highlight-label {
  font-size: 14px;
  letter-spacing: .1em;
  color: #69b9c9cc;
  text-transform: uppercase;
  margin: 0
}

.podcast .context-section .aside-highlight .highlight-value {
  font-size: 56px;
  line-height: 1.1;
  color: #FDFDFD;
  margin: 0;
  font-weight: 700
}

.podcast .context-section .aside-highlight .highlight-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #fdfdfda6;
  margin: 0
}

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

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

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

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

.podcast .title-block .text-zone {
  animation: slideFromLeft .28s cubic-bezier(0.0, 0, 0.2, 1) both
}

.podcast .title-block .image-zone {
  animation: slideFromRight .28s cubic-bezier(0.0, 0, 0.2, 1) .06s both
}

.podcast .episodes-section .section-heading {
  animation: slideFromLeft .25s cubic-bezier(0.4, 0, 0.2, 1) .1s both
}

.podcast .format-section .format-sidebar {
  animation: slideFromLeft .27s cubic-bezier(0.4, 0, 0.2, 1) .08s both
}

.podcast .format-section .format-content {
  animation: slideFromRight .27s cubic-bezier(0.4, 0, 0.2, 1) .12s both
}

.podcast .context-section .context-main {
  animation: slideFromLeft .26s cubic-bezier(0.4, 0, 0.2, 1) .1s both
}

.podcast .context-section .context-aside {
  animation: slideFromRight .26s cubic-bezier(0.4, 0, 0.2, 1) .14s both
}

@media (max-width: 960px) {
  .podcast .title-block {
    grid-template-columns: 1fr
  }

  .podcast .title-block .text-zone::after {
    display: none
  }

  .podcast .title-block .image-zone {
    height: 320px
  }

  .podcast .title-block .text-zone {
    padding: 64px 32px
  }

  .podcast .episodes-section {
    padding: 64px 32px
  }

  .podcast .episodes-grid {
    grid-template-columns: 1fr
  }

  .podcast .sidebar-panel {
    flex-direction: row;
    flex-wrap: wrap
  }

  .podcast .sidebar-panel .panel-card,
  .podcast .sidebar-panel .info-card {
    flex: 1;
    min-width: 240px
  }

  .podcast .format-section {
    padding: 64px 32px
  }

  .podcast .format-section .format-layout {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .podcast .format-section .format-sidebar {
    position: static
  }

  .podcast .context-section {
    padding: 64px 32px
  }

  .podcast .context-section .context-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .podcast .divider-arrows,
  .podcast .divider-line,
  .podcast .divider-thick {
    padding: 16px 32px
  }
}

@media (max-width: 480px) {
  .podcast .title-block .text-zone {
    padding: 32px 16px;
    gap: 16px
  }

  .podcast .title-block .primary-heading {
    font-size: 42px
  }

  .podcast .episodes-section {
    padding: 32px 16px
  }

  .podcast .episodes-section .section-heading {
    font-size: 42px
  }

  .podcast .episode-card {
    padding: 16px
  }

  .podcast .format-section {
    padding: 32px 16px
  }

  .podcast .format-section .format-sidebar .sidebar-heading {
    font-size: 42px
  }

  .podcast .format-section .format-item {
    grid-template-columns: 1fr;
    padding: 16px
  }

  .podcast .context-section {
    padding: 32px 16px
  }

  .podcast .context-section .context-heading {
    font-size: 42px
  }

  .podcast .context-section .aside-highlight .highlight-value {
    font-size: 42px
  }

  .podcast .sidebar-panel .panel-card,
  .podcast .sidebar-panel .info-card {
    min-width: 100%
  }

  .podcast .divider-arrows,
  .podcast .divider-line,
  .podcast .divider-thick {
    padding: 16px
  }
}

.contact-us-page {
  max-width: 1440px;
  margin: 0 auto;
  background: #FDFDFD;
  overflow-x: clip
}

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

.contact-us-page ::selection {
  background: #1d58601a;
  color: #1D5860
}

.contact-us-page .strip-image-row {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden
}

.contact-us-page .strip-image-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.82)
}

.contact-us-page .strip-image-row::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to bottom, #1d5860b8 0%, transparent 100%);
  pointer-events: none
}

.contact-us-page .strip-image-row .reading-arrow {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  pointer-events: none
}

.contact-us-page .strip-image-row .reading-arrow span {
  display: block;
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, #fdfdfdb3, #69b9c94d)
}

.contact-us-page .strip-image-row .reading-arrow svg {
  display: block
}

.contact-us-page .title-zone {
  padding: 64px 64px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end
}

.contact-us-page .title-zone .number-accent {
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #69B9C9;
  display: block;
  margin-bottom: 8px
}

.contact-us-page .title-zone .heading-primary {
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #1D5860 40%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.contact-us-page .title-zone .brief-text {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0;
  max-width: 480px
}

.contact-us-page .title-zone .right-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 8px
}

.contact-us-page .contact-detail-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid #1d58601f;
  border-radius: 0;
  box-shadow: 0 3px 5px 1px #1d586014;
  background: #FDFDFD;
  transition: box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-us-page .contact-detail-item:hover {
  box-shadow: 0 7px 20px 1px #1d586014;
  border-color: #69b9c973
}

.contact-us-page .contact-detail-item .detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: #69b9c91f;
  display: flex;
  align-items: center;
  justify-content: center
}

.contact-us-page .contact-detail-item .detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-us-page .contact-detail-item .detail-label {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: .08em;
  color: #69B9C9;
  text-transform: uppercase
}

.contact-us-page .contact-detail-item .detail-value {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0;
  text-decoration: none;
  transition: color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-us-page .contact-detail-item .detail-value:hover {
  color: #69B9C9
}

.contact-us-page .divider-diamond {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 64px;
  margin: 0
}

.contact-us-page .divider-diamond .line {
  flex: 1;
  height: 1px;
  background: #1d58602e
}

.contact-us-page .divider-diamond .diamond {
  width: 10px;
  height: 10px;
  background: #69B9C9;
  transform: rotate(45deg);
  flex-shrink: 0
}

.contact-us-page .form-section {
  padding: 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  position: relative
}

.contact-us-page .form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  background-color: #1d586008;
  pointer-events: none;
  border-radius: 0
}

.contact-us-page .form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1
}

.contact-us-page .form-sidebar .sidebar-label {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: .1em;
  color: #69B9C9;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px
}

.contact-us-page .form-sidebar .sidebar-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: #69B9C9;
  flex-shrink: 0
}

.contact-us-page .form-sidebar .sidebar-heading {
  font-size: 42px;
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(160deg, #1D5860 30%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.contact-us-page .form-sidebar .sidebar-description {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0
}

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

.contact-us-page .ranked-list .rank-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-us-page .ranked-list .rank-row {
  display: flex;
  align-items: center;
  gap: 8px
}

.contact-us-page .ranked-list .rank-number {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: .06em;
  color: #69B9C9;
  font-variant-numeric: tabular-nums;
  min-width: 20px
}

.contact-us-page .ranked-list .rank-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860
}

.contact-us-page .ranked-list .rank-bar-track {
  height: 3px;
  background: #1d58601a;
  border-radius: 0;
  overflow: hidden
}

.contact-us-page .ranked-list .rank-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #1D5860, #69B9C9);
  border-radius: 0;
  transition: width .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.contact-us-page .form-area {
  position: relative;
  z-index: 1
}

.contact-us-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px
}

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

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

.contact-us-page .field-group.full-width {
  grid-column: 1 / -1
}

.contact-us-page .field-label {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: .06em;
  color: #1D5860;
  text-transform: uppercase
}

.contact-us-page .field-input-wrap {
  position: relative;
  display: flex;
  align-items: center
}

.contact-us-page .field-input-wrap .field-lead-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center
}

.contact-us-page .field-input-wrap .field-lead-icon svg {
  display: block
}

.contact-us-page .text-input {
  width: 100%;
  padding: 16px 16px 16px 44px;
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  background: #FDFDFD;
  border: 1.5px solid #1d586038;
  border-radius: 0;
  outline: none;
  box-shadow: inset 0 3px 5px 1px #1d586014;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none
}

.contact-us-page .text-input::placeholder {
  color: #1d58606b;
  font-size: 14px
}

.contact-us-page .text-input:focus {
  border-color: #69B9C9;
  box-shadow: inset 0 3px 5px 1px #1d586014 0 0 0 3px #69b9c92e
}

.contact-us-page .select-wrap {
  position: relative;
  display: flex;
  align-items: center
}

.contact-us-page .select-wrap .field-lead-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center
}

.contact-us-page .select-wrap .select-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1
}

.contact-us-page .field-select {
  width: 100%;
  padding: 16px 44px;
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  background: #FDFDFD;
  border: 1.5px solid #1d586038;
  border-radius: 0;
  outline: none;
  box-shadow: inset 0 3px 5px 1px #1d586014;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer
}

.contact-us-page .field-select:focus {
  border-color: #69B9C9;
  box-shadow: inset 0 3px 5px 1px #1d586014 0 0 0 3px #69b9c92e
}

.contact-us-page .textarea-wrap {
  position: relative
}

.contact-us-page .textarea-wrap .field-lead-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  pointer-events: none;
  display: flex;
  align-items: center
}

.contact-us-page .field-textarea {
  width: 100%;
  padding: 16px 16px 16px 44px;
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  background: #FDFDFD;
  border: 1.5px solid #1d586038;
  border-radius: 0;
  outline: none;
  box-shadow: inset 0 3px 5px 1px #1d586014;
  resize: vertical;
  min-height: 120px;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
  appearance: none;
  -webkit-appearance: none
}

.contact-us-page .field-textarea::placeholder {
  color: #1d58606b;
  font-size: 14px
}

.contact-us-page .field-textarea:focus {
  border-color: #69B9C9;
  box-shadow: inset 0 3px 5px 1px #1d586014 0 0 0 3px #69b9c92e
}

.contact-us-page .checkbox-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.contact-us-page .checkbox-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #1D5860;
  cursor: pointer;
  border-radius: 0
}

.contact-us-page .checkbox-row .privacy-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  margin: 0
}

.contact-us-page .checkbox-row .privacy-text a {
  color: #1D5860;
  text-decoration: underline;
  text-decoration-color: #69b9c999;
  transition: color .15s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-us-page .checkbox-row .privacy-text a:hover {
  color: #69B9C9;
  text-decoration-color: #69B9C9
}

.contact-us-page .submit-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.contact-us-page .submit-button {
  position: relative;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: .06em;
  color: #FDFDFD;
  background: #1D5860;
  border: none;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #1d586014;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-us-page .submit-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 0;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), inset .18s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none
}

.contact-us-page .submit-button:hover::before {
  border-color: #69B9C9
}

.contact-us-page .submit-button:hover {
  background: #154249;
  box-shadow: 0 9px 48px 1px #1d58601a
}

.contact-us-page .submit-button:focus {
  outline: 3px solid #69b9c980;
  outline-offset: 2px
}

.contact-us-page .submit-button:active {
  background: #0f3238
}

.contact-us-page .submit-button .button-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  vertical-align: middle;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-us-page .submit-button:hover .button-icon {
  transform: translateX(4px)
}

.contact-us-page .icon-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid #1d586038;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 5px 1px #1d586014
}

.contact-us-page .icon-secondary:hover {
  border-color: #69B9C9;
  background: #69b9c914
}

.contact-us-page .icon-secondary:focus {
  outline: 3px solid #69b9c980;
  outline-offset: 2px
}

.contact-us-page .dashed-path-decoration {
  position: absolute;
  top: 64px;
  right: 32px;
  width: 120px;
  height: 200px;
  pointer-events: none;
  opacity: .18
}

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

.contact-us-page .options-group .options-label {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: .06em;
  color: #1D5860;
  text-transform: uppercase
}

.contact-us-page .checkbox-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px
}

.contact-us-page .checkbox-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border: 1.5px solid #1d58602e;
  border-radius: 0;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-us-page .checkbox-option:hover {
  border-color: #69B9C9;
  background: #69b9c90f
}

.contact-us-page .checkbox-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #1D5860;
  cursor: pointer;
  flex-shrink: 0
}

.contact-us-page .checkbox-option .option-text {
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860
}

@media (max-width: 960px) {
  .contact-us-page .title-zone {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px
  }

  .contact-us-page .title-zone .heading-primary {
    font-size: 42px
  }

  .contact-us-page .divider-diamond {
    padding: 0 32px
  }

  .contact-us-page .form-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px
  }

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

  .contact-us-page .form-sidebar .sidebar-heading {
    font-size: 42px
  }

  .contact-us-page .dashed-path-decoration {
    display: none
  }
}

@media (max-width: 480px) {
  .contact-us-page .title-zone {
    padding: 32px 16px;
    gap: 32px
  }

  .contact-us-page .title-zone .heading-primary {
    font-size: 42px
  }

  .contact-us-page .title-zone .number-accent {
    font-size: 42px
  }

  .contact-us-page .divider-diamond {
    padding: 0 16px
  }

  .contact-us-page .form-section {
    padding: 32px 16px;
    gap: 32px
  }

  .contact-us-page .checkbox-options {
    flex-direction: column
  }

  .contact-us-page .strip-image-row {
    height: 120px
  }

  .contact-us-page .submit-row {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (min-width: 1440px) {
  .contact-us-page .title-zone {
    padding: 64px 64px 32px
  }
}

.about-us-page {
  max-width: 1440px;
  margin: 0 auto;
  overflow-x: clip;
  background: #FDFDFD
}

.about-us-page ::selection {
  background: #1d58601a;
  color: #1D5860
}

.about-us-page .partial-divider {
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, #1D5860 0%, transparent 100%);
  margin: 32px 0
}

.about-us-page .partial-divider.right {
  margin-left: auto;
  background: linear-gradient(270deg, #69B9C9 0%, transparent 100%)
}

.about-us-page .title-block {
  position: relative;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FDFDFD
}

.about-us-page .title-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1D5860 0%, #69B9C9 60%, transparent 100%)
}

.about-us-page .decorative-band {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1D5860, #69B9C9, transparent);
  pointer-events: none
}

.about-us-page .concentric-rects {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  pointer-events: none
}

.about-us-page .concentric-rects span {
  position: absolute;
  border: 1px solid #1d58602e;
  border-radius: 0
}

.about-us-page .concentric-rects span:nth-child(1) {
  inset: 0
}

.about-us-page .concentric-rects span:nth-child(2) {
  inset: 10px;
  border-color: #69b9c938
}

.about-us-page .concentric-rects span:nth-child(3) {
  inset: 20px;
  border-color: #1d586024
}

.about-us-page .concentric-rects span:nth-child(4) {
  inset: 30px;
  border-color: #69b9c92e
}

.about-us-page .concentric-rects.bottom-left {
  top: auto;
  right: auto;
  bottom: 16px;
  left: 16px
}

.about-us-page .title-eyebrow {
  font-size: 14px;
  line-height: 2;
  letter-spacing: .12em;
  color: #69B9C9;
  text-transform: uppercase;
  margin-bottom: 16px
}

.about-us-page .title-heading {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 800px
}

.about-us-page .title-heading .part-one {
  color: #1D5860
}

.about-us-page .title-heading .part-two {
  background: linear-gradient(135deg, #69B9C9 0%, #1D5860 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.about-us-page .title-sub {
  font-size: 15px;
  line-height: 1.55;
  color: #2e6b75;
  max-width: 560px;
  margin-bottom: 32px
}

.about-us-page .title-image-frame {
  position: relative;
  width: 100%;
  max-width: 680px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 9px 48px 1px #1d58601a
}

.about-us-page .title-image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: sepia(0.22) contrast(1.08) brightness(0.97) saturate(0.88);
  transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-us-page .title-image-frame:hover img {
  filter: sepia(0) contrast(1.04) brightness(1.0) saturate(1.0)
}

.about-us-page .title-image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #1d58602e 0%, transparent 70%);
  pointer-events: none
}

.about-us-page .title-stats-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
  flex-wrap: wrap
}

.about-us-page .stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 32px;
  border: 1px solid #1d586024;
  border-radius: 0;
  background: #FDFDFD;
  box-shadow: 0 3px 5px 1px #1d586014;
  transition: box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.about-us-page .stat-pill:hover {
  box-shadow: 0 7px 20px 1px #1d586014;
  border-color: #69B9C9
}

.about-us-page .stat-number {
  font-size: 42px;
  line-height: 1.1;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 4px
}

.about-us-page .stat-integer {
  color: #1D5860
}

.about-us-page .stat-fraction {
  color: #69B9C9;
  font-size: 15px
}

.about-us-page .stat-label {
  font-size: 14px;
  line-height: 2;
  color: #2e6b75;
  letter-spacing: .06em;
  text-align: center
}

.about-us-page .about-block {
  position: relative;
  padding: 64px;
  background: linear-gradient(160deg, #1d58600a 0%, #69b9c90f 100%);
  animation: desaturation-cycle 12s ease-in-out infinite
}

@keyframes desaturation-cycle {
  0% {
    filter: saturate(1)
  }

  50% {
    filter: saturate(0.72)
  }

  100% {
    filter: saturate(1)
  }
}

.about-us-page .about-block .concentric-rects {
  top: auto;
  right: auto;
  bottom: 32px;
  left: 32px
}

.about-us-page .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start
}

.about-us-page .about-text-column {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-us-page .about-heading {
  font-size: 42px;
  line-height: 1.1;
  background: linear-gradient(135deg, #1D5860 30%, #69B9C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px
}

.about-us-page .about-paragraph {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860
}

.about-us-page .about-paragraph.micro {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  font-weight: 600
}

.about-us-page .about-visual-column {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.about-us-page .about-image-stack {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 7px 20px 1px #1d586014
}

.about-us-page .about-image-stack img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-us-page .about-image-stack:hover img {
  transform: scale(1.03)
}

.about-us-page .about-image-stack .image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #69b9c938 0%, transparent 65%);
  pointer-events: none
}

.about-us-page .indicators-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap
}

.about-us-page .circular-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.about-us-page .circle-ring {
  width: 56px;
  height: 56px;
  border-radius: 32px;
  border: 2px solid #69B9C9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FDFDFD;
  box-shadow: inset 0 3px 5px 1px #1d586014;
  transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.about-us-page .circle-ring:hover {
  border-color: #1D5860;
  box-shadow: inset 0 3px 5px 1px #1d586014 0 7px 20px 1px #1d586014
}

.about-us-page .circle-inner {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #1D5860 0%, #69B9C9 100%);
  display: flex;
  align-items: center;
  justify-content: center
}

.about-us-page .circle-inner svg {
  width: 16px;
  height: 16px;
  fill: #FDFDFD
}

.about-us-page .circle-label {
  font-size: 14px;
  line-height: 1.55;
  color: #1D5860;
  text-align: center;
  letter-spacing: .04em;
  max-width: 64px
}

.about-us-page .steps-path {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px
}

.about-us-page .step-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px
}

.about-us-page .step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32px;
  flex-shrink: 0
}

.about-us-page .step-dot {
  width: 16px;
  height: 16px;
  border-radius: 32px;
  background: #1D5860;
  border: 2px solid #69B9C9;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-us-page .step-row:hover .step-dot {
  background: #69B9C9
}

.about-us-page .step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, #69B9C9 0%, #1d58602e 100%);
  min-height: 32px
}

.about-us-page .step-row:last-child .step-line {
  display: none
}

.about-us-page .step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 32px
}

.about-us-page .step-row:last-child .step-body {
  padding-bottom: 0
}

.about-us-page .step-title {
  font-size: 15px;
  line-height: 1.55;
  color: #1D5860;
  font-weight: 700
}

.about-us-page .step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #2e6b75
}

.about-us-page .about-images-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.about-us-page .secondary-image-frame {
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 3px 5px 1px #69b9c914;
  position: relative
}

.about-us-page .secondary-image-frame img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: sepia(0.1) contrast(1.05) brightness(0.98) saturate(0.92);
  transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1), transform .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.about-us-page .secondary-image-frame:hover img {
  filter: sepia(0) contrast(1.02) brightness(1.0) saturate(1.0);
  transform: scale(1.04)
}

.about-us-page .secondary-image-frame .image-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, #1d586024 0%, transparent 60%);
  pointer-events: none
}

.about-us-page .secondary-image-frame.accent {
  grid-column: span 2
}

.about-us-page .secondary-image-frame.accent img {
  height: 220px
}

.about-us-page .about-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px
}

.about-us-page .btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #1D5860;
  color: #FDFDFD;
  font-size: 15px;
  line-height: 1.55;
  border: 2px solid #1D5860;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.0, 0, 0.2, 1)
}

.about-us-page .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #69B9C9;
  border-radius: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-us-page .btn-primary:hover::before {
  clip-path: inset(0 0% 0 0)
}

.about-us-page .btn-primary:hover {
  background: #164349;
  color: #FDFDFD
}

.about-us-page .btn-primary:focus-visible {
  outline: 2px solid #69B9C9;
  outline-offset: 4px
}

.about-us-page .btn-icon-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 2px solid #1d586047;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.about-us-page .btn-icon-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #69B9C9;
  clip-path: inset(0 100% 0 0);
  transition: clip-path .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.about-us-page .btn-icon-secondary:hover::before {
  clip-path: inset(0 0% 0 0)
}

.about-us-page .btn-icon-secondary svg {
  width: 20px;
  height: 20px;
  fill: #1D5860
}

.about-us-page .btn-icon-secondary:focus-visible {
  outline: 2px solid #69B9C9;
  outline-offset: 4px
}

@media (max-width: 960px) {
  .about-us-page .title-block {
    padding: 64px 32px
  }

  .about-us-page .title-heading {
    font-size: 42px
  }

  .about-us-page .about-block {
    padding: 64px 32px
  }

  .about-us-page .about-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .about-us-page .about-images-secondary {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 480px) {
  .about-us-page .title-block {
    padding: 64px 16px
  }

  .about-us-page .title-heading {
    font-size: 42px
  }

  .about-us-page .title-stats-row {
    gap: 16px
  }

  .about-us-page .stat-pill {
    padding: 16px
  }

  .about-us-page .about-block {
    padding: 64px 16px
  }

  .about-us-page .about-images-secondary {
    grid-template-columns: 1fr
  }

  .about-us-page .secondary-image-frame.accent {
    grid-column: span 1
  }

  .about-us-page .indicators-row {
    gap: 8px
  }
}

@media (min-width: 1440px) {

  .about-us-page .title-block,
  .about-us-page .about-block {
    padding: 64px
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
  background: #FDFDFD;
  position: relative;
  overflow: hidden
}

.success-page::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at top right, #69b9c91f, transparent 70%);
  pointer-events: none
}

.success-page .success-wrapper {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1
}

.success-page .success-icon-area {
  width: 96px;
  height: 96px;
  border-radius: 32px;
  background: linear-gradient(135deg, #1d586014, #69b9c926);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 20px 1px #1d586014
}

.success-page .success-icon-area svg {
  width: 48px;
  height: 48px
}

.success-page .success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center
}

.success-page .success-heading {
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin: 0
}

.success-page .success-heading .heading-primary {
  color: #1D5860
}

.success-page .success-heading .heading-accent {
  color: #69B9C9
}

.success-page .success-body {
  font-size: 15px;
  line-height: 1.55;
  color: #2c4a4e;
  max-width: 480px;
  margin: 0
}

.success-page .success-divider {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, #1D5860, #69B9C9);
  border-radius: 0
}

.success-page .success-detail {
  font-size: 14px;
  line-height: 1.55;
  color: #3d6168;
  max-width: 420px;
  text-align: center;
  margin: 0;
  letter-spacing: .01em
}

.success-page .success-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px
}

.success-page .action-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #1D5860;
  color: #FDFDFD;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: .04em;
  border-radius: 0;
  border: 2px solid #1D5860;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1), color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .action-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #69B9C9;
  border-radius: 0;
  opacity: 0;
  transition: opacity .18s cubic-bezier(0.0, 0, 0.2, 1)
}

.success-page .action-primary:hover {
  background: #164449;
  color: #FDFDFD
}

.success-page .action-primary:hover::after {
  opacity: 1
}

.success-page .action-primary:focus-visible {
  outline: 2px solid #69B9C9;
  outline-offset: 4px
}

.success-page .action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: transparent;
  border: 2px solid #1D5860;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), background-color .28s cubic-bezier(0.0, 0, 0.2, 1);
  text-decoration: none
}

.success-page .action-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #69b9c91f;
  transition: left .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .action-secondary:hover::before {
  left: 0
}

.success-page .action-secondary:hover {
  border-color: #69B9C9
}

.success-page .action-secondary:focus-visible {
  outline: 2px solid #69B9C9;
  outline-offset: 4px
}

.success-page .action-secondary svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1
}

.success-page .success-card {
  width: 100%;
  background: #FDFDFD;
  border-radius: 32px;
  border: 1px solid #1d58601f;
  box-shadow: inset 0 3px 5px 1px #1d58600a 0 3px 5px 1px #1d586014;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.success-page .card-label {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: .1em;
  color: #69B9C9;
  text-transform: uppercase;
  margin: 0
}

.success-page .card-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0
}

.success-page .card-steps li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.success-page .step-number {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 0;
  background: linear-gradient(135deg, #1D5860, #69B9C9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.1;
  color: #FDFDFD;
  font-weight: 600
}

.success-page .step-text {
  font-size: 14px;
  line-height: 1.55;
  color: #2c4a4e;
  margin: 0;
  padding-top: 4px
}

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

  .success-page .success-heading {
    font-size: 42px
  }

  .success-page .success-card {
    padding: 32px 16px
  }

  .success-page .action-primary {
    padding: 16px 32px;
    font-size: 14px
  }
}

@media (min-width: 960px) {
  .success-page .success-wrapper {
    gap: 32px
  }
}