html {
  box-sizing: border-box;
  font-size: 100%;
}

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

html,
body {
  margin: 0;
}

body {
  -webkit-text-size-adjust: 100%;
  font-family: 'Source Code Pro', monospace;
  background-color: #F5FBFB;
}

.pg__header-shell {
  position: relative;
  padding: 16px 28px;
  background-color: #F5FBFB;
}

.pg__header-frame {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #1D2227;
  border-radius: 22px;
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  overflow: hidden;
}

.pg__header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 28px 16px;
  border-bottom: 1px solid rgba(5, 186, 233, 0.15);
}

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand__img-box {
  width: 64px;
  height: 75px;
  background-color: #F5FBFB;
  border-radius: 4px;
  border: 2px solid rgba(5, 186, 233, 0.4);
  box-shadow: 0 3px 6px 0 rgba(5, 186, 233, 0.05), 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.brand__img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand__img-box img.loaded {
  opacity: 1;
}

.pg__header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  gap: 16px;
}

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

.menu__strip-item {
  margin: 0;
}

.menu__strip-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #F5FBFB;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s cubic-bezier(0.0, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.menu__strip-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 186, 233, 0.18) 0%, rgba(5, 186, 233, 0.06) 100%);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.menu__strip-link:hover {
  color: #05BAE9;
  border-color: rgba(5, 186, 233, 0.35);
}

.menu__strip-link:hover::after {
  opacity: 1;
}

.menu__strip-link:focus {
  outline: none;
  border-color: #05BAE9;
  background-color: rgba(5, 186, 233, 0.08);
}

.menu__strip-link--active {
  color: #05BAE9;
  border-color: rgba(5, 186, 233, 0.25);
}

.menu__strip-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.region__pick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 251, 251, 0.65);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(245, 251, 251, 0.15);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.region__pick:hover {
  color: #F5FBFB;
  border-color: rgba(5, 186, 233, 0.4);
}

.region__pick:focus {
  outline: none;
  border-color: #05BAE9;
  background-color: rgba(5, 186, 233, 0.08);
  color: #F5FBFB;
}

.region__pick-globe {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.pg__footer-shell {
  background-color: #1D2227;
  margin-top: 56px;
}

.pg__footer-upper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 28px 28px;
  display: flex;
  align-items: flex-start;
  gap: 56px;
  flex-wrap: wrap;
}

.ftr-brand__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
}

.ftr-brand__img-box {
  width: 64px;
  height: 75px;
  background-color: #F5FBFB;
  border-radius: 4px;
  border: 2px solid rgba(5, 186, 233, 0.35);
  box-shadow: 0 3px 6px 0 rgba(5, 186, 233, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.ftr-brand__img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ftr-brand__img-box img.loaded {
  opacity: 1;
}

.ftr-brand__name {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: #F5FBFB;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.ftr-brand__tagline {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245, 251, 251, 0.5);
  margin: 0;
  max-width: 220px;
}

.ftr-cols__group {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  flex: 1;
}

.ftr-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 140px;
}

.ftr-col__label {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #05BAE9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(5, 186, 233, 0.2);
}

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

.ftr-col__link-item {
  margin: 0;
}

.ftr-col__link {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 251, 251, 0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ftr-col__link:hover {
  color: #05BAE9;
}

.ftr-col__link:focus {
  outline: none;
  color: #05BAE9;
  text-decoration: underline;
}

.ftr-contact__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.ftr-contact__label {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #05BAE9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(5, 186, 233, 0.2);
}

.ftr-contact__item {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(245, 251, 251, 0.6);
  margin: 0;
}

.ftr-contact__link {
  color: rgba(245, 251, 251, 0.65);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ftr-contact__link:hover {
  color: #05BAE9;
}

.ftr-contact__link:focus {
  outline: none;
  color: #05BAE9;
  text-decoration: underline;
}

.pg__footer-divider {
  max-width: 1400px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(5, 186, 233, 0.25) 30%, rgba(5, 186, 233, 0.25) 70%, transparent 100%);
}

.pg__footer-lower {
  background-color: #141A1E;
}

.pg__footer-lower-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ftr-copy__text {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 251, 251, 0.35);
  margin: 0;
}

.ftr-copy__accent {
  color: rgba(5, 186, 233, 0.6);
}

.ftr-legal__links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.ftr-legal__item {
  margin: 0;
}

.ftr-legal__link {
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(245, 251, 251, 0.35);
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ftr-legal__link:hover {
  color: rgba(245, 251, 251, 0.7);
}

.ftr-legal__link:focus {
  outline: none;
  color: #05BAE9;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .pg__header-shell {
    padding: 8px 16px;
  }

  .pg__header-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
  }

  .menu__strip {
    gap: 4px;
  }

  .menu__strip-link {
    padding: 8px 8px;
  }

  .pg__footer-upper {
    flex-direction: column;
    gap: 28px;
    padding: 28px 16px;
  }

  .ftr-cols__group {
    gap: 28px;
  }

  .pg__footer-lower-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .pg__header-top {
    padding: 16px 16px 8px;
  }

  .menu__strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .ftr-cols__group {
    flex-direction: column;
    gap: 28px;
  }

  .ftr-legal__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.policy-i-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 28px;
  color: #1D2227;
  line-height: 1.75;
  font-size: 13px;
}

.policy-i-layout p {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 16px;
  color: #1D2227;
}

.policy-i-layout strong,
.policy-i-layout b {
  font-weight: 700;
  color: #1D2227;
}

.policy-i-layout a {
  color: #05BAE9;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.15s cubic-bezier(0.0, 0, 0.2, 1);
}

.policy-i-layout a:hover {
  color: #1D2227;
  text-decoration-color: #1D2227;
}

.policy-i-layout a:visited {
  color: #05BAE9;
}

.policy-i-layout table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 3px 6px 0 rgba(5, 186, 233, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.policy-i-layout thead {
  background-color: #F5FBFB;
}

.policy-i-layout tbody tr {
  border-bottom: 1px solid #F5FBFB;
  transition: background-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-i-layout tbody tr:last-child {
  border-bottom: none;
}

.policy-i-layout tbody tr:hover {
  background-color: #F5FBFB;
}

.policy-i-layout th {
  padding: 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #1D2227;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid #05BAE9;
}

.policy-i-layout td {
  padding: 16px;
  font-size: 13px;
  color: #1D2227;
  line-height: 1.75;
  vertical-align: top;
}

.policy-i-layout hr {
  border: none;
  border-top: 1px solid #F5FBFB;
  margin-top: 28px;
  margin-bottom: 28px;
  height: 0;
}

@media (max-width: 768px) {
  .policy-i-layout {
    padding: 28px 16px;
  }

  .policy-i-layout table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
  }

  .policy-i-layout th,
  .policy-i-layout td {
    padding: 8px 16px;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .policy-i-layout {
    padding: 16px 8px;
  }

  .policy-i-layout hr {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

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

.lnch .pg-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── ON-LOAD SLIDE-IN ── */
@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

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

@keyframes imgFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.lnch .reveal-r {
  animation: slideFromRight 0.55s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.lnch .reveal-r--d1 {
  animation-delay: 0.08s;
}

.lnch .reveal-r--d2 {
  animation-delay: 0.2s;
}

.lnch .reveal-r--d3 {
  animation-delay: 0.34s;
}

.lnch .reveal-r--d4 {
  animation-delay: 0.48s;
}

/* ── SECTION 1: TITLE BLOCK ── */
.lnch .tb {
  padding: 80px 0 56px;
  background: #F5FBFB;
  position: relative;
}

.lnch .tb__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
}

.lnch .tb__img-col {
  flex: 0 0 auto;
  width: 480px;
  position: relative;
}

.lnch .tb__img-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 48px 0 rgba(5, 186, 233, 0.10);
}

.lnch .tb__img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(245, 251, 251, 0.18) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.lnch .tb__img-frame img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  animation: imgFadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}

.lnch .tb__img-deco {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid #05BAE9;
  border-radius: 22px;
  pointer-events: none;
}

.lnch .tb__img-deco::before,
.lnch .tb__img-deco::after {
  content: "";
  position: absolute;
  background: #F5FBFB;
}

.lnch .tb__img-deco::before {
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
}

.lnch .tb__img-deco::after {
  bottom: -2px;
  left: -2px;
  width: 20px;
  height: 20px;
}

.lnch .tb__text-col {
  flex: 1 1 0;
  min-width: 0;
}

.lnch .tb__label {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.lnch .tb__label-line {
  width: 36px;
  height: 2px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  border-radius: 4px;
}

.lnch .tb__label-text {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #05BAE9;
}

.lnch .tb__h1 {
  font-size: 52px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0 0 28px;
  text-shadow: 0 2px 8px rgba(29, 34, 39, 0.08);
}

.lnch .tb__h1-grad {
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lnch .tb__desc {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  max-width: 460px;
  margin: 0 0 28px;
}

.lnch .tb__desc--narrow {
  max-width: 340px;
}

.lnch .tb__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.lnch .tb__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: #1D2227;
  color: #F5FBFB;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.lnch .tb__btn::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -60px;
  width: 60px;
  height: 160px;
  background: rgba(5, 186, 233, 0.22);
  transform: skewX(-18deg);
  transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.lnch .tb__btn:hover::before {
  left: 120%;
}

.lnch .tb__btn-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lnch .tb__link {
  font-size: 13px;
  line-height: 1.5;
  color: #05BAE9;
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 186, 233, 0.35);
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.lnch .tb__link:hover {
  border-color: #05BAE9;
}

.lnch .tb__wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 56px;
}

.lnch .tb__wave svg {
  display: block;
  width: 100%;
}

/* ── SECTION 2: APPROACH ── */
.lnch .appr {
  padding: 56px 0;
  background: #fff;
}

.lnch .appr__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

.lnch .appr__top {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.lnch .appr__top-text {
  flex: 1 1 0;
  min-width: 0;
}

.lnch .appr__top-img {
  flex: 0 0 auto;
  width: 360px;
}

.lnch .appr__top-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  animation: imgFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.15s;
}

.lnch .appr__tag {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #05BAE9;
  margin-bottom: 16px;
  display: block;
}

.lnch .appr__h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0 0 28px;
  text-shadow: 1px 2px 6px rgba(29, 34, 39, 0.07);
}

.lnch .appr__body {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  max-width: 540px;
  margin: 0 0 16px;
}

.lnch .appr__body--narrow {
  max-width: 380px;
}

.lnch .appr__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.lnch .appr__step {
  background: #F5FBFB;
  border-radius: 22px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 6px 0 rgba(29, 34, 39, 0.05);
  transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.lnch .appr__step::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 80px;
  height: 140px;
  background: rgba(5, 186, 233, 0);
  transform: skewX(-18deg);
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.lnch .appr__step:hover::after {
  background: rgba(5, 186, 233, 0.09);
}

.lnch .appr__step:hover {
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  transform: translateY(-4px);
}

.lnch .appr__step-num {
  font-size: 38px;
  line-height: 1.2;
  color: rgba(5, 186, 233, 0.18);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.lnch .appr__step-h {
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 8px;
}

.lnch .appr__step-p {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  margin: 0;
}

/* ── SECTION 3: LONG-TERM VALUE ── */
.lnch .ltv {
  padding: 56px 0;
  position: relative;
}

.lnch .ltv__noise {
  position: absolute;
  inset: 0;
  background-color: #1D2227;
  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.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.lnch .ltv__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.lnch .ltv__layout {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 28px;
  align-items: start;
}

.lnch .ltv__sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 56px;
}

.lnch .ltv__sidebar--right {
  padding-top: 16px;
}

.lnch .ltv__stat {
  background: rgba(5, 186, 233, 0.1);
  border-radius: 22px;
  padding: 28px 16px;
  text-align: center;
  border: 1px solid rgba(5, 186, 233, 0.2);
}

.lnch .ltv__stat-val {
  font-size: 38px;
  line-height: 1.2;
  color: #05BAE9;
  display: block;
  font-weight: 700;
}

.lnch .ltv__stat-label {
  font-size: 13px;
  line-height: 1.5;
  color: #F5FBFB;
  display: block;
  margin-top: 8px;
}

.lnch .ltv__center {
  min-width: 0;
}

.lnch .ltv__tag {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #05BAE9;
  margin-bottom: 16px;
  display: block;
}

.lnch .ltv__h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #F5FBFB;
  margin: 0 0 28px;
  text-shadow: 0 3px 12px rgba(5, 186, 233, 0.18);
}

.lnch .ltv__body {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245, 251, 251, 0.82);
  max-width: 520px;
  margin: 0 0 16px;
}

.lnch .ltv__body--narrow {
  max-width: 360px;
}

.lnch .ltv__img-wrap {
  margin-top: 28px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 48px 0 rgba(5, 186, 233, 0.10);
  position: relative;
}

.lnch .ltv__img-wrap img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  animation: imgFadeIn 0.65s cubic-bezier(0.4, 0, 0.2, 1) both;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

.lnch .ltv__progress-row {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lnch .ltv__prog-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lnch .ltv__prog-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.lnch .ltv__prog-name {
  font-size: 13px;
  line-height: 1.5;
  color: #F5FBFB;
}

.lnch .ltv__prog-pct {
  font-size: 13px;
  line-height: 1.5;
  color: #05BAE9;
}

.lnch .ltv__prog-track {
  height: 4px;
  background: rgba(245, 251, 251, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.lnch .ltv__prog-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── SECTION 4: THE GAP ── */
.lnch .gap-sec {
  padding: 56px 0 80px;
  background: #F5FBFB;
}

.lnch .gap-sec__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
}

.lnch .gap-sec__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}

.lnch .gap-sec__icon-pair {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lnch .gap-sec__icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(5, 186, 233, 0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.lnch .gap-sec__icon svg {
  width: 14px;
  height: 14px;
}

.lnch .gap-sec__h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0;
  text-shadow: 1px 1px 4px rgba(29, 34, 39, 0.06);
  flex: 1 1 0;
  min-width: 0;
}

.lnch .gap-sec__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.lnch .gap-sec__col-a {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lnch .gap-sec__col-b {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.lnch .gap-sec__card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 3px 6px 0 rgba(29, 34, 39, 0.05);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lnch .gap-sec__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  border-radius: 4px 0 0 4px;
}

.lnch .gap-sec__card:hover {
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
}

.lnch .gap-sec__card-h {
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}

.lnch .gap-sec__card-p {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  margin: 0;
}

.lnch .gap-sec__img-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  position: relative;
}

.lnch .gap-sec__img-card img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
  animation: imgFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.1s;
}

.lnch .gap-sec__link-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
}

.lnch .gap-sec__cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #05BAE9;
  text-decoration: none;
  border-bottom: 1px solid rgba(5, 186, 233, 0.35);
  padding-bottom: 4px;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.lnch .gap-sec__cta:hover {
  border-color: #05BAE9;
  color: #1D2227;
}

.lnch .gap-sec__cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ── DIVIDERS ── */
.lnch .div-diag {
  width: 100%;
  height: 2px;
  background: linear-gradient(323deg, transparent 0%, #05BAE9 40%, #1D2227 70%, transparent 100%);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  .lnch .tb__img-col {
    width: 380px;
  }

  .lnch .tb__h1 {
    font-size: 52px;
  }

  .lnch .ltv__layout {
    grid-template-columns: 140px 1fr 140px;
  }
}

@media (max-width: 768px) {
  .lnch .tb__inner {
    flex-direction: column;
    gap: 28px;
  }

  .lnch .tb__img-col {
    width: 100%;
  }

  .lnch .tb__img-frame img {
    height: 280px;
  }

  .lnch .tb__h1 {
    font-size: 38px;
  }

  .lnch .appr__top {
    flex-direction: column;
    gap: 28px;
  }

  .lnch .appr__top-img {
    width: 100%;
  }

  .lnch .appr__steps {
    grid-template-columns: 1fr;
  }

  .lnch .ltv__layout {
    grid-template-columns: 1fr;
  }

  .lnch .ltv__sidebar {
    flex-direction: row;
    padding-top: 0;
  }

  .lnch .ltv__sidebar--right {
    padding-top: 0;
  }

  .lnch .ltv__stat {
    flex: 1 1 0;
  }

  .lnch .gap-sec__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .lnch .gap-sec__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .lnch .tb {
    padding: 56px 0 28px;
  }

  .lnch .tb__h1 {
    font-size: 38px;
  }

  .lnch .appr__h2,
  .lnch .ltv__h2,
  .lnch .gap-sec__h2 {
    font-size: 38px;
  }

  .lnch .ltv__sidebar {
    flex-direction: column;
  }

  .lnch .tb__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ctus {
  background-color: #F5FBFB;
  overflow-x: clip;
  position: relative;
}

.ctus__strip {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  position: relative;
}

.ctus__strip-frame {
  position: relative;
  border-top: 1px solid #05BAE9;
  border-bottom: 1px solid #05BAE9;
  overflow: hidden;
}

.ctus__strip-frame::before,
.ctus__strip-frame::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  pointer-events: none;
}

.ctus__strip-frame::before {
  top: 4px;
}

.ctus__strip-frame::after {
  bottom: 4px;
}

.ctus__strip-visual {
  flex: 0 0 260px;
  height: 180px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  filter: grayscale(1);
  background: linear-gradient(323deg, #1D2227 0%, #2d3a42 60%, #05BAE9 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
}

.ctus__strip-visual-shape {
  width: 80px;
  height: 80px;
  border-radius: 36px;
  border: 2px solid rgba(245, 251, 251, 0.18);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus__strip-visual-shape::before {
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 22px;
  background: rgba(245, 251, 251, 0.12);
  display: block;
}

.ctus__strip-visual-line {
  width: 60px;
  height: 1px;
  background: rgba(245, 251, 251, 0.25);
  margin-top: 16px;
}

.ctus__strip-text {
  flex: 1 1 auto;
}

.ctus__strip-label {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #05BAE9;
  margin-bottom: 8px;
  display: block;
}

.ctus__strip-heading {
  font-size: 52px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 8px rgba(29, 34, 39, 0.08);
}

.ctus__strip-heading--grad {
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ctus__strip-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  max-width: 520px;
}

.ctus__divider-chevron {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  line-height: 0;
  background: #F5FBFB;
}

.ctus__divider-chevron svg {
  display: block;
}

.ctus__form-area {
  background: #ffffff;
  animation: ctus-brightness-pulse 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  position: relative;
}

@keyframes ctus-brightness-pulse {

  0%,
  100% {
    background-color: #ffffff;
  }

  50% {
    background-color: #f0fafc;
  }
}

.ctus__form-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.ctus__contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ctus__contact-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0 0 8px 0;
  text-shadow: 1px 1px 0 rgba(5, 186, 233, 0.15);
}

.ctus__contact-intro {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  max-width: 380px;
}

.ctus__contact-intro--narrow {
  max-width: 300px;
}

.ctus__info-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctus__info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid rgba(5, 186, 233, 0.18);
  border-left: 3px solid #05BAE9;
  background: #F5FBFB;
  box-shadow: 0 3px 6px 0 rgba(5, 186, 233, 0.05);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus__info-item:hover {
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  transform: translateY(-2px);
}

.ctus__info-icon {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 4px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus__info-icon svg {
  display: block;
}

.ctus__info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctus__info-label {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #05BAE9;
}

.ctus__info-value {
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus__info-value:hover {
  color: #05BAE9;
}

.ctus__form-card {
  background: #F5FBFB;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 48px 0 rgba(29, 34, 39, 0.10);
  position: relative;
  overflow: hidden;
}

.ctus__form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  border-radius: 22px 22px 0 0;
  pointer-events: none;
}

.ctus__form-heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0 0 8px 0;
  text-shadow: 1px 1px 0 rgba(5, 186, 233, 0.12);
}

.ctus__form-subtext {
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  margin-bottom: 28px;
}

.ctus__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctus__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ctus__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctus__field--full {
  grid-column: 1 / -1;
}

.ctus__field-label {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1D2227;
}

.ctus__field-input {
  padding: 16px;
  border-radius: 4px;
  border: 1px solid rgba(29, 34, 39, 0.2);
  background: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.0, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
}

.ctus__field-input::placeholder {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(29, 34, 39, 0.4);
  font-size: 13px;
}

.ctus__field-input:focus {
  outline: none;
  border-color: #05BAE9;
  box-shadow: 0 0 0 3px rgba(5, 186, 233, 0.12);
}

.ctus__radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus__radio-group-label {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1D2227;
  margin-bottom: 4px;
  display: block;
}

.ctus__radio-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus__radio-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid rgba(29, 34, 39, 0.15);
  background: #ffffff;
  transition: border-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus__radio-opt:hover {
  border-color: #05BAE9;
  background: rgba(5, 186, 233, 0.04);
}

.ctus__radio-input {
  width: 16px;
  height: 16px;
  accent-color: #05BAE9;
  cursor: pointer;
  flex-shrink: 0;
}

.ctus__radio-input:focus {
  outline: 2px solid #05BAE9;
  outline-offset: 2px;
}

.ctus__radio-text {
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
}

.ctus__privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  border-radius: 4px;
  background: rgba(5, 186, 233, 0.05);
  border: 1px solid rgba(5, 186, 233, 0.15);
}

.ctus__privacy-check {
  width: 16px;
  height: 16px;
  accent-color: #05BAE9;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.ctus__privacy-check:focus {
  outline: 2px solid #05BAE9;
  outline-offset: 2px;
}

.ctus__privacy-text {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
}

.ctus__privacy-link {
  color: #05BAE9;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus__privacy-link:hover {
  color: #1D2227;
}

.ctus__submit-btn {
  position: relative;
  padding: 16px 28px;
  border-radius: 4px;
  border: none;
  background: linear-gradient(323deg, #05BAE9 0%, #1D2227 100%);
  color: #F5FBFB;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  align-self: flex-start;
}

.ctus__submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, #1D2227 0%, #05BAE9 100%);
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.ctus__submit-btn:hover::before {
  opacity: 1;
}

.ctus__submit-btn:hover {
  box-shadow: 0 10px 48px 0 rgba(5, 186, 233, 0.10);
}

.ctus__submit-btn:active {
  box-shadow: inset 0 2px 6px 0 rgba(29, 34, 39, 0.18);
}

.ctus__submit-btn:focus {
  outline: 2px solid #05BAE9;
  outline-offset: 3px;
}

.ctus__submit-label {
  position: relative;
  z-index: 1;
}

.ctus__submit-arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #F5FBFB;
  vertical-align: middle;
  transition: width 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus__submit-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #F5FBFB;
  border-top: 1.5px solid #F5FBFB;
  transform: rotate(45deg);
}

.ctus__submit-btn:hover .ctus__submit-arrow {
  width: 24px;
}

@media (max-width: 768px) {
  .ctus__strip {
    flex-direction: column;
    gap: 28px;
    padding: 28px 16px;
  }

  .ctus__strip-visual {
    flex: 0 0 auto;
    width: 100%;
    height: 100px;
  }

  .ctus__strip-heading {
    font-size: 38px;
  }

  .ctus__form-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px;
  }

  .ctus__field-row {
    grid-template-columns: 1fr;
  }

  .ctus__contact-intro {
    max-width: 100%;
  }

  .ctus__contact-intro--narrow {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .ctus__strip-heading {
    font-size: 38px;
  }

  .ctus__form-heading {
    font-size: 38px;
  }

  .ctus__form-card {
    padding: 16px;
  }

  .ctus__radio-options {
    gap: 8px;
  }
}

@media (min-width: 1280px) {
  .ctus__strip {
    padding: 56px 56px;
  }

  .ctus__form-inner {
    padding: 56px 56px;
  }
}

.abt-us {
  max-width: 100%;
  overflow-x: hidden;
}

.abt-us .ph-row {
  margin-bottom: 0;
}

/* ===================== SECTION 1: TITLE BLOCK ===================== */
.abt-us .title-blk {
  background-color: #1D2227;
  padding-top: 56px;
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}

.abt-us .title-blk__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 28px 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 56px;
}

.abt-us .title-blk__left {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.abt-us .title-blk__label {
  font-size: 13px;
  line-height: 1.5;
  color: #05BAE9;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.abt-us .title-blk__h1 {
  font-size: 66px;
  line-height: 1.2;
  color: #F5FBFB;
  margin: 0;
  text-shadow: 2px 3px 0px rgba(5, 186, 233, 0.18), 0 7px 22px rgba(5, 186, 233, 0.09);
}

.abt-us .title-blk__h1 span {
  font-size: 52px;
  display: block;
  color: #05BAE9;
  line-height: 1.2;
}

.abt-us .title-blk__theses {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.abt-us .title-blk__thesis {
  font-size: 13px;
  line-height: 1.75;
  color: #F5FBFB;
  opacity: 0.82;
  margin: 0;
  padding: 0;
}

.abt-us .title-blk__thesis--wide {
  max-width: 100%;
}

.abt-us .title-blk__thesis--narrow {
  max-width: 72%;
}

.abt-us .title-blk__right {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.abt-us .title-blk__img-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.abt-us .title-blk__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  filter: sepia(0.28) contrast(1.08) brightness(0.93) saturate(0.85);
  transform: scale(1);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.18s cubic-bezier(0.0, 0, 0.2, 1);
}

.abt-us .title-blk__img.loaded {
  opacity: 1;
}

.abt-us .title-blk__img-meta {
  font-size: 13px;
  line-height: 1.5;
  color: #05BAE9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}

/* ===================== SECTION 2: ABOUT BODY ===================== */
.abt-us .abt-body {
  background: linear-gradient(323deg, #05BAE9 0%, #F5FBFB 60%, #ffffff 100%);
  padding: 56px 0;
}

.abt-us .abt-body__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.abt-us .abt-body__left {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.abt-us .abt-body__right {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.abt-us .abt-body__heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0;
  text-shadow: 1px 2px 0px rgba(5, 186, 233, 0.14);
}

.abt-us .abt-body__p {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  margin: 0;
}

.abt-us .abt-body__p--wide {
  max-width: 100%;
}

.abt-us .abt-body__p--narrow {
  max-width: 75%;
}

/* Team cards with flip animation */
.abt-us .team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.abt-us .team-card {
  perspective: 900px;
  height: 340px;
}

.abt-us .team-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: card-flip-in 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.abt-us .team-card:nth-child(1) .team-card__inner {
  animation-delay: 0.08s;
}

.abt-us .team-card:nth-child(2) .team-card__inner {
  animation-delay: 0.22s;
}

.abt-us .team-card:nth-child(3) .team-card__inner {
  animation-delay: 0.36s;
}

.abt-us .team-card:nth-child(4) .team-card__inner {
  animation-delay: 0.50s;
}

@keyframes card-flip-in {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }

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

.abt-us .team-card__face {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: hidden;
  backface-visibility: hidden;
  box-shadow: 0 7px 22px 0 rgba(29, 34, 39, 0.09);
}

.abt-us .team-card__face--front {
  background: #1D2227;
}

.abt-us .team-card__face--front img {
  width: 100%;
  height: 72%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.abt-us .team-card__face--front img.loaded {
  opacity: 1;
}

.abt-us .team-card__name-area {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-us .team-card__name {
  font-size: 13px;
  line-height: 1.5;
  color: #F5FBFB;
  font-weight: 700;
  margin: 0;
}

.abt-us .team-card__role {
  font-size: 13px;
  line-height: 1.5;
  color: #05BAE9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

/* Accent labels on right column */
.abt-us .abt-body__accent-box {
  background: #1D2227;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 48px 0 rgba(29, 34, 39, 0.10);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.abt-us .abt-body__accent-box::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  border: 1.5px solid rgba(5, 186, 233, 0.18);
  border-radius: 4px;
  pointer-events: none;
}

.abt-us .abt-body__accent-box::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 76px;
  height: 76px;
  border: 1.5px solid rgba(5, 186, 233, 0.09);
  border-radius: 4px;
  pointer-events: none;
}

.abt-us .abt-body__accent-label {
  font-size: 13px;
  line-height: 1.5;
  color: #05BAE9;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.abt-us .abt-body__accent-stat {
  font-size: 52px;
  line-height: 1.2;
  color: #F5FBFB;
  margin: 0;
  text-shadow: 0 3px 6px rgba(5, 186, 233, 0.05);
}

.abt-us .abt-body__accent-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #F5FBFB;
  opacity: 0.72;
  margin: 0;
}

/* Contrast block - before/after structure */
.abt-us .contrast-blk {
  display: flex;
  flex-direction: row;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 10px 48px 0 rgba(5, 186, 233, 0.10);
  min-height: 180px;
}

.abt-us .contrast-blk__before {
  flex: 1 1 50%;
  background: #F5FBFB;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 2px solid rgba(5, 186, 233, 0.18);
}

.abt-us .contrast-blk__after {
  flex: 1 1 50%;
  background: #05BAE9;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-us .contrast-blk__tag {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.abt-us .contrast-blk__tag--before {
  color: #1D2227;
  opacity: 0.5;
}

.abt-us .contrast-blk__tag--after {
  color: #1D2227;
  opacity: 0.72;
}

.abt-us .contrast-blk__text {
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.abt-us .contrast-blk__text--before {
  color: #1D2227;
  opacity: 0.7;
}

.abt-us .contrast-blk__text--after {
  color: #1D2227;
}

/* Mesh accent image block */
.abt-us .img-accent-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  position: relative;
}

.abt-us .img-accent-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.abt-us .img-accent-wrap img.loaded {
  opacity: 1;
}

.abt-us .img-accent-wrap:hover img {
  transform: scale(1.04);
}

/* Values list */
.abt-us .vals-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.abt-us .vals-list__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 4px;
  border-top: 2px solid #05BAE9;
  border-left: 2px solid rgba(5, 186, 233, 0.18);
  box-shadow: 0 3px 6px 0 rgba(29, 34, 39, 0.05);
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt-us .vals-list__item:hover {
  box-shadow: 0 7px 22px 0 rgba(29, 34, 39, 0.09);
  background: #ffffff;
}

.abt-us .vals-list__num {
  font-size: 38px;
  line-height: 1.2;
  color: #05BAE9;
  font-weight: 700;
  flex-shrink: 0;
  min-width: 44px;
  text-shadow: 0 3px 6px rgba(5, 186, 233, 0.05);
}

.abt-us .vals-list__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-us .vals-list__name {
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.abt-us .vals-list__desc {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  margin: 0;
  opacity: 0.82;
}

/* CTA link */
.abt-us .abt-cta-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 4px;
  background: #1D2227;
  color: #F5FBFB;
  position: relative;
  overflow: hidden;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 6px 0 rgba(29, 34, 39, 0.05);
  align-self: flex-start;
}

.abt-us .abt-cta-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, #05BAE9 0%, #1D2227 100%);
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.abt-us .abt-cta-link:hover::before {
  opacity: 1;
}

.abt-us .abt-cta-link:hover {
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
}

.abt-us .abt-cta-link:focus {
  outline: 2px solid #05BAE9;
  outline-offset: 2px;
}

.abt-us .abt-cta-link:active {
  box-shadow: inset 0 2px 6px 0 rgba(29, 34, 39, 0.18);
}

.abt-us .abt-cta-link__txt {
  position: relative;
  z-index: 1;
}

.abt-us .abt-cta-link__arrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.abt-us .abt-cta-link__arrow svg {
  display: block;
}

/* Mesh gradient section accent */
.abt-us .mesh-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: stretch;
}

.abt-us .mesh-panel {
  flex: 1 1 50%;
  border-radius: 36px;
  background: linear-gradient(323deg, rgba(5, 186, 233, 0.18) 0%, rgba(245, 251, 251, 0.6) 50%, rgba(29, 34, 39, 0.08) 100%);
  padding: 28px;
  box-shadow: 0 3px 6px 0 rgba(5, 186, 233, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abt-us .mesh-panel__heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0;
  text-shadow: 1px 1px 0px rgba(5, 186, 233, 0.12);
}

.abt-us .mesh-panel__p {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .abt-us .title-blk__inner {
    flex-direction: column;
    gap: 28px;
    padding: 28px 16px 16px;
  }

  .abt-us .title-blk__h1 {
    font-size: 38px;
  }

  .abt-us .title-blk__h1 span {
    font-size: 38px;
  }

  .abt-us .title-blk__right {
    flex: 0 0 auto;
    width: 100%;
    align-items: flex-start;
  }

  .abt-us .title-blk__img-wrap {
    max-width: 100%;
    aspect-ratio: 4/3;
  }

  .abt-us .abt-body__inner {
    flex-direction: column;
    gap: 28px;
    padding: 0 16px;
  }

  .abt-us .abt-body__right {
    flex: 0 0 auto;
    width: 100%;
  }

  .abt-us .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-us .contrast-blk {
    flex-direction: column;
    border-radius: 22px;
  }

  .abt-us .contrast-blk__before {
    border-right: none;
    border-bottom: 2px solid rgba(5, 186, 233, 0.18);
  }

  .abt-us .mesh-row {
    flex-direction: column;
  }

  .abt-us .title-blk__thesis--narrow {
    max-width: 100%;
  }

  .abt-us .abt-body__p--narrow {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .abt-us .team-grid {
    grid-template-columns: 1fr;
  }

  .abt-us .title-blk__h1 {
    font-size: 38px;
  }

  .abt-us .abt-body__heading {
    font-size: 38px;
  }
}

@media (min-width: 1280px) {
  .abt-us .title-blk__inner {
    padding: 56px 56px 28px;
  }

  .abt-us .abt-body__inner {
    padding: 0 56px;
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 16px;
  background-color: #F5FBFB;
}

.success-page .success-page__card {
  background: #ffffff;
  border-radius: 36px;
  box-shadow: 0 10px 48px 0 rgba(5, 186, 233, 0.10);
  padding: 56px;
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.success-page .success-page__icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  border-radius: 22px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.success-page .success-page__icon-wrap svg {
  display: block;
}

.success-page .success-page__heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1D2227;
  margin: 0 0 16px;
  text-shadow: 0 2px 6px rgba(5, 186, 233, 0.10);
}

.success-page .success-page__text {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  margin: 0 0 28px;
  opacity: 0.82;
}

.success-page .success-page__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  border-radius: 4px;
  margin: 0 auto 28px;
}

.success-page .success-page__detail {
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  margin: 0 0 28px;
  opacity: 0.65;
}

.success-page .success-page__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #ffffff;
  background: #1D2227;
  border: none;
  border-radius: 4px;
  padding: 16px 28px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  box-shadow: 0 3px 6px 0 rgba(29, 34, 39, 0.05);
}

.success-page .success-page__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.success-page .success-page__btn:hover::before {
  opacity: 1;
}

.success-page .success-page__btn:hover {
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
}

.success-page .success-page__btn:active {
  box-shadow: inset 0 2px 6px 0 rgba(29, 34, 39, 0.15);
}

.success-page .success-page__btn-label {
  position: relative;
  z-index: 1;
}

.success-page .success-page__btn-arrow {
  position: relative;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
}

.success-page .success-page__btn-arrow svg {
  display: block;
}

@media (max-width: 480px) {
  .success-page .success-page__card {
    padding: 28px 16px;
    border-radius: 22px;
  }

  .success-page .success-page__heading {
    font-size: 38px;
  }
}

.page-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 28px;
  background-color: #F5FBFB;
  overflow: hidden;
}

.page-404 .err__wrapper {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.page-404 .err__code-block {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-404 .err__code-block::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 36px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  opacity: 0.07;
  transform: rotate(18deg);
}

.page-404 .err__code-text {
  font-size: 66px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -2px;
  color: #1D2227;
  text-shadow: 2px 3px 0px rgba(5, 186, 233, 0.18);
  position: relative;
  z-index: 1;
  user-select: none;
}

.page-404 .err__code-text span {
  color: #05BAE9;
}

.page-404 .err__divider {
  width: 56px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
}

.page-404 .err__heading {
  font-size: 38px;
  line-height: 1.2;
  color: #1D2227;
  text-align: center;
  font-weight: 700;
  text-shadow: 1px 2px 0px rgba(5, 186, 233, 0.10);
  margin: 0;
  max-width: 520px;
}

.page-404 .err__desc {
  font-size: 13px;
  line-height: 1.75;
  color: #1D2227;
  text-align: center;
  max-width: 420px;
  opacity: 0.78;
  margin: 0;
}

.page-404 .err__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.page-404 .err__btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5FBFB;
  background: linear-gradient(323deg, #1D2227 0%, #05BAE9 100%);
  background-size: 200% 200%;
  background-position: 0% 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 7px 22px 0 rgba(5, 186, 233, 0.09);
  transition: background-position 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline-offset: 3px;
}

.page-404 .err__btn--primary:hover {
  background-position: 100% 0%;
  box-shadow: 0 10px 48px 0 rgba(5, 186, 233, 0.10);
}

.page-404 .err__btn--primary:focus-visible {
  outline: 2px solid #05BAE9;
}

.page-404 .err__btn--primary:active {
  box-shadow: inset 0 2px 6px 0 rgba(29, 34, 39, 0.18);
}

.page-404 .err__btn--primary .err__btn-arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.page-404 .err__btn--secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1D2227;
  background: transparent;
  border: 2px solid rgba(29, 34, 39, 0.18);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline-offset: 3px;
}

.page-404 .err__btn--secondary:hover {
  border-color: #05BAE9;
  color: #05BAE9;
}

.page-404 .err__btn--secondary:focus-visible {
  outline: 2px solid #05BAE9;
}

.page-404 .err__btn--secondary:active {
  box-shadow: inset 0 2px 4px 0 rgba(5, 186, 233, 0.09);
}

.page-404 .err__deco {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 4px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(29, 34, 39, 0.07);
  margin-top: 8px;
}

.page-404 .err__deco-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 38%;
  border-radius: 4px;
  background: linear-gradient(323deg, #05BAE9, #1D2227);
  opacity: 0.55;
}

.page-404 .err__note {
  font-size: 13px;
  line-height: 1.5;
  color: #1D2227;
  opacity: 0.5;
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .page-404 {
    padding: 56px 16px;
  }

  .page-404 .err__code-text {
    font-size: 52px;
  }

  .page-404 .err__heading {
    font-size: 38px;
  }

  .page-404 .err__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-404 .err__btn--primary,
  .page-404 .err__btn--secondary {
    justify-content: center;
  }
}