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

* {
  box-sizing: border-box
}

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  font-family: 'Bitter', serif;
  background: #fff;
  color: #1d1d1b;
  font-size: 19px;
  line-height: 1.55
}

html {
  scroll-behavior: auto
}

.utility-strip {
  background: linear-gradient(135deg, #E8F1DE 0%, #C3D3AE 100%);
  padding: 6px 24px;
  border-bottom: 1px solid #a4af5526
}

.utility-strip__container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.utility-strip__text {
  font-size: 15px;
  line-height: 1.2;
  color: #3d4a1f;
  font-weight: 400;
  letter-spacing: .02em
}

.utility-strip__contact {
  display: flex;
  gap: 24px;
  align-items: center
}

.utility-strip__link {
  font-size: 15px;
  line-height: 1.2;
  color: #3d4a1f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.utility-strip__link:hover {
  color: #5a6b2a
}

.utility-strip__link:focus {
  outline: 3px solid #a4af5580;
  outline-offset: 3px;
  border-radius: 3px
}

.utility-strip__icon {
  width: 16px;
  height: 16px;
  fill: currentColor
}

.branding-row {
  background: #fefffe;
  padding: 24px;
  border-bottom: 1px solid #a4af551f;
  box-shadow: 2px 3px 4px -1px #a4af5512
}

.branding-row__container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px
}

.branding-group {
  display: flex;
  align-items: center;
  gap: 24px
}

.logo-frame {
  background: #fff;
  padding: 6px;
  border-radius: 3px 28px 3px 28px;
  box-shadow: 2px 3px 4px -1px #a4af5512 2px 6px 28px -1px #a4af551c inset 0 -2px 3px #c3d3ae1a;
  border: 2px solid #a4af5533;
  display: flex;
  align-items: center;
  justify-content: center
}

.logo-frame__image {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block
}

.brand-identity {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.brand-identity__name {
  font-size: 31px;
  line-height: 1.2;
  font-weight: 700;
  color: #2a3314;
  margin: 0
}

.brand-identity__tagline {
  font-size: 15px;
  line-height: 1.2;
  color: #5a6b2a;
  margin: 0;
  letter-spacing: .01em
}

.foundation-badge {
  background: linear-gradient(135deg, #a4af5514 0%, #c3d3ae1f 100%);
  padding: 6px 12px;
  border-radius: 28px;
  font-size: 15px;
  line-height: 1.2;
  color: #4a5625;
  border: 1px solid #a4af5540;
  font-weight: 400
}

.nav-row {
  background: linear-gradient(180deg, #f9fdf3 0%, #fff 100%);
  padding: 12px 24px;
  box-shadow: 2px 3px 4px -1px #a4af5512
}

.nav-row__container {
  max-width: 1140px;
  margin: 0 auto
}

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

.primary-nav__item {
  margin: 0
}

.primary-nav__link {
  display: block;
  padding: 12px 24px;
  font-size: 19px;
  line-height: 1.2;
  color: #3d4a1f;
  text-decoration: none;
  border-radius: 28px;
  transition: background-color .24s cubic-bezier(0.4, 0, 0.2, 1), color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 400;
  position: relative
}

.primary-nav__link:hover {
  background: #a4af551a;
  color: #2a3314;
  box-shadow: 2px 3px 4px -1px #a4af5512
}

.primary-nav__link:focus {
  outline: 3px solid #a4af5580;
  outline-offset: 3px;
  background: #e8f1de66
}

.primary-nav__link:active {
  background: #a4af552e;
  box-shadow: inset 0 2px 3px #a4af5526
}

@media (max-width: 1024px) {
  .branding-row__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .foundation-badge {
    align-self: flex-start
  }

  .primary-nav {
    justify-content: flex-start
  }
}

@media (max-width: 768px) {
  .utility-strip__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }

  .utility-strip__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }

  .branding-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .primary-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 6px
  }

  .primary-nav__link {
    padding: 12px
  }
}

@media (max-width: 640px) {
  .utility-strip {
    padding: 6px 12px
  }

  .branding-row {
    padding: 12px
  }

  .nav-row {
    padding: 12px
  }

  .brand-identity__name {
    font-size: 19px
  }

  .primary-nav__link {
    font-size: 15px
  }
}

.footer-primary {
  background: linear-gradient(180deg, #e8f1de 0%, #f5f9ef 100%);
  padding: 48px 24px 24px;
  border-top: 3px solid #a4af554d;
  box-shadow: inset 0 2px 8px #a4af5514
}

.footer-primary__container {
  max-width: 1140px;
  margin: 0 auto
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 2px solid #a4af5533;
  gap: 48px;
  flex-wrap: wrap
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 24px
}

.footer-logo-frame {
  background: #fff;
  padding: 6px;
  border-radius: 28px 3px 28px 3px;
  box-shadow: 2px 3px 4px -1px #a4af5512 2px 6px 28px -1px #a4af551c;
  border: 2px solid #a4af5540;
  display: flex;
  align-items: center;
  justify-content: center
}

.footer-logo-frame__image {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.footer-brand-text__name {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #2a3314;
  margin: 0
}

.footer-brand-text__description {
  font-size: 15px;
  line-height: 1.2;
  color: #4a5625;
  margin: 0
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center
}

.footer-social__link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 28px;
  border: 2px solid #a4af5533;
  transition: background-color .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 3px 4px -1px #a4af5512
}

.footer-social__link:hover {
  background: #a4af551a;
  border-color: #a4af5566;
  box-shadow: 2px 6px 28px -1px #a4af551c
}

.footer-social__link:focus {
  outline: 3px solid #a4af5580;
  outline-offset: 3px
}

.footer-social__icon {
  width: 20px;
  height: 20px;
  fill: #3d4a1f
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 48px
}

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

.footer-column__heading {
  font-size: 19px;
  line-height: 1.2;
  font-weight: 700;
  color: #2a3314;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .05em
}

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

.footer-menu__item {
  margin: 0
}

.footer-menu__link {
  font-size: 15px;
  line-height: 1.55;
  color: #4a5625;
  text-decoration: none;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), padding-left .2s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  padding-left: 0
}

.footer-menu__link:hover {
  color: #2a3314;
  padding-left: 6px
}

.footer-menu__link:focus {
  outline: 3px solid #a4af5580;
  outline-offset: 3px;
  border-radius: 3px
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #4a5625
}

.footer-contact-item__icon {
  width: 18px;
  height: 18px;
  fill: #5a6b2a;
  flex-shrink: 0;
  margin-top: 3px
}

.footer-contact-item__link {
  color: inherit;
  text-decoration: none;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-contact-item__link:hover {
  color: #2a3314
}

.footer-contact-item__link:focus {
  outline: 3px solid #a4af5580;
  outline-offset: 3px;
  border-radius: 3px
}

.footer-bottom {
  padding-top: 24px;
  border-top: 2px solid #a4af5533;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.footer-copyright {
  font-size: 15px;
  line-height: 1.2;
  color: #5a6b2a;
  margin: 0
}

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

.footer-legal-menu__item {
  margin: 0
}

.footer-legal-menu__link {
  font-size: 15px;
  line-height: 1.2;
  color: #5a6b2a;
  text-decoration: none;
  transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-legal-menu__link:hover {
  color: #2a3314
}

.footer-legal-menu__link:focus {
  outline: 3px solid #a4af5580;
  outline-offset: 3px;
  border-radius: 3px
}

@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px
  }
}

@media (max-width: 768px) {
  .footer-primary {
    padding: 24px 12px 12px
  }

  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
    gap: 24px
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .footer-legal-menu {
    flex-direction: column;
    gap: 6px
  }
}

@media (max-width: 640px) {
  .footer-branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .footer-social {
    flex-wrap: wrap
  }
}

.rules-block {
  margin-left: auto;
  margin-right: auto;
  max-width: 1140px;
  padding: 96px 24px
}

.rules-block h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 48px;
  margin-top: 0
}

.rules-block h2 {
  font-size: 41px;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 48px
}

.rules-block h3 {
  font-size: 31px;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 48px
}

.rules-block h4 {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 12px;
  margin-top: 24px
}

.rules-block h5 {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 12px;
  margin-top: 24px
}

.rules-block h6 {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px;
  margin-top: 24px
}

.rules-block p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 24px;
  margin-top: 0
}

.rules-block strong,
.rules-block b {
  font-weight: 600
}

.rules-block em,
.rules-block i {
  font-style: italic
}

.rules-block ul,
.rules-block ol {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 24px;
  margin-top: 0;
  padding-left: 48px
}

.rules-block ul li,
.rules-block ol li {
  margin-bottom: 12px
}

.rules-block ul li:last-child,
.rules-block ol li:last-child {
  margin-bottom: 0
}

.rules-block a {
  color: #A4AF55;
  text-decoration: underline;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.rules-block a:hover {
  color: #8a9447
}

.rules-block table {
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 48px;
  margin-top: 24px;
  width: 100%
}

.rules-block thead {
  background: #E8F1DE
}

.rules-block th {
  border-bottom: 2px solid #C3D3AE;
  font-weight: 600;
  text-align: left;
  padding: 12px 24px
}

.rules-block td {
  border-bottom: 1px solid #E8F1DE;
  padding: 12px 24px
}

.rules-block tbody tr:last-child td {
  border-bottom: none
}

.rules-block hr {
  border: none;
  border-top: 1px solid #E8F1DE;
  margin-bottom: 48px;
  margin-top: 48px
}

@media (max-width: 768px) {
  .rules-block {
    padding: 48px 12px
  }

  .rules-block h1 {
    font-size: 41px;
    margin-bottom: 24px
  }

  .rules-block h2 {
    font-size: 31px;
    margin-bottom: 12px;
    margin-top: 24px
  }

  .rules-block h3 {
    font-size: 19px;
    margin-bottom: 12px;
    margin-top: 24px
  }

  .rules-block p,
  .rules-block ul,
  .rules-block ol {
    font-size: 15px
  }

  .rules-block ul,
  .rules-block ol {
    padding-left: 24px
  }

  .rules-block table {
    font-size: 15px;
    margin-bottom: 24px
  }

  .rules-block th,
  .rules-block td {
    padding: 6px 12px
  }

  .rules-block hr {
    margin-bottom: 24px;
    margin-top: 24px
  }
}

.events__detail {
  background: #fff;
  min-height: 100vh
}

.events__detail .opening {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
  position: relative
}

.events__detail .opening::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #a4af5505 2px, #a4af5505 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #a4af5505 2px, #a4af5505 4px);
  pointer-events: none;
  z-index: 1
}

.events__detail .opening__visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 2px 6px 28px -1px #a4af551c
}

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

.events__detail .opening__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 40%, #0006);
  pointer-events: none
}

.events__detail .opening__content {
  position: relative;
  z-index: 2;
  padding-top: 12px
}

.events__detail .opening__title {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #2a2a2a;
  font-weight: 700
}

.events__detail .opening__description {
  font-size: 19px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0 0 24px
}

.events__detail .opening__metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px
}

.events__detail .metadata__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #6a6a6a
}

.events__detail .metadata__icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #A4AF55;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.events__detail .metadata__value {
  font-weight: 600;
  color: #2a2a2a
}

.events__detail .opening__price {
  display: inline-block;
  background: linear-gradient(135deg, #A4AF55 0%, #C3D3AE 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 28px;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.events__detail .opening__price:hover {
  transform: translateY(-2px);
  box-shadow: 2px 9px 40px -1px #a4af5524
}

.events__detail .opening__corner {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0
}

.events__detail .opening__corner::before,
.events__detail .opening__corner::after {
  content: '';
  position: absolute;
  background: #A4AF55;
  opacity: .08
}

.events__detail .opening__corner::before {
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  transform: rotate(45deg);
  transform-origin: top right
}

.events__detail .opening__corner::after {
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: top right
}

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

  .events__detail .opening__visual {
    max-width: 480px;
    margin: 0 auto
  }

  .events__detail .opening__title {
    font-size: 41px
  }
}

@media (max-width: 640px) {
  .events__detail .opening {
    padding: 24px 12px
  }

  .events__detail .opening__title {
    font-size: 31px
  }

  .events__detail .opening__description {
    font-size: 15px
  }

  .events__detail .metadata__item {
    font-size: 15px
  }

  .events__detail .opening__price {
    font-size: 15px;
    padding: 12px 24px
  }
}

.events__detail .comprehensive {
  background: linear-gradient(167deg, #E8F1DE 0%, #fff 100%);
  padding: 96px 24px;
  position: relative;
  overflow: hidden
}

.events__detail .comprehensive::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C3D3AE 50%, transparent 100%);
  opacity: .4
}

.events__detail .comprehensive__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start
}

.events__detail .comprehensive__main {
  background: #fff;
  padding: 48px;
  border-radius: 3px;
  box-shadow: 2px 6px 28px -1px #a4af551c;
  border: 2px solid #E8F1DE;
  position: relative
}

.events__detail .comprehensive__main::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid #C3D3AE;
  border-radius: 3px;
  pointer-events: none;
  opacity: .3
}

.events__detail .comprehensive__heading {
  font-size: 41px;
  line-height: 1.2;
  margin: 0 0 24px;
  color: transparent;
  -webkit-text-stroke: 2px #2a2a2a;
  text-stroke: 2px #2a2a2a;
  font-weight: 700
}

.events__detail .comprehensive__program {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a
}

.events__detail .comprehensive__program h2 {
  font-size: 31px;
  line-height: 1.2;
  margin: 48px 0 12px;
  color: #2a2a2a;
  font-weight: 700
}

.events__detail .comprehensive__program h2:first-child {
  margin-top: 0
}

.events__detail .comprehensive__program h3 {
  font-size: 19px;
  line-height: 1.55;
  margin: 24px 0 12px;
  color: #2a2a2a;
  font-weight: 600
}

.events__detail .comprehensive__program p {
  margin: 0 0 12px
}

.events__detail .comprehensive__program em {
  font-style: italic;
  color: #A4AF55
}

.events__detail .comprehensive__program small {
  font-size: 15px;
  color: #6a6a6a
}

.events__detail .comprehensive__program ol {
  margin: 12px 0;
  padding-left: 24px
}

.events__detail .comprehensive__program li {
  margin: 6px 0;
  padding-left: 6px
}

.events__detail .comprehensive__program blockquote {
  margin: 24px 0;
  padding: 24px;
  background: #E8F1DE;
  border-radius: 3px;
  border-left: 3px solid #A4AF55;
  font-style: italic
}

.events__detail .comprehensive__program cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 15px;
  color: #6a6a6a
}

.events__detail .comprehensive__program figure {
  margin: 24px 0
}

.events__detail .comprehensive__program figcaption {
  margin-top: 6px;
  font-size: 15px;
  color: #6a6a6a;
  font-style: italic
}

.events__detail .comprehensive__program details {
  margin: 24px 0;
  padding: 24px;
  background: #fff;
  border: 1px solid #C3D3AE;
  border-radius: 3px
}

.events__detail .comprehensive__program summary {
  cursor: pointer;
  font-weight: 600;
  color: #A4AF55;
  list-style: none;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.events__detail .comprehensive__program summary::-webkit-details-marker {
  display: none
}

.events__detail .comprehensive__program summary:hover {
  color: #2a2a2a
}

.events__detail .comprehensive__program details[open] summary {
  margin-bottom: 12px
}

.events__detail .comprehensive__aside {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.events__detail .comprehensive__card {
  background: #fff;
  padding: 24px;
  border-radius: 3px;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  border: 1px solid #E8F1DE
}

.events__detail .comprehensive__card-title {
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #2a2a2a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em
}

.events__detail .comprehensive__card-content {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a
}

.events__detail .comprehensive__card-content p {
  margin: 0 0 12px
}

.events__detail .comprehensive__card-content p:last-child {
  margin-bottom: 0
}

.events__detail .poll {
  background: linear-gradient(135deg, #E8F1DE 0%, #C3D3AE 100%);
  padding: 24px;
  border-radius: 3px
}

.events__detail .poll__question {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 12px;
  color: #2a2a2a;
  font-weight: 600
}

.events__detail .poll__options {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.events__detail .poll__option {
  position: relative
}

.events__detail .poll__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.events__detail .poll__label {
  display: block;
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #C3D3AE;
  border-radius: 28px;
  cursor: pointer;
  font-size: 15px;
  color: #2a2a2a;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .24s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.events__detail .poll__label:hover {
  border-color: #A4AF55;
  transform: translateX(3px)
}

.events__detail .poll__radio:checked+.poll__label {
  background: #A4AF55;
  border-color: #A4AF55;
  color: #fff;
  font-weight: 600
}

.events__detail .poll__radio:focus+.poll__label {
  outline: 2px solid #A4AF55;
  outline-offset: 2px
}

.events__detail .interaction__stats {
  display: flex;
  gap: 24px;
  margin-top: 24px
}

.events__detail .interaction__stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: #6a6a6a
}

.events__detail .interaction__icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #A4AF55;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.events__detail .interaction__count {
  font-weight: 600;
  color: #2a2a2a
}

.events__detail .comprehensive__cta {
  margin-top: 24px
}

.events__detail .comprehensive__button {
  display: inline-block;
  padding: 12px 48px;
  background: #A4AF55;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 600;
  text-transform: lowercase;
  transition: background .26s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 2px 3px 4px -1px #a4af5512
}

.events__detail .comprehensive__button:hover {
  background: #8f9a48;
  transform: translateY(-1px);
  box-shadow: 2px 6px 28px -1px #a4af551c
}

.events__detail .comprehensive__button:active {
  transform: translateY(0);
  box-shadow: 2px 3px 4px -1px #a4af5512
}

@media (max-width: 1024px) {
  .events__detail .comprehensive {
    padding: 48px 24px
  }

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

  .events__detail .comprehensive__main {
    padding: 24px
  }

  .events__detail .comprehensive__heading {
    font-size: 31px
  }

  .events__detail .comprehensive__aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }
}

@media (max-width: 640px) {
  .events__detail .comprehensive {
    padding: 48px 12px
  }

  .events__detail .comprehensive__main {
    padding: 24px 12px
  }

  .events__detail .comprehensive__heading {
    font-size: 31px
  }

  .events__detail .comprehensive__aside {
    grid-template-columns: 1fr
  }

  .events__detail .comprehensive__program h2 {
    font-size: 19px
  }

  .events__detail .interaction__stats {
    flex-direction: column;
    gap: 12px
  }
}

.events__detail .comprehensive__description {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a3a;
  margin-top: 24px
}

.events__detail .comprehensive__description h2 {
  font-size: 31px;
  line-height: 1.2;
  margin: 48px 0 12px;
  color: #2a2a2a;
  font-weight: 700
}

.events__detail .comprehensive__description h2:first-child {
  margin-top: 0
}

.events__detail .comprehensive__description h3 {
  font-size: 19px;
  line-height: 1.55;
  margin: 24px 0 12px;
  color: #2a2a2a;
  font-weight: 600
}

.events__detail .comprehensive__description p {
  margin: 0 0 12px
}

.events__detail .comprehensive__description em {
  font-style: italic;
  color: #A4AF55
}

.events__detail .comprehensive__description abbr {
  text-decoration: none;
  border-bottom: 1px dotted #A4AF55;
  cursor: help
}

.events__detail .comprehensive__description ol {
  margin: 12px 0;
  padding-left: 24px
}

.events__detail .comprehensive__description li {
  margin: 6px 0;
  padding-left: 6px
}

.events__detail .comprehensive__description blockquote {
  margin: 24px 0;
  padding: 24px;
  background: #E8F1DE;
  border-radius: 3px;
  border-left: 3px solid #A4AF55;
  font-style: italic
}

.events__detail .comprehensive__quote {
  background: #fff;
  padding: 24px;
  border-radius: 3px;
  border-left: 3px solid #A4AF55;
  margin: 24px 0;
  font-size: 19px;
  line-height: 1.55;
  color: #2a2a2a;
  font-style: italic;
  box-shadow: inset 0 2px 4px #a4af550d
}

.events__detail .comprehensive__highlight {
  display: inline-block;
  background: linear-gradient(180deg, transparent 60%, #a4af5533 60%);
  padding: 0 3px
}

.learning-program {
  background: linear-gradient(168deg, #fafbf8 0%, #fff 100%);
  min-height: 100vh;
  overflow-x: clip;
  padding-bottom: 96px;
  position: relative
}

.learning-program::before {
  animation: scanline-drift 8.4s linear infinite;
  background: repeating-linear-gradient(0deg, transparent 0px, #a4af5508 1px, transparent 2px, transparent 12px);
  content: '';
  height: 200%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -100%;
  width: 100%;
  z-index: 1
}

@keyframes scanline-drift {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(50%)
  }
}

.learning-program__opening {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1140px;
  padding-bottom: 48px;
  padding-top: 96px;
  position: relative;
  z-index: 2
}

.learning-program__opening-visual {
  overflow: hidden;
  position: relative
}

.learning-program__opening-visual::after {
  background: radial-gradient(ellipse at 0% 0%, #0006 0%, transparent 70%);
  content: '';
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%
}

.learning-program__opening-visual::before {
  background: radial-gradient(ellipse at 100% 100%, #0006 0%, transparent 70%);
  content: '';
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1
}

.learning-program__opening-image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%
}

.learning-program__opening-content {
  align-items: center;
  background: #fff;
  display: flex;
  padding: 96px 48px 48px;
  position: relative
}

.learning-program__opening-content::before {
  border: 2px solid #a4af5514;
  border-radius: 50%;
  content: '';
  height: 180px;
  left: -90px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px
}

.learning-program__opening-content::after {
  border: 2px solid #c3d3ae1f;
  border-radius: 3px;
  content: '';
  height: 120px;
  position: absolute;
  right: 24px;
  top: 24px;
  transform: rotate(12deg);
  width: 120px
}

.learning-program__opening-title {
  color: #2a2a2a;
  font-size: 56px;
  line-height: 1.2;
  margin: 0;
  position: relative;
  z-index: 1
}

.learning-program__divider {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1140px;
  padding: 48px 24px
}

.learning-program__divider-dot {
  background: #A4AF55;
  border-radius: 50%;
  height: 6px;
  opacity: .3;
  width: 6px
}

.learning-program__divider-dot:nth-child(2) {
  opacity: .5
}

.learning-program__divider-dot:nth-child(3) {
  opacity: .3
}

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

.learning-program__structure-container {
  background: #fff;
  border-radius: 28px;
  box-shadow: 2px 6px 28px -1px #a4af551c;
  overflow: hidden;
  padding: 48px
}

.learning-program__structure-header {
  margin-bottom: 48px
}

.learning-program__structure-heading {
  color: #2a2a2a;
  font-size: 41px;
  letter-spacing: .02em;
  line-height: 1.2;
  margin: 0 0 24px;
  text-transform: uppercase
}

.learning-program__structure-intro {
  color: #4a4a4a;
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
  max-width: 720px
}

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

.learning-program__module {
  background: linear-gradient(135deg, #fafbf8 0%, #fff 100%);
  border: 1px solid #a4af5526;
  border-radius: 3px;
  cursor: pointer;
  padding: 24px;
  position: relative;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.learning-program__module::before {
  background: #a4af5508;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0
}

.learning-program__module:hover {
  border-color: #a4af5559;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  transform: translateY(-2px)
}

.learning-program__module:hover::before {
  opacity: 1
}

.learning-program__module:focus {
  border-color: #A4AF55;
  box-shadow: 0 0 0 3px #a4af5533;
  outline: none
}

.learning-program__module-number {
  color: #A4AF55;
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  text-transform: uppercase;
  z-index: 1
}

.learning-program__module-title {
  color: #2a2a2a;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 12px;
  position: relative;
  z-index: 1
}

.learning-program__module-description {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  position: relative;
  z-index: 1
}

.learning-program__details {
  background: linear-gradient(217deg, #2a2a2aeb 0%, #1a1a1af2 100%), url(/event_gallery/my-cover_1_3.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  margin-top: 96px;
  padding: 96px 24px;
  position: relative
}

.learning-program__details::before {
  border-bottom: 1px solid #a4af5526;
  border-top: 1px solid #a4af5526;
  content: '';
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1
}

.learning-program__details::after {
  bottom: 24px;
  content: '';
  height: 1px;
  opacity: .08;
  position: absolute;
  right: 24px;
  transform: rotate(-35deg);
  transform-origin: bottom right;
  width: 240px;
  z-index: 2
}

.learning-program__details-container {
  margin: 0 auto;
  max-width: 1140px;
  position: relative;
  z-index: 2
}

.learning-program__details-layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 2fr 1fr
}

.learning-program__details-main {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.learning-program__details-heading {
  color: transparent;
  font-size: 41px;
  line-height: 1.2;
  margin: 0 0 24px;
  -webkit-text-stroke: 1.5px #E8F1DE
}

.learning-program__details-text {
  color: #E8F1DE;
  font-size: 19px;
  line-height: 1.8;
  margin: 0
}

.learning-program__details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.learning-program__metric {
  background: #ffffff0f;
  border: 1px solid #e8f1de1f;
  border-radius: 3px;
  padding: 24px;
  transition: background .23s cubic-bezier(0.4, 0, 0.2, 1), border-color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.learning-program__metric:hover {
  background: #ffffff17;
  border-color: #e8f1de33
}

.learning-program__metric-value {
  color: #A4AF55;
  display: block;
  font-size: 41px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px
}

.learning-program__metric-label {
  color: #C3D3AE;
  font-size: 15px;
  line-height: 1.55;
  margin: 0
}

.learning-program__quote {
  border-left: 3px solid #A4AF55;
  margin: 24px 0 0;
  padding-left: 24px
}

.learning-program__quote-text {
  color: #fff;
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  margin: 0
}

@media (max-width: 1024px) {
  .learning-program__opening {
    grid-template-columns: 1fr
  }

  .learning-program__opening-visual {
    height: 360px
  }

  .learning-program__opening-content {
    padding: 48px 24px
  }

  .learning-program__opening-title {
    font-size: 41px
  }

  .learning-program__structure-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .learning-program__details-layout {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .learning-program__opening {
    padding-top: 48px
  }

  .learning-program__opening-title {
    font-size: 31px
  }

  .learning-program__structure-heading {
    font-size: 31px
  }

  .learning-program__structure-container {
    padding: 24px
  }

  .learning-program__structure-grid {
    grid-template-columns: 1fr
  }

  .learning-program__details {
    background-attachment: scroll;
    margin-top: 48px;
    padding: 48px 24px
  }

  .learning-program__details-heading {
    font-size: 31px
  }

  .learning-program__module {
    padding: 24px
  }
}

@media (max-width: 640px) {
  .learning-program__opening-content {
    padding: 24px
  }

  .learning-program__opening-content::before,
  .learning-program__opening-content::after {
    display: none
  }

  .learning-program__structure-header {
    margin-bottom: 24px
  }

  .learning-program__details-text {
    font-size: 15px
  }

  .learning-program__metric-value {
    font-size: 31px
  }
}

.launch {
  background: #fff;
  color: #1a1716;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0
}

.launch__opening {
  position: relative;
  padding: 96px 24px 48px;
  overflow: hidden
}

.launch__opening-canvas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 2
}

.launch__opening-text {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.launch__opening-primary {
  font-size: 56px;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0;
  color: #2d2a28
}

.launch__opening-secondary {
  font-size: 41px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0;
  color: #4a4644
}

.launch__opening-tertiary {
  font-size: 31px;
  line-height: 1.2;
  margin: 0;
  color: #6b6663
}

.launch__opening-dots {
  display: flex;
  gap: 12px;
  margin-top: 24px
}

.launch__opening-dot {
  width: 6px;
  height: 6px;
  background: #A4AF55;
  border-radius: 3px;
  opacity: 0;
  animation: launch-dot-appear .24s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.launch__opening-dot:nth-child(1) {
  animation-delay: .1s
}

.launch__opening-dot:nth-child(2) {
  animation-delay: .2s
}

.launch__opening-dot:nth-child(3) {
  animation-delay: .3s
}

.launch__opening-dot:nth-child(4) {
  animation-delay: .4s
}

.launch__opening-dot:nth-child(5) {
  animation-delay: .5s
}

@keyframes launch-dot-appear {
  to {
    opacity: 1
  }
}

.launch__opening-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 2px 6px 28px -1px #a4af551c
}

.launch__opening-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) saturate(1.1) brightness(1.05)
}

.launch__opening-symbol {
  position: absolute;
  top: 12%;
  right: -8%;
  font-size: 280px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #a4af551f;
  z-index: 1;
  pointer-events: none;
  user-select: none
}

@media (min-width: 768px) {
  .launch__opening {
    padding: 96px 48px
  }

  .launch__opening-canvas {
    grid-template-columns: 2fr 1fr;
    gap: 48px
  }

  .launch__opening-text {
    order: 1
  }

  .launch__opening-visual {
    order: 2
  }
}

@media (min-width: 1024px) {
  .launch__opening-primary {
    font-size: 70px
  }

  .launch__opening-secondary {
    font-size: 56px
  }

  .launch__opening-tertiary {
    font-size: 41px
  }
}

.launch__divider-asymmetric {
  height: 1px;
  background: linear-gradient(to right, transparent 0%, #C3D3AE 20%, #C3D3AE 100%);
  margin: 0 24px
}

@media (min-width: 768px) {
  .launch__divider-asymmetric {
    margin: 0 48px
  }
}

.launch__journey {
  padding: 96px 24px;
  background: linear-gradient(158deg, #fafbf8 0%, #f5f7f1 100%)
}

.launch__journey-frame {
  max-width: 840px;
  margin: 0 auto
}

.launch__journey-label {
  font-size: 19px;
  line-height: 1.55;
  color: #A4AF55;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.launch__journey-heading {
  font-size: 41px;
  line-height: 1.2;
  margin: 0 0 48px;
  color: #2d2a28
}

.launch__journey-stories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

.launch__journey-story {
  background: #fff;
  border-radius: 3px;
  padding: 24px;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch__journey-story:hover {
  box-shadow: 2px 9px 40px -1px #a4af5524
}

.launch__journey-story-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #e8f1de66 0%, #c3d3ae33 100%);
  transition: width .26s cubic-bezier(0.0, 0, 0.2, 1);
  pointer-events: none
}

.launch__journey-story:hover .launch__journey-story-reveal {
  width: 100%
}

.launch__journey-story-name {
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 6px;
  color: #2d2a28;
  font-weight: 600;
  position: relative;
  z-index: 1
}

.launch__journey-story-context {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 12px;
  color: #6b6663;
  position: relative;
  z-index: 1
}

.launch__journey-story-text {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: #4a4644;
  position: relative;
  z-index: 1
}

@media (min-width: 768px) {
  .launch__journey {
    padding: 96px 48px
  }

  .launch__journey-stories {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }
}

@media (min-width: 1024px) {
  .launch__journey-heading {
    font-size: 56px
  }
}

.launch__offerings {
  padding: 96px 24px;
  background: #fff;
  position: relative
}

.launch__offerings-structure {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px
}

.launch__offerings-primary {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.launch__offerings-heading {
  font-size: 41px;
  line-height: 1.2;
  margin: 0;
  color: #2d2a28
}

.launch__offerings-accent {
  position: relative;
  padding-left: 24px
}

.launch__offerings-accent::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: #A4AF55
}

.launch__offerings-intro {
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
  color: #4a4644
}

.launch__offerings-paths {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.launch__offerings-path {
  background: linear-gradient(135deg, #fafbf8 0%, #fff 100%);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch__offerings-path:hover {
  transform: translateY(-3px);
  box-shadow: 2px 9px 40px -1px #a4af5524
}

.launch__offerings-path-title {
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 12px;
  color: #2d2a28;
  font-weight: 600
}

.launch__offerings-path-description {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: #4a4644
}

.launch__offerings-sidebar {
  background: url(/event_gallery/our-bg23.jpg) center/cover no-repeat;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  filter: blur(8px);
  animation: launch-sharpen .28s cubic-bezier(0.0, 0, 0.2, 1) .4s forwards
}

@keyframes launch-sharpen {
  to {
    filter: blur(0)
  }
}

.launch__offerings-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2d2a28b3 0%, #2d2a2866 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.launch__offerings-sidebar-text {
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
  color: #fff
}

@media (min-width: 768px) {
  .launch__offerings {
    padding: 96px 48px
  }
}

@media (min-width: 1024px) {
  .launch__offerings-structure {
    grid-template-columns: 2fr 1fr;
    gap: 48px
  }

  .launch__offerings-heading {
    font-size: 56px
  }
}

.launch__metrics {
  padding: 96px 24px;
  background: linear-gradient(203deg, #2d2a28 0%, #4a4644 100%);
  position: relative;
  overflow: hidden
}

.launch__metrics-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .08;
  pointer-events: none;
  z-index: 1
}

.launch__metrics-background-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 28px;
  background: #A4AF55;
  top: -120px;
  right: -80px;
  transform: rotate(25deg)
}

.launch__metrics-container {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto
}

.launch__metrics-heading {
  font-size: 41px;
  line-height: 1.2;
  margin: 0 0 48px;
  color: #fff;
  text-align: center
}

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

.launch__metrics-item {
  background: #ffffff0d;
  border-radius: 3px;
  padding: 24px;
  border: 1px solid #a4af5533;
  transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch__metrics-item:hover {
  background: #ffffff14;
  border-color: #a4af5566
}

.launch__metrics-number {
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #A4AF55;
  font-weight: 700
}

.launch__metrics-label {
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 6px;
  color: #E8F1DE
}

.launch__metrics-description {
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
  color: #C3D3AE
}

.launch__metrics-activity {
  margin-top: 48px;
  background: #ffffff08;
  border-radius: 3px;
  padding: 24px
}

.launch__metrics-activity-title {
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 24px;
  color: #E8F1DE;
  font-weight: 600
}

.launch__metrics-feed {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.launch__metrics-entry {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #ffffff05;
  border-radius: 3px;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.launch__metrics-entry:hover {
  background: #ffffff0d
}

.launch__metrics-entry-icon {
  width: 24px;
  height: 24px;
  background: #A4AF55;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.launch__metrics-entry-icon svg {
  width: 12px;
  height: 12px;
  fill: #fff
}

.launch__metrics-entry-text {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #C3D3AE
}

.launch__metrics-entry-time {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #6b6663;
  white-space: nowrap
}

@media (min-width: 640px) {
  .launch__metrics-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width: 768px) {
  .launch__metrics {
    padding: 96px 48px
  }

  .launch__metrics-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (min-width: 1024px) {
  .launch__metrics-heading {
    font-size: 56px
  }

  .launch__metrics-number {
    font-size: 70px
  }
}

.launch button:focus-visible,
.launch a:focus-visible {
  outline: 2px solid #A4AF55;
  outline-offset: 3px
}

.launch ::selection {
  background: #a4af551a;
  color: inherit
}

.contact__page {
  background: linear-gradient(168deg, #fff 0%, #E8F1DE 100%);
  max-width: 1140px;
  margin: 0 auto;
  padding: 0
}

.contact__page .banner {
  position: relative;
  padding: 96px 24px 48px;
  overflow: hidden;
  background: linear-gradient(to bottom, #A4AF55 0%, #a4af5500 100%)
}

.contact__page .banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #ffffff08 2px, #ffffff08 4px), repeating-linear-gradient(90deg, transparent, transparent 2px, #ffffff08 2px, #ffffff08 4px);
  pointer-events: none;
  opacity: .6
}

.contact__page .banner__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1
}

.contact__page .banner__text h1 {
  font-size: 56px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -.02em
}

.contact__page .banner__text h1 .banner__accent {
  background: linear-gradient(135deg, #C3D3AE 0%, #E8F1DE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block
}

.contact__page .banner__text p {
  font-size: 19px;
  line-height: 1.55;
  color: #ffffffeb;
  margin: 0
}

.contact__page .banner__visual {
  position: relative;
  width: 100%;
  height: 420px
}

.contact__page .banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
  filter: saturate(0.7) brightness(0.95);
  transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__page .banner__visual:hover img {
  filter: saturate(1) brightness(1)
}

.contact__page .reach {
  padding: 96px 24px;
  position: relative;
  background: #fff
}

.contact__page .reach::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A4AF55 0%, #C3D3AE 100%)
}

.contact__page .reach__container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 96px;
  align-items: start
}

.contact__page .reach__details h2 {
  font-size: 41px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 48px;
  letter-spacing: -.01em
}

.contact__page .reach__info__list {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact__page .reach__info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: #fafbf9;
  border-radius: 28px;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
  overflow: hidden
}

.contact__page .reach__info__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #A4AF55 0%, #C3D3AE 100%);
  clip-path: inset(0 0 0 0)
}

.contact__page .reach__info__item:hover {
  box-shadow: 2px 6px 28px -1px #a4af551c;
  transform: translateY(-2px)
}

.contact__page .reach__info__marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #A4AF55;
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 0 3px #a4af5533;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__page .reach__info__item:hover .reach__info__marker {
  box-shadow: 0 0 0 6px #a4af5526
}

.contact__page .reach__info__content {
  flex: 1
}

.contact__page .reach__info__label {
  font-size: 15px;
  line-height: 1.55;
  color: #6a6a6a;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600
}

.contact__page .reach__info__value {
  font-size: 19px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

.contact__page .reach__info__value a {
  color: inherit;
  text-decoration: none;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__page .reach__info__value a:hover {
  color: #A4AF55
}

.contact__page .reach__info__value a:focus {
  outline: 2px solid #A4AF55;
  outline-offset: 3px;
  border-radius: 3px
}

.contact__page .reach__formbox {
  background: #fff;
  padding: 48px;
  border-radius: 28px;
  box-shadow: 2px 9px 40px -1px #a4af5524;
  position: relative
}

.contact__page .reach__formbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #C3D3AE 50%, transparent 100%)
}

.contact__page .reach__formbox h3 {
  font-size: 31px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 12px
}

.contact__page .reach__formbox__intro {
  font-size: 15px;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 0 0 48px
}

.contact__page .reach__form {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact__page .reach__form__field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact__page .reach__form__label {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  font-weight: 600
}

.contact__page .reach__form__label__required {
  color: #A4AF55;
  margin-left: 3px
}

.contact__page .reach__form__input {
  padding: 12px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #2a2a2a;
  background: #fafbf9;
  border: 2px solid #e8e8e8;
  border-radius: 3px;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.contact__page .reach__form__input::placeholder {
  color: #9a9a9a;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .05em
}

.contact__page .reach__form__input:hover {
  border-color: #C3D3AE;
  background: #fff
}

.contact__page .reach__form__input:focus {
  outline: none;
  border-color: #A4AF55;
  box-shadow: 0 0 0 3px #a4af5526;
  background: #fff
}

.contact__page .reach__form__input:invalid:not(:placeholder-shown) {
  border-color: #d94343
}

.contact__page .reach__form__textarea {
  padding: 12px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #2a2a2a;
  background: #fafbf9;
  border: 2px solid #e8e8e8;
  border-radius: 3px;
  resize: vertical;
  min-height: 120px;
  transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.contact__page .reach__form__textarea::placeholder {
  color: #9a9a9a;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .05em
}

.contact__page .reach__form__textarea:hover {
  border-color: #C3D3AE;
  background: #fff
}

.contact__page .reach__form__textarea:focus {
  outline: none;
  border-color: #A4AF55;
  box-shadow: 0 0 0 3px #a4af5526;
  background: #fff
}

.contact__page .reach__form__method {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact__page .reach__form__method__label {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 6px
}

.contact__page .reach__form__method__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.contact__page .reach__form__method__option {
  position: relative
}

.contact__page .reach__form__method__radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.contact__page .reach__form__method__choice {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  background: #fafbf9;
  border: 2px solid #e8e8e8;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.0, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1), transform .26s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center
}

.contact__page .reach__form__method__choice:hover {
  border-color: #C3D3AE;
  background: #fff
}

.contact__page .reach__form__method__radio:checked+.reach__form__method__choice {
  background: #A4AF55;
  border-color: #A4AF55;
  color: #fff;
  transform: scale(1.02)
}

.contact__page .reach__form__method__radio:focus+.reach__form__method__choice {
  outline: 2px solid #A4AF55;
  outline-offset: 3px
}

.contact__page .reach__form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px
}

.contact__page .reach__form__privacy__checkbox {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: #A4AF55;
  cursor: pointer;
  transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__page .reach__form__privacy__checkbox:hover {
  transform: scale(1.1)
}

.contact__page .reach__form__privacy__checkbox:focus {
  outline: 2px solid #A4AF55;
  outline-offset: 3px;
  border-radius: 3px
}

.contact__page .reach__form__privacy__text {
  font-size: 15px;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 0
}

.contact__page .reach__form__privacy__text a {
  color: #A4AF55;
  text-decoration: none;
  transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__page .reach__form__privacy__text a:hover {
  color: #8a9445;
  text-decoration: underline
}

.contact__page .reach__form__privacy__text a:focus {
  outline: 2px solid #A4AF55;
  outline-offset: 3px;
  border-radius: 3px
}

.contact__page .reach__form__submit {
  padding: 12px 48px;
  font-size: 15px;
  line-height: 1.55;
  color: #fff;
  background: #A4AF55;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background .26s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: lowercase;
  font-weight: 600;
  letter-spacing: .02em;
  align-self: flex-start;
  margin-top: 12px
}

.contact__page .reach__form__submit:hover {
  background: #8a9445;
  transform: translateY(-2px);
  box-shadow: 2px 6px 28px -1px #a4af551c
}

.contact__page .reach__form__submit:active {
  transform: translateY(0);
  box-shadow: 2px 3px 4px -1px #a4af5512
}

.contact__page .reach__form__submit:focus {
  outline: 2px solid #A4AF55;
  outline-offset: 3px
}

.contact__page .reach__form__submit:invalid {
  animation: shake__error .28s cubic-bezier(0.4, 0, 0.2, 1)
}

@keyframes shake__error {

  0%,
  100% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-6px)
  }

  75% {
    transform: translateX(6px)
  }
}

.contact__page .reach__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px
}

.contact__page .reach__stat__card {
  background: linear-gradient(135deg, #fafbf9 0%, #fff 100%);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden
}

.contact__page .reach__stat__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, #a4af5514 0%, transparent 70%);
  animation: pulse__glow 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none
}

@keyframes pulse__glow {

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

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

.contact__page .reach__stat__zone {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact__page .reach__stat__number {
  font-size: 41px;
  line-height: 1.2;
  color: #A4AF55;
  font-weight: 700;
  margin: 0
}

.contact__page .reach__stat__desc {
  font-size: 15px;
  line-height: 1.55;
  color: #5a5a5a;
  margin: 0
}

.contact__page .reach__image__wrapper {
  margin-top: 48px;
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 2px 9px 40px -1px #a4af5524
}

.contact__page .reach__image__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, #a4af551f 100%);
  z-index: 1;
  pointer-events: none
}

.contact__page .reach__image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact__page .reach__image__wrapper:hover img {
  transform: scale(1.05)
}

@media (max-width: 1024px) {
  .contact__page .banner__container {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .contact__page .banner__visual {
    height: 360px
  }

  .contact__page .reach__container {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .contact__page .reach__stats {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .contact__page .banner {
    padding: 48px 24px
  }

  .contact__page .banner__text h1 {
    font-size: 41px
  }

  .contact__page .banner__visual {
    height: 280px
  }

  .contact__page .reach {
    padding: 48px 24px
  }

  .contact__page .reach__details h2 {
    font-size: 31px;
    margin-bottom: 24px
  }

  .contact__page .reach__formbox {
    padding: 24px
  }

  .contact__page .reach__formbox h3 {
    font-size: 19px
  }

  .contact__page .reach__form__method__options {
    grid-template-columns: 1fr
  }

  .contact__page .reach__image__wrapper {
    height: 260px
  }
}

@media (max-width: 640px) {
  .contact__page .banner {
    padding: 24px 12px
  }

  .contact__page .banner__container {
    gap: 24px
  }

  .contact__page .banner__text h1 {
    font-size: 31px;
    margin-bottom: 12px
  }

  .contact__page .banner__text p {
    font-size: 15px
  }

  .contact__page .banner__visual {
    height: 220px
  }

  .contact__page .reach {
    padding: 24px 12px
  }

  .contact__page .reach__details h2 {
    font-size: 19px;
    margin-bottom: 24px
  }

  .contact__page .reach__info__list {
    gap: 12px
  }

  .contact__page .reach__info__item {
    padding: 12px
  }

  .contact__page .reach__formbox {
    padding: 24px 12px
  }

  .contact__page .reach__formbox__intro {
    margin-bottom: 24px
  }

  .contact__page .reach__form {
    gap: 12px
  }

  .contact__page .reach__form__submit {
    width: 100%;
    padding: 12px 24px
  }

  .contact__page .reach__image__wrapper {
    height: 200px;
    margin-top: 24px
  }
}

.apie__mus {
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip
}

.apie__mus__intro {
  display: flex;
  align-items: stretch;
  background: linear-gradient(to top, #2a2a2a 0%, #4a4a4a 100%);
  padding: 12px;
  max-width: 1140px;
  margin: 0 auto 48px;
  position: relative
}

.apie__mus__intro__image__container {
  width: 180px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 3px
}

.apie__mus__intro__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.apie__mus__intro__image:hover {
  filter: grayscale(0%)
}

.apie__mus__intro__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 48px;
  position: relative
}

.apie__mus__intro__decoration {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 60px;
  height: 60px;
  background: #A4AF55;
  opacity: .15;
  border-radius: 28px;
  pointer-events: none
}

.apie__mus__intro__heading {
  font-size: 41px;
  line-height: 1.2;
  color: #fff;
  margin: 0
}

.apie__mus__intro__accent {
  color: #C3D3AE;
  text-transform: uppercase;
  letter-spacing: .05em
}

.apie__mus__philosophy {
  max-width: 1140px;
  margin: 0 auto 96px;
  padding: 48px 24px;
  background: #E8F1DE;
  border-radius: 28px;
  position: relative;
  overflow: hidden
}

.apie__mus__philosophy__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(180deg, #a4af5514 0%, #c3d3ae1f 50%, #e8f1de0a 100%);
  animation: apie__mus__drift 40s linear infinite;
  pointer-events: none
}

@keyframes apie__mus__drift {
  0% {
    transform: translateY(0)
  }

  100% {
    transform: translateY(-50%)
  }
}

.apie__mus__philosophy__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start
}

.apie__mus__philosophy__pullquote {
  font-size: 31px;
  line-height: 1.2;
  color: #4a4a4a;
  font-weight: 600;
  margin: 0;
  padding: 24px;
  background: #fff9;
  border-radius: 3px;
  box-shadow: 2px 3px 4px -1px #a4af5512
}

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

.apie__mus__philosophy__paragraph {
  font-size: 19px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

.apie__mus__team {
  max-width: 1140px;
  margin: 0 auto 96px;
  padding: 0 24px
}

.apie__mus__team__heading {
  font-size: 56px;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 2px #A4AF55;
  text-stroke: 2px #A4AF55;
  margin: 0 0 48px;
  text-align: center
}

.apie__mus__team__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 24px;
  align-items: end
}

.apie__mus__team__card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 2px 6px 28px -1px #a4af551c;
  transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.apie__mus__team__card:hover {
  transform: translateY(-6px);
  box-shadow: 2px 9px 40px -1px #a4af5524
}

.apie__mus__team__card--center {
  padding-bottom: 48px
}

.apie__mus__team__image__wrapper {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative
}

.apie__mus__team__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.apie__mus__team__card:hover .apie__mus__team__image {
  transform: scale(1.08)
}

.apie__mus__team__info {
  padding: 24px
}

.apie__mus__team__name {
  font-size: 19px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 6px;
  font-weight: 600
}

.apie__mus__team__role {
  font-size: 15px;
  line-height: 1.55;
  color: #6a6a6a;
  margin: 0
}

.apie__mus__team__counter {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: #a4af55e6;
  color: #fff;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 2px 3px 4px -1px #00000026
}

.apie__mus__approach {
  background: linear-gradient(to top, #f5f5f5 0%, #fff 100%);
  padding: 96px 24px;
  position: relative
}

.apie__mus__approach__divider {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 30px solid #fff
}

.apie__mus__approach__container {
  max-width: 1140px;
  margin: 0 auto
}

.apie__mus__approach__heading {
  font-size: 41px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 48px;
  text-align: center
}

.apie__mus__approach__pyramid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px
}

.apie__mus__approach__layer {
  background: #fff;
  border-radius: 3px;
  padding: 24px;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter .22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.apie__mus__approach__layer:hover {
  background: #ffffffd9;
  backdrop-filter: blur(8px)
}

.apie__mus__approach__layer:nth-child(1) {
  width: 90%
}

.apie__mus__approach__layer:nth-child(2) {
  width: 75%
}

.apie__mus__approach__layer:nth-child(3) {
  width: 60%
}

.apie__mus__approach__layer:nth-child(4) {
  width: 45%
}

.apie__mus__approach__layer__title {
  font-size: 19px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 6px;
  font-weight: 600
}

.apie__mus__approach__layer__text {
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a4a;
  margin: 0
}

.apie__mus__approach__description {
  font-size: 19px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0;
  text-align: center
}

.apie__mus__circles {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 120px;
  height: 120px;
  pointer-events: none
}

.apie__mus__circle {
  position: absolute;
  border-radius: 50%;
  background: #A4AF55
}

.apie__mus__circle:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  opacity: .08
}

.apie__mus__circle:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 20px;
  left: 30px;
  opacity: .12
}

.apie__mus__circle:nth-child(3) {
  width: 40px;
  height: 40px;
  top: 40px;
  left: 60px;
  opacity: .16
}

.apie__mus__journey {
  max-width: 1140px;
  margin: 0 auto 96px;
  padding: 0 24px
}

.apie__mus__journey__heading {
  font-size: 56px;
  line-height: 1.2;
  color: #2a2a2a;
  margin: 0 0 48px
}

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

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

.apie__mus__journey__paragraph {
  font-size: 19px;
  line-height: 1.55;
  color: #2a2a2a;
  margin: 0
}

.apie__mus__journey__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E8F1DE;
  padding: 6px 12px;
  border-radius: 28px;
  font-size: 15px;
  color: #4a4a4a;
  font-weight: 600
}

.apie__mus__journey__status__indicator {
  width: 8px;
  height: 8px;
  background: #A4AF55;
  border-radius: 50%;
  animation: apie__mus__pulse 2s ease-in-out infinite
}

@keyframes apie__mus__pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.apie__mus__journey__image__container {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 2px 6px 28px -1px #a4af551c;
  position: relative
}

.apie__mus__journey__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), filter .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.apie__mus__journey__image__container:hover .apie__mus__journey__image {
  transform: scale(1.05);
  filter: brightness(1.1)
}

@media (max-width: 1024px) {
  .apie__mus__intro {
    flex-direction: column
  }

  .apie__mus__intro__image__container {
    width: 100%;
    height: 200px
  }

  .apie__mus__intro__text {
    padding: 24px
  }

  .apie__mus__intro__heading {
    font-size: 31px
  }

  .apie__mus__philosophy__content {
    grid-template-columns: 1fr
  }

  .apie__mus__philosophy__pullquote {
    font-size: 19px
  }

  .apie__mus__team__grid {
    grid-template-columns: 1fr
  }

  .apie__mus__team__card--center {
    padding-bottom: 0
  }

  .apie__mus__team__heading {
    font-size: 41px
  }

  .apie__mus__approach__heading {
    font-size: 31px
  }

  .apie__mus__journey__heading {
    font-size: 41px
  }

  .apie__mus__journey__content {
    grid-template-columns: 1fr
  }
}

@media (max-width: 768px) {
  .apie__mus__intro {
    padding: 6px;
    margin-bottom: 24px
  }

  .apie__mus__intro__text {
    padding: 12px
  }

  .apie__mus__intro__heading {
    font-size: 19px
  }

  .apie__mus__philosophy {
    padding: 24px 12px;
    margin-bottom: 48px
  }

  .apie__mus__philosophy__content {
    gap: 24px
  }

  .apie__mus__philosophy__pullquote {
    padding: 12px
  }

  .apie__mus__philosophy__paragraph {
    font-size: 15px
  }

  .apie__mus__team {
    margin-bottom: 48px
  }

  .apie__mus__team__heading {
    font-size: 31px;
    margin-bottom: 24px
  }

  .apie__mus__team__grid {
    gap: 12px
  }

  .apie__mus__team__info {
    padding: 12px
  }

  .apie__mus__approach {
    padding: 48px 12px
  }

  .apie__mus__approach__heading {
    font-size: 19px;
    margin-bottom: 24px
  }

  .apie__mus__approach__layer {
    padding: 12px
  }

  .apie__mus__approach__layer:nth-child(1),
  .apie__mus__approach__layer:nth-child(2),
  .apie__mus__approach__layer:nth-child(3),
  .apie__mus__approach__layer:nth-child(4) {
    width: 100%
  }

  .apie__mus__journey {
    margin-bottom: 48px
  }

  .apie__mus__journey__heading {
    font-size: 31px;
    margin-bottom: 24px
  }

  .apie__mus__journey__content {
    gap: 24px
  }

  .apie__mus__journey__paragraph {
    font-size: 15px
  }
}

@media (max-width: 640px) {
  .apie__mus__intro__heading {
    font-size: 15px
  }

  .apie__mus__philosophy__pullquote {
    font-size: 15px
  }

  .apie__mus__team__heading {
    font-size: 19px
  }

  .apie__mus__approach__heading {
    font-size: 15px
  }

  .apie__mus__journey__heading {
    font-size: 19px
  }
}

.events {
  background: #fff;
  color: #1a1a1a;
  overflow-x: clip
}

.events__style-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

.events__title-area {
  position: relative;
  padding: 96px 0 144px;
  overflow: hidden
}

.events__title-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, #a4af5508 12px, #a4af5508 24px);
  pointer-events: none
}

.events__title-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  position: relative
}

.events__title-text {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.events__eyebrow {
  font-size: 15px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #A4AF55
}

.events__title-main {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a
}

.events__title-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 28px;
  overflow: hidden
}

.events__title-image {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.events__title-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, #0000004d);
  pointer-events: none
}

.events__divider-zigzag {
  width: 100%;
  height: 48px;
  background: #fff
}

.events__divider-zigzag svg {
  width: 100%;
  height: 100%;
  display: block
}

.events__catalog {
  background: linear-gradient(90deg, #E8F1DE 0%, #fff 100%);
  padding: 96px 0;
  position: relative
}

.events__catalog::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 48px, #a4af550a 48px, #a4af550a 49px);
  pointer-events: none
}

.events__catalog-header {
  margin-bottom: 48px
}

.events__catalog-heading {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  position: relative
}

.events__card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 2px 6px 28px -1px #a4af551c;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column
}

.events__card:hover {
  transform: translateY(-6px);
  box-shadow: 2px 9px 40px -1px #a4af5524
}

.events__card-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%)
}

.events__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.events__card:hover .events__card-image {
  transform: scale(1.05)
}

.events__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  border-left: 6px solid #A4AF55
}

.events__card-meta {
  display: flex;
  gap: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #666
}

.events__card-meta-item {
  display: flex;
  align-items: center;
  gap: 6px
}

.events__card-icon {
  width: 16px;
  height: 16px;
  fill: #A4AF55
}

.events__card-title {
  font-size: 31px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0
}

.events__card-description {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  flex-grow: 1
}

.events__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #E8F1DE
}

.events__card-price {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 700;
  color: #A4AF55
}

.events__card-link {
  font-size: 15px;
  line-height: 1.55;
  color: #A4AF55;
  text-decoration: none;
  font-weight: 600;
  transition: color .22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative
}

.events__card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #A4AF55;
  transition: width .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.events__card-link:hover::after {
  width: 100%
}

.events__card-engagement {
  display: flex;
  gap: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #666;
  padding-top: 12px
}

.events__card-stat {
  display: flex;
  align-items: center;
  gap: 6px
}

.events__process {
  padding: 96px 0;
  background: #fff;
  position: relative
}

.events__process-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

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

.events__process-heading {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a;
  position: relative
}

.events__process-heading::before {
  content: '"';
  position: absolute;
  left: -48px;
  top: -24px;
  font-size: 120px;
  line-height: 1;
  color: #E8F1DE;
  font-weight: 700
}

.events__process-text {
  font-size: 19px;
  line-height: 1.8;
  color: #4a4a4a
}

.events__process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative
}

.events__process-steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #A4AF55 0%, #C3D3AE 50%, #E8F1DE 100%);
  z-index: 0
}

.events__process-step {
  position: relative;
  z-index: 1
}

.events__process-number {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #A4AF55 0%, #C3D3AE 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 41px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 2px 6px 28px -1px #a4af551c
}

.events__process-step-title {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px
}

.events__process-step-text {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a
}

.events__interactive {
  background: #fff;
  padding: 96px 0;
  position: relative
}

.events__interactive-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: linear-gradient(90deg, #E8F1DE 0%, #E8F1DE 50%, #fff 50%, #fff 100%);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 2px 6px 28px -1px #a4af551c
}

.events__interactive-zone {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.events__interactive-heading {
  font-size: 41px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a1a
}

.events__expandable-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.events__expandable-item {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 2px 3px 4px -1px #a4af5512
}

.events__expandable-trigger {
  width: 100%;
  padding: 24px;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  transition: background .22s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 6px solid transparent
}

.events__expandable-trigger:hover {
  background: #fafafa;
  border-left-color: #A4AF55
}

.events__expandable-trigger:focus {
  outline: 2px solid #A4AF55;
  outline-offset: -2px
}

.events__expandable-icon {
  width: 24px;
  height: 24px;
  fill: #A4AF55;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0
}

.events__expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.events__expandable-item.is-open .events__expandable-content {
  max-height: 500px
}

.events__expandable-item.is-open .events__expandable-icon {
  transform: rotate(180deg)
}

.events__expandable-text {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a
}

.events__interactive-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px
}

.events__interactive-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 2px 6px 28px -1px #a4af551c
}

.events__metrics {
  padding: 96px 0;
  background: #fff;
  position: relative
}

.events__metrics::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 24px, #a4af5505 24px, #a4af5505 48px), repeating-linear-gradient(-45deg, transparent, transparent 24px, #a4af5505 24px, #a4af5505 48px);
  pointer-events: none
}

.events__metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative
}

.events__metric-card {
  background: #fff;
  padding: 48px 24px;
  border-radius: 28px;
  text-align: center;
  box-shadow: 2px 6px 28px -1px #a4af551c;
  position: relative;
  overflow: hidden;
  transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(48px);
  animation: events-reveal-up .6s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.events__metric-card:nth-child(1) {
  animation-delay: .1s
}

.events__metric-card:nth-child(2) {
  animation-delay: .2s
}

.events__metric-card:nth-child(3) {
  animation-delay: .3s
}

.events__metric-card:nth-child(4) {
  animation-delay: .4s
}

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

.events__metric-card:hover {
  transform: translateY(-12px)
}

.events__metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #A4AF55 0%, #C3D3AE 100%)
}

.events__metric-value {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 700;
  color: #A4AF55;
  margin-bottom: 12px
}

.events__metric-label {
  font-size: 15px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #666
}

@media (max-width: 1024px) {
  .events__title-layout {
    grid-template-columns: 1fr
  }

  .events__title-main {
    font-size: 41px
  }

  .events__grid {
    grid-template-columns: 1fr
  }

  .events__process-intro {
    grid-template-columns: 1fr
  }

  .events__process-steps {
    grid-template-columns: 1fr
  }

  .events__process-steps::before {
    display: none
  }

  .events__interactive-split {
    grid-template-columns: 1fr;
    background: #E8F1DE
  }

  .events__metrics-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 640px) {
  .events__title-area {
    padding: 48px 0 96px
  }

  .events__title-main {
    font-size: 31px
  }

  .events__catalog {
    padding: 48px 0
  }

  .events__catalog-heading {
    font-size: 31px
  }

  .events__card-title {
    font-size: 19px
  }

  .events__process {
    padding: 48px 0
  }

  .events__process-heading {
    font-size: 31px
  }

  .events__process-heading::before {
    font-size: 70px;
    left: -24px
  }

  .events__interactive {
    padding: 48px 0
  }

  .events__interactive-heading {
    font-size: 31px
  }

  .events__interactive-zone {
    padding: 24px
  }

  .events__metrics {
    padding: 48px 0
  }

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

  .events__metric-value {
    font-size: 56px
  }
}

.success-page {
  background: linear-gradient(167deg, #1a2b14, #A4AF55);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px
}

.success-page__container {
  background: #fff;
  border-radius: 28px;
  box-shadow: 2px 9px 40px -1px #a4af5524;
  max-width: 580px;
  padding: 96px 48px;
  text-align: center;
  width: 100%
}

.success-page__icon {
  background: linear-gradient(167deg, #E8F1DE, #C3D3AE);
  border-radius: 28px;
  display: inline-flex;
  height: 120px;
  margin-bottom: 48px;
  position: relative;
  width: 120px
}

.success-page__icon::before {
  background: #A4AF55;
  border-radius: 3px;
  content: '';
  height: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  width: 48px
}

.success-page__icon::after {
  background: #A4AF55;
  border-radius: 3px;
  content: '';
  height: 8px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
  width: 28px
}

.success-page__heading {
  color: #1a2b14;
  font-size: 41px;
  letter-spacing: .02em;
  line-height: 1.2;
  margin-bottom: 24px;
  text-transform: uppercase
}

.success-page__message {
  color: #3d4a35;
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 48px
}

.success-page__details {
  background: #E8F1DE;
  border-radius: 3px;
  color: #3d4a35;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 48px;
  padding: 24px
}

.success-page__link {
  background: linear-gradient(167deg, #A4AF55, #8a9449);
  border: none;
  border-radius: 3px;
  box-shadow: 2px 3px 4px -1px #a4af5512;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 12px 48px;
  text-decoration: none;
  text-transform: lowercase;
  transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.success-page__link:hover {
  box-shadow: 2px 6px 28px -1px #a4af551c;
  transform: translateY(-1px)
}

.success-page__link:active {
  transform: translateY(0)
}

.success-page__link:focus {
  outline: 2px solid #A4AF55;
  outline-offset: 3px
}

@media (max-width: 640px) {
  .success-page__container {
    padding: 48px 24px
  }

  .success-page__icon {
    height: 96px;
    margin-bottom: 24px;
    width: 96px
  }

  .success-page__icon::before {
    width: 38px
  }

  .success-page__icon::after {
    width: 22px
  }

  .success-page__heading {
    font-size: 31px
  }

  .success-page__message {
    font-size: 15px;
    margin-bottom: 24px
  }

  .success-page__details {
    margin-bottom: 24px;
    padding: 12px
  }
}