* {
  box-sizing: border-box
}

body {
  margin: 0;
  scrollbar-gutter: stable;
  min-height: 100vh;
  font-family: "Source Code Pro", monospace
}

.page-header {
  position: relative;
  background: linear-gradient(160deg, #0d1f16 0%, #112b1c 55%, #0a1810 100%);
  padding: 40px 0 0;
  overflow: hidden
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #42ab6d12 0%, transparent 60%);
  pointer-events: none
}

.header-top-band {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px
}

.brand-zone {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0
}

.logo-container {
  width: 64px;
  height: 64px;
  padding: 8px;
  border-radius: 12px;
  background: #42ab6d1f;
  border: 1px solid #42ab6d59;
  box-shadow: 0 3px 5px -2px #42ab6d12 0 5px 18px -2px #42ab6d17;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block
}

.brand-text-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px
}

.brand-name {
  font-family: "Source Code Pro", monospace;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
  color: #F7FBF9;
  letter-spacing: 0;
  margin: 0
}

.brand-tagline {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #99CCAC;
  margin: 0
}

.header-proof {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  padding-top: 8px;
  flex-shrink: 0
}

.proof-badge {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #99CCAC;
  background: #42ab6d1a;
  border: 1px solid #99ccac33;
  border-radius: 6px;
  padding: 4px 12px
}

.proof-since {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #99ccac8c
}

.header-nav-band {
  margin-top: 40px;
  border-top: 1px solid #42ab6d2e;
  background: #0a1810b3
}

.header-nav-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px
}

.primary-nav {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0
}

.primary-nav li {
  display: flex
}

.primary-nav li a {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #99CCAC;
  text-decoration: none;
  padding: 20px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color .1s ease-out, border-color .12s ease-out, background .1s ease-out;
  white-space: nowrap
}

.primary-nav li a:hover {
  color: #F7FBF9;
  border-bottom-color: #42AB6D;
  background: #42ab6d12
}

.primary-nav li a:focus {
  outline: none;
  border-bottom-color: #42AB6D;
  background: #42ab6d1a;
  color: #F7FBF9
}

.primary-nav li.active-page a {
  color: #42AB6D;
  border-bottom-color: #42AB6D
}

.page-footer {
  background: linear-gradient(180deg, #0a1810 0%, #071009 100%);
  border-top: 1px solid #42ab6d2e;
  padding: 80px 0 40px
}

.footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 40px
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.footer-logo-container {
  width: 48px;
  height: 48px;
  padding: 8px;
  border-radius: 12px;
  background: #42ab6d1a;
  border: 1px solid #42ab6d47;
  box-shadow: 0 3px 5px -2px #42ab6d12;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

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

.footer-brand-name {
  font-family: "Source Code Pro", monospace;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.2;
  color: #F7FBF9;
  margin: 0
}

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

.footer-address-line {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #99ccaca6;
  margin: 0
}

.footer-contact-link {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #99CCAC;
  text-decoration: none;
  transition: color .1s ease-out
}

.footer-contact-link:hover {
  color: #42AB6D
}

.footer-contact-link:focus {
  outline: none;
  color: #42AB6D
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.footer-col-label {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #42AB6D;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px
}

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

.footer-nav-list li a {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #99ccacbf;
  text-decoration: none;
  transition: color .1s ease-out
}

.footer-nav-list li a:hover {
  color: #F7FBF9
}

.footer-nav-list li a:focus {
  outline: none;
  color: #42AB6D
}

.footer-bottom-bar {
  border-top: 1px solid #42ab6d1f;
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px
}

.footer-copyright {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #99ccac73;
  margin: 0
}

.footer-policy-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.footer-policy-links a {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #99ccac80;
  text-decoration: none;
  transition: color .12s linear
}

.footer-policy-links a:hover {
  color: #99CCAC
}

.footer-policy-links a:focus {
  outline: none;
  color: #42AB6D
}

.footer-manage-pref {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #99ccac66;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .12s linear
}

.footer-manage-pref:hover {
  color: #99CCAC
}

.footer-manage-pref:focus {
  outline: none;
  color: #42AB6D
}

.consent-bar-holder {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4000;
  display: none
}

.consent-bar {
  background: #0d1f16;
  border-bottom: 1px solid #42ab6d4d;
  box-shadow: 0 8px 40px -2px #42ab6d1f;
  padding: 20px 40px;
  transform: translateX(100%);
  transition: transform .32s ease-out
}

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

.consent-bar-row {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.consent-description {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #99CCAC;
  margin: 0;
  flex: 1;
  min-width: 200px
}

.consent-description a {
  color: #42AB6D;
  text-decoration: underline;
  transition: color .1s ease-out
}

.consent-description a:hover {
  color: #F7FBF9
}

.consent-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0
}

.consent-accept-button,
.consent-decline-button {
  font-family: "Source Code Pro", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 12px 20px;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  min-width: 120px;
  min-height: 44px;
  transition: background .1s ease-out, border-color .1s ease-out, color .1s ease-out
}

.consent-accept-button {
  background: #42AB6D;
  color: #071009;
  border-color: #42AB6D
}

.consent-accept-button:hover {
  background: #99CCAC;
  border-color: #99CCAC;
  color: #071009
}

.consent-accept-button:focus {
  outline: none;
  background: #99CCAC;
  border-color: #F7FBF9;
  color: #071009
}

.consent-decline-button {
  background: transparent;
  color: #99CCAC;
  border-color: #99ccac59
}

.consent-decline-button:hover {
  border-color: #99CCAC;
  color: #F7FBF9
}

.consent-decline-button:focus {
  outline: none;
  border-color: #42AB6D;
  color: #F7FBF9
}

@media (max-width: 1024px) {
  .header-top-band {
    padding: 0 20px
  }

  .header-nav-inner {
    padding: 0 20px
  }

  .footer-inner {
    padding: 0 20px
  }

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

@media (max-width: 768px) {
  .header-top-band {
    flex-direction: column;
    gap: 20px
  }

  .header-proof {
    align-items: flex-start;
    padding-top: 0
  }

  .primary-nav li a {
    padding: 20px 12px;
    font-size: 14px
  }

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

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start
  }

  .consent-bar {
    padding: 20px
  }

  .consent-bar-row {
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 20px 0 0
  }

  .brand-name {
    font-size: 29px
  }

  .primary-nav {
    flex-wrap: wrap
  }

  .primary-nav li a {
    padding: 12px 8px
  }

  .consent-buttons {
    width: 100%;
    flex-direction: column
  }

  .consent-accept-button,
  .consent-decline-button {
    width: 100%
  }
}

.policy-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px;
  background: #0d1f17;
  min-height: 100vh;
  color: #d4ead9
}

.policy-inner h1 {
  font-size: 55px;
  line-height: 1.2;
  color: #42AB6D;
  margin-bottom: 40px;
  margin-top: 0;
  letter-spacing: .01em
}

.policy-inner h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #99CCAC;
  margin-top: 80px;
  margin-bottom: 20px
}

.policy-inner h3 {
  font-size: 29px;
  line-height: 1.2;
  color: #99CCAC;
  margin-top: 40px;
  margin-bottom: 20px
}

.policy-inner h4,
.policy-inner h5,
.policy-inner h6 {
  font-size: 29px;
  line-height: 1.2;
  color: #c2dfc8;
  margin-top: 40px;
  margin-bottom: 12px
}

.policy-inner p {
  font-size: 14px;
  line-height: 1.8;
  color: #c2dfc8;
  margin-top: 0;
  margin-bottom: 20px
}

.policy-inner ul,
.policy-inner ol {
  font-size: 14px;
  line-height: 1.8;
  color: #c2dfc8;
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 40px
}

.policy-inner ul {
  list-style-type: disc
}

.policy-inner ol {
  list-style-type: decimal
}

.policy-inner li {
  margin-bottom: 8px;
  padding-left: 4px
}

.policy-inner li::marker {
  color: #42AB6D
}

.policy-inner strong,
.policy-inner b {
  color: #F7FBF9;
  font-weight: 700
}

.policy-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.policy-inner thead {
  background: #1a3d28
}

.policy-inner thead th {
  color: #42AB6D;
  font-weight: 700;
  text-align: left;
  padding: 12px 20px;
  border-bottom: 2px solid #42AB6D
}

.policy-inner tbody tr {
  border-bottom: 1px solid #1e3a28;
  transition: background-color .1s ease-out
}

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

.policy-inner tbody tr:hover {
  background: #152b1e
}

.policy-inner th,
.policy-inner td {
  padding: 12px 20px;
  vertical-align: top;
  color: #c2dfc8;
  line-height: 1.8
}

.policy-inner td {
  background: transparent
}

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

  .policy-inner h1 {
    font-size: 40px
  }

  .policy-inner h2 {
    font-size: 29px;
    margin-top: 40px
  }

  .policy-inner h3,
  .policy-inner h4,
  .policy-inner h5,
  .policy-inner h6 {
    font-size: 29px;
    margin-top: 40px
  }

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

@media (max-width: 480px) {
  .policy-inner {
    padding: 40px 12px
  }

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

  .policy-inner h2 {
    font-size: 29px
  }

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

.accreditation {
  background: #0d1a13;
  color: #e8f2ec;
  overflow-x: hidden;
  position: relative
}

.accreditation .load-reveal {
  animation: revealScale .12s ease-out both
}

@keyframes revealScale {
  from {
    transform: scale(0.9);
    opacity: 0
  }

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

.accreditation .title-block {
  position: relative;
  padding-top: 80px;
  padding-bottom: 120px;
  background: #0d1a13;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 100%;
  overflow: hidden
}

.accreditation .title-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0
}

.accreditation .title-text-col {
  padding-left: 80px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px
}

.accreditation .title-label {
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #42AB6D;
  font-weight: 700
}

.accreditation .title-heading {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 900;
  color: #F7FBF9;
  margin: 0
}

.accreditation .title-heading em {
  font-style: normal;
  font-size: 40px;
  color: #99CCAC;
  display: block
}

.accreditation .title-body {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  max-width: 480px;
  margin: 0
}

.accreditation .title-image-col {
  position: relative;
  z-index: 1;
  min-height: 400px
}

.accreditation .title-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.accreditation .title-image-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0d1a13 0%, transparent 60%);
  pointer-events: none
}

.accreditation .bodies-panel {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative
}

.accreditation .bodies-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-top: 1px solid #42ab6d1f;
  border-right: 1px solid #42ab6d1f;
  pointer-events: none;
  transform: rotate(-15deg) translate(40px, -40px)
}

.accreditation .bodies-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0 0 8px
}

.accreditation .bodies-heading strong {
  color: #42AB6D;
  font-size: 55px
}

.accreditation .bodies-sub {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  max-width: 560px;
  margin: 0 0 40px
}

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

.accreditation .body-card {
  background: #42ab6d0d;
  border: 1px solid #42ab6d24;
  border-radius: 12px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color .1s ease-out, background .1s ease-out;
  cursor: default
}

.accreditation .body-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #42ab6d14;
  opacity: 0;
  transition: opacity .08s ease-out;
  border-radius: 12px
}

.accreditation .body-card:hover::before {
  opacity: 1
}

.accreditation .body-card:hover {
  border-color: #42ab6d61;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.accreditation .body-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center
}

.accreditation .body-card-icon svg {
  width: 36px;
  height: 36px
}

.accreditation .body-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #42AB6D;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px
}

.accreditation .body-card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #c2d9cb;
  margin: 0
}

.accreditation .standards-band {
  background: linear-gradient(162deg, #42AB6D 0%, #2d7a4e 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.accreditation .standards-band::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border: 1px solid #f7fbf914;
  border-radius: 48px;
  transform: rotate(22deg);
  pointer-events: none
}

.accreditation .standards-inner {
  max-width: 1024px;
  margin: 0 auto
}

.accreditation .standards-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d1a13;
  margin: 0 0 40px
}

.accreditation .standards-heading span {
  font-size: 29px;
  display: block;
  color: #1a4a2e;
  font-weight: 600
}

.accreditation .pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #f7fbf91f;
  border-radius: 12px;
  overflow: hidden
}

.accreditation .pricing-table th {
  background: #0d1a134d;
  color: #F7FBF9;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 20px;
  text-align: left
}

.accreditation .pricing-table td {
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #0d1a13;
  border-bottom: 1px solid #0d1a131f;
  vertical-align: top
}

.accreditation .pricing-table tr:last-child td {
  border-bottom: none
}

.accreditation .pricing-table tr:nth-child(even) td {
  background: #0d1a1314
}

.accreditation .check-mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #0d1a13;
  border-radius: 36px;
  position: relative
}

.accreditation .check-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  width: 4px;
  height: 2px;
  background: #42AB6D;
  transform: rotate(45deg);
  box-shadow: 2px -2px 0 #42AB6D, 4px -4px 0 #42AB6D
}

.accreditation .dash-mark {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: #0d1a134d;
  vertical-align: middle;
  border-radius: 6px
}

.accreditation .process-panel {
  background: #0f1f16;
  padding: 80px 40px;
  position: relative
}

.accreditation .process-panel::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 20px;
  width: 160px;
  height: 160px;
  border-left: 1px solid #42ab6d14;
  border-bottom: 1px solid #42ab6d14;
  transform: rotate(12deg);
  pointer-events: none
}

.accreditation .process-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start
}

.accreditation .process-left {
  position: sticky;
  top: 40px
}

.accreditation .process-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0 0 20px
}

.accreditation .process-heading strong {
  color: #42AB6D;
  font-size: 29px;
  display: block;
  font-weight: 600
}

.accreditation .process-intro {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  margin: 0
}

.accreditation .process-steps {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.accreditation .step-item {
  background: #42ab6d0a;
  border: 1px solid #42ab6d1a;
  border-radius: 12px;
  padding: 20px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
  transition: background .1s ease-out, border-color .1s ease-out;
  position: relative;
  overflow: hidden
}

.accreditation .step-item:hover {
  background: #42ab6d17;
  border-color: #42ab6d4d;
  box-shadow: 0 5px 18px -2px #42ab6d17
}

.accreditation .step-number {
  font-size: 29px;
  font-weight: 900;
  color: #42ab6d40;
  line-height: 1.2
}

.accreditation .step-content-area {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.accreditation .step-title {
  font-size: 14px;
  font-weight: 700;
  color: #F7FBF9;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.accreditation .step-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  margin: 0
}

@media (max-width: 1024px) {
  .accreditation .title-block {
    grid-template-columns: 1fr;
    padding-bottom: 80px
  }

  .accreditation .title-image-col {
    min-height: 280px;
    order: -1
  }

  .accreditation .title-text-col {
    padding-left: 40px;
    padding-right: 40px
  }

  .accreditation .process-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .accreditation .process-left {
    position: static
  }
}

@media (max-width: 768px) {
  .accreditation .title-heading {
    font-size: 55px
  }

  .accreditation .bodies-grid {
    grid-template-columns: 1fr
  }

  .accreditation .title-text-col {
    padding-left: 20px;
    padding-right: 20px
  }

  .accreditation .bodies-panel {
    padding: 40px 20px
  }

  .accreditation .standards-band {
    padding: 40px 20px
  }

  .accreditation .process-panel {
    padding: 40px 20px
  }

  .accreditation .pricing-table th,
  .accreditation .pricing-table td {
    padding: 12px;
    font-size: 14px
  }
}

@media (max-width: 480px) {
  .accreditation .title-heading {
    font-size: 40px
  }

  .accreditation .title-heading em {
    font-size: 29px
  }

  .accreditation .bodies-heading strong {
    font-size: 40px
  }

  .accreditation .standards-heading {
    font-size: 29px
  }

  .accreditation .process-heading {
    font-size: 29px
  }

  .accreditation .step-item {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .accreditation .step-number {
    font-size: 14px
  }

  .accreditation .pricing-table {
    display: block;
    overflow-x: auto
  }
}

.contact-us-page {
  background: #0d1a12;
  min-height: 100vh;
  overflow-x: clip
}

.contact-us-page .drop-reveal {
  animation: dropIn .55s ease-out both
}

.contact-us-page .drop-reveal:nth-child(2) {
  animation-delay: .08s
}

.contact-us-page .drop-reveal:nth-child(3) {
  animation-delay: .16s
}

.contact-us-page .drop-reveal:nth-child(4) {
  animation-delay: .24s
}

.contact-us-page .drop-reveal:nth-child(5) {
  animation-delay: .32s
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-28px)
  }

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

.contact-us-page .opening-band {
  max-width: 1024px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end
}

.contact-us-page .opening-label {
  font-size: 14px;
  color: #99CCAC;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
  display: block
}

.contact-us-page .opening-heading {
  font-size: 70px;
  line-height: 1.2;
  color: #F7FBF9;
  margin: 0 0 20px
}

.contact-us-page .opening-heading strong {
  color: #42AB6D;
  font-weight: 800
}

.contact-us-page .opening-subtext {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  margin: 0
}

.contact-us-page .opening-facts {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-us-page .fact-entry {
  background: #42ab6d12;
  border: 1px solid #42ab6d2e;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  transition: background .12s ease-out, border-color .12s ease-out
}

.contact-us-page .fact-entry:hover {
  background: #42ab6d21;
  border-color: #42ab6d59
}

.contact-us-page .fact-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid #42AB6D;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-us-page .fact-icon svg {
  width: 18px;
  height: 18px;
  stroke: #42AB6D;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

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

.contact-us-page .fact-label {
  font-size: 14px;
  color: #99CCAC;
  line-height: 1.2
}

.contact-us-page .fact-value {
  font-size: 14px;
  color: #F7FBF9;
  line-height: 1.8;
  font-weight: 600
}

.contact-us-page .fact-value a {
  color: #F7FBF9;
  text-decoration: none;
  transition: color .1s ease-out
}

.contact-us-page .fact-value a:hover {
  color: #42AB6D
}

.contact-us-page .wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none
}

.contact-us-page .wave-divider svg {
  display: block;
  width: 100%
}

.contact-us-page .form-band {
  background: linear-gradient(0deg, #0d1a12 0%, #152b1e 100%);
  padding: 80px 40px
}

.contact-us-page .form-band-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start
}

.contact-us-page .form-context {
  position: sticky;
  top: 40px
}

.contact-us-page .form-context-heading {
  font-size: 40px;
  line-height: 1.2;
  color: #F7FBF9;
  margin: 0 0 20px
}

.contact-us-page .form-context-heading em {
  font-style: normal;
  color: #42AB6D
}

.contact-us-page .form-context-body {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  margin: 0 0 40px
}

.contact-us-page .activity-feed {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.contact-us-page .feed-heading {
  font-size: 14px;
  color: #42AB6D;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 8px
}

.contact-us-page .feed-entry {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start
}

.contact-us-page .feed-dot {
  width: 8px;
  height: 8px;
  border-radius: 48px;
  background: #42AB6D;
  margin-top: 6px;
  flex-shrink: 0
}

.contact-us-page .feed-meta {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.contact-us-page .feed-time {
  font-size: 14px;
  color: #99CCAC;
  line-height: 1.2
}

.contact-us-page .feed-desc {
  font-size: 14px;
  color: #F7FBF9;
  line-height: 1.8
}

.contact-us-page .contact-form {
  background: #ffffff08;
  border: 1px solid #99ccac26;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.contact-us-page .form-group {
  margin-bottom: 20px;
  position: relative
}

.contact-us-page .floating-field {
  position: relative
}

.contact-us-page .floating-field input {
  width: 100%;
  background: #42ab6d0f;
  border: 1px solid #99ccac33;
  border-radius: 6px;
  padding: 20px 12px 8px;
  font-size: 14px;
  color: #F7FBF9;
  outline: none;
  box-sizing: border-box;
  transition: border-color .1s ease-out, background .1s ease-out
}

.contact-us-page .floating-field input:focus {
  border-color: #42AB6D;
  background: #42ab6d1a
}

.contact-us-page .floating-field label {
  position: absolute;
  left: 12px;
  top: 14px;
  font-size: 14px;
  color: #99CCAC;
  pointer-events: none;
  transition: top .1s ease-out, font-size .1s ease-out, color .1s ease-out
}

.contact-us-page .floating-field input:focus+label,
.contact-us-page .floating-field input:not(:placeholder-shown)+label {
  top: 5px;
  font-size: 14px;
  color: #42AB6D;
  font-size: 11px
}

.contact-us-page .form-field-label {
  display: block;
  font-size: 14px;
  color: #99CCAC;
  margin-bottom: 12px
}

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

.contact-us-page .checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer
}

.contact-us-page .checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #42AB6D;
  cursor: pointer;
  flex-shrink: 0
}

.contact-us-page .checkbox-item span {
  font-size: 14px;
  color: #F7FBF9;
  line-height: 1.8
}

.contact-us-page .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  padding: 12px;
  background: #42ab6d0d;
  border-radius: 6px;
  border: 1px solid #42ab6d1f
}

.contact-us-page .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #42AB6D;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px
}

.contact-us-page .privacy-text {
  font-size: 14px;
  color: #99CCAC;
  line-height: 1.8
}

.contact-us-page .privacy-text a {
  color: #42AB6D;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .1s ease-out
}

.contact-us-page .privacy-text a:hover {
  color: #F7FBF9
}

.contact-us-page .submit-button {
  position: relative;
  background: #42AB6D;
  color: #0d1a12;
  border: 2px solid #42AB6D;
  border-radius: 36px;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .12s ease-out, color .12s ease-out, border-color .12s ease-out, box-shadow .12s ease-out;
  outline: none;
  display: inline-block
}

.contact-us-page .submit-button:hover {
  background: transparent;
  color: #42AB6D;
  box-shadow: 0 0 0 4px #42ab6d2e
}

.contact-us-page .submit-button:focus-visible {
  outline: 2px solid #42AB6D;
  outline-offset: 4px
}

.contact-us-page .form-select {
  width: 100%;
  background: #42ab6d0f;
  border: 1px solid #99ccac33;
  border-radius: 6px;
  padding: 14px 12px;
  font-size: 14px;
  color: #F7FBF9;
  outline: none;
  box-sizing: border-box;
  transition: border-color .1s ease-out;
  appearance: none;
  cursor: pointer
}

.contact-us-page .form-select:focus {
  border-color: #42AB6D
}

.contact-us-page .form-select option {
  background: #152b1e;
  color: #F7FBF9
}

.contact-us-page .select-wrapper {
  position: relative
}

.contact-us-page .select-wrapper::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #99CCAC;
  pointer-events: none
}

.contact-us-page .info-band {
  background: #42AB6D;
  padding: 80px 40px
}

.contact-us-page .info-band-inner {
  max-width: 1024px;
  margin: 0 auto
}

.contact-us-page .info-band-heading {
  font-size: 40px;
  line-height: 1.2;
  color: #0d1a12;
  margin: 0 0 40px
}

.contact-us-page .comparison-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.contact-us-page .comparison-option {
  background: #0d1a121f;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.contact-us-page .comparison-option.highlighted {
  background: #0d1a1238;
  box-shadow: 0 5px 18px -2px #0d1a122e
}

.contact-us-page .comparison-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #0d1a12;
  font-weight: 700;
  background: #ffffff40;
  border-radius: 36px;
  padding: 4px 12px;
  display: inline-block;
  width: fit-content
}

.contact-us-page .comparison-heading {
  font-size: 29px;
  line-height: 1.2;
  color: #0d1a12;
  margin: 0
}

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

.contact-us-page .comparison-list li {
  font-size: 14px;
  color: #0d1a12;
  line-height: 1.8;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.contact-us-page .comparison-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 48px;
  background: #0d1a12;
  margin-top: 8px;
  flex-shrink: 0
}

.contact-us-page .comparison-action {
  background: #0d1a12;
  color: #42AB6D;
  border: 2px solid #0d1a12;
  border-radius: 36px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background .12s ease-out, color .12s ease-out, box-shadow .12s ease-out;
  width: fit-content
}

.contact-us-page .comparison-action:hover {
  background: transparent;
  color: #0d1a12;
  box-shadow: 0 0 0 4px #0d1a1233
}

.contact-us-page .accreditation-note {
  margin-top: 40px;
  font-size: 14px;
  color: #0d1a12;
  line-height: 1.8;
  opacity: .8
}

.contact-us-page .accreditation-note a {
  color: #0d1a12;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px
}

@media (max-width: 1024px) {
  .contact-us-page .opening-band {
    gap: 40px;
    padding: 80px 20px 40px
  }

  .contact-us-page .form-band {
    padding: 80px 20px
  }

  .contact-us-page .info-band {
    padding: 80px 20px
  }
}

@media (max-width: 768px) {
  .contact-us-page .opening-band {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 20px
  }

  .contact-us-page .opening-heading {
    font-size: 40px
  }

  .contact-us-page .form-band-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .contact-us-page .form-context {
    position: static
  }

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

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

  .contact-us-page .form-band {
    padding: 40px 20px
  }

  .contact-us-page .info-band {
    padding: 40px 20px
  }

  .contact-us-page .info-band-heading {
    font-size: 29px
  }
}

@media (max-width: 480px) {
  .contact-us-page .opening-heading {
    font-size: 40px
  }

  .contact-us-page .contact-form {
    padding: 20px
  }

  .contact-us-page .comparison-option {
    padding: 20px
  }
}

.about-us-page {
  background: #0d1a14;
  color: #F7FBF9;
  overflow-x: clip;
  position: relative
}

.about-us-page ::selection {
  background: #42AB6D;
  color: #F7FBF9
}

.about-us-page .page-limiter {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px
}

.about-us-page .manifesto-block {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative
}

.about-us-page .manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start
}

.about-us-page .manifesto-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#42ab6d0a 1px, transparent 1px), linear-gradient(90deg, #42ab6d0a 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none
}

.about-us-page .manifesto-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 40px
}

.about-us-page .manifesto-label {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #42AB6D;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid #42ab6d59;
  border-radius: 6px;
  width: fit-content
}

.about-us-page .manifesto-heading {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.about-us-page .manifesto-heading strong {
  color: #42AB6D;
  font-weight: 900
}

.about-us-page .manifesto-declaration {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  max-width: 520px
}

.about-us-page .manifesto-declaration em {
  color: #F7FBF9;
  font-style: normal;
  font-weight: 600
}

.about-us-page .manifesto-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #42AB6D;
  color: #0d1a14;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  border: 2px solid #42AB6D;
  transition: background .1s ease-out, color .1s ease-out, border-color .12s ease-out;
  box-shadow: 0 3px 5px -2px #42ab6d12
}

.about-us-page .manifesto-cta:hover {
  background: transparent;
  color: #42AB6D;
  border-color: #42AB6D
}

.about-us-page .manifesto-image-col {
  position: relative
}

.about-us-page .manifesto-img-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.about-us-page .manifesto-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-us-page .manifesto-tag {
  position: absolute;
  bottom: -12px;
  left: -20px;
  background: #42AB6D;
  color: #0d1a14;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 5px 18px -2px #42ab6d17;
  white-space: nowrap
}

.about-us-page .manifesto-connector {
  display: block;
  width: 80px;
  height: 40px;
  margin-top: 4px
}

.about-us-page .story-block {
  background: #111d16;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative
}

.about-us-page .story-block-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: #42ab6d0a;
  border-radius: 50%;
  pointer-events: none;
  animation: spot-breathe 6s ease-in-out infinite
}

@keyframes spot-breathe {

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

  50% {
    transform: translate(-50%, -50%) scale(1.18);
    opacity: .6
  }
}

.about-us-page .story-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
  z-index: 1
}

.about-us-page .story-text-primary {
  grid-column: 1 / 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us-page .story-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.about-us-page .story-heading span {
  font-size: 55px;
  color: #42AB6D;
  display: block
}

.about-us-page .story-para {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  max-width: 560px
}

.about-us-page .story-img-a {
  grid-column: 3;
  grid-row: 1 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 18px -2px #42ab6d17;
  position: relative
}

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

.about-us-page .story-img-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0d1a14d9;
  color: #42AB6D;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #42ab6d4d
}

.about-us-page .story-metrics-row {
  grid-column: 1 / 3;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.about-us-page .metric-card {
  background: #42ab6d12;
  border: 1px solid #42ab6d26;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: inset 0 1px 0 #42ab6d1f;
  transition: border-color .1s ease-out
}

.about-us-page .metric-card:hover {
  border-color: #42ab6d66
}

.about-us-page .metric-number {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
  color: #42AB6D
}

.about-us-page .metric-label {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.about-us-page .approach-block {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #42AB6D;
  position: relative
}

.about-us-page .approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.about-us-page .approach-left {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us-page .approach-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d1a14;
  margin: 0
}

.about-us-page .approach-heading strong {
  font-size: 55px;
  display: block
}

.about-us-page .approach-para {
  font-size: 14px;
  line-height: 1.8;
  color: #0d1a14
}

.about-us-page .approach-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0
}

.about-us-page .approach-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #0d1a14;
  background: #0d1a1414;
  border-radius: 6px;
  padding: 8px 12px;
  font-weight: 600
}

.about-us-page .approach-right {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us-page .team-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #0d1a141a;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 5px -2px #42ab6d12
}

.about-us-page .team-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #0d1a1440
}

.about-us-page .team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-us-page .team-info {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.about-us-page .team-name {
  font-size: 14px;
  font-weight: 700;
  color: #0d1a14
}

.about-us-page .team-role {
  font-size: 14px;
  color: #0d1a14;
  opacity: .75
}

.about-us-page .team-bio {
  font-size: 14px;
  line-height: 1.8;
  color: #0d1a14;
  opacity: .85
}

.about-us-page .approach-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.about-us-page .approach-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 5px 18px -2px #42ab6d17;
  position: relative
}

.about-us-page .approach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .15s ease-out
}

.about-us-page .approach-img-wrap:hover img {
  transform: scale(1.03)
}

.about-us-page .subscribe-block {
  background: #0d1a14;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative
}

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

.about-us-page .subscribe-context {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us-page .subscribe-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.about-us-page .subscribe-heading em {
  font-style: normal;
  color: #42AB6D
}

.about-us-page .subscribe-para {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.about-us-page .subscribe-img-strip {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.about-us-page .subscribe-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/7;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.about-us-page .subscribe-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.about-us-page .subscribe-form-card {
  background: #F7FBF9;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 40px -2px #42ab6d1f;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.about-us-page .form-card-label {
  font-size: 14px;
  font-weight: 700;
  color: #0d1a14;
  letter-spacing: .08em;
  text-transform: uppercase
}

.about-us-page .form-field-wrap {
  position: relative;
  display: flex;
  flex-direction: column
}

.about-us-page .form-floating-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 14px;
  color: #4a6b56;
  pointer-events: none;
  transition: top .1s ease-out, font-size .1s ease-out, color .1s ease-out;
  background: #F7FBF9;
  padding: 0 4px
}

.about-us-page .form-email-input {
  background: #F7FBF9;
  border: 1.5px solid #99CCAC;
  border-radius: 6px;
  padding: 20px 12px 8px;
  font-size: 14px;
  color: #0d1a14;
  outline: none;
  transition: border-color .1s ease-out;
  width: 100%;
  box-sizing: border-box
}

.about-us-page .form-email-input:focus {
  border-color: #42AB6D
}

.about-us-page .form-email-input:focus+.form-floating-label,
.about-us-page .form-email-input:not(:placeholder-shown)+.form-floating-label {
  top: 4px;
  font-size: 14px;
  color: #42AB6D
}

.about-us-page .form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.about-us-page .form-check-label {
  font-size: 14px;
  color: #0d1a14;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  line-height: 1.8
}

.about-us-page .form-check-label input[type="checkbox"] {
  accent-color: #42AB6D;
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.about-us-page .form-topics-heading {
  font-size: 14px;
  font-weight: 600;
  color: #0d1a14;
  margin-bottom: 4px
}

.about-us-page .form-submit-btn {
  background: #42AB6D;
  color: #0d1a14;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 6px;
  border: 2px solid #42AB6D;
  cursor: pointer;
  width: 100%;
  transition: background .1s ease-out, color .1s ease-out;
  box-shadow: 0 5px 18px -2px #42ab6d17
}

.about-us-page .form-submit-btn:hover {
  background: transparent;
  color: #42AB6D
}

.about-us-page .form-submit-btn:focus-visible {
  outline: 2px solid #42AB6D;
  outline-offset: 3px
}

@media (max-width: 1024px) {
  .about-us-page .manifesto-heading {
    font-size: 40px
  }

  .about-us-page .story-heading span {
    font-size: 40px
  }
}

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

  .about-us-page .manifesto-grid {
    grid-template-columns: 1fr
  }

  .about-us-page .manifesto-image-col {
    display: none
  }

  .about-us-page .manifesto-heading {
    font-size: 40px
  }

  .about-us-page .story-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .about-us-page .story-text-primary {
    grid-column: 1;
    grid-row: 1
  }

  .about-us-page .story-img-a {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 16/9
  }

  .about-us-page .story-metrics-row {
    grid-column: 1;
    grid-row: 3;
    grid-template-columns: 1fr 1fr
  }

  .about-us-page .approach-inner {
    grid-template-columns: 1fr
  }

  .about-us-page .approach-img-pair {
    grid-template-columns: 1fr
  }

  .about-us-page .subscribe-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-us-page .subscribe-img-strip {
    display: none
  }
}

@media (max-width: 480px) {
  .about-us-page .manifesto-heading {
    font-size: 29px
  }

  .about-us-page .story-heading {
    font-size: 29px
  }

  .about-us-page .story-heading span {
    font-size: 29px
  }

  .about-us-page .approach-heading {
    font-size: 29px
  }

  .about-us-page .approach-heading strong {
    font-size: 40px
  }

  .about-us-page .subscribe-heading {
    font-size: 29px
  }

  .about-us-page .story-metrics-row {
    grid-template-columns: 1fr
  }

  .about-us-page .approach-list {
    grid-template-columns: 1fr
  }

  .about-us-page .subscribe-form-card {
    padding: 20px
  }

  .about-us-page .metric-number {
    font-size: 29px
  }
}

.news-root {
  background: #0d1a13;
  color: #e8f2ec;
  overflow-x: clip
}

.news-root * {
  box-sizing: border-box
}

.news-root ::selection {
  background: #42AB6D;
  color: #fff
}

.news-root .page-schema {
  display: none
}

.news-root .diagonal-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden
}

.news-root .diagonal-line::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 60%;
  width: 1px;
  height: 130%;
  background: linear-gradient(180deg, transparent 0%, #42AB6D33 40%, #42AB6D55 50%, #42AB6D33 60%, transparent 100%);
  transform: rotate(12deg);
  transform-origin: top center
}

.news-root .divider {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  margin: 40px 0
}

.news-root .divider-line {
  flex: 1;
  height: 1px;
  background: #2a3d2f
}

.news-root .divider-accent {
  width: 48px;
  height: 2px;
  background: #42AB6D
}

.news-root .lead-block {
  position: relative;
  padding: 80px 40px;
  max-width: 1024px;
  margin: 0 auto
}

.news-root .lead-block .spotlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 8% 12%, #42AB6D1a 0%, transparent 55%);
  pointer-events: none
}

.news-root .lead-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 80px;
  align-items: start
}

.news-root .lead-text-column {
  position: relative
}

.news-root .lead-tag {
  display: inline-block;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #42AB6D;
  font-weight: 700;
  margin-bottom: 20px
}

.news-root .lead-headline {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 900;
  color: #F7FBF9;
  margin: 0 0 20px
}

.news-root .lead-headline .word-large {
  display: block;
  font-size: 70px;
  color: #42AB6D
}

.news-root .lead-standfirst {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  max-width: 560px;
  margin: 0 0 40px
}

.news-root .bracket-box {
  position: relative;
  display: inline-block
}

.news-root .bracket-box::before,
.news-root .bracket-box::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: #42AB6D;
  border-style: solid
}

.news-root .bracket-box::before {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px
}

.news-root .bracket-box::after {
  bottom: -8px;
  right: -8px;
  border-width: 0 2px 2px 0
}

.news-root .lead-image-column {
  position: relative;
  padding-top: 40px
}

.news-root .lead-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.news-root .lead-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.7) brightness(0.85) contrast(1.1);
  opacity: .88;
  display: block
}

.news-root .lead-portrait-label {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.2;
  color: #99CCAC
}

.news-root .lead-meta {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap
}

.news-root .lead-meta-item {
  font-size: 14px;
  line-height: 1.2;
  color: #6aaa88
}

.news-root .lead-meta-sep {
  width: 4px;
  height: 4px;
  background: #42AB6D;
  border-radius: 6px;
  flex-shrink: 0
}

.news-root .articles-block {
  background: #111e16;
  padding: 80px 40px;
  position: relative
}

.news-root .articles-block .diagonal-line::before {
  left: 30%;
  transform: rotate(-8deg)
}

.news-root .articles-inner {
  max-width: 1024px;
  margin: 0 auto
}

.news-root .articles-header {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px
}

.news-root .articles-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.news-root .articles-heading .word-accent {
  font-size: 55px;
  color: #42AB6D;
  display: block
}

.news-root .articles-count {
  font-size: 14px;
  line-height: 1.8;
  color: #6aaa88;
  text-align: right
}

.news-root .articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.news-root .article-card {
  background: #162019;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 18px -2px #42ab6d17;
  transition: box-shadow .12s ease-out, transform .1s ease-out;
  display: flex;
  flex-direction: column
}

.news-root .article-card:hover {
  box-shadow: 0 8px 40px -2px #42ab6d1f;
  transform: translateY(-2px)
}

.news-root .article-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr
}

.news-root .article-card.featured .card-image-wrap {
  height: 100%;
  min-height: 280px
}

.news-root .card-image-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0
}

.news-root .card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
  transition: opacity .1s linear
}

.news-root .article-card:hover .card-image-wrap img {
  opacity: .95
}

.news-root .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1
}

.news-root .card-category {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #42AB6D;
  font-weight: 700
}

.news-root .card-title {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.news-root .card-title.small {
  font-size: 14px;
  font-weight: 700
}

.news-root .card-excerpt {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  margin: 0;
  flex: 1
}

.news-root .card-read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: #42AB6D;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  align-self: flex-start;
  padding: 4px 0;
  transition: color .08s ease-out
}

.news-root .card-read-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #42AB6D;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .1s ease-out
}

.news-root .card-read-link:hover::after {
  transform: scaleX(1)
}

.news-root .card-arrow {
  width: 14px;
  height: 14px;
  display: inline-block;
  position: relative
}

.news-root .card-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 1px;
  background: currentColor
}

.news-root .card-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg)
}

.news-root .timeline-block {
  padding: 80px 40px;
  position: relative;
  background: linear-gradient(168deg, #0d1a13 0%, #142019 100%)
}

.news-root .timeline-inner {
  max-width: 1024px;
  margin: 0 auto
}

.news-root .timeline-heading-row {
  margin-bottom: 40px
}

.news-root .timeline-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0 0 12px
}

.news-root .timeline-heading .word-large {
  font-size: 55px;
  color: #99CCAC
}

.news-root .timeline-subtext {
  font-size: 14px;
  line-height: 1.8;
  color: #6aaa88;
  max-width: 520px
}

.news-root .timeline-rail {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 0
}

.news-root .timeline-rail::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #42AB6D 0%, #2a3d2f 100%)
}

.news-root .timeline-point {
  flex: 1;
  position: relative;
  padding-top: 40px;
  padding-right: 20px
}

.news-root .timeline-dot {
  position: absolute;
  top: 12px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #0d1a13;
  border: 2px solid #42AB6D;
  z-index: 1
}

.news-root .timeline-dot.active {
  background: #42AB6D;
  box-shadow: 0 3px 5px -2px #42ab6d12 inset 0 1px 3px #99ccac4d
}

.news-root .timeline-period {
  font-size: 14px;
  line-height: 1.2;
  color: #42AB6D;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 8px
}

.news-root .timeline-card {
  background: #162019;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 5px -2px #42ab6d12
}

.news-root .timeline-card-title {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  color: #F7FBF9;
  margin: 0 0 8px
}

.news-root .timeline-card-text {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  margin: 0
}

.news-root .two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-top: 20px
}

.news-root .list-item {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start
}

.news-root .list-item-dot {
  width: 6px;
  height: 6px;
  background: #42AB6D;
  border-radius: 6px;
  margin-top: 8px;
  flex-shrink: 0
}

.news-root .accent-bold {
  color: #42AB6D;
  font-weight: 700
}

@keyframes blur-reveal {
  from {
    filter: blur(6px);
    opacity: 0
  }

  to {
    filter: blur(0);
    opacity: 1
  }
}

.news-root .lead-headline {
  animation: blur-reveal .5s ease-out both
}

.news-root .lead-standfirst {
  animation: blur-reveal .5s ease-out .12s both
}

.news-root .lead-meta {
  animation: blur-reveal .5s ease-out .22s both
}

.news-root .lead-image-column {
  animation: blur-reveal .5s ease-out .08s both
}

@media (max-width: 1024px) {
  .news-root .lead-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .news-root .lead-image-column {
    display: none
  }

  .news-root .articles-header {
    grid-template-columns: 1fr
  }

  .news-root .articles-count {
    text-align: left
  }
}

@media (max-width: 768px) {
  .news-root .lead-block {
    padding: 40px 20px 80px
  }

  .news-root .lead-headline {
    font-size: 40px
  }

  .news-root .lead-headline .word-large {
    font-size: 55px
  }

  .news-root .articles-block {
    padding: 40px 20px
  }

  .news-root .articles-grid {
    grid-template-columns: 1fr
  }

  .news-root .article-card.featured {
    grid-template-columns: 1fr
  }

  .news-root .article-card.featured .card-image-wrap {
    min-height: 200px
  }

  .news-root .timeline-block {
    padding: 40px 20px
  }

  .news-root .timeline-rail {
    flex-direction: column;
    gap: 20px
  }

  .news-root .timeline-rail::before {
    top: 0;
    bottom: 0;
    left: 9px;
    right: auto;
    width: 2px;
    height: 100%
  }

  .news-root .timeline-point {
    padding-top: 0;
    padding-left: 40px;
    padding-right: 0;
    flex: none;
    width: 100%
  }

  .news-root .timeline-dot {
    top: 0;
    left: 0
  }

  .news-root .two-col-list {
    grid-template-columns: 1fr
  }

  .news-root .articles-heading .word-accent {
    font-size: 40px
  }
}

@media (max-width: 480px) {
  .news-root .lead-headline {
    font-size: 29px
  }

  .news-root .lead-headline .word-large {
    font-size: 40px
  }

  .news-root .lead-block {
    padding: 40px 20px
  }

  .news-root .timeline-heading {
    font-size: 29px
  }

  .news-root .timeline-heading .word-large {
    font-size: 40px
  }
}

.launch {
  background: #0d1a12;
  color: #e8f5ee;
  overflow-x: clip;
  position: relative
}

.launch .word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  animation: word-in .12s ease-out forwards
}

.launch .word-reveal span:nth-child(1) {
  animation-delay: .05s
}

.launch .word-reveal span:nth-child(2) {
  animation-delay: .13s
}

.launch .word-reveal span:nth-child(3) {
  animation-delay: .21s
}

.launch .word-reveal span:nth-child(4) {
  animation-delay: .29s
}

.launch .word-reveal span:nth-child(5) {
  animation-delay: .37s
}

.launch .word-reveal span:nth-child(6) {
  animation-delay: .45s
}

.launch .word-reveal span:nth-child(7) {
  animation-delay: .53s
}

.launch .word-reveal span:nth-child(8) {
  animation-delay: .61s
}

.launch .word-reveal span:nth-child(9) {
  animation-delay: .69s
}

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

.launch .pill-label {
  display: inline-block;
  background: #42ab6d26;
  border: 1px solid #42ab6d59;
  color: #42AB6D;
  font-size: 14px;
  line-height: 1.2;
  padding: 4px 20px;
  border-radius: 36px;
  letter-spacing: .08em;
  text-transform: uppercase
}

.launch .gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #42ab6d66 30%, #99ccac80 50%, #42ab6d66 70%, transparent 100%);
  border: none;
  margin: 0
}

.launch .title-block {
  padding: 80px 40px;
  max-width: 1024px;
  margin: 0 auto
}

.launch .title-block-grid {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center
}

.launch .title-card {
  flex: 0 0 300px;
  position: relative
}

.launch .title-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px -2px #42ab6d1f;
  position: relative
}

.launch .title-image-wrap img {
  width: 300px;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: blur(0px);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 60%, transparent 100%)
}

.launch .title-depth-number {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 70px;
  line-height: 1.2;
  font-weight: 900;
  color: #42ab6d12;
  pointer-events: none;
  z-index: 0;
  user-select: none
}

.launch .title-text-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.launch .title-heading {
  font-size: 55px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.launch .title-heading .accent-punct {
  color: #42AB6D
}

.launch .title-sub {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  max-width: 480px
}

.launch .title-curve-line {
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #42AB6D, transparent);
  border-radius: 6px;
  margin: 8px 0
}

.launch .title-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #42AB6D;
  color: #0d1a12;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 6px;
  border: 2px solid #42AB6D;
  cursor: pointer;
  text-decoration: none;
  transition: background .1s ease-out, color .1s ease-out, border-color .1s ease-out, box-shadow .15s ease-out;
  box-shadow: 0 5px 18px -2px #42ab6d17;
  align-self: flex-start
}

.launch .title-cta:hover {
  background: transparent;
  color: #42AB6D;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.launch .title-cta:focus {
  outline: 2px solid #42AB6D;
  outline-offset: 3px
}

.launch .field-proof {
  background: linear-gradient(160deg, #0a1a10 0%, #112018 100%);
  padding: 80px 40px
}

.launch .field-proof-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.launch .field-proof-text {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.launch .field-proof-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.launch .field-proof-heading strong {
  font-size: 55px;
  color: #42AB6D;
  display: block
}

.launch .field-proof-body {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.launch .field-proof-body p {
  margin: 0 0 12px
}

.launch .field-proof-visual {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.launch .field-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 18px -2px #42ab6d17
}

.launch .field-image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .15s ease-out
}

.launch .field-image-wrap:hover img {
  transform: scale(1.02)
}

.launch .field-stats-row {
  display: flex;
  flex-direction: row;
  gap: 20px
}

.launch .field-stat {
  flex: 1;
  background: #42ab6d14;
  border: 1px solid #42ab6d33;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.launch .field-stat-value {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #42AB6D
}

.launch .field-stat-label {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.launch .field-indicator {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #99ccac0f;
  border-radius: 6px
}

.launch .field-indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #42AB6D;
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-out infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 #42ab6d80
  }

  50% {
    box-shadow: 0 0 0 6px #42ab6d00
  }
}

.launch .field-indicator-text {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.launch .investment {
  padding: 80px 40px;
  max-width: 1024px;
  margin: 0 auto
}

.launch .investment-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: stretch
}

.launch .investment-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.launch .investment-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.launch .investment-body {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.launch .investment-right {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.launch .invest-card {
  background: #42ab6d12;
  border: 1px solid #42ab6d2e;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .12s ease-out, border-color .12s ease-out
}

.launch .invest-card:hover {
  background: #42ab6d21;
  border-color: #42ab6d59
}

.launch .invest-card-label {
  font-size: 14px;
  color: #42AB6D;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em
}

.launch .invest-card-value {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9
}

.launch .invest-card-note {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.launch .invest-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.launch .invest-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  padding: 4px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.launch .invest-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42AB6D;
  flex-shrink: 0;
  margin-top: 8px
}

.launch .hesitation {
  background: linear-gradient(170deg, #112018 0%, #0d1a12 100%);
  padding: 80px 40px
}

.launch .hesitation-inner {
  max-width: 1024px;
  margin: 0 auto
}

.launch .hesitation-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0 0 40px
}

.launch .faq-stack {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.launch .faq-item {
  background: #99ccac0d;
  border: 1px solid #99ccac1f;
  border-radius: 12px;
  overflow: hidden
}

.launch .faq-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  transition: background .1s ease-out
}

.launch .faq-toggle:hover {
  background: #42ab6d12
}

.launch .faq-toggle:focus {
  outline: 2px solid #42AB6D;
  outline-offset: -2px
}

.launch .faq-question {
  font-size: 14px;
  line-height: 1.8;
  color: #F7FBF9;
  font-weight: 600
}

.launch .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative
}

.launch .faq-icon::before,
.launch .faq-icon::after {
  content: "";
  position: absolute;
  background: #42AB6D;
  border-radius: 2px;
  transition: transform .12s ease-out, opacity .1s ease-out
}

.launch .faq-icon::before {
  width: 14px;
  height: 2px;
  top: 9px;
  left: 3px
}

.launch .faq-icon::after {
  width: 2px;
  height: 14px;
  top: 3px;
  left: 9px
}

.launch .faq-body {
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.launch .faq-item.open .faq-body {
  display: block
}

.launch .faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0
}

.launch .instructors {
  padding: 80px 40px;
  max-width: 1024px;
  margin: 0 auto
}

.launch .instructors-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0 0 40px
}

.launch .instructors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.launch .instructor-card {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.launch .instructor-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px
}

.launch .instructor-portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #42ab6d66;
  box-shadow: 0 3px 5px -2px #42ab6d12
}

.launch .instructor-portrait img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  display: block
}

.launch .instructor-meta {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.launch .instructor-name {
  font-size: 14px;
  font-weight: 700;
  color: #F7FBF9;
  line-height: 1.2
}

.launch .instructor-role {
  font-size: 14px;
  color: #42AB6D;
  line-height: 1.8
}

.launch .instructor-bio {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.launch .instructor-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.launch .instructor-feature-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px
}

.launch .instructor-feature-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #99CCAC;
  flex-shrink: 0;
  margin-top: 8px
}

.launch .instructor-image-block {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.launch .instructor-image-block img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  display: block
}

.launch .support {
  background: #42AB6D;
  padding: 80px 40px
}

.launch .support-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: center
}

.launch .support-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.launch .support-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #0d1a12;
  margin: 0
}

.launch .support-body {
  font-size: 14px;
  line-height: 1.8;
  color: #0d1a12
}

.launch .support-channels {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.launch .support-channel {
  background: #0d1a121f;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  transition: background .1s ease-out
}

.launch .support-channel:hover {
  background: #0d1a1233
}

.launch .support-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #0d1a1226;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.launch .support-channel-icon svg {
  width: 20px;
  height: 20px;
  fill: #0d1a12
}

.launch .support-channel-info {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.launch .support-channel-name {
  font-size: 14px;
  font-weight: 700;
  color: #0d1a12;
  line-height: 1.2
}

.launch .support-channel-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #0d1a12bf
}

.launch .distinction {
  padding: 80px 40px;
  max-width: 1024px;
  margin: 0 auto
}

.launch .distinction-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0 0 40px
}

.launch .distinction-rows {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.launch .distinction-row {
  display: grid;
  gap: 40px;
  align-items: center
}

.launch .distinction-row.one-col {
  grid-template-columns: 1fr
}

.launch .distinction-row.two-col {
  grid-template-columns: 1fr 1fr
}

.launch .distinction-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: #99ccac0d;
  border-radius: 12px;
  border: 1px solid #99ccac1a;
  transition: border-color .12s ease-out
}

.launch .distinction-item:hover {
  border-color: #42ab6d4d
}

.launch .distinction-item-label {
  font-size: 14px;
  font-weight: 700;
  color: #42AB6D;
  text-transform: uppercase;
  letter-spacing: .08em
}

.launch .distinction-item-heading {
  font-size: 29px;
  line-height: 1.2;
  font-weight: 800;
  color: #F7FBF9;
  margin: 0
}

.launch .distinction-item-body {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.launch .distinction-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 18px -2px #42ab6d17
}

.launch .distinction-image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block
}

@media (max-width: 1024px) {
  .launch .title-block-grid {
    gap: 40px
  }

  .launch .field-proof-inner {
    gap: 40px
  }
}

@media (max-width: 768px) {

  .launch .title-block,
  .launch .field-proof,
  .launch .hesitation,
  .launch .instructors,
  .launch .support,
  .launch .distinction {
    padding: 40px 20px
  }

  .launch .investment {
    padding: 40px 20px
  }

  .launch .title-block-grid {
    flex-direction: column;
    gap: 20px
  }

  .launch .title-card {
    flex: none;
    width: 100%
  }

  .launch .title-image-wrap img {
    width: 100%;
    height: 240px
  }

  .launch .title-heading {
    font-size: 40px
  }

  .launch .field-proof-inner {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .launch .field-proof-heading strong {
    font-size: 40px
  }

  .launch .investment-layout {
    flex-direction: column;
    gap: 20px
  }

  .launch .investment-right {
    flex: none;
    width: 100%
  }

  .launch .instructors-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .launch .instructor-image-block {
    grid-column: auto
  }

  .launch .support-inner {
    flex-direction: column;
    gap: 40px
  }

  .launch .support-channels {
    flex: none;
    width: 100%
  }

  .launch .distinction-row.two-col {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .launch .invest-list {
    grid-template-columns: 1fr
  }

  .launch .instructor-feature-list {
    grid-template-columns: 1fr
  }

  .launch .field-stats-row {
    flex-direction: column
  }
}

@media (max-width: 480px) {
  .launch .title-heading {
    font-size: 29px
  }

  .launch .field-proof-heading {
    font-size: 29px
  }

  .launch .field-proof-heading strong {
    font-size: 29px
  }

  .launch .investment-heading,
  .launch .hesitation-heading,
  .launch .instructors-heading,
  .launch .support-heading,
  .launch .distinction-heading {
    font-size: 29px
  }

  .launch .distinction-item-heading {
    font-size: 14px
  }
}

.learning-program {
  background: #0d1a12;
  color: #e8f2ec;
  overflow-x: clip;
  position: relative
}

.learning-program .pulse-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(160deg, #42ab6d0f 0%, transparent 60%);
  animation: overlayBreath 6s ease-out infinite alternate
}

@keyframes overlayBreath {
  0% {
    opacity: .4
  }

  100% {
    opacity: 1
  }
}

.learning-program .page-max {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px
}

::selection {
  background: #42AB6D;
  color: #fff
}

.learning-program .bracket-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none
}

.learning-program .bracket-corner--tl {
  top: 8px;
  left: 8px;
  border-top: 2px solid #42ab6d80;
  border-left: 2px solid #42ab6d80;
  border-radius: 6px 0 0 0
}

.learning-program .bracket-corner--br {
  bottom: 8px;
  right: 8px;
  border-bottom: 2px solid #42ab6d80;
  border-right: 2px solid #42ab6d80;
  border-radius: 0 0 6px 0
}

.learning-program .title-band {
  padding: 80px 20px 40px;
  position: relative;
  z-index: 1;
  text-align: center
}

.learning-program .title-band__eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #42AB6D;
  margin-bottom: 20px;
  background: #42ab6d1a;
  padding: 4px 20px;
  border-radius: 36px;
  border: 1px solid #42ab6d40
}

.learning-program .title-band__heading {
  font-size: 55px;
  line-height: 1.2;
  color: #F7FBF9;
  margin-bottom: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto
}

.learning-program .title-band__heading strong {
  color: #42AB6D;
  font-weight: 800
}

.learning-program .title-band__sub {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  max-width: 520px;
  margin: 0 auto 40px
}

.learning-program .title-band__image-strip {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.learning-program .title-band__image-strip img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block
}

.learning-program .title-band__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, #0d1a12bf 100%);
  pointer-events: none
}

.learning-program .title-band__deco {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none
}

.learning-program .stat-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap
}

.learning-program .stat-item {
  text-align: center
}

.learning-program .stat-item__number {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800
}

.learning-program .stat-item__number .integer {
  color: #F7FBF9
}

.learning-program .stat-item__number .fractional {
  color: #42AB6D
}

.learning-program .stat-item__label {
  font-size: 14px;
  color: #99CCAC;
  margin-top: 4px
}

.learning-program .divider-triangle {
  display: flex;
  justify-content: flex-end;
  padding-right: 80px;
  margin: 20px 0
}

.learning-program .divider-triangle svg {
  display: block
}

.learning-program .curriculum-band {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  background: linear-gradient(170deg, #111d15 0%, #0d1a12 100%)
}

.learning-program .curriculum-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px
}

.learning-program .module-card {
  position: relative;
  background: #ffffff08;
  border: 1px solid #99ccac1f;
  border-radius: 12px;
  padding: 20px;
  transition: background .12s ease-out, border-color .1s linear
}

.learning-program .module-card:hover {
  background: linear-gradient(135deg, #42ab6d1a 0%, #99ccac0d 100%);
  border-color: #42ab6d4d
}

.learning-program .module-card__index {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 8px
}

.learning-program .module-card__index .integer {
  color: #f7fbf926
}

.learning-program .module-card__index .fractional {
  color: #42AB6D
}

.learning-program .module-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #F7FBF9;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.learning-program .module-card__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC
}

.learning-program .module-card__topics {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px
}

.learning-program .module-card__topics li {
  font-size: 14px;
  color: #99CCAC;
  line-height: 1.8;
  padding-left: 12px;
  position: relative
}

.learning-program .module-card__topics li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 6px;
  background: #42AB6D
}

.learning-program .curriculum-band__heading {
  font-size: 40px;
  line-height: 1.2;
  color: #F7FBF9;
  max-width: 560px
}

.learning-program .curriculum-band__heading em {
  font-style: normal;
  color: #42AB6D
}

.learning-program .curriculum-band__lead {
  font-size: 14px;
  line-height: 1.8;
  color: #99CCAC;
  max-width: 480px;
  margin-top: 12px
}

.learning-program .divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, #42ab6d4d, transparent);
  margin: 0 20px
}

.learning-program .instructors-band {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
  background: #F7FBF9
}

.learning-program .instructors-band__heading {
  font-size: 40px;
  line-height: 1.2;
  color: #0d1a12;
  margin-bottom: 8px
}

.learning-program .instructors-band__heading strong {
  color: #42AB6D
}

.learning-program .instructors-band__intro {
  font-size: 14px;
  line-height: 1.8;
  color: #3a5244;
  max-width: 560px;
  margin-bottom: 40px
}

.learning-program .instructors-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start
}

.learning-program .instructor-portrait-block {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.learning-program .portrait-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 18px -2px #42ab6d17;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  width: 360px;
  transition: box-shadow .1s ease-out
}

.learning-program .portrait-card:hover {
  box-shadow: 0 8px 40px -2px #42ab6d1f
}

.learning-program .portrait-card__img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0
}

.learning-program .portrait-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #0d1a12;
  margin-bottom: 4px
}

.learning-program .portrait-card__role {
  font-size: 14px;
  color: #42AB6D;
  margin-bottom: 8px
}

.learning-program .portrait-card__bio {
  font-size: 14px;
  line-height: 1.8;
  color: #3a5244
}

.learning-program .instructors-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px
}

.learning-program .detail-block {
  position: relative;
  background: #42ab6d0f;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #42ab6d26
}

.learning-program .detail-block__label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #42AB6D;
  font-weight: 700;
  margin-bottom: 8px
}

.learning-program .detail-block__text {
  font-size: 14px;
  line-height: 1.8;
  color: #2a3d30
}

.learning-program .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px
}

.learning-program .faq-item {
  background: #42ab6d0d;
  border-radius: 12px;
  border: 1px solid #42ab6d1f;
  overflow: hidden
}

.learning-program .faq-item summary {
  font-size: 14px;
  font-weight: 700;
  color: #0d1a12;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: color .1s ease-out
}

.learning-program .faq-item summary::-webkit-details-marker {
  display: none
}

.learning-program .faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #42AB6D;
  border-bottom: 2px solid #42AB6D;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform .12s ease-out
}

.learning-program .faq-item[open] summary::after {
  transform: rotate(-135deg)
}

.learning-program .faq-item__answer {
  font-size: 14px;
  line-height: 1.8;
  color: #3a5244;
  padding: 0 20px 20px
}

.learning-program .image-content-block {
  position: relative;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden
}

.learning-program .image-content-block img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block
}

.learning-program .hex-bg-section {
  background-color: #111d15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V17L28 0l28 17v33z' fill='none' stroke='#42ab6d12' stroke-width='1'/%3E%3Cpath d='M28 100L0 83V50l28-17 28 17v33z' fill='none' stroke='#42ab6d12' stroke-width='1'/%3E%3C/svg%3E")
}

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

@media (max-width: 768px) {
  .learning-program .title-band__heading {
    font-size: 40px
  }

  .learning-program .curriculum-band__grid {
    grid-template-columns: 1fr
  }

  .learning-program .instructors-layout {
    flex-direction: column
  }

  .learning-program .portrait-card {
    width: 100%
  }

  .learning-program .stat-row {
    gap: 20px
  }
}

@media (max-width: 480px) {
  .learning-program .title-band__heading {
    font-size: 29px
  }

  .learning-program .curriculum-band__heading {
    font-size: 29px
  }

  .learning-program .instructors-band__heading {
    font-size: 29px
  }

  .learning-program .module-card__topics {
    grid-template-columns: 1fr
  }

  .learning-program .title-band__image-strip img {
    height: 220px
  }

  .learning-program .portrait-card {
    flex-direction: column;
    text-align: center
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #0d1f16
}

.success-page .success-card {
  max-width: 1024px;
  width: 100%;
  background: #42ab6d0f;
  border: 1px solid #42ab6d2e;
  border-radius: 12px;
  padding: 80px;
  text-align: center;
  box-shadow: 0 8px 40px -2px #42ab6d1f;
  backdrop-filter: blur(8px)
}

.success-page .success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center
}

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

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

.success-page .success-subheading {
  font-size: 29px;
  line-height: 1.2;
  color: #99CCAC;
  margin: 0 0 40px;
  font-weight: 400
}

.success-page .success-body {
  font-size: 14px;
  line-height: 1.8;
  color: #c8dfd1;
  max-width: 560px;
  margin: 0 auto 40px
}

.success-page .success-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap
}

.success-page .button-primary {
  display: inline-block;
  padding: 12px 40px;
  background: #42AB6D;
  color: #0d1f16;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #42AB6D;
  transition: background .1s ease-out, color .1s ease-out, border-color .12s ease-out, box-shadow .1s ease-out;
  box-shadow: 0 3px 5px -2px #42ab6d12;
  cursor: pointer;
  outline-offset: 2px
}

.success-page .button-primary:hover {
  background: #37956e;
  border-color: #37956e;
  box-shadow: 0 5px 18px -2px #42ab6d17
}

.success-page .button-primary:focus-visible {
  outline: 2px solid #99CCAC;
  outline-offset: 4px
}

.success-page .button-secondary {
  display: inline-block;
  padding: 12px 40px;
  background: transparent;
  color: #99CCAC;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #99ccac59;
  transition: border-color .08s linear, color .08s linear;
  cursor: pointer;
  outline-offset: 2px
}

.success-page .button-secondary:hover {
  border-color: #99CCAC;
  color: #F7FBF9
}

.success-page .button-secondary:focus-visible {
  outline: 2px solid #42AB6D;
  outline-offset: 4px
}

.success-page .success-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #42AB6D, #99CCAC);
  border-radius: 36px;
  margin: 0 auto 40px
}

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

  .success-page .success-heading {
    font-size: 40px
  }

  .success-page .success-subheading {
    font-size: 29px
  }

  .success-page .success-actions {
    flex-direction: column;
    align-items: center
  }

  .success-page .button-primary,
  .success-page .button-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center
  }
}

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

  .success-page .success-heading {
    font-size: 29px
  }
}