@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/rubik@latest/700-italic.css";

* {
  box-sizing: border-box
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Rubik', sans-serif;
  background: #fff;
  color: #1a1514;
  font-size: 17px;
  line-height: 1.6
}

.hd-plate {
  background: linear-gradient(135deg, #632598 0%, #7b3aad 100%);
  padding: 20px 0;
  position: relative;
  overflow: hidden
}

.hd-plate::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #fdbc3b26 0%, transparent 70%);
  pointer-events: none
}

.hd-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px
}

.hd-brand-deck {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px
}

.logo-pod {
  background: #fff;
  padding: 12px 40px;
  border-radius: 38px;
  box-shadow: 2px 7px 14px 0 #6325981a;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform .27s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.logo-pod:hover {
  transform: translateY(-2px)
}

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

.brand-txt {
  font-size: 28px;
  font-weight: 700;
  color: #632598;
  letter-spacing: -.02em;
  line-height: 1.1
}

.hd-accent {
  display: flex;
  gap: 8px;
  align-items: center
}

.accent-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FDBC3B;
  animation: pulse-dot 2.1s ease-in-out infinite
}

.accent-dot:nth-child(2) {
  animation-delay: .3s;
  background: #DFE4F2
}

.accent-dot:nth-child(3) {
  animation-delay: .6s;
  background: #FDBC3B;
  opacity: .7
}

@keyframes pulse-dot {

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

  50% {
    transform: scale(1.3);
    opacity: .6
  }
}

.nav-deck {
  background: #ffffff1f;
  border-radius: 22px;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff2e
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center
}

.nav-item {
  display: inline-block
}

.nav-link {
  display: block;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  border-radius: 10px;
  transition: background .24s cubic-bezier(0.34, 1.56, 0.64, 1), color .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FDBC3B 0%, #fdc961 100%);
  transition: left .32s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: -1
}

.nav-link:hover::before,
.nav-link:focus::before {
  left: 0
}

.nav-link:hover,
.nav-link:focus {
  color: #632598;
  background: transparent
}

.nav-link:focus {
  outline: 2px solid #FDBC3B;
  outline-offset: 4px
}

.ft-plate {
  background: linear-gradient(180deg, #fafbfd 0%, #DFE4F2 100%);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden
}

.ft-plate::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #63259814 0%, transparent 70%);
  pointer-events: none
}

.ft-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px
}

.ft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px
}

.ft-brand-cell {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ft-logo-pod {
  background: #fff;
  padding: 12px 20px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 2px 2px 5px 0 #63259814;
  width: fit-content
}

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

.ft-brand-name {
  font-size: 21px;
  font-weight: 700;
  color: #632598
}

.ft-script {
  font-size: 28px;
  font-style: italic;
  color: #632598;
  line-height: 1.3;
  opacity: .85;
  font-weight: 400
}

.ft-contact-cell {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ft-heading {
  font-size: 21px;
  font-weight: 700;
  color: #632598;
  margin: 0 0 8px;
  letter-spacing: -.01em
}

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

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px
}

.ft-contact-icon {
  color: #FDBC3B;
  font-size: 17px;
  margin-top: 4px;
  flex-shrink: 0
}

.ft-contact-link {
  color: #3d2456;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.6;
  transition: color .23s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-contact-link:hover,
.ft-contact-link:focus {
  color: #632598
}

.ft-contact-link:focus {
  outline: 2px solid #FDBC3B;
  outline-offset: 2px;
  border-radius: 1px
}

.ft-contact-txt {
  color: #3d2456;
  font-size: 17px;
  line-height: 1.6;
  margin: 0
}

.ft-nav-cell {
  display: flex;
  flex-direction: column;
  gap: 12px
}

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

.ft-nav-link {
  color: #3d2456;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.6;
  display: inline-block;
  transition: color .25s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.ft-nav-link:hover,
.ft-nav-link:focus {
  color: #632598;
  transform: translateX(4px)
}

.ft-nav-link:focus {
  outline: 2px solid #FDBC3B;
  outline-offset: 2px;
  border-radius: 1px
}

.ft-bottom {
  border-top: 1px solid #63259826;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px
}

.ft-copy {
  font-size: 14px;
  color: #5d4a6e;
  margin: 0;
  line-height: 1.6
}

.ft-year {
  font-weight: 700;
  color: #632598
}

.ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 20px;
  border-radius: 22px;
  border: 1px solid #6325981f;
  box-shadow: 2px 2px 5px 0 #63259814
}

.ft-badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FDBC3B 0%, #fdc961 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #632598;
  font-weight: 700
}

.ft-badge-txt {
  font-size: 14px;
  color: #632598;
  font-weight: 700;
  margin: 0
}

.consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #FDBC3B;
  box-shadow: 2px 12px 52px 0 #6325981a;
  padding: 20px;
  z-index: 4000;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.consent-bar.visible {
  opacity: 1;
  transform: translateY(0)
}

.consent-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.consent-txt {
  flex: 1 1 300px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #3d2456
}

.consent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.consent-btn {
  padding: 12px 40px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  border: 2px solid #632598;
  background: transparent;
  color: #632598;
  border-radius: 22px;
  cursor: pointer;
  transition: background .26s cubic-bezier(0.34, 1.56, 0.64, 1), color .24s cubic-bezier(0.34, 1.56, 0.64, 1), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .26s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
  min-width: 44px
}

.consent-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #632598 0%, #7b3aad 100%);
  transition: left .32s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: -1
}

.consent-btn:hover::before,
.consent-btn:focus::before {
  left: 0
}

.consent-btn:hover,
.consent-btn:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 2px 7px 14px 0 #6325981a
}

.consent-btn:focus {
  outline: 2px solid #FDBC3B;
  outline-offset: 4px
}

.consent-btn:active {
  transform: translateY(0)
}

.consent-btn.primary {
  border-color: #FDBC3B;
  color: #632598
}

.consent-btn.primary::before {
  background: linear-gradient(135deg, #FDBC3B 0%, #fdc961 100%)
}

@media (max-width: 768px) {
  .hd-brand-deck {
    flex-direction: column;
    align-items: flex-start
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch
  }

  .nav-link {
    text-align: center
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .ft-bottom {
    flex-direction: column;
    text-align: center
  }

  .consent-inner {
    flex-direction: column;
    text-align: center
  }

  .consent-actions {
    width: 100%;
    justify-content: center
  }

  .consent-btn {
    flex: 1 1 auto
  }
}

@media (max-width: 480px) {
  .hd-plate {
    padding: 12px 0
  }

  .logo-pod {
    padding: 8px 20px
  }

  .logo-img {
    width: 44px;
    height: 44px
  }

  .brand-txt {
    font-size: 21px
  }

  .ft-script {
    font-size: 21px
  }

  .consent-actions {
    flex-direction: column
  }

  .consent-btn {
    width: 100%
  }
}

.policy-wrapper {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff
}

.policy-wrapper h1 {
  font-size: 54px;
  line-height: 1.1;
  color: #632598;
  margin: 0 0 40px;
  letter-spacing: -.02em
}

.policy-wrapper h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 80px 0 20px;
  letter-spacing: -.01em
}

.policy-wrapper h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #632598;
  margin: 40px 0 12px
}

.policy-wrapper h4 {
  font-size: 17px;
  line-height: 1.3;
  color: #632598;
  margin: 20px 0 8px
}

.policy-wrapper h5 {
  font-size: 17px;
  line-height: 1.3;
  color: #632598;
  margin: 20px 0 8px;
  font-weight: 600
}

.policy-wrapper h6 {
  font-size: 14px;
  line-height: 1.3;
  color: #632598;
  margin: 20px 0 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.policy-wrapper p {
  font-size: 17px;
  line-height: 1.9;
  color: #2a2a2a;
  margin: 0 0 20px
}

.policy-wrapper ul,
.policy-wrapper ol {
  font-size: 17px;
  line-height: 1.9;
  color: #2a2a2a;
  margin: 0 0 20px;
  padding: 0 0 0 40px
}

.policy-wrapper li {
  margin: 0 0 12px
}

.policy-wrapper li:last-child {
  margin-bottom: 0
}

.policy-wrapper ul ul,
.policy-wrapper ol ol,
.policy-wrapper ul ol,
.policy-wrapper ol ul {
  margin: 12px 0 0
}

.policy-wrapper strong,
.policy-wrapper b {
  color: #632598;
  font-weight: 700
}

.policy-wrapper em,
.policy-wrapper i {
  font-style: italic;
  color: #4a4a4a
}

.policy-wrapper a {
  color: #632598;
  text-decoration: none;
  border-bottom: 1px solid #FDBC3B;
  transition: border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1), color .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.policy-wrapper a:hover {
  color: #FDBC3B;
  border-bottom-color: #632598
}

.policy-wrapper div {
  margin: 0 0 20px
}

.policy-wrapper h1+p,
.policy-wrapper h1+div {
  margin-top: 0
}

.policy-wrapper h2+p,
.policy-wrapper h2+div,
.policy-wrapper h2+ul,
.policy-wrapper h2+ol {
  margin-top: 0
}

.policy-wrapper h3+p,
.policy-wrapper h3+div,
.policy-wrapper h3+ul,
.policy-wrapper h3+ol {
  margin-top: 0
}

@media (max-width: 768px) {
  .policy-wrapper {
    padding: 40px 20px
  }

  .policy-wrapper h1 {
    font-size: 28px;
    margin-bottom: 20px
  }

  .policy-wrapper h2 {
    font-size: 21px;
    margin-top: 40px
  }

  .policy-wrapper h3 {
    font-size: 17px;
    margin-top: 20px
  }

  .policy-wrapper ul,
  .policy-wrapper ol {
    padding-left: 20px
  }
}

.pdc-detail {
  max-width: 1366px;
  margin: 0 auto;
  background: #fff
}

.pdc-detail .headline-wrap {
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: visible;
  background: linear-gradient(127deg, #FDBC3B 0%, #DFE4F2 100%)
}

.pdc-detail .headline-wrap::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ffffff26;
  pointer-events: none;
  z-index: 1
}

.pdc-detail .headline-wrap::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 8%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff1f;
  pointer-events: none;
  z-index: 1
}

.pdc-detail .headline-img {
  width: 50%;
  position: relative;
  overflow: hidden
}

.pdc-detail .headline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.15) saturate(1.2) brightness(1.05);
  animation: img-bounce .28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards
}

@keyframes img-bounce {
  0% {
    transform: translateY(-40px);
    opacity: 0
  }

  60% {
    transform: translateY(8px)
  }

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

.pdc-detail .headline-txt {
  width: 50%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2
}

.pdc-detail .headline-txt h1 {
  font-size: 54px;
  line-height: 1.1;
  color: #632598;
  margin: 0 0 20px;
  letter-spacing: -.02em
}

.pdc-detail .headline-declaration {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 12px
}

.pdc-detail .headline-declaration:last-of-type {
  margin-bottom: 0
}

.pdc-detail .meta-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap
}

.pdc-detail .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #632598;
  font-weight: 600
}

.pdc-detail .meta-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #632598;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pdc-detail .article-body {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.pdc-detail .article-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, #DFE4F2 1px, transparent 1px), radial-gradient(circle, #DFE4F2 1.5px, transparent 1.5px), radial-gradient(circle, #DFE4F2 0.8px, transparent 0.8px);
  background-size: 80px 80px, 120px 120px, 60px 60px;
  background-position: 0 0, 40px 40px, 20px 20px;
  opacity: .3;
  pointer-events: none;
  z-index: 0
}

.pdc-detail .article-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.pdc-detail .article-container>p:first-of-type {
  font-size: 21px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 40px
}

.pdc-detail .article-container p {
  font-size: 17px;
  line-height: 1.9;
  color: #3a3a3a;
  margin: 0 0 20px
}

.pdc-detail .article-container h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 40px 0 20px;
  letter-spacing: -.01em;
  position: relative;
  padding-top: 20px
}

.pdc-detail .article-container h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FDBC3B
}

.pdc-detail .article-container strong {
  color: #632598;
  font-weight: 600
}

.pdc-detail .article-container small {
  font-size: 14px;
  color: #6a6a6a
}

.pdc-detail .article-container ul,
.pdc-detail .article-container ol {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
  counter-reset: list-counter
}

.pdc-detail .article-container ol {
  counter-reset: list-counter
}

.pdc-detail .article-container ul li,
.pdc-detail .article-container ol li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a
}

.pdc-detail .article-container ol li {
  counter-increment: list-counter
}

.pdc-detail .article-container ol li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 28px;
  line-height: 1;
  color: #DFE4F2;
  font-weight: 700
}

.pdc-detail .article-container ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 2px;
  background: #FDBC3B
}

.pdc-detail .article-container blockquote {
  margin: 40px 0;
  padding: 20px 20px 20px 28px;
  background: #fafbfd;
  border-left: 4px solid #FDBC3B;
  border-radius: 1px;
  box-shadow: 2px 2px 5px 0 #fdbc3b14
}

.pdc-detail .article-container blockquote p {
  margin: 0;
  font-style: italic;
  color: #4a4a4a
}

.pdc-detail .article-container details {
  margin: 20px 0;
  padding: 20px;
  background: #f9f9fb;
  border: 1px solid #DFE4F2;
  border-radius: 10px;
  transition: background .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pdc-detail .article-container details[open] {
  background: #fff;
  box-shadow: 2px 7px 14px 0 #6325981a
}

.pdc-detail .article-container summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #632598;
  list-style: none;
  user-select: none;
  position: relative;
  padding-right: 28px;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pdc-detail .article-container summary::-webkit-details-marker {
  display: none
}

.pdc-detail .article-container summary::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid #632598;
  border-bottom: 2px solid #632598;
  transition: transform .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pdc-detail .article-container details[open] summary::after {
  transform: translateY(-50%) rotate(45deg)
}

.pdc-detail .article-container summary:hover {
  color: #FDBC3B
}

.pdc-detail .article-container details p {
  margin-top: 12px
}

.pdc-detail .poll-section {
  background: linear-gradient(217deg, #fff 0%, #f5f6fa 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.pdc-detail .poll-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 340px;
  height: 340px;
  border: 2px dotted #DFE4F2;
  border-radius: 50%;
  pointer-events: none;
  opacity: .5
}

.pdc-detail .poll-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  border: 1px dotted #FDBC3B;
  border-radius: 50%;
  pointer-events: none;
  opacity: .4
}

.pdc-detail .poll-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.pdc-detail .poll-heading {
  text-align: center;
  margin-bottom: 40px
}

.pdc-detail .poll-heading::before {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: #FDBC3B;
  margin: 0 auto 20px
}

.pdc-detail .poll-heading h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 12px;
  letter-spacing: -.01em
}

.pdc-detail .poll-heading p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0
}

.pdc-detail .poll-form {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 2px 7px 14px 0 #6325981a;
  border: 1px solid #DFE4F2
}

.pdc-detail .poll-question {
  font-size: 21px;
  line-height: 1.3;
  color: #2a2a2a;
  margin: 0 0 20px;
  font-weight: 600;
  position: relative;
  padding-left: 32px
}

.pdc-detail .poll-question::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 24px;
  background: #FDBC3B
}

.pdc-detail .poll-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px
}

.pdc-detail .poll-option {
  position: relative
}

.pdc-detail .poll-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.pdc-detail .poll-label {
  display: block;
  padding: 20px 20px 20px 52px;
  background: #fafbfd;
  border: 2px solid #DFE4F2;
  border-radius: 10px;
  cursor: pointer;
  font-size: 17px;
  line-height: 1.3;
  color: #3a3a3a;
  position: relative;
  transition: all .24s cubic-bezier(0.34, 1.56, 0.64, 1);
  user-select: none
}

.pdc-detail .poll-label::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #632598;
  border-radius: 50%;
  background: #fff;
  transition: all .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pdc-detail .poll-label::after {
  content: '';
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #632598;
  transition: transform .28s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.pdc-detail .poll-option input[type="radio"]:checked+.poll-label {
  background: linear-gradient(127deg, #fdbc3b1a 0%, #dfe4f24d 100%);
  border-color: #FDBC3B;
  box-shadow: 2px 2px 5px 0 #fdbc3b14
}

.pdc-detail .poll-option input[type="radio"]:checked+.poll-label::before {
  border-color: #FDBC3B;
  background: #fff
}

.pdc-detail .poll-option input[type="radio"]:checked+.poll-label::after {
  transform: translateY(-50%) scale(1);
  background: #FDBC3B
}

.pdc-detail .poll-label:hover {
  border-color: #632598;
  background: #fff;
  box-shadow: 2px 2px 5px 0 #63259814
}

.pdc-detail .poll-submit {
  background: #632598;
  color: #fff;
  border: none;
  padding: 20px 40px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 38px;
  cursor: pointer;
  transition: all .32s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 2px 7px 14px 0 #6325981a;
  width: 100%
}

.pdc-detail .poll-submit::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(135deg, transparent 0%, #4a1a70 50%, transparent 100%);
  transition: all .35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  opacity: 0
}

.pdc-detail .poll-submit:hover::before {
  top: -50%;
  left: -50%;
  opacity: 1
}

.pdc-detail .poll-submit:hover {
  background: #4a1a70;
  box-shadow: 2px 12px 52px 0 #6325981a;
  transform: translateY(-2px)
}

.pdc-detail .poll-submit:active {
  transform: translateY(0)
}

.pdc-detail .poll-submit:focus-visible {
  outline: 3px solid #FDBC3B !important;
  outline-offset: 4px !important
}

.pdc-detail .back-top-wrap {
  padding: 40px;
  text-align: center;
  background: #fff
}

.pdc-detail .back-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: #DFE4F2;
  color: #632598;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 22px;
  border: 2px solid transparent;
  transition: all .26s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: link-bounce .31s cubic-bezier(0.34, 1.56, 0.64, 1) .1s forwards
}

@keyframes link-bounce {
  0% {
    transform: translateY(20px);
    opacity: 0
  }

  60% {
    transform: translateY(-4px)
  }

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

.pdc-detail .back-top-link:hover {
  background: #632598;
  color: #fff;
  border-color: #632598;
  transform: translateY(-3px);
  box-shadow: 2px 7px 14px 0 #6325981a
}

.pdc-detail .back-top-link:focus-visible {
  outline: 3px solid #FDBC3B !important;
  outline-offset: 4px !important
}

.pdc-detail .back-arrow {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pdc-detail .back-top-link:hover .back-arrow {
  transform: translateY(-3px)
}

@media (max-width: 768px) {
  .pdc-detail .headline-wrap {
    flex-direction: column
  }

  .pdc-detail .headline-img,
  .pdc-detail .headline-txt {
    width: 100%
  }

  .pdc-detail .headline-txt {
    padding: 40px 20px
  }

  .pdc-detail .headline-txt h1 {
    font-size: 28px
  }

  .pdc-detail .headline-declaration {
    font-size: 14px
  }

  .pdc-detail .article-body {
    padding: 40px 20px
  }

  .pdc-detail .article-container>p:first-of-type {
    font-size: 17px
  }

  .pdc-detail .article-container h2 {
    font-size: 21px
  }

  .pdc-detail .poll-section {
    padding: 40px 20px
  }

  .pdc-detail .poll-form {
    padding: 20px
  }

  .pdc-detail .poll-heading h2 {
    font-size: 21px
  }

  .pdc-detail .poll-question {
    font-size: 17px
  }

  .pdc-detail .poll-label {
    font-size: 14px;
    padding: 12px 12px 12px 44px
  }

  .pdc-detail .poll-submit {
    padding: 12px 20px;
    font-size: 14px
  }

  .pdc-detail .back-top-wrap {
    padding: 20px
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .pdc-detail .headline-txt {
    padding: 40px
  }

  .pdc-detail .headline-txt h1 {
    font-size: 40px
  }
}

.prog-hub {
  background: #fff;
  overflow-x: clip
}

.prog-hub .lead-space {
  position: relative;
  padding: 140px 20px 200px;
  overflow: hidden;
  background: linear-gradient(127deg, #FDBC3B 0%, #632598 100%)
}

.prog-hub .lead-space::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./site_visuals/IMG_1065.jpg);
  background-size: cover;
  background-position: center;
  opacity: .12;
  pointer-events: none
}

.prog-hub .blur-accent-1 {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #fdbc3b59;
  filter: blur(80px);
  top: 80px;
  right: 12%;
  pointer-events: none;
  z-index: 1
}

.prog-hub .blur-accent-2 {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: #63259847;
  filter: blur(90px);
  bottom: 100px;
  left: 8%;
  pointer-events: none;
  z-index: 1
}

.prog-hub .lead-container {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.prog-hub .lead-margin-right {
  margin-right: 35%
}

.prog-hub .lead-space h1 {
  font-size: 70px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -.02em;
  animation: revealFromCenter .9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-origin: center
}

@keyframes revealFromCenter {
  0% {
    clip-path: circle(0% at 50% 50%);
    opacity: 0
  }

  100% {
    clip-path: circle(150% at 50% 50%);
    opacity: 1
  }
}

.prog-hub .lead-space p {
  font-size: 21px;
  line-height: 1.6;
  color: #fffffff2;
  margin: 0 0 40px;
  max-width: 680px
}

.prog-hub .lead-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap
}

.prog-hub .lead-link {
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  padding: 12px 40px;
  border: 2px solid #fff6;
  border-radius: 10px;
  transition: background .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .24s cubic-bezier(0.68, -0.55, 0.27, 1.55), transform .22s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  background: #ffffff14
}

.prog-hub .lead-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff3;
  transition: left .32s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0
}

.prog-hub .lead-link:hover::before {
  left: 100%
}

.prog-hub .lead-link:hover {
  background: #ffffff2e;
  border-color: #ffffffb3;
  transform: translateY(-2px)
}

.prog-hub .lead-link:active {
  transform: translateY(0)
}

.prog-hub .lead-img-holder {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 12px 52px 0 #6325981a;
  z-index: 3
}

.prog-hub .lead-img-holder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #63259826;
  pointer-events: none
}

.prog-hub .lead-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.prog-hub .scallop-divider {
  width: 100%;
  height: 40px;
  background: #fff;
  position: relative
}

.prog-hub .scallop-divider::before {
  content: '';
  position: absolute;
  top: -39px;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: radial-gradient(circle at 20px 0, transparent 20px, #fff 20px);
  background-size: 40px 40px;
  background-repeat: repeat-x
}

.prog-hub .curriculum-zone {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.prog-hub .curriculum-container {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start
}

.prog-hub .curriculum-sidebar {
  position: sticky;
  top: 40px
}

.prog-hub .curriculum-sidebar h2 {
  font-size: 54px;
  line-height: 1.1;
  color: #632598;
  margin: 0 0 20px;
  letter-spacing: -.01em;
  position: relative;
  padding-top: 12px
}

.prog-hub .curriculum-sidebar h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #FDBC3B;
  border-radius: 1px
}

.prog-hub .curriculum-sidebar p {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 40px
}

.prog-hub .curriculum-sidebar .stat-display {
  background: linear-gradient(135deg, #fdbc3b14 0%, #63259814 100%);
  border: 2px solid #DFE4F2;
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden
}

.prog-hub .curriculum-sidebar .stat-display::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: #fdbc3b1f;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none
}

.prog-hub .stat-number {
  font-size: 70px;
  line-height: 1.1;
  color: #632598;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -.02em
}

.prog-hub .stat-label {
  font-size: 17px;
  line-height: 1.3;
  color: #666;
  margin: 0
}

.prog-hub .curriculum-main {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.prog-hub .module-card {
  background: #fff;
  border: 3px solid #DFE4F2;
  border-radius: 22px;
  padding: 40px;
  position: relative;
  transition: box-shadow .26s cubic-bezier(0.34, 1.56, 0.64, 1), transform .24s cubic-bezier(0.68, -0.55, 0.27, 1.55), border-color .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 2px 5px 0 #fdbc3b14
}

.prog-hub .module-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 22px;
  border: 3px solid transparent;
  transition: border-color .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none
}

.prog-hub .module-card:hover {
  box-shadow: 2px 12px 52px 0 #6325981a;
  transform: translateY(-4px);
  border-color: #FDBC3B
}

.prog-hub .module-card:hover::before {
  border-color: #fdbc3b4d
}

.prog-hub .module-number {
  font-size: 54px;
  line-height: 1.1;
  color: #fdbc3b40;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.02em
}

.prog-hub .module-card h3 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 12px;
  letter-spacing: -.01em
}

.prog-hub .module-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 20px
}

.prog-hub .module-card p:first-of-type {
  font-size: 21px;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 12px
}

.prog-hub .module-topics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.prog-hub .module-topics li {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  padding-left: 40px;
  position: relative
}

.prog-hub .module-topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 2px;
  background: #FDBC3B;
  border-radius: 1px
}

.prog-hub .timeline-zone {
  padding: 80px 20px;
  background: linear-gradient(127deg, #dfe4f24d 0%, #fdbc3b14 100%);
  position: relative
}

.prog-hub .timeline-container {
  max-width: 1366px;
  margin: 0 auto
}

.prog-hub .timeline-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  padding-top: 12px
}

.prog-hub .timeline-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #632598;
  border-radius: 1px
}

.prog-hub .timeline-header h2 {
  font-size: 54px;
  line-height: 1.1;
  color: #632598;
  margin: 0 0 20px;
  letter-spacing: -.01em
}

.prog-hub .timeline-header p {
  font-size: 21px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 auto;
  max-width: 720px
}

.prog-hub .timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px
}

.prog-hub .timeline-phase {
  background: #fff;
  border: 3px solid #DFE4F2;
  border-radius: 22px;
  padding: 40px;
  position: relative;
  transition: box-shadow .3s cubic-bezier(0.34, 1.56, 0.64, 1), transform .26s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 2px 2px 5px 0 #63259814
}

.prog-hub .timeline-phase:hover {
  box-shadow: 2px 12px 52px 0 #fdbc3b1a;
  transform: translateY(-4px)
}

.prog-hub .phase-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FDBC3B 0%, #632598 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prog-hub .timeline-phase:hover .phase-icon-wrap {
  transform: rotate(8deg)
}

.prog-hub .phase-icon-wrap svg {
  width: 32px;
  height: 32px;
  fill: #fff
}

.prog-hub .timeline-phase h4 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 12px;
  letter-spacing: -.01em
}

.prog-hub .timeline-phase p {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0
}

.prog-hub .activity-stream {
  background: #fff;
  border: 3px solid #DFE4F2;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 2px 7px 14px 0 #6325981a
}

.prog-hub .activity-stream h3 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 40px;
  letter-spacing: -.01em;
  text-align: center
}

.prog-hub .activity-list {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.prog-hub .activity-entry {
  display: grid;
  grid-template-columns: 80px 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: linear-gradient(127deg, #dfe4f233 0%, #fdbc3b0d 100%);
  border-radius: 10px;
  transition: background .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prog-hub .activity-entry:hover {
  background: linear-gradient(127deg, #dfe4f259 0%, #fdbc3b1f 100%)
}

.prog-hub .activity-time {
  font-size: 14px;
  line-height: 1.3;
  color: #666;
  text-align: right;
  padding-top: 4px
}

.prog-hub .activity-icon-holder {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #FDBC3B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.prog-hub .activity-icon-holder svg {
  width: 24px;
  height: 24px;
  fill: #fff
}

.prog-hub .activity-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0
}

.prog-hub .instructor-zone {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.prog-hub .instructor-container {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center
}

.prog-hub .instructor-content h2 {
  font-size: 54px;
  line-height: 1.1;
  color: #632598;
  margin: 0 0 20px;
  letter-spacing: -.01em;
  position: relative;
  padding-top: 12px
}

.prog-hub .instructor-content h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #FDBC3B;
  border-radius: 1px
}

.prog-hub .instructor-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0 0 20px
}

.prog-hub .instructor-content p:first-of-type {
  font-size: 21px;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 20px
}

.prog-hub .instructor-profiles {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.prog-hub .instructor-profile {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start
}

.prog-hub .instructor-portrait {
  width: 120px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid #DFE4F2;
  transition: box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), transform .24s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 2px 2px 5px 0 #fdbc3b14
}

.prog-hub .instructor-profile:hover .instructor-portrait {
  box-shadow: 2px 12px 52px 0 #6325981a;
  transform: translateY(-2px)
}

.prog-hub .instructor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.prog-hub .instructor-info h5 {
  font-size: 21px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 8px;
  letter-spacing: -.01em
}

.prog-hub .instructor-info p {
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  margin: 0
}

.prog-hub .instructor-visual {
  position: relative
}

.prog-hub .instructor-img-frame {
  width: 100%;
  height: 480px;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid #DFE4F2;
  box-shadow: 2px 7px 14px 0 #6325981a;
  transition: box-shadow .3s cubic-bezier(0.34, 1.56, 0.64, 1), transform .26s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.prog-hub .instructor-img-frame:hover {
  box-shadow: 2px 12px 52px 0 #fdbc3b1a;
  transform: translateY(-4px)
}

.prog-hub .instructor-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.prog-hub .scallop-divider-bottom {
  width: 100%;
  height: 40px;
  background: linear-gradient(127deg, #dfe4f24d 0%, #fdbc3b14 100%);
  position: relative
}

.prog-hub .scallop-divider-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-image: radial-gradient(circle at 20px 40px, transparent 20px, #fff 20px);
  background-size: 40px 40px;
  background-repeat: repeat-x
}

@media (max-width: 960px) {
  .prog-hub .lead-space {
    padding: 80px 20px 120px
  }

  .prog-hub .lead-space h1 {
    font-size: 54px
  }

  .prog-hub .lead-margin-right {
    margin-right: 0
  }

  .prog-hub .lead-img-holder {
    position: static;
    transform: none;
    margin: 40px auto 0;
    width: 240px;
    height: 240px
  }

  .prog-hub .curriculum-container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prog-hub .curriculum-sidebar {
    position: static
  }

  .prog-hub .timeline-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .prog-hub .instructor-container {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prog-hub .instructor-img-frame {
    height: 360px
  }
}

@media (max-width: 600px) {
  .prog-hub .lead-space h1 {
    font-size: 28px
  }

  .prog-hub .lead-space p {
    font-size: 17px
  }

  .prog-hub .lead-actions {
    flex-direction: column;
    width: 100%
  }

  .prog-hub .lead-link {
    width: 100%;
    text-align: center
  }

  .prog-hub .curriculum-sidebar h2,
  .prog-hub .timeline-header h2,
  .prog-hub .instructor-content h2 {
    font-size: 28px
  }

  .prog-hub .stat-number {
    font-size: 54px
  }

  .prog-hub .module-number {
    font-size: 28px
  }

  .prog-hub .module-card h3,
  .prog-hub .timeline-phase h4,
  .prog-hub .activity-stream h3 {
    font-size: 21px
  }

  .prog-hub .module-card,
  .prog-hub .timeline-phase,
  .prog-hub .activity-stream,
  .prog-hub .curriculum-sidebar .stat-display {
    padding: 20px
  }

  .prog-hub .instructor-profile {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .prog-hub .instructor-portrait {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5
  }

  .prog-hub .activity-entry {
    grid-template-columns: 60px 40px 1fr;
    gap: 12px;
    padding: 12px
  }

  .prog-hub .activity-icon-holder {
    width: 40px;
    height: 40px
  }

  .prog-hub .activity-icon-holder svg {
    width: 20px;
    height: 20px
  }
}

.reach-pg {
  max-width: 1366px;
  margin: 0 auto;
  background: #fff;
  overflow-x: clip
}

.reach-pg .intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  position: relative;
  overflow: hidden
}

.reach-pg .intro-split .zone-left {
  background: #632598;
  padding: 80px 40px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2
}

.reach-pg .intro-split .zone-right {
  background: #FDBC3B;
  position: relative;
  overflow: hidden
}

.reach-pg .intro-split .zone-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35
}

.reach-pg .intro-split .geo-shape {
  position: absolute;
  border: 2px solid #ffffff26;
  pointer-events: none
}

.reach-pg .intro-split .geo-shape.circle-one {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 40px;
  right: 60px
}

.reach-pg .intro-split .geo-shape.rect-one {
  width: 140px;
  height: 140px;
  border-radius: 22px;
  bottom: 80px;
  left: 80px;
  transform: rotate(15deg)
}

.reach-pg .intro-split .heading-primary {
  font-size: 54px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -.02em
}

.reach-pg .intro-split .heading-secondary {
  font-size: 28px;
  line-height: 1.3;
  color: #ffffffd9;
  margin: 0 0 20px
}

.reach-pg .intro-split .heading-tertiary {
  font-size: 21px;
  line-height: 1.3;
  color: #ffffffb3;
  margin: 0
}

.reach-pg .form-block {
  padding: 80px 40px;
  background: linear-gradient(135deg, #fff 0%, #DFE4F2 100%);
  position: relative
}

.reach-pg .form-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 100%;
  background: radial-gradient(ellipse at center, #fdbc3b14 0%, #fdbc3b00 70%);
  pointer-events: none;
  z-index: 1
}

.reach-pg .form-block .dot-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .03;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(circle, #632598 1px, transparent 1px), radial-gradient(circle, #632598 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px
}

.reach-pg .form-block .form-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.reach-pg .form-block .form-header {
  text-align: center;
  margin: 0 0 40px
}

.reach-pg .form-block .form-header .overline {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: #FDBC3B;
  margin: 0 0 20px
}

.reach-pg .form-block .form-header h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 12px;
  letter-spacing: -.01em
}

.reach-pg .form-block .form-header p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  max-width: 600px;
  margin: 0 auto
}

.reach-pg .form-block form {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 2px 7px 14px 0 #6325981a
}

.reach-pg .form-block .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 20px
}

.reach-pg .form-block .field-group {
  margin: 0 0 20px
}

.reach-pg .form-block .field-group label {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: #632598;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: .02em
}

.reach-pg .form-block .field-group input[type="text"],
.reach-pg .form-block .field-group input[type="email"],
.reach-pg .form-block .field-group select {
  width: 100%;
  padding: 12px 20px;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  border: 2px solid #DFE4F2;
  border-radius: 10px;
  transition: border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .24s cubic-bezier(0.34, 1.56, 0.64, 1);
  outline: none
}

.reach-pg .form-block .field-group input[type="text"]:focus,
.reach-pg .form-block .field-group input[type="email"]:focus,
.reach-pg .form-block .field-group select:focus {
  border-color: #FDBC3B;
  box-shadow: 0 0 0 3px #fdbc3b26
}

.reach-pg .form-block .field-group input[type="text"]::placeholder,
.reach-pg .form-block .field-group input[type="email"]::placeholder {
  color: #999
}

.reach-pg .form-block .field-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23632598' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px
}

.reach-pg .form-block .radio-set {
  margin: 0 0 20px
}

.reach-pg .form-block .radio-set .radio-label {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: #632598;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: .02em
}

.reach-pg .form-block .radio-options {
  display: flex;
  flex-direction: row;
  gap: 20px
}

.reach-pg .form-block .radio-item {
  flex: 1
}

.reach-pg .form-block .radio-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.reach-pg .form-block .radio-item label {
  display: block;
  padding: 12px 20px;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  border: 2px solid #DFE4F2;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: all .27s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 400;
  margin: 0
}

.reach-pg .form-block .radio-item input[type="radio"]:checked+label {
  background: #FDBC3B;
  border-color: #FDBC3B;
  color: #fff;
  box-shadow: 2px 2px 5px 0 #fdbc3b14
}

.reach-pg .form-block .radio-item label:hover {
  border-color: #FDBC3B
}

.reach-pg .form-block .privacy-check {
  margin: 0 0 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.reach-pg .form-block .privacy-check input[type="checkbox"] {
  margin: 4px 0 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #632598
}

.reach-pg .form-block .privacy-check label {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  cursor: pointer;
  margin: 0;
  font-weight: 400
}

.reach-pg .form-block .privacy-check label a {
  color: #632598;
  text-decoration: underline;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.reach-pg .form-block .privacy-check label a:hover {
  color: #FDBC3B
}

.reach-pg .form-block .submit-btn {
  width: 100%;
  padding: 20px 40px;
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  background: #632598;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.reach-pg .form-block .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, #fdbc3b4d 50%, transparent 100%);
  transition: left .32s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.reach-pg .form-block .submit-btn:hover::before {
  left: 100%
}

.reach-pg .form-block .submit-btn:hover {
  box-shadow: 2px 7px 14px 0 #6325981a
}

.reach-pg .form-block .submit-btn:active {
  transform: translateY(1px)
}

.reach-pg .details-grid {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.reach-pg .details-grid .grid-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start
}

.reach-pg .details-grid .main-content {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.reach-pg .details-grid .info-card {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  border: 2px solid #DFE4F2;
  position: relative;
  transition: all .29s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.reach-pg .details-grid .info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #FDBC3B 0%, #632598 100%);
  border-radius: 1px 0 0 1px;
  transition: height .35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.reach-pg .details-grid .info-card:hover::before {
  height: 100%
}

.reach-pg .details-grid .info-card:hover {
  border-color: #FDBC3B;
  box-shadow: 2px 12px 52px 0 #6325981a;
  transform: translateY(-4px)
}

.reach-pg .details-grid .info-card h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 20px;
  letter-spacing: -.01em;
  position: relative;
  padding-bottom: 12px
}

.reach-pg .details-grid .info-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #FDBC3B;
  border-radius: 1px
}

.reach-pg .details-grid .info-card h3 .decorated-word {
  position: relative;
  display: inline-block
}

.reach-pg .details-grid .info-card h3 .decorated-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FDBC3B;
  border-radius: 1px
}

.reach-pg .details-grid .info-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 12px
}

.reach-pg .details-grid .info-card p:last-of-type {
  margin: 0
}

.reach-pg .details-grid .info-card .contact-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px
}

.reach-pg .details-grid .info-card .contact-detail:last-child {
  margin: 0
}

.reach-pg .details-grid .info-card .contact-detail .icon-holder {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FDBC3B 0%, #632598 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.reach-pg .details-grid .info-card .contact-detail .icon-holder svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.reach-pg .details-grid .info-card .contact-detail .detail-text {
  font-size: 17px;
  line-height: 1.6;
  color: #333
}

.reach-pg .details-grid .info-card .contact-detail .detail-text a {
  color: #632598;
  text-decoration: none;
  transition: color .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.reach-pg .details-grid .info-card .contact-detail .detail-text a:hover {
  color: #FDBC3B;
  text-decoration: underline
}

.reach-pg .details-grid .sidebar {
  position: sticky;
  top: 40px
}

.reach-pg .details-grid .status-card {
  background: linear-gradient(135deg, #632598 0%, #FDBC3B 100%);
  padding: 40px;
  border-radius: 22px;
  box-shadow: 2px 12px 52px 0 #6325981a;
  color: #fff;
  position: relative;
  overflow: hidden
}

.reach-pg .details-grid .status-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, #ffffff08 20px, #ffffff08 40px);
  animation: stripe-drift 25s linear infinite;
  pointer-events: none
}

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

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

.reach-pg .details-grid .status-card .card-header {
  margin: 0 0 20px;
  position: relative;
  z-index: 2
}

.reach-pg .details-grid .status-card .card-header h4 {
  font-size: 21px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.01em
}

.reach-pg .details-grid .status-card .card-header .status-indicator {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: #fff3;
  border-radius: 38px;
  font-size: 14px;
  line-height: 1.3
}

.reach-pg .details-grid .status-card .card-header .status-indicator .dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.reach-pg .details-grid .status-card .info-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2
}

.reach-pg .details-grid .status-card .info-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #fff3
}

.reach-pg .details-grid .status-card .info-row:last-child {
  border-bottom: none
}

.reach-pg .details-grid .status-card .info-row .row-label {
  font-size: 14px;
  line-height: 1.3;
  color: #fffc;
  letter-spacing: .02em
}

.reach-pg .details-grid .status-card .info-row .row-value {
  font-size: 17px;
  line-height: 1.3;
  color: #fff;
  font-weight: 600
}

@media (max-width: 768px) {
  .reach-pg .intro-split {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .reach-pg .intro-split .zone-left {
    padding: 40px 20px 80px
  }

  .reach-pg .intro-split .zone-right {
    min-height: 280px
  }

  .reach-pg .intro-split .heading-primary {
    font-size: 28px
  }

  .reach-pg .intro-split .heading-secondary {
    font-size: 21px
  }

  .reach-pg .intro-split .heading-tertiary {
    font-size: 17px
  }

  .reach-pg .form-block {
    padding: 40px 20px
  }

  .reach-pg .form-block form {
    padding: 20px
  }

  .reach-pg .form-block .field-row {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .reach-pg .form-block .radio-options {
    flex-direction: column
  }

  .reach-pg .details-grid {
    padding: 40px 20px
  }

  .reach-pg .details-grid .grid-wrap {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .reach-pg .details-grid .info-card {
    padding: 20px
  }

  .reach-pg .details-grid .status-card {
    padding: 20px
  }

  .reach-pg .details-grid .sidebar {
    position: static
  }
}

.prtl {
  max-width: 1366px;
  margin: 0 auto;
  background: #fff;
  overflow-x: clip
}

.prtl .lead-zone {
  position: relative;
  padding: 80px 20px;
  background: radial-gradient(circle at 50% 50%, #fdbc3b1f, #63259814, #fff);
  overflow: hidden
}

.prtl .lead-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(45deg, #FDBC3B 0px, #FDBC3B 12px, #632598 12px, #632598 24px, #DFE4F2 24px, #DFE4F2 36px);
  z-index: 1
}

.prtl .lead-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2
}

.prtl .lead-content h1 {
  font-size: 70px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #632598;
  margin: 0 0 20px;
  animation: prtl-scale-in .28s cubic-bezier(0.34, 1.56, 0.64, 1) backwards
}

.prtl .lead-content .desc-text {
  font-size: 21px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 40px;
  animation: prtl-scale-in .32s cubic-bezier(0.34, 1.56, 0.64, 1) backwards .08s
}

.prtl .lead-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: prtl-scale-in .35s cubic-bezier(0.34, 1.56, 0.64, 1) backwards .12s
}

.prtl .lead-actions a {
  font-size: 17px;
  line-height: 1.3;
  padding: 12px 40px;
  border-radius: 22px;
  text-decoration: none;
  transition: transform .24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .24s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.prtl .lead-actions a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left .26s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.prtl .lead-actions a:hover::before {
  left: 0
}

.prtl .lead-actions a:hover {
  transform: translateY(-2px);
  box-shadow: 2px 7px 14px 0 #6325981a
}

.prtl .lead-actions .primary-link {
  background: #FDBC3B;
  color: #632598;
  border: 2px solid #FDBC3B
}

.prtl .lead-actions .primary-link::before {
  background: #632598
}

.prtl .lead-actions .primary-link:hover {
  color: #FDBC3B
}

.prtl .lead-actions .secondary-link {
  background: transparent;
  color: #632598;
  border: 2px solid #632598
}

.prtl .lead-actions .secondary-link::before {
  background: #632598
}

.prtl .lead-actions .secondary-link:hover {
  color: #fff
}

.prtl .lead-img-zone {
  max-width: 680px;
  margin: 40px auto 0;
  position: relative;
  animation: prtl-scale-in .3s cubic-bezier(0.34, 1.56, 0.64, 1) backwards .16s
}

.prtl .lead-img-zone::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 38px;
  background: linear-gradient(135deg, #fdbc3b4d, #63259833);
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%)
}

.prtl .lead-img-zone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 2px 12px 52px 0 #6325981a
}

.prtl .lead-img-zone img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, #0000004d, transparent);
  pointer-events: none
}

@keyframes prtl-scale-in {
  from {
    opacity: 0;
    transform: scale(0.9)
  }

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

.prtl .foundation-block {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.prtl .foundation-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(-45deg, #DFE4F2 0px, #DFE4F2 10px, #FDBC3B 10px, #FDBC3B 20px)
}

.prtl .foundation-inner {
  max-width: 680px;
  margin: 0 auto
}

.prtl .foundation-inner h2 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #632598;
  margin: 0 0 40px;
  text-align: center;
  position: relative;
  padding-left: 12px
}

.prtl .foundation-inner h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #FDBC3B, #632598);
  border-radius: 1px
}

.prtl .foundation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px
}

.prtl .foundation-item {
  position: relative;
  padding: 20px 20px 20px 80px;
  background: #fff;
  border: 2px solid #DFE4F2;
  border-radius: 10px;
  transition: transform .22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .22s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .foundation-item::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  font-size: 54px;
  line-height: 1;
  color: #fdbc3b33;
  font-weight: 700
}

.prtl .foundation-item:nth-child(1)::before {
  content: '1'
}

.prtl .foundation-item:nth-child(2)::before {
  content: '2'
}

.prtl .foundation-item:nth-child(3)::before {
  content: '3'
}

.prtl .foundation-item:hover {
  transform: translateY(-4px);
  box-shadow: 2px 7px 14px 0 #6325981a;
  border-color: #FDBC3B
}

.prtl .foundation-item h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #632598;
  margin: 0 0 8px
}

.prtl .foundation-item p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0
}

.prtl .gap-visual {
  padding: 80px 20px;
  background: #632598;
  position: relative;
  overflow: hidden
}

.prtl .gap-visual::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #fdbc3b26, transparent 70%);
  pointer-events: none
}

.prtl .gap-visual::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #dfe4f21a, transparent 70%);
  pointer-events: none
}

.prtl .gap-content {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.prtl .gap-left h2 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #FDBC3B;
  margin: 0 0 20px
}

.prtl .gap-left p {
  font-size: 21px;
  line-height: 1.6;
  color: #DFE4F2;
  margin: 0
}

.prtl .gap-right {
  background: #ffffff14;
  padding: 40px;
  border-radius: 22px;
  border: 2px solid #fdbc3b4d;
  box-shadow: inset 0 2px 8px 0 #0000001a
}

.prtl .gap-right h3 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #FDBC3B;
  margin: 0 0 20px
}

.prtl .gap-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.prtl .gap-list li {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 12px;
  padding-left: 28px;
  position: relative
}

.prtl .gap-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #FDBC3B;
  border-radius: 1px;
  transform: rotate(45deg)
}

.prtl .gap-list li:last-child {
  margin-bottom: 0
}

.prtl .offerings-zone {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff 0%, #dfe4f24d 100%)
}

.prtl .offerings-inner {
  max-width: 1100px;
  margin: 0 auto
}

.prtl .offerings-header {
  text-align: center;
  margin: 0 0 40px;
  position: relative
}

.prtl .offerings-header::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #FDBC3B;
  border-radius: 1px
}

.prtl .offerings-header h2 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #632598;
  margin: 0 0 12px
}

.prtl .offerings-header p {
  font-size: 21px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto
}

.prtl .offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.prtl .offer-card {
  background: #fff;
  border: 2px solid #DFE4F2;
  border-radius: 22px;
  padding: 40px 20px;
  text-align: center;
  transition: transform .25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden
}

.prtl .offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FDBC3B, #632598);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.prtl .offer-card:hover::before {
  transform: scaleX(1)
}

.prtl .offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 2px 12px 52px 0 #6325981a;
  border-color: #FDBC3B
}

.prtl .offer-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #fdbc3b33, #6325981a);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .offer-card:hover .offer-icon {
  transform: rotate(5deg) scale(1.1)
}

.prtl .offer-icon svg {
  width: 40px;
  height: 40px;
  fill: #632598
}

.prtl .offer-card h3 {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #632598;
  margin: 0 0 12px
}

.prtl .offer-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0
}

.prtl .story-block {
  padding: 80px 20px;
  background: #fff
}

.prtl .story-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start
}

.prtl .story-profile {
  position: sticky;
  top: 20px
}

.prtl .story-profile-img {
  width: 100%;
  aspect-ratio: 7/9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 2px 7px 14px 0 #6325981a
}

.prtl .story-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.prtl .story-profile-name {
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  color: #632598;
  margin: 0 0 4px;
  font-weight: 700
}

.prtl .story-profile-role {
  font-size: 17px;
  line-height: 1.3;
  color: #666;
  margin: 0
}

.prtl .story-content h2 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #632598;
  margin: 0 0 20px
}

.prtl .story-content .opening {
  font-size: 21px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px
}

.prtl .story-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px
}

.prtl .story-content p:last-child {
  margin-bottom: 0
}

.prtl .story-content .highlight-phrase {
  color: #FDBC3B;
  font-weight: 700
}

.prtl .metrics-zone {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdbc3b14, #6325980d);
  position: relative;
  overflow: hidden
}

.prtl .metrics-zone::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(135deg, #632598 0px, #632598 12px, #FDBC3B 12px, #FDBC3B 24px, #DFE4F2 24px, #DFE4F2 36px)
}

.prtl .metrics-inner {
  max-width: 1100px;
  margin: 0 auto
}

.prtl .metrics-inner h2 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: #632598;
  margin: 0 0 40px;
  text-align: center
}

.prtl .metrics-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  padding: 0 20px
}

.prtl .metrics-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 60px;
  right: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FDBC3B, #632598);
  transform: translateY(-50%);
  z-index: 0
}

.prtl .milestone {
  position: relative;
  z-index: 1;
  text-align: center;
  flex-shrink: 0
}

.prtl .milestone-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 4px solid #FDBC3B;
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: transform .27s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .27s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .milestone:hover .milestone-icon {
  transform: scale(1.15);
  border-color: #632598
}

.prtl .milestone-icon svg {
  width: 28px;
  height: 28px;
  fill: #632598
}

.prtl .milestone-label {
  font-size: 17px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 4px;
  font-weight: 700
}

.prtl .milestone-date {
  font-size: 14px;
  line-height: 1.3;
  color: #666;
  margin: 0
}

.prtl .metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.prtl .metric-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 22px;
  text-align: center;
  border: 2px solid #DFE4F2;
  transition: transform .23s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .23s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 2px 7px 14px 0 #6325981a
}

.prtl .metric-value {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #FDBC3B;
  margin: 0 0 8px;
  font-weight: 700
}

.prtl .metric-label {
  font-size: 17px;
  line-height: 1.3;
  color: #632598;
  margin: 0
}

.prtl .audience-block {
  padding: 80px 20px;
  background: #fff
}

.prtl .audience-inner {
  max-width: 1100px;
  margin: 0 auto
}

.prtl .audience-inner h2 {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #632598;
  margin: 0 0 40px;
  text-align: center
}

.prtl .audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.prtl .audience-column {
  background: #fff;
  padding: 40px;
  border-radius: 22px;
  border: 2px solid #DFE4F2;
  position: relative;
  transition: border-color .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.prtl .audience-column.fit {
  border-color: #FDBC3B
}

.prtl .audience-column.not-fit {
  border-color: #632598
}

.prtl .audience-column h3 {
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -.01em;
  margin: 0 0 20px
}

.prtl .audience-column.fit h3 {
  color: #FDBC3B
}

.prtl .audience-column.not-fit h3 {
  color: #632598
}

.prtl .audience-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.prtl .audience-list li {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 12px;
  padding-left: 28px;
  position: relative
}

.prtl .audience-column.fit .audience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #FDBC3B;
  border-radius: 38px
}

.prtl .audience-column.not-fit .audience-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 10px;
  width: 12px;
  height: 2px;
  background: #632598;
  border-radius: 1px
}

.prtl .audience-list li:last-child {
  margin-bottom: 0
}

@media (max-width: 768px) {
  .prtl .lead-zone {
    padding: 40px 20px
  }

  .prtl .lead-content h1 {
    font-size: 54px
  }

  .prtl .lead-content .desc-text {
    font-size: 17px
  }

  .prtl .lead-actions {
    flex-direction: column
  }

  .prtl .lead-actions a {
    width: 100%;
    text-align: center
  }

  .prtl .foundation-block,
  .prtl .gap-visual,
  .prtl .offerings-zone,
  .prtl .story-block,
  .prtl .metrics-zone,
  .prtl .audience-block {
    padding: 40px 20px
  }

  .prtl .foundation-inner h2,
  .prtl .gap-left h2,
  .prtl .offerings-header h2,
  .prtl .story-content h2,
  .prtl .metrics-inner h2,
  .prtl .audience-inner h2 {
    font-size: 28px
  }

  .prtl .gap-content {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .prtl .offerings-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .prtl .story-inner {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .prtl .story-profile {
    position: static;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: center
  }

  .prtl .story-profile-img {
    margin-bottom: 0
  }

  .prtl .metrics-track {
    flex-direction: column;
    gap: 20px
  }

  .prtl .metrics-track::before {
    display: none
  }

  .prtl .metrics-grid {
    grid-template-columns: 1fr
  }

  .prtl .audience-split {
    grid-template-columns: 1fr
  }
}

.pcast-archive {
  background: #fff;
  overflow-x: clip
}

.pcast-archive .title-zone {
  background: linear-gradient(127deg, #FDBC3B 0%, #632598 100%);
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden
}

.pcast-archive .title-zone::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 40px;
  width: 180px;
  height: 180px;
  background: #ffffff14;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  transform: rotate(12deg)
}

.pcast-archive .title-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px
}

.pcast-archive .main-heading {
  font-size: 70px;
  line-height: 1.1;
  color: #fff;
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: -.02em
}

.pcast-archive .main-heading .underline-word {
  position: relative;
  display: inline-block
}

.pcast-archive .main-heading .underline-word::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 4px;
  background: #fff;
  border-radius: 1px
}

.pcast-archive .subtitle-text {
  font-size: 21px;
  line-height: 1.6;
  color: #fffffff2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto
}

.pcast-archive .posts-container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 20px
}

.pcast-archive .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px
}

.pcast-archive .post-card {
  background: #fff;
  border: 2px solid #DFE4F2;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .24s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative
}

.pcast-archive .post-card:hover {
  transform: translateY(-8px);
  box-shadow: 2px 12px 52px 0 #6325981a;
  border-color: #632598
}

.pcast-archive .post-card:hover .card-img-wrap::before {
  opacity: .15
}

.pcast-archive .card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #DFE4F2
}

.pcast-archive .card-img-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #632598 0%, #FDBC3B 100%);
  opacity: 0;
  transition: opacity .32s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1
}

.pcast-archive .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.pcast-archive .card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #FDBC3B;
  color: #000;
  font-size: 14px;
  line-height: 1.3;
  padding: 4px 12px;
  border-radius: 22px;
  font-weight: 600;
  z-index: 2
}

.pcast-archive .card-content {
  padding: 20px
}

.pcast-archive .card-title {
  font-size: 21px;
  line-height: 1.3;
  color: #1a1a2e;
  margin: 0 0 12px;
  letter-spacing: -.01em
}

.pcast-archive .card-title a {
  color: inherit;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pcast-archive .card-title a:hover {
  color: #632598
}

.pcast-archive .card-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 20px
}

.pcast-archive .card-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.pcast-archive .meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: #6a6a7e
}

.pcast-archive .meta-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pcast-archive .divider-double {
  max-width: 1366px;
  margin: 0 auto 80px;
  padding: 0 20px;
  position: relative;
  height: 12px
}

.pcast-archive .divider-double::before,
.pcast-archive .divider-double::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #DFE4F2
}

.pcast-archive .divider-double::before {
  top: 0
}

.pcast-archive .divider-double::after {
  bottom: 0
}

.pcast-archive .divider-double .middle-fill {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 2px;
  bottom: 2px;
  background: #FDBC3B
}

.pcast-archive .feature-zone {
  background: #DFE4F2;
  padding: 80px 20px;
  position: relative;
  overflow: hidden
}

.pcast-archive .feature-zone::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, #6325980a 8px, #6325980a 16px);
  transform: rotate(-15deg)
}

.pcast-archive .feature-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative
}

.pcast-archive .feature-top-bar {
  background: linear-gradient(90deg, #632598 0%, #FDBC3B 100%);
  height: 8px;
  border-radius: 22px;
  margin-bottom: 40px
}

.pcast-archive .feature-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px
}

.pcast-archive .feature-col {
  background: #fff;
  border: 3px solid #632598;
  border-radius: 10px;
  padding: 40px 20px;
  position: relative;
  transition: transform .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pcast-archive .feature-col::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 1px solid #FDBC3B;
  border-radius: 10px;
  pointer-events: none
}

.pcast-archive .feature-col:hover {
  transform: scale(1.04)
}

.pcast-archive .feature-num {
  font-size: 54px;
  line-height: 1.1;
  color: #6325981f;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.02em
}

.pcast-archive .feature-heading {
  font-size: 21px;
  line-height: 1.3;
  color: #1a1a2e;
  margin: 0 0 12px;
  text-align: center
}

.pcast-archive .feature-text {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0;
  text-align: left
}

.pcast-archive .comparison-zone {
  background: #fff;
  padding: 80px 20px;
  position: relative
}

.pcast-archive .comparison-inner {
  max-width: 1366px;
  margin: 0 auto
}

.pcast-archive .comparison-overline {
  width: 60px;
  height: 3px;
  background: #FDBC3B;
  margin: 0 auto 12px
}

.pcast-archive .comparison-heading {
  font-size: 28px;
  line-height: 1.3;
  color: #1a1a2e;
  text-align: center;
  margin: 0 0 40px
}

.pcast-archive .comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
  border: 2px solid #DFE4F2;
  border-radius: 10px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto
}

.pcast-archive .comparison-header {
  background: linear-gradient(90deg, #632598 0%, #FDBC3B 100%);
  color: #fff;
  padding: 20px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid #fff3
}

.pcast-archive .comparison-header:last-child {
  border-right: none
}

.pcast-archive .comparison-row {
  display: contents
}

.pcast-archive .comparison-cell {
  padding: 20px;
  border-right: 1px solid #DFE4F2;
  border-top: 1px solid #DFE4F2;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a5e;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.pcast-archive .comparison-cell.label {
  justify-content: flex-start;
  font-weight: 600;
  color: #1a1a2e
}

.pcast-archive .comparison-cell:last-child {
  border-right: none
}

.pcast-archive .check-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #632598;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pcast-archive .cross-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #4a4a5e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pcast-archive .interactive-zone {
  background: linear-gradient(127deg, #fff 0%, #DFE4F2 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden
}

.pcast-archive .interactive-zone::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid #fdbc3b0f;
  transform: rotate(25deg)
}

.pcast-archive .interactive-inner {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.pcast-archive .interactive-heading {
  font-size: 28px;
  line-height: 1.3;
  color: #1a1a2e;
  text-align: center;
  margin: 0 0 40px
}

.pcast-archive .interactive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px
}

.pcast-archive .interactive-card {
  background: #fff;
  border: 2px solid #DFE4F2;
  border-radius: 10px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.pcast-archive .interactive-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fdbc3b14 0%, #63259814 100%);
  transition: left .35s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pcast-archive .interactive-card:hover::before {
  left: 0
}

.pcast-archive .interactive-card:hover {
  border-color: transparent
}

.pcast-archive .interactive-card:hover .card-border-top,
.pcast-archive .interactive-card:hover .card-border-right,
.pcast-archive .interactive-card:hover .card-border-bottom,
.pcast-archive .interactive-card:hover .card-border-left {
  opacity: 1
}

.pcast-archive .card-border-top,
.pcast-archive .card-border-right,
.pcast-archive .card-border-bottom,
.pcast-archive .card-border-left {
  position: absolute;
  background: #632598;
  opacity: 0;
  transition: opacity .2s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.pcast-archive .card-border-top {
  top: -2px;
  left: -2px;
  right: 50%;
  height: 2px
}

.pcast-archive .card-border-right {
  top: -2px;
  right: -2px;
  bottom: 50%;
  width: 2px
}

.pcast-archive .card-border-bottom {
  bottom: -2px;
  right: -2px;
  left: 50%;
  height: 2px
}

.pcast-archive .card-border-left {
  bottom: -2px;
  left: -2px;
  top: 50%;
  width: 2px
}

.pcast-archive .interactive-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FDBC3B 0%, #632598 100%);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative
}

.pcast-archive .interactive-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pcast-archive .interactive-card-heading {
  font-size: 21px;
  line-height: 1.3;
  color: #1a1a2e;
  text-align: center;
  margin: 0 0 12px;
  position: relative
}

.pcast-archive .interactive-card-text {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a5e;
  text-align: left;
  margin: 0;
  position: relative
}

.pcast-archive .split-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1366px;
  margin: 0 auto 80px;
  gap: 0
}

.pcast-archive .split-left {
  background: #632598;
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.pcast-archive .split-left::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -60px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(-45deg, transparent, transparent 6px, #ffffff0a 6px, #ffffff0a 12px);
  animation: bg-shift 8s linear infinite
}

@keyframes bg-shift {
  0% {
    background-color: #632598ff
  }

  50% {
    background-color: #591b8eff
  }

  100% {
    background-color: #632598ff
  }
}

.pcast-archive .split-right {
  background: #FDBC3B;
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.pcast-archive .split-right::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 2px;
  height: 80px;
  background: #00000014;
  transform: rotate(-25deg)
}

.pcast-archive .split-right::before {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 2px;
  height: 60px;
  background: #00000014;
  transform: rotate(-25deg)
}

.pcast-archive .split-heading {
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 20px
}

.pcast-archive .split-left .split-heading {
  color: #fff
}

.pcast-archive .split-right .split-heading {
  color: #1a1a2e
}

.pcast-archive .split-text {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 12px
}

.pcast-archive .split-left .split-text {
  color: #ffffffeb
}

.pcast-archive .split-right .split-text {
  color: #2a2a3e
}

.pcast-archive .split-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0
}

.pcast-archive .split-list-item {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 12px;
  padding-left: 28px;
  position: relative
}

.pcast-archive .split-left .split-list-item {
  color: #ffffffeb
}

.pcast-archive .split-right .split-list-item {
  color: #2a2a3e
}

.pcast-archive .split-list-item::before {
  content: '—';
  position: absolute;
  left: 0;
  font-weight: 600
}

.pcast-archive .split-left .split-list-item::before {
  color: #FDBC3B
}

.pcast-archive .split-right .split-list-item::before {
  color: #632598
}

.pcast-archive .image-showcase {
  background: #fff;
  padding: 80px 20px
}

.pcast-archive .image-showcase-inner {
  max-width: 1366px;
  margin: 0 auto
}

.pcast-archive .image-heading {
  font-size: 28px;
  line-height: 1.3;
  color: #1a1a2e;
  text-align: center;
  margin: 0 0 40px
}

.pcast-archive .image-frame {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 4px solid #632598;
  border-radius: 10px;
  overflow: hidden
}

.pcast-archive .image-frame::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #FDBC3B;
  border-radius: 10px;
  pointer-events: none;
  z-index: 1
}

.pcast-archive .showcase-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover
}

@media (max-width: 768px) {
  .pcast-archive .title-zone {
    padding-top: 40px;
    padding-bottom: 20px
  }

  .pcast-archive .main-heading {
    font-size: 54px
  }

  .pcast-archive .subtitle-text {
    font-size: 17px
  }

  .pcast-archive .posts-container {
    padding: 40px 20px
  }

  .pcast-archive .posts-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .pcast-archive .feature-zone,
  .pcast-archive .comparison-zone,
  .pcast-archive .interactive-zone,
  .pcast-archive .image-showcase {
    padding: 40px 20px
  }

  .pcast-archive .feature-columns {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .pcast-archive .comparison-table {
    grid-template-columns: 1fr
  }

  .pcast-archive .comparison-header,
  .pcast-archive .comparison-cell {
    border-right: none
  }

  .pcast-archive .interactive-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .pcast-archive .split-zone {
    grid-template-columns: 1fr
  }

  .pcast-archive .split-left,
  .pcast-archive .split-right {
    padding: 40px 20px
  }
}

.materials-hub {
  background: #fff;
  overflow-x: clip
}

.materials-hub .intro-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 40px;
  gap: 80px;
  position: relative
}

.materials-hub .intro-split::before {
  content: '';
  position: absolute;
  top: 0;
  left: 420px;
  width: 2px;
  height: 100%;
  background: linear-gradient(158deg, #FDBC3B 0%, #632598 100%);
  opacity: .15;
  transform: skewX(-12deg)
}

.materials-hub .intro-split::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #63259805 1px, transparent 1px), linear-gradient(0deg, #63259805 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0
}

.materials-hub .intro-img-zone {
  position: relative;
  z-index: 1
}

.materials-hub .intro-img-frame {
  width: 100%;
  height: 100%;
  border: 4px solid #DFE4F2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 7px 14px 0 #6325981a;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.materials-hub .intro-img-frame:hover {
  transform: scale(1.03) rotate(-1deg)
}

.materials-hub .intro-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
  transition: opacity .24s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.materials-hub .intro-img-frame:hover img {
  opacity: 1
}

.materials-hub .intro-text-zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1
}

.materials-hub .intro-text-zone h1 {
  font-size: 54px;
  line-height: 1.1;
  color: #632598;
  margin: 0 0 20px;
  letter-spacing: -.02em
}

.materials-hub .intro-quote {
  font-size: 21px;
  line-height: 1.6;
  color: #2a2a2a;
  font-style: italic;
  margin: 0;
  padding: 20px 0 0 20px;
  border-left: 4px solid #FDBC3B
}

.materials-hub .resource-catalog {
  background: linear-gradient(158deg, #fdbc3b14 0%, #dfe4f22e 100%);
  padding: 80px 40px;
  position: relative
}

.materials-hub .resource-catalog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,80 Q25,60 50,75 T100,70 T150,85 T200,75 T250,80 T300,70 T350,75 T400,80 T450,75 T500,70 T550,75 T600,80 T650,75 T700,70 T750,75 T800,80 T850,75 T900,70 T950,75 T1000,80 T1050,75 T1100,70 T1150,75 T1200,80 T1250,75 T1300,70 T1350,75 T1400,80 T1450,75 T1500,70 L1500,0 L0,0 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat top center;
  background-size: 100% 100%
}

.materials-hub .catalog-wrap {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.materials-hub .catalog-intro {
  margin: 0 0 40px;
  text-align: center
}

.materials-hub .catalog-intro::before {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #FDBC3B;
  margin: 0 auto 20px;
  border-radius: 1px
}

.materials-hub .catalog-intro h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 12px
}

.materials-hub .catalog-intro p {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto
}

.materials-hub .resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0 0
}

.materials-hub .resource-card {
  background: #fff;
  border: 2px solid #DFE4F2;
  border-radius: 22px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all .26s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 2px 5px 0 #63259814
}

.materials-hub .resource-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, transparent 0%, #fdbc3b0d 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.materials-hub .resource-card:hover::before {
  transform: translateX(0)
}

.materials-hub .resource-card:hover {
  transform: scale(1.05);
  box-shadow: 2px 12px 52px 0 #6325981a;
  border-color: #FDBC3B
}

.materials-hub .resource-card h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 12px;
  position: relative;
  z-index: 1
}

.materials-hub .resource-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0 0 20px;
  position: relative;
  z-index: 1
}

.materials-hub .resource-meta {
  display: flex;
  gap: 20px;
  margin: 20px 0 0;
  position: relative;
  z-index: 1
}

.materials-hub .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5a5a5a
}

.materials-hub .meta-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #FDBC3B;
  stroke-width: 2
}

.materials-hub .tier-showcase {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.materials-hub .tier-wrap {
  max-width: 1366px;
  margin: 0 auto
}

.materials-hub .tier-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: start
}

.materials-hub .tier-sidebar {
  position: sticky;
  top: 40px
}

.materials-hub .tier-sidebar h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 20px
}

.materials-hub .tier-sidebar p {
  font-size: 17px;
  line-height: 1.6;
  color: #3a3a3a;
  margin: 0 0 12px
}

.materials-hub .tier-sidebar .emphasis {
  font-size: 21px;
  color: #632598;
  font-weight: 600;
  margin: 20px 0 0
}

.materials-hub .tier-cards {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.materials-hub .tier-card {
  background: #fff;
  border: 3px solid #DFE4F2;
  border-radius: 22px;
  padding: 40px;
  position: relative;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 2px 5px 0 #fdbc3b14
}

.materials-hub .tier-card.premium {
  border-color: #FDBC3B;
  background: linear-gradient(158deg, #fdbc3b08 0%, #dfe4f20f 100%)
}

.materials-hub .tier-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at top right, #63259814 0%, transparent 70%);
  border-radius: 0 22px 0 0;
  pointer-events: none
}

.materials-hub .tier-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 2px 12px 52px 0 #fdbc3b1a
}

.materials-hub .tier-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 0 0 20px
}

.materials-hub .tier-name {
  font-size: 21px;
  line-height: 1.3;
  color: #632598;
  margin: 0;
  font-weight: 600
}

.materials-hub .tier-badge {
  padding: 8px 20px;
  background: #FDBC3B;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 38px;
  box-shadow: inset 0 -2px 0 0 #0000001a
}

.materials-hub .tier-features {
  list-style: none;
  margin: 20px 0 0;
  padding: 0
}

.materials-hub .tier-features li {
  font-size: 14px;
  line-height: 1.9;
  color: #4a4a4a;
  padding: 8px 0 8px 32px;
  position: relative
}

.materials-hub .tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: #FDBC3B;
  border-radius: 1px;
  transform: rotate(45deg)
}

.materials-hub .tier-features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 17px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.materials-hub .expert-insight {
  background: #632598;
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.materials-hub .expert-insight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(./site_visuals/main_ftr15.jpg);
  background-size: cover;
  background-position: center;
  opacity: .12;
  mix-blend-mode: overlay;
  pointer-events: none
}

.materials-hub .expert-wrap {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.materials-hub .expert-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: center
}

.materials-hub .expert-portrait-frame {
  width: 280px;
  height: 360px;
  border: 4px solid #fdbc3b66;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 2px 7px 14px 0 #0003;
  transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.materials-hub .expert-portrait-frame:hover {
  transform: scale(1.04);
  border-color: #FDBC3B
}

.materials-hub .expert-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.materials-hub .expert-text h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 20px
}

.materials-hub .expert-text h2::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #FDBC3B;
  border-radius: 1px;
  margin-right: 12px;
  vertical-align: middle;
  transform: rotate(45deg)
}

.materials-hub .expert-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #DFE4F2;
  margin: 0 0 12px
}

.materials-hub .expert-text p:first-of-type {
  font-size: 21px;
  color: #fff;
  margin-bottom: 20px
}

.materials-hub .expert-name {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #fdbc3b4d
}

.materials-hub .expert-name strong {
  display: block;
  font-size: 17px;
  color: #FDBC3B;
  margin-bottom: 4px
}

.materials-hub .expert-name span {
  font-size: 14px;
  color: #DFE4F2
}

.materials-hub .dashed-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  border: 3px dashed #fdbc3b33;
  border-radius: 38px;
  transform: translate(-50%, -50%) rotate(-5deg);
  pointer-events: none;
  z-index: 0
}

@media (max-width: 1200px) {
  .materials-hub .intro-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px
  }

  .materials-hub .intro-split::before {
    display: none
  }

  .materials-hub .intro-img-zone {
    max-width: 400px;
    margin: 0 auto
  }

  .materials-hub .resource-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .materials-hub .tier-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .materials-hub .tier-sidebar {
    position: static
  }

  .materials-hub .expert-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center
  }

  .materials-hub .expert-portrait-frame {
    margin: 0 auto
  }

  .materials-hub .expert-text h2::before {
    display: block;
    margin: 0 auto 12px
  }
}

@media (max-width: 768px) {
  .materials-hub .intro-text-zone h1 {
    font-size: 28px
  }

  .materials-hub .intro-quote {
    font-size: 17px;
    padding-left: 12px
  }

  .materials-hub .catalog-intro h2,
  .materials-hub .tier-sidebar h2,
  .materials-hub .expert-text h2 {
    font-size: 21px
  }

  .materials-hub .catalog-intro p,
  .materials-hub .tier-sidebar p,
  .materials-hub .expert-text p {
    font-size: 14px
  }

  .materials-hub .expert-text p:first-of-type {
    font-size: 17px
  }

  .materials-hub .resource-card,
  .materials-hub .tier-card {
    padding: 20px
  }

  .materials-hub .resource-catalog,
  .materials-hub .tier-showcase,
  .materials-hub .expert-insight {
    padding: 40px 20px
  }
}

.about-fenlirad {
  max-width: 1366px;
  margin: 0 auto;
  background: #fff
}

.about-fenlirad .opener {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
  background: linear-gradient(127deg, #FDBC3B 0%, #632598 100%)
}

.about-fenlirad .opener::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 340px;
  height: 340px;
  background: #ffffff14;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none
}

.about-fenlirad .opener::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: #dfe4f21f;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none
}

.about-fenlirad .opener-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.about-fenlirad .opener h1 {
  font-size: 54px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 40px;
  letter-spacing: -.02em;
  text-align: center
}

.about-fenlirad .opener-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-fenlirad .opener-points li {
  font-size: 17px;
  line-height: 1.6;
  color: #fffffff2;
  padding: 0 0 0 40px;
  position: relative
}

.about-fenlirad .opener-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 20px;
  background: #DFE4F2;
  border-radius: 1px;
  transition: height .27s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-fenlirad .opener-points li:hover::before {
  height: 28px
}

.about-fenlirad .story {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.about-fenlirad .story-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start
}

.about-fenlirad .story-sidebar {
  position: sticky;
  top: 40px
}

.about-fenlirad .story-sidebar-img {
  width: 100%;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid #DFE4F2;
  box-shadow: 2px 7px 14px 0 #6325981a;
  transition: transform .24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .24s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-fenlirad .story-sidebar-img:hover {
  transform: scale(1.04);
  box-shadow: 2px 12px 52px 0 #6325981a
}

.about-fenlirad .story-sidebar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-fenlirad .story-content h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 8px;
  letter-spacing: -.01em;
  position: relative;
  padding-top: 20px
}

.about-fenlirad .story-content h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FDBC3B;
  border-radius: 1px
}

.about-fenlirad .story-content p {
  font-size: 17px;
  line-height: 1.6;
  color: #2c2c2c;
  margin: 0 0 20px
}

.about-fenlirad .story-content p:first-of-type {
  font-size: 21px;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 40px
}

.about-fenlirad .metrics {
  padding: 80px 20px;
  background: linear-gradient(167deg, #DFE4F2 0%, #fff 100%);
  position: relative
}

.about-fenlirad .metrics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url(./site_visuals/17_hdr.jpg);
  background-size: cover;
  background-position: center;
  opacity: .06;
  filter: blur(8px);
  pointer-events: none
}

.about-fenlirad .metrics-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.about-fenlirad .metrics h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 40px;
  text-align: center;
  letter-spacing: -.01em
}

.about-fenlirad .metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.about-fenlirad .metric-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  border: 2px solid #DFE4F2;
  box-shadow: 2px 2px 5px 0 #fdbc3b14;
  transition: transform .31s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .31s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .31s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
  position: relative;
  overflow: hidden
}

.about-fenlirad .metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, #fdbc3b08 50%, transparent 100%);
  transition: left .28s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none
}

.about-fenlirad .metric-card:hover::before {
  left: 100%
}

.about-fenlirad .metric-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 2px 12px 52px 0 #fdbc3b1a;
  border-color: #FDBC3B
}

.about-fenlirad .metric-card:nth-child(1) {
  animation: metric-cycle 9s ease-in-out infinite;
  animation-delay: 0s
}

.about-fenlirad .metric-card:nth-child(2) {
  animation: metric-cycle 9s ease-in-out infinite;
  animation-delay: 3s
}

.about-fenlirad .metric-card:nth-child(3) {
  animation: metric-cycle 9s ease-in-out infinite;
  animation-delay: 6s
}

@keyframes metric-cycle {

  0%,
  66.67%,
  100% {
    border-color: #DFE4F2;
    box-shadow: 2px 2px 5px 0 #fdbc3b14
  }

  16.67%,
  50% {
    border-color: #FDBC3B;
    box-shadow: 2px 7px 14px 0 #fdbc3b1a
  }
}

.about-fenlirad .metric-num {
  font-size: 54px;
  line-height: 1.1;
  color: #FDBC3B;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -.02em
}

.about-fenlirad .metric-label {
  font-size: 17px;
  line-height: 1.3;
  color: #632598;
  margin: 0;
  font-weight: 600
}

.about-fenlirad .approach {
  padding: 80px 20px;
  background: #fff
}

.about-fenlirad .approach-inner {
  max-width: 1100px;
  margin: 0 auto
}

.about-fenlirad .approach h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 40px;
  text-align: center;
  letter-spacing: -.01em
}

.about-fenlirad .approach-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px
}

.about-fenlirad .approach-block {
  position: relative;
  padding: 40px 40px 40px 80px;
  background: #fff;
  border: 2px solid #DFE4F2;
  border-radius: 22px;
  box-shadow: 2px 2px 5px 0 #63259814;
  transition: transform .26s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-fenlirad .approach-block::before {
  content: attr(data-number);
  position: absolute;
  left: 20px;
  top: 40px;
  font-size: 70px;
  line-height: 1.1;
  color: #fdbc3b1f;
  font-weight: 700;
  pointer-events: none
}

.about-fenlirad .approach-block::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #FDBC3B;
  border-radius: 1px 0 0 1px;
  transition: width .29s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.about-fenlirad .approach-block:hover {
  transform: translateX(8px);
  box-shadow: 2px 7px 14px 0 #6325981a
}

.about-fenlirad .approach-block:hover::after {
  width: 8px
}

.about-fenlirad .approach-block h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 12px;
  letter-spacing: -.01em;
  position: relative;
  z-index: 1
}

.about-fenlirad .approach-block p {
  font-size: 17px;
  line-height: 1.6;
  color: #2c2c2c;
  margin: 0;
  position: relative;
  z-index: 1
}

.about-fenlirad .team {
  padding: 80px 20px;
  background: linear-gradient(147deg, #fff 0%, #DFE4F2 100%)
}

.about-fenlirad .team-inner {
  max-width: 1100px;
  margin: 0 auto
}

.about-fenlirad .team h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 40px;
  text-align: center;
  letter-spacing: -.01em
}

.about-fenlirad .team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.about-fenlirad .team-member {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  border: 2px solid #DFE4F2;
  box-shadow: 2px 2px 5px 0 #fdbc3b14;
  transition: transform .23s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .23s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center
}

.about-fenlirad .team-member:hover {
  transform: translateY(-4px);
  box-shadow: 2px 7px 14px 0 #fdbc3b1a
}

.about-fenlirad .team-member-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #FDBC3B;
  box-shadow: inset 0 2px 4px 0 #63259814
}

.about-fenlirad .team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-fenlirad .team-member h3 {
  font-size: 21px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 4px;
  letter-spacing: -.01em
}

.about-fenlirad .team-member-role {
  font-size: 14px;
  line-height: 1.3;
  color: #FDBC3B;
  margin: 0 0 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.about-fenlirad .team-member p {
  font-size: 17px;
  line-height: 1.6;
  color: #2c2c2c;
  margin: 0
}

.about-fenlirad .team-member.no-photo .team-member-photo {
  background: linear-gradient(135deg, #DFE4F2 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #DFE4F2
}

.about-fenlirad .team-member.no-photo .team-member-initials {
  font-size: 28px;
  line-height: 1.1;
  color: #632598;
  font-weight: 700
}

.about-fenlirad .vision {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.about-fenlirad .vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-fenlirad .vision-text h2 {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 8px;
  letter-spacing: -.01em;
  position: relative;
  padding-top: 20px
}

.about-fenlirad .vision-text h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #FDBC3B;
  border-radius: 1px
}

.about-fenlirad .vision-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #2c2c2c;
  margin: 0 0 20px
}

.about-fenlirad .vision-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.about-fenlirad .vision-img {
  width: 100%;
  height: 240px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid #DFE4F2;
  box-shadow: 2px 2px 5px 0 #63259814;
  transition: transform .32s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .32s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
  animation: reveal-scroll .6s ease-in-out forwards
}

.about-fenlirad .vision-img:nth-child(1) {
  animation-delay: .2s
}

.about-fenlirad .vision-img:nth-child(2) {
  animation-delay: .4s;
  margin-top: 40px
}

@keyframes reveal-scroll {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

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

.about-fenlirad .vision-img:hover {
  transform: scale(1.05) translateY(0);
  box-shadow: 2px 12px 52px 0 #6325981a
}

.about-fenlirad .vision-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

@media (max-width: 768px) {
  .about-fenlirad .opener {
    padding: 40px 20px
  }

  .about-fenlirad .opener h1 {
    font-size: 28px;
    margin-bottom: 20px
  }

  .about-fenlirad .opener-points li {
    font-size: 14px;
    padding-left: 20px
  }

  .about-fenlirad .story {
    padding: 40px 20px
  }

  .about-fenlirad .story-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .about-fenlirad .story-sidebar {
    position: static
  }

  .about-fenlirad .story-sidebar-img {
    height: 200px
  }

  .about-fenlirad .story-content h2 {
    font-size: 21px
  }

  .about-fenlirad .story-content p:first-of-type {
    font-size: 17px
  }

  .about-fenlirad .metrics {
    padding: 40px 20px
  }

  .about-fenlirad .metrics h2 {
    font-size: 21px;
    margin-bottom: 20px
  }

  .about-fenlirad .metrics-row {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .about-fenlirad .metric-card {
    padding: 20px
  }

  .about-fenlirad .metric-num {
    font-size: 28px
  }

  .about-fenlirad .approach {
    padding: 40px 20px
  }

  .about-fenlirad .approach h2 {
    font-size: 21px;
    margin-bottom: 20px
  }

  .about-fenlirad .approach-blocks {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .about-fenlirad .approach-block {
    padding: 40px 20px 20px 60px
  }

  .about-fenlirad .approach-block::before {
    font-size: 54px;
    left: 12px;
    top: 20px
  }

  .about-fenlirad .approach-block h3 {
    font-size: 17px
  }

  .about-fenlirad .approach-block p {
    font-size: 14px
  }

  .about-fenlirad .team {
    padding: 40px 20px
  }

  .about-fenlirad .team h2 {
    font-size: 21px;
    margin-bottom: 20px
  }

  .about-fenlirad .team-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .about-fenlirad .team-member {
    padding: 20px
  }

  .about-fenlirad .team-member-photo {
    width: 100px;
    height: 100px
  }

  .about-fenlirad .team-member h3 {
    font-size: 17px
  }

  .about-fenlirad .team-member p {
    font-size: 14px
  }

  .about-fenlirad .vision {
    padding: 40px 20px
  }

  .about-fenlirad .vision-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-fenlirad .vision-text h2 {
    font-size: 21px
  }

  .about-fenlirad .vision-text p {
    font-size: 14px
  }

  .about-fenlirad .vision-visuals {
    gap: 12px
  }

  .about-fenlirad .vision-img {
    height: 180px
  }

  .about-fenlirad .vision-img:nth-child(2) {
    margin-top: 20px
  }
}

.success-page {
  max-width: 1366px;
  margin: 0 auto;
  padding: 80px 20px
}

.success-page .confirm-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto
}

.success-page .icon-check {
  width: 92px;
  height: 92px;
  margin: 0 auto 40px;
  background: linear-gradient(142deg, #FDBC3B 0%, #632598 100%);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 7px 14px 0 #fdbc3b1a;
  animation: confirmPulse .28s cubic-bezier(0.34, 1.56, 0.64, 1)
}

@keyframes confirmPulse {
  0% {
    transform: scale(0.7);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

.success-page .icon-check svg {
  width: 48px;
  height: 48px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: checkDraw .32s cubic-bezier(0.68, -0.55, 0.27, 1.55) .15s forwards;
  stroke-dasharray: 60;
  stroke-dashoffset: 60
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0
  }
}

.success-page .confirm-title {
  font-size: 54px;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #632598;
  margin: 0 0 20px
}

.success-page .confirm-text {
  font-size: 21px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 40px
}

.success-page .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 40px 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto
}

.success-page .info-card {
  background: #fff;
  border: 1px solid #DFE4F2;
  border-radius: 22px;
  padding: 20px;
  text-align: left;
  transition: transform .24s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .26s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.success-page .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 2px 12px 52px 0 #6325981a
}

.success-page .info-card-label {
  font-size: 14px;
  line-height: 1.3;
  color: #632598;
  font-weight: 600;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.success-page .info-card-value {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0
}

.success-page .info-card-value a {
  color: #632598;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.success-page .info-card-value a:hover {
  color: #FDBC3B
}

.success-page .next-steps {
  background: linear-gradient(142deg, #fdbc3b14 0%, #63259814 100%);
  border-radius: 22px;
  padding: 40px;
  margin: 40px 0
}

.success-page .next-steps-title {
  font-size: 28px;
  line-height: 1.3;
  color: #632598;
  margin: 0 0 20px;
  text-align: center
}

.success-page .steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto
}

.success-page .steps-list li {
  position: relative;
  padding: 12px 0 12px 44px;
  font-size: 17px;
  line-height: 1.6;
  color: #333
}

.success-page .steps-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: #FDBC3B;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 600;
  color: #632598
}

.success-page .steps-list li:nth-child(1)::before {
  content: '1';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 28px;
  text-align: center
}

.success-page .steps-list li:nth-child(2)::before {
  content: '2';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 28px;
  text-align: center
}

.success-page .steps-list li:nth-child(3)::before {
  content: '3';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 28px;
  text-align: center
}

.success-page .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin: 40px 0 0
}

.success-page .btn-primary {
  display: inline-block;
  padding: 20px 40px;
  background: #632598;
  color: #fff;
  text-decoration: none;
  border-radius: 22px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  transition: background .27s cubic-bezier(0.34, 1.56, 0.64, 1), transform .24s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 2px 7px 14px 0 #6325981a
}

.success-page .btn-primary:hover {
  background: #7a2eb8;
  transform: translateY(-2px)
}

.success-page .btn-secondary {
  display: inline-block;
  padding: 20px 40px;
  background: #fff;
  color: #632598;
  text-decoration: none;
  border-radius: 22px;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
  border: 2px solid #632598;
  transition: background .29s cubic-bezier(0.34, 1.56, 0.64, 1), color .25s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.success-page .btn-secondary:hover {
  background: #632598;
  color: #fff
}

@media (min-width: 768px) {
  .success-page .info-grid {
    grid-template-columns: 1fr 1fr
  }

  .success-page .action-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px
  }
}