html {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: 'Ubuntu Mono', monospace;
  background: linear-gradient(165deg, #FFF9E0 0%, #fff 45%, #f4f0ff 100%);
  color: #1a1514
}

.top-bar {
  background: linear-gradient(135deg, #9458C9 0%, #b47cd9 100%);
  padding: 20px 40px;
  position: relative;
  box-shadow: 0 5px 20px 0 #9458c917
}

.top-bar-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand-hold {
  display: flex;
  align-items: center;
  padding: 8px 20px 8px 8px;
  background: #fff9e026;
  border-radius: 7px;
  border-right: 4px solid #FFF9E0;
  box-shadow: 0 2px 3px 0 #9458c90f
}

.brand-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block
}

.nav-row {
  background: #ffffffeb;
  padding: 8px 40px;
  border-top: 2px solid #9458C9;
  box-shadow: 0 8px 60px 0 #9458c924
}

.nav-row-inner {
  max-width: 1024px;
  margin: 0 auto
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-item {
  margin: 0;
  padding: 0
}

.nav-anchor {
  display: inline-block;
  padding: 8px 20px;
  font-size: 17px;
  line-height: 1.6;
  color: #1a1514;
  text-decoration: none;
  border-radius: 14px;
  background: transparent;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.nav-anchor:hover {
  background: linear-gradient(90deg, #9458C9 0%, #b47cd9 100%);
  color: #fff
}

.nav-anchor:focus {
  outline: 3px solid #9458C9;
  outline-offset: 2px
}

@media (max-width: 768px) {
  .top-bar {
    padding: 20px
  }

  .nav-row {
    padding: 8px 20px
  }

  .nav-links {
    gap: 4px 8px
  }

  .nav-anchor {
    padding: 8px;
    font-size: 14px
  }
}

@media (max-width: 480px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 20px
  }

  .brand-hold {
    border-right: none;
    border-bottom: 4px solid #FFF9E0
  }
}

.base-footer {
  background: linear-gradient(165deg, #9458C9 0%, #7a3da8 100%);
  padding: 80px 40px 40px;
  margin-top: 80px;
  position: relative;
  color: #fff
}

.base-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D41509 0%, #9458C9 50%, #D41509 100%)
}

.footer-shell {
  max-width: 1024px;
  margin: 0 auto;
  background: #ffffff14;
  border-radius: 26px;
  padding: 40px;
  box-shadow: 0 8px 60px 0 #d4150924
}

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

.footer-group-label {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 20px;
  color: #FFF9E0
}

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

.footer-link-item {
  margin: 0;
  padding: 0
}

.footer-link {
  display: inline-block;
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  padding: 4px 0;
  transition: color .4s cubic-bezier(0.34, 1.2, 0.64, 1), transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.footer-link:hover {
  color: #FFF9E0;
  transform: translateX(4px)
}

.footer-link:focus {
  outline: 3px solid #FFF9E0;
  outline-offset: 2px
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-contact-line {
  font-size: 17px;
  line-height: 1.6;
  color: #fff
}

.footer-contact-anchor {
  color: #FFF9E0;
  text-decoration: none;
  transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.footer-contact-anchor:hover {
  color: #fff
}

.footer-contact-anchor:focus {
  outline: 3px solid #FFF9E0;
  outline-offset: 2px
}

.footer-brand-zone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 40px;
  border-top: 2px solid #fff3
}

.footer-brand-mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  background: #fff9e01f;
  padding: 8px;
  border-radius: 14px;
  box-shadow: 0 5px 20px 0 #d4150917
}

.footer-legal {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ffffff26
}

.footer-copyright {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffffbf;
  margin: 0
}

@media (max-width: 768px) {
  .base-footer {
    padding: 40px 20px 20px;
    margin-top: 40px
  }

  .footer-shell {
    padding: 20px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px
  }

  .footer-brand-zone {
    justify-content: center;
    padding-top: 20px
  }

  .footer-legal {
    margin-top: 20px
  }
}

.consent-box {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 440px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 8px 60px 0 #9458c924;
  z-index: 1500;
  border: 2px solid #9458C9;
  display: none;
  transform: translateX(-500px);
  transition: transform 180ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.consent-box.visible {
  transform: translateX(0)
}

.consent-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #1a1514;
  margin: 0 0 8px
}

.consent-explain {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4442;
  margin: 0 0 20px
}

.consent-uses {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.consent-use-item {
  font-size: 14px;
  line-height: 1.6;
  color: #4a4442;
  padding-left: 20px;
  position: relative
}

.consent-use-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #9458C9;
  border-radius: 2px
}

.consent-prefs-toggle {
  background: none;
  border: none;
  color: #9458C9;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  margin: 0 0 20px;
  font-family: 'Ubuntu Mono', monospace;
  transition: color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.consent-prefs-toggle:hover {
  color: #D41509
}

.consent-prefs-toggle:focus {
  outline: 3px solid #9458C9;
  outline-offset: 2px
}

.consent-prefs-panel {
  display: none;
  padding: 20px;
  background: #FFF9E0;
  border-radius: 7px;
  margin-bottom: 20px
}

.consent-prefs-panel.active {
  display: block
}

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

.consent-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #9458C9
}

.consent-option-label {
  font-size: 14px;
  line-height: 1.6;
  color: #1a1514;
  cursor: pointer
}

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

.consent-btn {
  background: none;
  border: none;
  color: #9458C9;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: 'Ubuntu Mono', monospace;
  transition: color .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.consent-btn:hover {
  color: #D41509
}

.consent-btn:focus {
  outline: 3px solid #9458C9;
  outline-offset: 2px
}

@media (max-width: 480px) {
  .consent-box {
    left: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    max-width: none;
    padding: 20px
  }

  .consent-actions {
    flex-direction: column;
    gap: 8px
  }

  .consent-btn {
    text-align: left
  }
}

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

.policy-view h1 {
  font-size: 55px;
  line-height: 1.2;
  color: #9458C9;
  margin: 0 0 40px
}

.policy-view h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #9458C9;
  margin: 80px 0 20px
}

.policy-view h3 {
  font-size: 29px;
  line-height: 1.2;
  color: #D41509;
  margin: 40px 0 20px
}

.policy-view h4 {
  font-size: 22px;
  line-height: 1.6;
  color: #D41509;
  margin: 40px 0 20px
}

.policy-view h5 {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 20px 0 8px;
  font-weight: 600
}

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

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

.policy-view ul {
  margin: 0 0 20px;
  padding: 0 0 0 40px
}

.policy-view ol {
  margin: 0 0 20px;
  padding: 0 0 0 40px
}

.policy-view li {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 8px
}

.policy-view li ul {
  margin: 8px 0 0
}

.policy-view li ol {
  margin: 8px 0 0
}

.policy-view table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 40px;
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 2px 3px 0 #9458c90f
}

.policy-view thead {
  background: #9458C9
}

.policy-view th {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  padding: 20px;
  text-align: left;
  font-weight: 600
}

.policy-view tbody tr {
  border-bottom: 1px solid #FFF9E0;
  transition: background-color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

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

.policy-view tbody tr:hover {
  background: #FFF9E0
}

.policy-view td {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  padding: 20px
}

.policy-view hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, #9458C9, #D41509);
  margin: 80px 0;
  opacity: .3
}

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

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

  .policy-view h1 {
    font-size: 40px;
    margin: 0 0 20px
  }

  .policy-view h2 {
    font-size: 29px;
    margin: 40px 0 20px
  }

  .policy-view h3 {
    font-size: 22px;
    margin: 40px 0 20px
  }

  .policy-view h4 {
    font-size: 17px;
    margin: 20px 0 8px
  }

  .policy-view table {
    display: block;
    overflow-x: auto
  }

  .policy-view th,
  .policy-view td {
    padding: 8px;
    font-size: 14px
  }
}

@media (max-width: 480px) {
  .policy-view {
    padding: 20px 8px
  }

  .policy-view h1 {
    font-size: 29px
  }

  .policy-view h2 {
    font-size: 22px
  }

  .policy-view ul,
  .policy-view ol {
    padding: 0 0 0 20px
  }
}

.ed-biz-detail {
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip
}

.ed-biz-detail .intro-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px;
  background: linear-gradient(17deg, #FFF9E0 0%, #fff 100%);
  position: relative;
  overflow: hidden
}

.ed-biz-detail .intro-wrap::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 40px;
  width: 180px;
  height: 2px;
  background: #9458c926;
  transform: rotate(-35deg)
}

.ed-biz-detail .intro-wrap::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 30px;
  width: 140px;
  height: 2px;
  background: #d415091f;
  transform: rotate(42deg)
}

.ed-biz-detail .intro-title {
  font-size: 55px;
  line-height: 1.2;
  color: #9458C9;
  margin: 0 0 20px;
  letter-spacing: -.5px
}

.ed-biz-detail .intro-quote {
  font-size: 22px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  font-style: italic;
  padding: 0 0 0 40px;
  border-left: 4px solid #D41509
}

.ed-biz-detail .meta-grid {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  background: radial-gradient(ellipse at center, #fff 0%, #f5f0fa 100%)
}

.ed-biz-detail .info-stack {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.ed-biz-detail .info-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 3px 0 #9458c90f;
  border: 1px solid #9458c914;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  animation: expand-height .45s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  animation-delay: .1s;
  overflow: hidden;
  height: 0
}

@keyframes expand-height {
  from {
    height: 0;
    opacity: 0
  }

  to {
    height: auto;
    opacity: 1
  }
}

.ed-biz-detail .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 20px 0 #9458c917
}

.ed-biz-detail .info-label {
  font-size: 14px;
  line-height: 1.2;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 8px
}

.ed-biz-detail .info-value {
  font-size: 29px;
  line-height: 1.2;
  color: #9458C9;
  margin: 0;
  font-weight: 600
}

.ed-biz-detail .info-note {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
  margin: 8px 0 0
}

.ed-biz-detail .side-visual {
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  border-radius: 26px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 8px 60px 0 #9458c924;
  position: relative;
  overflow: hidden
}

.ed-biz-detail .side-visual::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: #ffffff1a;
  border-radius: 50%
}

.ed-biz-detail .chart-step {
  display: flex;
  align-items: center;
  gap: 20px
}

.ed-biz-detail .chart-bar {
  height: 8px;
  background: #ffffff4d;
  border-radius: 7px;
  flex: 1;
  position: relative;
  overflow: hidden
}

.ed-biz-detail .chart-fill {
  height: 100%;
  background: #FFF9E0;
  border-radius: 7px;
  transition: width .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ed-biz-detail .chart-label {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
  min-width: 80px
}

.ed-biz-detail .program-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff
}

.ed-biz-detail .program-heading {
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 40px;
  padding: 0 0 20px;
  border-bottom: 3px solid #9458C9;
  display: inline-block
}

.ed-biz-detail .program-content {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  animation: expand-height .5s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  animation-delay: .3s;
  overflow: hidden;
  height: 0
}

.ed-biz-detail .program-content h2 {
  font-size: 29px;
  line-height: 1.2;
  color: #9458C9;
  margin: 40px 0 20px;
  border-left: 4px solid #D41509;
  padding: 0 0 0 20px
}

.ed-biz-detail .program-content h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 20px 0 8px
}

.ed-biz-detail .program-content p {
  margin: 0 0 20px
}

.ed-biz-detail .program-content p:first-of-type {
  background: #9458c90a;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #9458c91a
}

.ed-biz-detail .program-content ul,
.ed-biz-detail .program-content ol {
  margin: 0 0 20px;
  padding: 0 0 0 20px
}

.ed-biz-detail .program-content li {
  margin: 0 0 8px
}

.ed-biz-detail .program-content small {
  font-size: 14px;
  color: #666
}

.ed-biz-detail .program-content details {
  margin: 20px 0;
  border: 1px solid #9458c933;
  border-radius: 14px;
  padding: 20px;
  background: #fff
}

.ed-biz-detail .program-content summary {
  cursor: pointer;
  font-weight: 600;
  color: #9458C9;
  font-size: 17px;
  line-height: 1.6
}

.ed-biz-detail .program-content dl {
  margin: 20px 0
}

.ed-biz-detail .program-content dt {
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px
}

.ed-biz-detail .program-content dd {
  margin: 0 0 20px 20px;
  color: #555
}

.ed-biz-detail .desc-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px;
  background: linear-gradient(17deg, #FFF9E0 0%, #fff9e000 100%);
  position: relative;
  overflow: hidden
}

.ed-biz-detail .desc-section::before {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 60px;
  width: 160px;
  height: 2px;
  background: #d4150926;
  transform: rotate(-28deg)
}

.ed-biz-detail .desc-heading {
  font-size: 40px;
  line-height: 1.2;
  color: #D41509;
  margin: 0 0 40px;
  position: relative
}

.ed-biz-detail .desc-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #9458C9;
  margin: 20px 0 0;
  border-radius: 2px
}

.ed-biz-detail .desc-content {
  font-size: 17px;
  line-height: 1.6;
  color: #333
}

.ed-biz-detail .desc-content h2 {
  font-size: 29px;
  line-height: 1.2;
  color: #9458C9;
  margin: 40px 0 20px
}

.ed-biz-detail .desc-content h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 20px 0 8px;
  padding: 0 0 8px;
  border-bottom: 2px solid #9458c933
}

.ed-biz-detail .desc-content p {
  margin: 0 0 20px
}

.ed-biz-detail .desc-content cite {
  display: block;
  font-style: italic;
  color: #666;
  padding: 20px;
  background: #fff;
  border-left: 4px solid #D41509;
  border-radius: 14px;
  margin: 20px 0
}

.ed-biz-detail .desc-content ol {
  margin: 0 0 20px;
  padding: 0 0 0 20px;
  counter-reset: item
}

.ed-biz-detail .desc-content ol li {
  margin: 0 0 8px;
  list-style: none;
  counter-increment: item;
  position: relative;
  padding: 0 0 0 40px
}

.ed-biz-detail .desc-content ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #9458C9;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600
}

.ed-biz-detail .desc-content figure {
  margin: 40px 0;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 3px 0 #9458c90f
}

.ed-biz-detail .desc-content figcaption {
  margin: 20px 0 0;
  font-size: 14px;
  color: #666;
  text-align: center
}

.ed-biz-detail .desc-content details {
  margin: 20px 0;
  border: 1px solid #d4150933;
  border-radius: 14px;
  padding: 20px;
  background: #fff
}

.ed-biz-detail .desc-content summary {
  cursor: pointer;
  font-weight: 600;
  color: #D41509;
  font-size: 17px;
  line-height: 1.6
}

.ed-biz-detail .poll-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px;
  background: #fff;
  animation: expand-height .52s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  animation-delay: .5s;
  overflow: hidden;
  height: 0
}

.ed-biz-detail .poll-heading {
  font-size: 29px;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 40px;
  text-align: center
}

.ed-biz-detail .poll-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto
}

.ed-biz-detail .poll-option {
  position: relative
}

.ed-biz-detail .poll-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.ed-biz-detail .poll-label {
  display: block;
  padding: 40px;
  background: #fff;
  border: 2px solid #9458c933;
  border-radius: 26px;
  cursor: pointer;
  transition: all .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 2px 3px 0 #9458c90f
}

.ed-biz-detail .poll-label:hover {
  border-color: #9458C9;
  transform: translateY(-4px);
  box-shadow: 0 5px 20px 0 #9458c917
}

.ed-biz-detail .poll-radio:checked+.poll-label {
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 8px 60px 0 #9458c924
}

.ed-biz-detail .poll-icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #9458c91a;
  position: relative;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ed-biz-detail .poll-radio:checked+.poll-label .poll-icon {
  background: #fff3
}

.ed-biz-detail .poll-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: #9458C9;
  border-radius: 50%;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ed-biz-detail .poll-radio:checked+.poll-label .poll-icon::before {
  background: #fff
}

.ed-biz-detail .poll-text {
  font-weight: 600
}

.ed-biz-detail .divider-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px
}

.ed-biz-detail .divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #9458C9 50%, transparent 100%)
}

.ed-biz-detail .divider-shape {
  width: 12px;
  height: 12px;
  background: #D41509;
  border-radius: 2px;
  transform: rotate(45deg)
}

.ed-biz-detail .cta-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center
}

.ed-biz-detail .cta-btn {
  display: inline-block;
  padding: 20px 40px;
  font-size: 17px;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  border: none !important;
  border-radius: 42px;
  cursor: pointer;
  transition: all .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 5px 20px 0 #9458c917;
  text-decoration: none;
  font-weight: 600
}

.ed-biz-detail .cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 60px 0 #9458c924
}

.ed-biz-detail .cta-btn:active {
  transform: translateY(-2px) scale(0.98)
}

@media (max-width: 768px) {
  .ed-biz-detail .intro-title {
    font-size: 40px
  }

  .ed-biz-detail .intro-quote {
    font-size: 17px;
    padding: 0 0 0 20px
  }

  .ed-biz-detail .meta-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 40px 20px
  }

  .ed-biz-detail .program-heading,
  .ed-biz-detail .desc-heading {
    font-size: 29px
  }

  .ed-biz-detail .poll-options {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .ed-biz-detail .intro-wrap,
  .ed-biz-detail .program-section,
  .ed-biz-detail .desc-section,
  .ed-biz-detail .poll-section,
  .ed-biz-detail .cta-wrap {
    padding: 40px 20px
  }
}

@media (max-width: 480px) {
  .ed-biz-detail .intro-title {
    font-size: 29px
  }

  .ed-biz-detail .intro-quote {
    font-size: 14px
  }

  .ed-biz-detail .info-value {
    font-size: 22px
  }

  .ed-biz-detail .side-visual {
    padding: 20px
  }

  .ed-biz-detail .chart-label {
    font-size: 14px;
    min-width: 60px
  }
}

.msn {
  background: #fff;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0
}

.msn .intro-wrap {
  position: relative;
  padding: 40px 20px;
  background: linear-gradient(180deg, #FFF9E0 0%, #fff 100%);
  overflow: hidden
}

.msn .intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1024px;
  margin: 0 auto
}

.msn .intro-text-area {
  position: relative;
  z-index: 2
}

.msn .intro-eyebrow {
  font-size: 14px;
  color: #9458C9;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px;
  font-weight: 600
}

.msn .intro-h {
  font-size: 40px;
  line-height: 1.2;
  color: #1a0a2e;
  margin: 0;
  font-weight: 700
}

.msn .intro-img-holder {
  position: relative;
  border: 2px solid #9458C9;
  border-radius: 14px;
  overflow: hidden;
  height: 280px
}

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

.msn .intro-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, #9458c94d 100%);
  pointer-events: none
}

.msn .intro-frame-top {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #9458c94d;
  pointer-events: none;
  z-index: 3
}

.msn .intro-frame-bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #9458c94d;
  pointer-events: none;
  z-index: 3
}

.msn .intro-frame-left {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  width: 2px;
  background: #9458c94d;
  pointer-events: none;
  z-index: 3
}

.msn .intro-frame-right {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  width: 2px;
  background: #9458c94d;
  pointer-events: none;
  z-index: 3
}

@media (min-width: 768px) {
  .msn .intro-wrap {
    padding: 80px 40px
  }

  .msn .intro-grid {
    grid-template-columns: 2fr 1fr;
    gap: 40px
  }

  .msn .intro-h {
    font-size: 55px
  }

  .msn .intro-img-holder {
    height: 320px
  }
}

.msn .origin-section {
  padding: 80px 20px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.msn .origin-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  border: 1px solid #d4150914;
  border-radius: 50%;
  pointer-events: none
}

.msn .origin-section::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 240px;
  height: 240px;
  border: 1px solid #d415090f;
  border-radius: 50%;
  pointer-events: none
}

.msn .origin-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px
}

.msn .origin-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.msn .origin-h {
  font-size: 29px;
  line-height: 1.2;
  color: #1a0a2e;
  margin: 0 0 20px;
  padding-bottom: 8px;
  border-bottom: 3px solid #9458C9;
  display: inline-block;
  font-weight: 700
}

.msn .origin-p {
  font-size: 17px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0
}

.msn .origin-p.first-highlight {
  background: linear-gradient(90deg, #fff9e099 0%, transparent 100%);
  padding: 20px;
  border-left: 4px solid #9458C9;
  border-radius: 2px
}

.msn .origin-img-col {
  position: relative
}

.msn .origin-img-frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 #9458c924
}

.msn .origin-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block
}

@media (min-width: 768px) {
  .msn .origin-section {
    padding: 80px 40px
  }

  .msn .origin-inner {
    grid-template-columns: 1fr 1fr;
    gap: 80px
  }

  .msn .origin-h {
    font-size: 40px
  }
}

.msn .principles-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #FFF9E0 0%, #fff 100%);
  position: relative
}

.msn .principles-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 17deg at 30% 40%, #9458c908 0deg, transparent 60deg, #d4150908 180deg, transparent 240deg, #9458c908 360deg);
  animation: rotate-bg 40s linear infinite;
  pointer-events: none
}

@keyframes rotate-bg {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.msn .principles-inner {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.msn .principles-h {
  font-size: 29px;
  line-height: 1.2;
  color: #1a0a2e;
  margin: 0 0 40px;
  text-align: center;
  font-weight: 700
}

.msn .principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px
}

.msn .principle-card {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 2px 3px 0 #9458c90f;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1);
  position: relative;
  border: 1px solid #9458c91a
}

.msn .principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 60px 0 #9458c924
}

.msn .principle-number-wrap {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center
}

.msn .principle-number-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #9458c933;
  border-radius: 50%
}

.msn .principle-number-arc {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top-color: #9458C9;
  border-right-color: #9458C9;
  border-radius: 50%;
  transform: rotate(-45deg)
}

.msn .principle-number {
  font-size: 22px;
  font-weight: 700;
  color: #9458C9;
  position: relative;
  z-index: 2
}

.msn .principle-label {
  font-size: 22px;
  line-height: 1.2;
  color: #1a0a2e;
  margin: 0 0 20px;
  font-weight: 600;
  padding-right: 60px
}

.msn .principle-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0
}

@media (min-width: 768px) {
  .msn .principles-section {
    padding: 80px 40px
  }

  .msn .principles-h {
    font-size: 40px
  }

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

@media (min-width: 1024px) {
  .msn .principles-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.msn .impact-section {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.msn .impact-divider-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px
}

.msn .impact-divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #9458C9 50%, transparent 100%)
}

.msn .impact-divider-diamond {
  width: 8px;
  height: 8px;
  background: #9458C9;
  transform: rotate(45deg)
}

.msn .impact-inner {
  max-width: 1024px;
  margin: 0 auto
}

.msn .impact-h {
  font-size: 29px;
  line-height: 1.2;
  color: #1a0a2e;
  margin: 0 0 40px;
  font-weight: 700
}

.msn .impact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start
}

.msn .impact-data-area {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.msn .impact-metric-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #9458c90a 0%, #fff9e066 100%);
  border-radius: 7px;
  border-left: 4px solid #9458C9;
  transition: background .4s ease-in-out
}

.msn .impact-metric-row:hover {
  background: linear-gradient(135deg, #9458c914 0%, #fff9e099 100%)
}

.msn .impact-metric-value {
  font-size: 29px;
  line-height: 1.2;
  color: #9458C9;
  font-weight: 700;
  margin: 0
}

.msn .impact-metric-label {
  font-size: 17px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0;
  display: flex;
  align-items: center
}

.msn .impact-narrative {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.msn .impact-p {
  font-size: 17px;
  line-height: 1.6;
  color: #2d2d2d;
  margin: 0
}

.msn .impact-accent-word {
  border: 1px solid #9458C9;
  padding: 2px 8px;
  border-radius: 2px;
  color: #9458C9;
  font-weight: 600
}

.msn .impact-img-holder {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 5px 20px 0 #d4150917
}

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

.msn .impact-img:hover {
  transform: scale(1.03)
}

@media (min-width: 768px) {
  .msn .impact-section {
    padding: 80px 40px
  }

  .msn .impact-h {
    font-size: 40px
  }

  .msn .impact-layout {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px
  }

  .msn .impact-metric-row {
    grid-template-columns: 140px 1fr
  }
}

@media (max-width: 767px) {

  .msn .intro-img-holder,
  .msn .origin-img-col,
  .msn .impact-img-holder {
    display: none
  }
}

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

.reach-pg .intro-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  position: relative;
  padding-bottom: 80px;
  padding-top: 40px;
  background: linear-gradient(17deg, #FFF9E0 0%, #fff 100%)
}

.reach-pg .intro-zone::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 40%, #9458c914 0%, transparent 70%);
  pointer-events: none;
  z-index: 1
}

.reach-pg .intro-zone::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, transparent 0%, #9458c908 100%);
  pointer-events: none;
  z-index: 1
}

.reach-pg .text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  z-index: 2
}

.reach-pg .text-side::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 180px;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  border-radius: 2px;
  animation: reach-line-pulse 3200ms cubic-bezier(0.34, 1.2, 0.64, 1) infinite
}

@keyframes reach-line-pulse {

  0%,
  100% {
    opacity: 1;
    height: 180px
  }

  50% {
    opacity: .6;
    height: 220px
  }
}

.reach-pg .intro-title {
  font-size: 55px;
  line-height: 1.2;
  color: #1a0d2e;
  margin: 0 0 20px;
  font-weight: 700
}

.reach-pg .intro-title .underline-word {
  position: relative;
  display: inline-block
}

.reach-pg .intro-title .underline-word::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #D41509;
  border-radius: 2px
}

.reach-pg .intro-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #2d1f3d;
  margin: 0 0 8px
}

.reach-pg .intro-desc:first-of-type {
  background: #9458c90f;
  padding: 20px;
  border-radius: 14px;
  border-left: 3px solid #9458C9;
  margin-bottom: 20px
}

.reach-pg .intro-desc .framed-accent {
  border: 1.5px solid #9458C9;
  padding: 2px 8px;
  border-radius: 7px;
  display: inline-block
}

.reach-pg .img-side {
  position: relative;
  overflow: hidden;
  border-radius: 26px 0 0 26px
}

.reach-pg .img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1
}

.reach-pg .img-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #0006 100%);
  z-index: 2;
  pointer-events: none
}

.reach-pg .form-zone {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden
}

.reach-pg .form-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, #9458c905 35px, #9458c905 70px), repeating-linear-gradient(-45deg, transparent, transparent 35px, #d4150905 35px, #d4150905 70px);
  pointer-events: none;
  z-index: 0;
  animation: reach-bg-flicker 7000ms ease-in-out infinite
}

@keyframes reach-bg-flicker {

  0%,
  100% {
    opacity: 1
  }

  33% {
    opacity: .7
  }

  66% {
    opacity: .9
  }
}

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

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

.reach-pg .form-heading {
  font-size: 40px;
  line-height: 1.2;
  color: #1a0d2e;
  margin: 0 0 20px;
  font-weight: 700;
  position: relative;
  display: inline-block
}

.reach-pg .form-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  border-radius: 2px
}

.reach-pg .form-subtext {
  font-size: 17px;
  line-height: 1.6;
  color: #2d1f3d;
  margin: 0
}

.reach-pg .contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #fff;
  padding: 40px;
  border-radius: 26px;
  box-shadow: 0 5px 20px 0 #9458c917;
  border: 1px solid #9458c91f
}

.reach-pg .field-wrap {
  position: relative;
  display: flex;
  flex-direction: column
}

.reach-pg .field-wrap.full-width {
  grid-column: 1 / -1
}

.reach-pg .field-label {
  font-size: 14px;
  line-height: 1.6;
  color: #2d1f3d;
  margin-bottom: 8px;
  font-weight: 600;
  display: block
}

.reach-pg .field-input {
  padding: 20px;
  border: 2px solid #9458c933;
  border-radius: 14px;
  font-size: 17px;
  line-height: 1.6;
  color: #1a0d2e;
  background: #fff;
  transition: border-color 350ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 350ms cubic-bezier(0.34, 1.2, 0.64, 1);
  outline: none
}

.reach-pg .field-input::placeholder {
  color: #2d1f3d80
}

.reach-pg .field-input:focus {
  border-color: #9458C9;
  box-shadow: 0 0 0 3px #9458c91f inset 0 2px 4px 0 #9458c90f
}

.reach-pg .field-input:hover {
  border-color: #9458c966
}

.reach-pg .channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  grid-column: 1 / -1
}

.reach-pg .channel-option {
  position: relative
}

.reach-pg .channel-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.reach-pg .channel-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px solid #9458c933;
  border-radius: 14px;
  cursor: pointer;
  transition: all 380ms cubic-bezier(0.34, 1.2, 0.64, 1);
  background: #fff;
  text-align: center
}

.reach-pg .channel-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  fill: #9458C9;
  transition: transform 320ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.reach-pg .channel-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2d1f3d;
  font-weight: 600
}

.reach-pg .channel-label:hover {
  border-color: #9458c980;
  background: #9458c90a;
  transform: translateY(-2px);
  box-shadow: 0 2px 3px 0 #9458c90f
}

.reach-pg .channel-radio:checked+.channel-label {
  border-color: #9458C9;
  background: linear-gradient(17deg, #9458c91f 0%, #d4150914 100%);
  box-shadow: 0 5px 20px 0 #9458c917 inset 0 2px 4px 0 #9458c914
}

.reach-pg .channel-radio:checked+.channel-label .channel-icon {
  transform: scale(1.15) rotate(5deg)
}

.reach-pg .privacy-wrap {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 20px;
  background: #fff9e080;
  border-radius: 14px;
  border: 1px solid #9458c926
}

.reach-pg .privacy-checkbox {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #9458C9
}

.reach-pg .privacy-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2d1f3d;
  margin: 0
}

.reach-pg .privacy-link {
  color: #9458C9;
  text-decoration: underline;
  transition: color 300ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.reach-pg .privacy-link:hover {
  color: #D41509
}

.reach-pg .submit-btn {
  grid-column: 1 / -1;
  padding: 20px 40px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 380ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 380ms cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 5px 20px 0 #9458c917
}

.reach-pg .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 60px 0 #9458c924
}

.reach-pg .submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 3px 0 #9458c90f
}

.reach-pg .contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  opacity: 0;
  animation: reach-details-appear 450ms cubic-bezier(0.34, 1.2, 0.64, 1) 400ms forwards
}

@keyframes reach-details-appear {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(-1deg)
  }

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

.reach-pg .detail-card {
  background: linear-gradient(17deg, #9458c90f 0%, #fff9e066 100%);
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #9458c926;
  transition: transform 350ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 350ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.reach-pg .detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 20px 0 #9458c917
}

.reach-pg .detail-icon {
  width: 28px;
  height: 28px;
  fill: #9458C9;
  margin-bottom: 8px
}

.reach-pg .detail-heading {
  font-size: 14px;
  line-height: 1.6;
  color: #9458C9;
  margin: 0 0 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em
}

.reach-pg .detail-value {
  font-size: 17px;
  line-height: 1.6;
  color: #1a0d2e;
  margin: 0;
  font-weight: 600
}

.reach-pg .detail-value a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.reach-pg .detail-value a:hover {
  color: #D41509
}

.reach-pg .status-indicator {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: #fff9e099;
  border-radius: 14px;
  border: 1px solid #9458c926;
  margin-top: 20px
}

.reach-pg .status-label {
  font-size: 14px;
  line-height: 1.6;
  color: #2d1f3d;
  font-weight: 600;
  margin: 0
}

.reach-pg .status-bar {
  flex: 1;
  height: 12px;
  background: #9458c91f;
  border-radius: 42px;
  overflow: hidden;
  position: relative
}

.reach-pg .status-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 85%;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  border-radius: 42px;
  box-shadow: inset 0 1px 2px 0 #ffffff4d
}

.reach-pg .status-text {
  font-size: 14px;
  line-height: 1.6;
  color: #9458C9;
  font-weight: 700;
  margin: 0
}

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

  .reach-pg .text-side {
    padding: 40px 20px
  }

  .reach-pg .intro-title {
    font-size: 40px
  }

  .reach-pg .img-side {
    display: none
  }

  .reach-pg .form-zone {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .reach-pg .form-container {
    padding: 0 20px
  }

  .reach-pg .contact-form {
    grid-template-columns: 1fr;
    padding: 20px
  }

  .reach-pg .form-heading {
    font-size: 29px
  }

  .reach-pg .channel-grid {
    grid-template-columns: 1fr
  }

  .reach-pg .contact-details {
    grid-template-columns: 1fr
  }
}

@media (max-width: 480px) {
  .reach-pg .intro-title {
    font-size: 29px
  }

  .reach-pg .form-heading {
    font-size: 22px
  }

  .reach-pg .text-side {
    padding: 20px
  }

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

.rwd-lec {
  max-width: 100%;
  overflow-x: clip;
  background: #fff;
  color: #1a1a1a
}

.rwd-lec * {
  box-sizing: border-box
}

.rwd-lec .banner {
  position: relative;
  width: 100%;
  height: 340px;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden
}

.rwd-lec .banner-txt {
  font-size: 70px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: -.02em;
  max-width: 1024px;
  position: relative;
  z-index: 2
}

.rwd-lec .alumni-wrap {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.rwd-lec .alumni-intro {
  font-size: 29px;
  line-height: 1.6;
  color: #2d2d2d;
  font-weight: 600
}

.rwd-lec .alumni-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px
}

.rwd-lec .alum-card {
  background: #FFF9E0;
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 3px 0 #9458c90f;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.rwd-lec .alum-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 60px 0 #9458c924
}

.rwd-lec .alum-card.featured {
  background: linear-gradient(17deg, #9458c914 0%, #fff9e0f2 100%);
  border: 2px dashed #9458C9
}

.rwd-lec .alum-name {
  font-size: 22px;
  line-height: 1.2;
  color: #2d2d2d;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px
}

.rwd-lec .status-dot {
  width: 8px;
  height: 8px;
  background: #D41509;
  border-radius: 42px;
  position: relative
}

.rwd-lec .status-dot::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #D41509;
  border-radius: 42px;
  top: -4px;
  left: -4px;
  opacity: .4
}

.rwd-lec .alum-role {
  font-size: 17px;
  line-height: 1.6;
  color: #5d5d5d
}

.rwd-lec .alum-outcome {
  font-size: 17px;
  line-height: 1.6;
  color: #2d2d2d
}

.rwd-lec .alum-timeline {
  font-size: 14px;
  line-height: 1.6;
  color: #7d7d7d;
  padding: 8px 20px;
  background: #9458c91a;
  border-radius: 7px;
  display: inline-block;
  margin-top: 4px
}

.rwd-lec .paths-sec {
  position: relative;
  background: url(./media_gallery/temp-2-4.jpg) center/cover no-repeat;
  padding: 80px 20px
}

.rwd-lec .paths-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(17deg, #9458c9eb 0%, #d41509e0 100%);
  z-index: 1
}

.rwd-lec .paths-content {
  position: relative;
  z-index: 2;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.rwd-lec .paths-hd {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  font-weight: 700
}

.rwd-lec .paths-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #fff;
  max-width: 720px
}

.rwd-lec .paths-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.rwd-lec .path-item {
  background: #fffffff2;
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(40px);
  animation: reveal-up .42s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.rwd-lec .path-item:nth-child(1) {
  animation-delay: .1s
}

.rwd-lec .path-item:nth-child(2) {
  animation-delay: .2s
}

.rwd-lec .path-item:nth-child(3) {
  animation-delay: .3s
}

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

.rwd-lec .path-icon {
  width: 48px;
  height: 48px;
  background: conic-gradient(from 17deg, #9458C9, #D41509, #9458C9);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.rwd-lec .path-icon::before {
  content: '';
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 26px;
  position: absolute
}

.rwd-lec .path-icon svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1
}

.rwd-lec .path-label {
  font-size: 22px;
  line-height: 1.2;
  color: #2d2d2d;
  font-weight: 700
}

.rwd-lec .path-info {
  font-size: 17px;
  line-height: 1.6;
  color: #4d4d4d
}

.rwd-lec .path-detail {
  font-size: 14px;
  line-height: 1.6;
  color: #6d6d6d;
  padding: 20px;
  background: #FFF9E0;
  border-radius: 7px;
  border-left: 4px solid #9458C9
}

.rwd-lec .prereq-zone {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px
}

.rwd-lec .prereq-hd {
  font-size: 40px;
  line-height: 1.2;
  color: #2d2d2d;
  font-weight: 700;
  margin-bottom: 40px
}

.rwd-lec .prereq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}

.rwd-lec .prereq-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.rwd-lec .prereq-col.main {
  grid-column: span 1
}

.rwd-lec .col-label {
  font-size: 22px;
  line-height: 1.2;
  color: #2d2d2d;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 3px dotted #9458C9
}

.rwd-lec .prereq-block {
  background: #FFF9E0;
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.rwd-lec .prereq-block.highlight {
  background: linear-gradient(17deg, #9458c90f 0%, #fff9e0fa 100%);
  box-shadow: 0 5px 20px 0 #9458c917
}

.rwd-lec .prereq-title {
  font-size: 17px;
  line-height: 1.6;
  color: #2d2d2d;
  font-weight: 600
}

.rwd-lec .prereq-txt {
  font-size: 17px;
  line-height: 1.6;
  color: #4d4d4d
}

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

.rwd-lec .prereq-list li {
  font-size: 17px;
  line-height: 1.6;
  color: #4d4d4d;
  padding-left: 24px;
  position: relative
}

.rwd-lec .prereq-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 2px;
  background: #9458C9
}

.rwd-lec .prereq-img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 3px 0 #9458c90f
}

.rwd-lec .prereq-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rwd-lec .outcomes-area {
  background: #FFF9E0;
  padding: 80px 20px
}

.rwd-lec .outcomes-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px
}

.rwd-lec .outcomes-hd {
  font-size: 40px;
  line-height: 1.2;
  color: #2d2d2d;
  font-weight: 700
}

.rwd-lec .outcomes-intro {
  font-size: 17px;
  line-height: 1.6;
  color: #4d4d4d;
  background: #9458c90f;
  padding: 20px 40px;
  border-radius: 14px;
  border-left: 4px solid #D41509
}

.rwd-lec .outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.rwd-lec .outcome-card {
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 3px 0 #9458c90f;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  perspective: 1000px;
  transform-style: preserve-3d;
  animation: flip-in .45s cubic-bezier(0.34, 1.2, 0.64, 1) backwards
}

.rwd-lec .outcome-card:nth-child(1) {
  animation-delay: .15s
}

.rwd-lec .outcome-card:nth-child(2) {
  animation-delay: .25s
}

.rwd-lec .outcome-card:nth-child(3) {
  animation-delay: .35s
}

.rwd-lec .outcome-card:nth-child(4) {
  animation-delay: .45s
}

@keyframes flip-in {
  from {
    transform: rotateX(-90deg);
    opacity: 0
  }

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

.rwd-lec .outcome-card:hover {
  transform: translateY(-6px)
}

.rwd-lec .outcome-num {
  font-size: 55px;
  line-height: 1.2;
  color: #9458C9;
  font-weight: 700;
  opacity: .2
}

.rwd-lec .outcome-label {
  font-size: 22px;
  line-height: 1.2;
  color: #2d2d2d;
  font-weight: 700
}

.rwd-lec .outcome-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #4d4d4d
}

.rwd-lec .outcome-example {
  font-size: 14px;
  line-height: 1.6;
  color: #6d6d6d;
  padding: 20px;
  background: #FFF9E0;
  border-radius: 7px;
  inset-shadow: inset 0 2px 4px #9458c914
}

.rwd-lec .outcome-visual {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 8px
}

.rwd-lec .outcome-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease-in-out
}

.rwd-lec .outcome-card:hover .outcome-visual img {
  transform: scale(1.05)
}

@media (max-width: 1024px) {
  .rwd-lec .banner {
    height: 280px
  }

  .rwd-lec .banner-txt {
    font-size: 55px
  }

  .rwd-lec .alumni-grid {
    grid-template-columns: 1fr 1fr
  }

  .rwd-lec .alum-card.featured {
    grid-column: span 2
  }

  .rwd-lec .paths-layout {
    grid-template-columns: 1fr
  }

  .rwd-lec .prereq-cols {
    grid-template-columns: 1fr
  }

  .rwd-lec .outcomes-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .rwd-lec .banner {
    height: 220px;
    padding: 20px
  }

  .rwd-lec .banner-txt {
    font-size: 40px
  }

  .rwd-lec .alumni-wrap {
    padding: 40px 20px
  }

  .rwd-lec .alumni-intro {
    font-size: 22px
  }

  .rwd-lec .alumni-grid {
    grid-template-columns: 1fr
  }

  .rwd-lec .alum-card.featured {
    grid-column: span 1
  }

  .rwd-lec .alum-card {
    padding: 20px
  }

  .rwd-lec .paths-sec {
    padding: 40px 20px
  }

  .rwd-lec .paths-hd {
    font-size: 29px
  }

  .rwd-lec .path-item {
    padding: 20px
  }

  .rwd-lec .prereq-zone {
    padding: 40px 20px
  }

  .rwd-lec .prereq-hd {
    font-size: 29px;
    margin-bottom: 20px
  }

  .rwd-lec .prereq-block {
    padding: 20px
  }

  .rwd-lec .prereq-img-wrap {
    display: none
  }

  .rwd-lec .outcomes-area {
    padding: 40px 20px
  }

  .rwd-lec .outcomes-hd {
    font-size: 29px
  }

  .rwd-lec .outcome-card {
    padding: 20px
  }

  .rwd-lec .outcome-visual {
    display: none
  }
}

@media (max-width: 480px) {
  .rwd-lec .banner-txt {
    font-size: 29px
  }

  .rwd-lec .alumni-intro {
    font-size: 17px
  }

  .rwd-lec .paths-hd {
    font-size: 22px
  }

  .rwd-lec .prereq-hd {
    font-size: 22px
  }

  .rwd-lec .outcomes-hd {
    font-size: 22px
  }

  .rwd-lec .outcome-num {
    font-size: 40px
  }
}

.learn-prog {
  background: #fff;
  color: #1a0a2e;
  overflow-x: clip
}

.learn-prog .intro-strip {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 20px;
  gap: 40px
}

.learn-prog .intro-strip .side-visual {
  flex: 0 0 180px;
  position: relative;
  overflow: hidden;
  border-radius: 14px
}

.learn-prog .intro-strip .side-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.learn-prog .intro-strip .side-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, #9458c9b3 0%, transparent 100%);
  pointer-events: none
}

.learn-prog .intro-strip .manifesto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1
}

.learn-prog .intro-strip .manifesto::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -20px;
  width: 200px;
  height: 200px;
  background-image: repeating-linear-gradient(37deg, #9458c908, #9458c908 2px, transparent 2px, transparent 12px);
  pointer-events: none;
  z-index: -1
}

.learn-prog .intro-strip h1 {
  font-size: 55px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #9458C9
}

.learn-prog .intro-strip .declaration {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px
}

.learn-prog .intro-strip .declaration strong {
  background: #fff9e0cc;
  padding: 2px 8px;
  border-radius: 2px
}

.learn-prog .intro-strip .statement {
  font-size: 17px;
  line-height: 1.6;
  margin: 0
}

.learn-prog .pathway {
  background: linear-gradient(17deg, #9458c90a 0%, #fff9e04d 100%);
  padding: 80px 20px;
  position: relative
}

.learn-prog .pathway::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 8%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 80px;
  border-color: transparent transparent #fff
}

.learn-prog .pathway .inner {
  max-width: 1024px;
  margin: 0 auto
}

.learn-prog .pathway h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 40px;
  color: #D41509;
  position: relative;
  display: inline-block
}

.learn-prog .pathway h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #D41509
}

.learn-prog .pathway .grid-mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start
}

.learn-prog .pathway .phase {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 5px 20px 0 #9458c917;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  animation: phase-appear .42s cubic-bezier(0.34, 1.2, 0.64, 1) backwards
}

.learn-prog .pathway .phase:nth-child(1) {
  animation-delay: .1s
}

.learn-prog .pathway .phase:nth-child(2) {
  animation-delay: .2s;
  transform: translateY(60px)
}

.learn-prog .pathway .phase:nth-child(3) {
  animation-delay: .3s
}

.learn-prog .pathway .phase:nth-child(4) {
  animation-delay: .4s;
  transform: translateY(60px)
}

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

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

.learn-prog .pathway .phase:hover {
  transform: translateY(-8px)
}

.learn-prog .pathway .phase:nth-child(2):hover,
.learn-prog .pathway .phase:nth-child(4):hover {
  transform: translateY(52px)
}

.learn-prog .pathway .phase h3 {
  font-size: 29px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #9458C9
}

.learn-prog .pathway .phase .detail {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px
}

.learn-prog .pathway .phase .focus-term {
  display: inline;
  border: 2px solid #D41509;
  padding: 2px 8px;
  border-radius: 2px
}

.learn-prog .pathway .phase .outcome {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #4a4a4a
}

.learn-prog .metrics {
  background: #fff9;
  backdrop-filter: blur(20px);
  padding: 80px 20px;
  position: relative
}

.learn-prog .metrics::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 40px;
  width: 2px;
  height: 120px;
  background: #9458c933
}

.learn-prog .metrics::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 60px;
  width: 2px;
  height: 120px;
  background: #9458c926
}

.learn-prog .metrics .inner {
  max-width: 1024px;
  margin: 0 auto
}

.learn-prog .metrics h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: #1a0a2e
}

.learn-prog .metrics .opener {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 40px;
  background: #fff9e080;
  padding: 20px;
  border-radius: 7px;
  border-left: 4px solid #9458C9
}

.learn-prog .metrics .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.learn-prog .metrics .stat-card {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 3px 0 #d415090f;
  transition: all .35s cubic-bezier(0.34, 1.2, 0.64, 1);
  animation: stat-rise .45s cubic-bezier(0.34, 1.2, 0.64, 1) backwards
}

.learn-prog .metrics .stat-card:nth-child(1) {
  animation-delay: .15s
}

.learn-prog .metrics .stat-card:nth-child(2) {
  animation-delay: .3s
}

.learn-prog .metrics .stat-card:nth-child(3) {
  animation-delay: .45s
}

@keyframes stat-rise {
  from {
    opacity: 0;
    transform: scale(0.85)
  }

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

.learn-prog .metrics .stat-card:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 60px 0 #d4150924
}

.learn-prog .metrics .stat-card .number {
  font-size: 55px;
  line-height: 1.2;
  margin: 0 0 8px;
  background: conic-gradient(from 17deg, #9458C9, #D41509, #9458C9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700
}

.learn-prog .metrics .stat-card .label {
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  color: #4a4a4a
}

.learn-prog .approach {
  padding: 80px 20px;
  background: #fff;
  position: relative
}

.learn-prog .approach::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 2px;
  height: 100px;
  background: #d4150933
}

.learn-prog .approach::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 60px;
  width: 2px;
  height: 80px;
  background: #d4150926
}

.learn-prog .approach .inner {
  max-width: 1024px;
  margin: 0 auto
}

.learn-prog .approach h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 40px;
  color: #9458C9;
  position: relative;
  display: inline-block
}

.learn-prog .approach h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #9458C9 0%, transparent 100%)
}

.learn-prog .approach .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.learn-prog .approach .method {
  margin-bottom: 40px;
  animation: method-slide .4s ease-in-out backwards
}

.learn-prog .approach .method:nth-child(1) {
  animation-delay: .1s
}

.learn-prog .approach .method:nth-child(2) {
  animation-delay: .2s
}

.learn-prog .approach .method:nth-child(3) {
  animation-delay: .3s
}

@keyframes method-slide {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }

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

.learn-prog .approach .method:last-child {
  margin-bottom: 0
}

.learn-prog .approach .method h3 {
  font-size: 22px;
  line-height: 1.6;
  margin: 0 0 8px;
  color: #D41509;
  position: relative;
  display: inline-block
}

.learn-prog .approach .method h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D41509
}

.learn-prog .approach .method .text {
  font-size: 17px;
  line-height: 1.6;
  margin: 0
}

.learn-prog .approach .insight {
  background: linear-gradient(17deg, #9458c90f 0%, #fff9e066 100%);
  padding: 40px;
  border-radius: 42px;
  box-shadow: 0 5px 20px 0 #9458c917 inset 0 2px 8px 0 #9458c914;
  position: relative;
  animation: insight-fade .5s ease-in-out backwards;
  animation-delay: .4s
}

@keyframes insight-fade {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

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

.learn-prog .approach .insight h3 {
  font-size: 29px;
  line-height: 1.2;
  margin: 0 0 20px;
  color: #9458C9
}

.learn-prog .approach .insight .point {
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px
}

.learn-prog .approach .insight .point:last-child {
  margin-bottom: 0
}

.learn-prog .approach .insight .link-inline {
  color: #D41509;
  text-decoration: none;
  border-bottom: 2px solid #d415094d;
  transition: border-color .28s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.learn-prog .approach .insight .link-inline:hover {
  border-bottom-color: #D41509
}

@media (max-width: 768px) {
  .learn-prog .intro-strip {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px
  }

  .learn-prog .intro-strip .side-visual {
    display: none
  }

  .learn-prog .intro-strip h1 {
    font-size: 40px
  }

  .learn-prog .pathway {
    padding: 40px 20px
  }

  .learn-prog .pathway h2 {
    font-size: 29px
  }

  .learn-prog .pathway .grid-mosaic {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .learn-prog .pathway .phase:nth-child(2),
  .learn-prog .pathway .phase:nth-child(4) {
    transform: translateY(0)
  }

  .learn-prog .pathway .phase:nth-child(2):hover,
  .learn-prog .pathway .phase:nth-child(4):hover {
    transform: translateY(-8px)
  }

  .learn-prog .metrics {
    padding: 40px 20px
  }

  .learn-prog .metrics h2 {
    font-size: 29px
  }

  .learn-prog .metrics .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .learn-prog .approach {
    padding: 40px 20px
  }

  .learn-prog .approach h2 {
    font-size: 29px
  }

  .learn-prog .approach .columns {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media (max-width: 480px) {
  .learn-prog .intro-strip h1 {
    font-size: 29px
  }

  .learn-prog .intro-strip .declaration,
  .learn-prog .intro-strip .statement {
    font-size: 14px
  }

  .learn-prog .pathway h2,
  .learn-prog .metrics h2,
  .learn-prog .approach h2 {
    font-size: 22px
  }

  .learn-prog .pathway .phase h3,
  .learn-prog .approach .insight h3 {
    font-size: 22px
  }

  .learn-prog .metrics .stat-card .number {
    font-size: 40px
  }

  .learn-prog .approach .method h3 {
    font-size: 17px
  }
}

.edu-biz {
  max-width: 1024px;
  margin: 0 auto;
  background: #fff;
  padding: 0
}

.edu-biz .hero-strip {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 40px;
  background: linear-gradient(17deg, #FFF9E0 0%, #fff 100%);
  border-top: 2px solid #9458C9;
  border-bottom: 2px solid #9458C9;
  position: relative
}

.edu-biz .hero-strip::before,
.edu-biz .hero-strip::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #9458C9;
  top: 0
}

.edu-biz .hero-strip::before {
  left: 40px
}

.edu-biz .hero-strip::after {
  right: 40px
}

.edu-biz .hero-img-box {
  flex-shrink: 0;
  width: 280px;
  height: 180px;
  position: relative;
  overflow: visible
}

.edu-biz .hero-img-box::before,
.edu-biz .hero-img-box::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 26px;
  border: 2px solid #D41509;
  z-index: 2
}

.edu-biz .hero-img-box::before {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none
}

.edu-biz .hero-img-box::after {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none
}

.edu-biz .hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  display: block
}

.edu-biz .hero-text-zone {
  flex: 1
}

.edu-biz .hero-text-zone h1 {
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 20px
}

.edu-biz .hero-text-zone p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0
}

.edu-biz .programs-grid {
  padding: 80px 40px;
  background: #fff;
  position: relative
}

.edu-biz .programs-grid::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%)
}

.edu-biz .programs-grid h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #9458C9;
  display: inline-block
}

.edu-biz .card-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px
}

.edu-biz .prog-card {
  background: #fff;
  border: 2px solid #FFF9E0;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 2px 3px 0 #9458c90f
}

.edu-biz .prog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 60px 0 #9458c924
}

.edu-biz .prog-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative
}

.edu-biz .prog-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(180deg, #fff0 0%, #ffffffe6 100%);
  pointer-events: none
}

.edu-biz .prog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .42s ease-in-out
}

.edu-biz .prog-card:hover .prog-card-img img {
  transform: scale(1.05)
}

.edu-biz .prog-card-body {
  padding: 20px
}

.edu-biz .prog-card-body h3 {
  font-size: 22px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 8px
}

.edu-biz .prog-card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .3s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.edu-biz .prog-card-body h3 a:hover {
  color: #9458C9
}

.edu-biz .prog-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px
}

.edu-biz .prog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #FFF9E0
}

.edu-biz .prog-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666
}

.edu-biz .prog-duration svg {
  width: 16px;
  height: 16px;
  fill: #9458C9
}

.edu-biz .prog-views {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666
}

.edu-biz .prog-views svg {
  width: 16px;
  height: 16px;
  fill: #D41509
}

.edu-biz .prog-price-zone {
  margin-top: 20px
}

.edu-biz .prog-price {
  font-size: 29px;
  line-height: 1.2;
  color: #9458C9;
  font-weight: 700;
  margin: 0 0 4px
}

.edu-biz .prog-price-note {
  font-size: 14px;
  line-height: 1.6;
  color: #777;
  margin: 0
}

.edu-biz .prog-card-btn {
  margin-top: 20px
}

.edu-biz .prog-card-btn a {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 26px;
  font-size: 14px;
  transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), transform .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.edu-biz .prog-card-btn a:hover {
  background: linear-gradient(17deg, #D41509 0%, #9458C9 100%);
  transform: scale(1.03)
}

.edu-biz .metrics-zone {
  padding: 80px 40px;
  background: linear-gradient(17deg, #FFF9E0 0%, #fff 50%, #FFF9E0 100%);
  position: relative
}

.edu-biz .metrics-zone::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #9458C9
}

.edu-biz .metrics-zone h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 40px
}

.edu-biz .metrics-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px
}

.edu-biz .metric-row {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: metric-glow 2.1s ease-in-out forwards;
  border: 2px solid transparent;
  padding: 20px;
  border-radius: 14px;
  background: #fff
}

@keyframes metric-glow {
  0% {
    border-color: transparent;
    box-shadow: none
  }

  100% {
    border-color: #9458c94d;
    box-shadow: 0 5px 20px 0 #9458c917
  }
}

.edu-biz .metric-label {
  flex: 1;
  font-size: 17px;
  line-height: 1.6;
  color: #333
}

.edu-biz .metric-bar-zone {
  width: 240px;
  height: 20px;
  background: #FFF9E0;
  border-radius: 42px;
  overflow: hidden;
  position: relative
}

.edu-biz .metric-bar {
  height: 100%;
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  border-radius: 42px;
  transition: width 1.2s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.edu-biz .metric-value {
  font-size: 17px;
  line-height: 1.6;
  color: #9458C9;
  font-weight: 700;
  width: 60px;
  text-align: right
}

.edu-biz .approach-section {
  padding: 80px 40px;
  background: #fff
}

.edu-biz .approach-section h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 40px;
  text-align: center
}

.edu-biz .approach-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px
}

.edu-biz .approach-col {
  background: linear-gradient(17deg, #FFF9E0 0%, #fff 100%);
  padding: 40px 20px;
  border-radius: 14px;
  text-align: center;
  border: 2px solid #9458C9;
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.edu-biz .approach-col:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 60px 0 #d4150924
}

.edu-biz .approach-col h4 {
  font-size: 22px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid #D41509;
  display: inline-block
}

.edu-biz .approach-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0
}

.edu-biz .intro-text {
  padding: 80px 40px;
  background: #fff;
  border-left: 8px solid #D41509;
  position: relative
}

.edu-biz .intro-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 100" preserveAspectRatio="none"><path d="M0,0 Q600,80 1200,0 L1200,100 L0,100 Z" fill="%23FFF9E0" opacity="0.3"/></svg>') no-repeat top center;
  background-size: 100% 100px;
  pointer-events: none
}

.edu-biz .intro-text h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 40px
}

.edu-biz .intro-text p:first-of-type {
  background: linear-gradient(17deg, #9458c914 0%, #fff9e080 100%);
  padding: 20px;
  border-radius: 7px;
  border-left: 4px solid #9458C9;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px
}

.edu-biz .intro-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px
}

.edu-biz .intro-text p:last-of-type {
  margin-bottom: 0
}

.edu-biz .intro-text strong {
  color: #9458C9;
  border: 1px solid #9458C9;
  padding: 0 4px;
  border-radius: 2px
}

@media (max-width: 1024px) {
  .edu-biz .card-wrap {
    grid-template-columns: 1fr
  }

  .edu-biz .approach-cols {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .edu-biz .hero-strip {
    flex-direction: column;
    padding: 20px;
    gap: 20px
  }

  .edu-biz .hero-img-box {
    width: 100%;
    max-width: 280px
  }

  .edu-biz .hero-text-zone h1 {
    font-size: 29px
  }

  .edu-biz .programs-grid,
  .edu-biz .metrics-zone,
  .edu-biz .approach-section,
  .edu-biz .intro-text {
    padding: 40px 20px
  }

  .edu-biz .programs-grid h2,
  .edu-biz .metrics-zone h2,
  .edu-biz .approach-section h2,
  .edu-biz .intro-text h2 {
    font-size: 29px
  }

  .edu-biz .metric-bar-zone {
    width: 140px
  }

  .edu-biz .metric-value {
    width: 50px;
    font-size: 14px
  }

  .edu-biz .hero-strip::before,
  .edu-biz .hero-strip::after {
    display: none
  }
}

@media (max-width: 480px) {
  .edu-biz .hero-img-box {
    display: none
  }

  .edu-biz .prog-card-img {
    display: none
  }

  .edu-biz .metric-row {
    flex-direction: column;
    align-items: flex-start
  }

  .edu-biz .metric-bar-zone {
    width: 100%
  }

  .edu-biz .metric-value {
    width: auto
  }
}

.success-page {
  background: linear-gradient(17deg, #FFF9E0 0%, #fff 100%);
  padding: 80px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center
}

.success-page .wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center
}

.success-page .icon-box {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  background: linear-gradient(17deg, #9458C9, #D41509);
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 60px 0 #9458c924;
  animation: appear .4s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

@keyframes appear {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px)
  }

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

.success-page .icon-box svg {
  width: 64px;
  height: 64px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.success-page .main-heading {
  font-size: 55px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 20px;
  font-weight: 700
}

.success-page .lead-text {
  font-size: 22px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0 0 40px
}

.success-page .detail-block {
  background: #fff;
  border: 2px solid #9458C9;
  border-radius: 14px;
  padding: 40px;
  margin: 0 0 40px;
  box-shadow: 0 5px 20px 0 #d4150917
}

.success-page .detail-block .sub-heading {
  font-size: 29px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 20px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 3px solid #9458C9;
  display: inline-block
}

.success-page .detail-block .info-text {
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a5e;
  margin: 0
}

.success-page .info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 0 0 40px
}

.success-page .info-item {
  background: #fff;
  border-radius: 7px;
  padding: 20px;
  border: 1px solid #9458c933;
  transition: border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.success-page .info-item:hover {
  border-color: #9458C9
}

.success-page .info-item .label {
  font-size: 14px;
  line-height: 1.2;
  color: #9458C9;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600
}

.success-page .info-item .value {
  font-size: 17px;
  line-height: 1.6;
  color: #1a1a2e;
  margin: 0;
  font-weight: 500
}

.success-page .action-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.success-page .btn-primary {
  background: linear-gradient(17deg, #9458C9 0%, #D41509 100%);
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  padding: 20px 40px;
  border: none;
  border-radius: 26px;
  cursor: pointer;
  font-weight: 600;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s ease-in-out;
  box-shadow: 0 5px 20px 0 #9458c917;
  text-decoration: none;
  display: inline-block
}

.success-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 60px 0 #d4150924
}

.success-page .btn-secondary {
  background: #fff;
  color: #9458C9;
  font-size: 17px;
  line-height: 1.2;
  padding: 20px 40px;
  border: 2px solid #9458C9;
  border-radius: 26px;
  cursor: pointer;
  font-weight: 600;
  transition: background .42s ease-in-out, color .42s ease-in-out;
  text-decoration: none;
  display: inline-block
}

.success-page .btn-secondary:hover {
  background: #9458C9;
  color: #fff
}

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

  .success-page .icon-box {
    width: 90px;
    height: 90px;
    margin-bottom: 20px
  }

  .success-page .icon-box svg {
    width: 48px;
    height: 48px
  }

  .success-page .main-heading {
    font-size: 40px;
    margin-bottom: 20px
  }

  .success-page .lead-text {
    font-size: 17px;
    margin-bottom: 20px
  }

  .success-page .detail-block {
    padding: 20px;
    margin-bottom: 20px
  }

  .success-page .detail-block .sub-heading {
    font-size: 22px
  }

  .success-page .action-group {
    flex-direction: column;
    gap: 20px
  }

  .success-page .btn-primary,
  .success-page .btn-secondary {
    width: 100%;
    padding: 20px
  }
}

.abt-pg {
  background: #fff;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
  position: relative
}

.abt-pg .hero-intro {
  background: linear-gradient(17deg, #FFF9E0 0%, #fff 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  border-top: 2px solid #9458C9;
  border-bottom: 2px solid #D41509;
  overflow: visible
}

.abt-pg .hero-intro .intro-txt {
  max-width: 720px;
  margin: 0 auto 40px
}

.abt-pg .hero-intro h1 {
  font-size: 55px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 20px;
  font-weight: 700
}

.abt-pg .hero-intro .tagline {
  font-size: 22px;
  line-height: 1.6;
  color: #3d3d5c;
  margin: 0;
  font-style: italic
}

.abt-pg .hero-intro .intro-visual {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border: 7px solid #9458C9;
  border-radius: 14px;
  overflow: hidden
}

.abt-pg .hero-intro .intro-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block
}

.abt-pg .hero-intro .intro-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(137deg, #9458c966 0%, #d415094d 100%);
  pointer-events: none
}

.abt-pg .story-timeline {
  background: #D41509;
  padding: 80px 20px;
  position: relative
}

.abt-pg .story-timeline::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background-image: radial-gradient(circle at 20px 0, transparent 20px, #D41509 20px);
  background-size: 40px 20px;
  background-position: 0 0;
  background-repeat: repeat-x
}

.abt-pg .story-timeline .timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 920px;
  margin: 0 auto
}

.abt-pg .story-timeline .timeline-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 26px;
  box-shadow: 0 8px 60px 0 #9458c924;
  position: relative;
  animation: slideUpReveal .45s cubic-bezier(0.34, 1.2, 0.64, 1) backwards
}

.abt-pg .story-timeline .timeline-card:nth-child(1) {
  animation-delay: .1s
}

.abt-pg .story-timeline .timeline-card:nth-child(2) {
  animation-delay: .2s
}

.abt-pg .story-timeline .timeline-card:nth-child(3) {
  animation-delay: .3s
}

@keyframes slideUpReveal {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

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

.abt-pg .story-timeline .year-label {
  font-size: 40px;
  line-height: 1.2;
  color: #9458C9;
  font-weight: 700;
  margin: 0 0 8px;
  display: inline-block;
  border: 2px solid #9458C9;
  padding: 4px 20px;
  border-radius: 7px
}

.abt-pg .story-timeline .milestone-txt {
  font-size: 17px;
  line-height: 1.6;
  color: #2d2d44;
  margin: 0
}

.abt-pg .approach-showcase {
  background: #FFF9E0;
  padding: 80px 20px;
  position: relative
}

.abt-pg .approach-showcase::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background-image: radial-gradient(circle at 20px 0, transparent 20px, #FFF9E0 20px);
  background-size: 40px 20px;
  background-position: 0 0;
  background-repeat: repeat-x
}

.abt-pg .approach-showcase .showcase-wrap {
  max-width: 920px;
  margin: 0 auto
}

.abt-pg .approach-showcase h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 40px;
  text-align: center;
  position: relative;
  padding-bottom: 20px
}

.abt-pg .approach-showcase h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: conic-gradient(from 17deg, #9458C9, #D41509, #9458C9);
  border-radius: 2px
}

.abt-pg .approach-showcase .method-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-bottom: 40px
}

.abt-pg .approach-showcase .method-item {
  flex: 1;
  background: #fff;
  padding: 40px 20px;
  border-radius: 14px;
  border: 2px solid #9458C9;
  position: relative;
  transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.abt-pg .approach-showcase .method-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 60px 0 #9458c924
}

.abt-pg .approach-showcase .method-item h3 {
  font-size: 29px;
  line-height: 1.2;
  color: #9458C9;
  margin: 0 0 20px;
  font-weight: 600
}

.abt-pg .approach-showcase .method-item p {
  font-size: 17px;
  line-height: 1.6;
  color: #3d3d5c;
  margin: 0
}

.abt-pg .approach-showcase .visual-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px
}

.abt-pg .approach-showcase .visual-pair img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 26px;
  border: 4px solid #9458C9;
  box-shadow: 0 5px 20px 0 #9458c917
}

.abt-pg .team-profiles {
  background: linear-gradient(17deg, #fff 0%, #FFF9E0 100%);
  padding: 80px 20px;
  position: relative;
  border-top: 2px solid #9458C9;
  border-bottom: 2px solid #D41509
}

.abt-pg .team-profiles .profiles-wrap {
  max-width: 920px;
  margin: 0 auto
}

.abt-pg .team-profiles h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 8px;
  text-align: center
}

.abt-pg .team-profiles .intro-lead {
  font-size: 22px;
  line-height: 1.6;
  color: #3d3d5c;
  margin: 0 0 40px;
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  border-left: 4px solid #D41509;
  box-shadow: inset 0 2px 3px 0 #d415090f
}

.abt-pg .team-profiles .profile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.abt-pg .team-profiles .profile-card {
  background: #fff;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 5px 20px 0 #d4150917;
  transition: transform .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.abt-pg .team-profiles .profile-card:hover {
  transform: scale(1.03)
}

.abt-pg .team-profiles .profile-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block
}

.abt-pg .team-profiles .profile-info {
  padding: 20px
}

.abt-pg .team-profiles .profile-info h3 {
  font-size: 29px;
  line-height: 1.2;
  color: #1a1a2e;
  margin: 0 0 8px;
  font-weight: 600
}

.abt-pg .team-profiles .role-tag {
  font-size: 17px;
  line-height: 1.6;
  color: #9458C9;
  margin: 0 0 20px;
  font-weight: 600;
  display: inline-block;
  padding: 4px 20px;
  background: #FFF9E0;
  border-radius: 7px
}

.abt-pg .team-profiles .bio-txt {
  font-size: 17px;
  line-height: 1.6;
  color: #3d3d5c;
  margin: 0
}

.abt-pg .metrics-display {
  background: #9458C9;
  padding: 80px 20px;
  position: relative
}

.abt-pg .metrics-display::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background-image: radial-gradient(circle at 20px 0, transparent 20px, #9458C9 20px);
  background-size: 40px 20px;
  background-position: 0 0;
  background-repeat: repeat-x
}

.abt-pg .metrics-display .metrics-wrap {
  max-width: 920px;
  margin: 0 auto
}

.abt-pg .metrics-display h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 40px;
  text-align: center
}

.abt-pg .metrics-display .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.abt-pg .metrics-display .stat-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.abt-pg .metrics-display .stat-box:hover {
  transform: translateY(-12px)
}

.abt-pg .metrics-display .stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: conic-gradient(from 17deg, #D41509, #9458C9, #D41509)
}

.abt-pg .metrics-display .stat-num {
  font-size: 55px;
  line-height: 1.2;
  color: #D41509;
  font-weight: 700;
  margin: 0 0 8px;
  display: block
}

.abt-pg .metrics-display .stat-label {
  font-size: 17px;
  line-height: 1.6;
  color: #3d3d5c;
  margin: 0;
  font-weight: 600
}

@media (max-width: 1024px) {
  .abt-pg .hero-intro {
    padding: 80px 20px
  }

  .abt-pg .hero-intro h1 {
    font-size: 40px
  }

  .abt-pg .hero-intro .intro-visual img {
    height: 360px
  }

  .abt-pg .story-timeline .timeline-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .abt-pg .approach-showcase .method-grid {
    flex-direction: column;
    gap: 20px
  }

  .abt-pg .approach-showcase .visual-pair {
    grid-template-columns: 1fr
  }

  .abt-pg .team-profiles .profile-row {
    grid-template-columns: 1fr
  }

  .abt-pg .metrics-display .stat-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .abt-pg .hero-intro {
    padding: 40px 20px
  }

  .abt-pg .hero-intro h1 {
    font-size: 29px
  }

  .abt-pg .hero-intro .tagline {
    font-size: 17px
  }

  .abt-pg .hero-intro .intro-visual {
    display: none
  }

  .abt-pg .story-timeline {
    padding: 40px 20px
  }

  .abt-pg .story-timeline .year-label {
    font-size: 29px
  }

  .abt-pg .approach-showcase {
    padding: 40px 20px
  }

  .abt-pg .approach-showcase h2 {
    font-size: 29px;
    margin-bottom: 20px
  }

  .abt-pg .approach-showcase .method-item h3 {
    font-size: 22px
  }

  .abt-pg .approach-showcase .visual-pair img {
    display: none
  }

  .abt-pg .team-profiles {
    padding: 40px 20px
  }

  .abt-pg .team-profiles h2 {
    font-size: 29px
  }

  .abt-pg .team-profiles .intro-lead {
    font-size: 17px;
    margin-bottom: 20px
  }

  .abt-pg .team-profiles .profile-card img {
    display: none
  }

  .abt-pg .team-profiles .profile-info h3 {
    font-size: 22px
  }

  .abt-pg .metrics-display {
    padding: 40px 20px
  }

  .abt-pg .metrics-display h2 {
    font-size: 29px;
    margin-bottom: 20px
  }

  .abt-pg .metrics-display .stat-grid {
    grid-template-columns: 1fr
  }

  .abt-pg .metrics-display .stat-num {
    font-size: 40px
  }
}

@media (max-width: 480px) {
  .abt-pg .hero-intro h1 {
    font-size: 22px
  }

  .abt-pg .hero-intro .tagline {
    font-size: 14px
  }

  .abt-pg .story-timeline .timeline-card {
    padding: 20px
  }

  .abt-pg .story-timeline .year-label {
    font-size: 22px;
    padding: 4px 8px
  }

  .abt-pg .approach-showcase h2 {
    font-size: 22px
  }

  .abt-pg .approach-showcase .method-item {
    padding: 20px
  }

  .abt-pg .approach-showcase .method-item h3 {
    font-size: 17px
  }

  .abt-pg .team-profiles h2 {
    font-size: 22px
  }

  .abt-pg .team-profiles .intro-lead {
    font-size: 14px;
    padding: 8px
  }

  .abt-pg .team-profiles .profile-info {
    padding: 20px
  }

  .abt-pg .team-profiles .profile-info h3 {
    font-size: 17px
  }

  .abt-pg .team-profiles .role-tag {
    font-size: 14px;
    padding: 4px 8px
  }

  .abt-pg .metrics-display h2 {
    font-size: 22px
  }

  .abt-pg .metrics-display .stat-box {
    padding: 20px
  }

  .abt-pg .metrics-display .stat-num {
    font-size: 29px
  }

  .abt-pg .metrics-display .stat-label {
    font-size: 14px
  }
}