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

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

html,
body {
  margin: 0
}

body {
  position: relative;
  min-height: 100vh;
  font-family: "Cabin", sans-serif
}

.nav-strip {
  background: #2b3235;
  border-bottom: 1px solid #525C60
}

.nav-strip-pod {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

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

.nav-links li a {
  display: block;
  padding: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #c8d4d6;
  text-decoration: none;
  letter-spacing: .02em;
  border-bottom: 2px solid transparent;
  transition: color .18s ease-out, border-color .18s ease-out;
  min-height: 44px;
  line-height: 1.15
}

.nav-links li a:hover,
.nav-links li a:focus {
  color: #A0BE95;
  border-bottom-color: #A0BE95;
  outline: none;
  background: #a0be950f
}

.nav-links li a:focus {
  border-color: #A0BE95;
  background: #a0be951a
}

.region-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #8D8D8D;
  padding: 8px 0
}

.region-tag svg {
  flex-shrink: 0
}

.brand-strip {
  background: linear-gradient(135deg, #1e2628 0%, #2b3235 60%, #313d3f 100%);
  border-bottom: 2px solid #525C60;
  box-shadow: 0 6px 25px 0 #525c601c
}

.brand-pod {
  max-width: 1170px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 24px
}

.logo-cell {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #525C60;
  box-shadow: 0 1px 4px 0 #525c600d 0 6px 25px 0 #525c601c;
  border-radius: 9px;
  padding: 8px;
  background: #ffffff0a;
  width: 96px;
  height: 96px
}

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

.brand-text-deck {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #dde6e8;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0
}

.brand-name span {
  color: #A0BE95
}

.brand-sub {
  font-size: 15px;
  color: #8D8D8D;
  line-height: 1.4;
  margin: 0;
  font-weight: 400
}

.brand-accent-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #A0BE95, #525C60);
  border-radius: 4px
}

@media (max-width: 600px) {
  .brand-pod {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px
  }

  .nav-strip-pod {
    padding: 0 16px
  }

  .nav-links li a {
    padding: 12px 8px;
    font-size: 15px
  }

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

@media (max-width: 900px) {
  .brand-name {
    font-size: 22px
  }
}

.site-footer {
  background: linear-gradient(180deg, #1e2628 0%, #181e20 100%);
  border-top: 2px solid #525C60;
  padding: 48px 0 0
}

.footer-deck {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px
}

.footer-flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px
}

.footer-brand-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px
}

.footer-logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #525C60;
  box-shadow: 0 1px 4px 0 #525c600d 0 8px 60px 0 #525c601c;
  border-radius: 15px;
  padding: 8px;
  background: #ffffff08;
  width: 88px;
  height: 88px
}

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

.footer-brand-name {
  font-size: 22px;
  font-weight: 700;
  color: #dde6e8;
  letter-spacing: -.01em;
  line-height: 1.15;
  text-align: center
}

.footer-brand-name span {
  color: #A0BE95
}

.footer-copy {
  font-size: 15px;
  color: #8D8D8D;
  text-align: center;
  line-height: 1.4
}

.footer-script-accent {
  font-size: 22px;
  color: #A0BE95;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .01em;
  text-align: center;
  line-height: 1.4;
  opacity: .82;
  font-family: Georgia, "Times New Roman", serif
}

.contact-card {
  background: #525c601a;
  border: 1px solid #525C60;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 1px 4px 0 #525c600d 0 6px 25px 0 #525c601c;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-card-head {
  font-size: 18px;
  font-weight: 700;
  color: #dde6e8;
  line-height: 1.15;
  padding-bottom: 8px;
  border-bottom: 1px solid #525C60
}

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

.contact-row svg {
  flex-shrink: 0;
  margin-top: 2px
}

.contact-label {
  font-size: 15px;
  color: #8D8D8D;
  line-height: 1.4
}

.contact-val {
  font-size: 15px;
  color: #c8d4d6;
  line-height: 1.4;
  text-decoration: none;
  transition: color .18s ease-out
}

.contact-val:hover,
.contact-val:focus {
  color: #A0BE95;
  outline: none
}

.contact-val:focus {
  background: #a0be9514
}

.contact-addr {
  font-size: 15px;
  color: #c8d4d6;
  line-height: 1.6
}

.msg-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.msg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 26px;
  border: 1px solid #525C60;
  font-size: 15px;
  color: #c8d4d6;
  text-decoration: none;
  transition: border-color .2s ease-out, color .2s ease-out, background .2s ease-out;
  min-height: 44px
}

.msg-link:hover,
.msg-link:focus {
  border-color: #A0BE95;
  color: #A0BE95;
  background: #a0be9512;
  outline: none
}

.footer-policy-cell {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.policy-head {
  font-size: 18px;
  font-weight: 700;
  color: #dde6e8;
  line-height: 1.15;
  padding-bottom: 8px;
  border-bottom: 1px solid #525C60
}

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

.policy-links li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #8D8D8D;
  text-decoration: none;
  line-height: 1.4;
  transition: color .18s ease-out;
  min-height: 44px;
  padding: 8px 0
}

.policy-links li a:hover,
.policy-links li a:focus {
  color: #A0BE95;
  outline: none
}

.policy-links li a:focus {
  background: #a0be950f
}

.policy-divider {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: #525C60;
  flex-shrink: 0
}

.footer-bottom-bar {
  border-top: 1px solid #525C60;
  padding: 16px 24px;
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap
}

.footer-bottom-copy {
  font-size: 15px;
  color: #525C60;
  line-height: 1.4
}

.cookie-policy-ref {
  font-size: 15px;
  color: #525C60;
  text-decoration: none;
  transition: color .18s ease-out
}

.cookie-policy-ref:hover,
.cookie-policy-ref:focus {
  color: #8D8D8D;
  outline: none
}

@media (max-width: 900px) {
  .footer-flow {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .footer-brand-cell {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px
  }

  .footer-script-accent {
    text-align: left
  }

  .footer-brand-name {
    text-align: left
  }

  .footer-copy {
    text-align: left
  }
}

@media (max-width: 600px) {
  .footer-flow {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-brand-cell {
    flex-direction: column;
    align-items: flex-start
  }

  .footer-deck {
    padding: 0 16px
  }

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

.doc-content {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #d4d8d9;
  line-height: 1.6;
  font-size: 18px
}

.doc-content em,
.doc-content i {
  color: #A0BE95;
  font-style: italic
}

.doc-content a {
  color: #A0BE95;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .15s ease-out, text-decoration-color .15s ease-out
}

.doc-content a:hover {
  color: #c2d9bc;
  text-decoration-color: transparent
}

.doc-content a:visited {
  color: #8faa85
}

.doc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.4;
  box-shadow: 0 1px 4px 0 #525c600d 0 6px 25px 0 #525c601c;
  border-radius: 9px;
  overflow: hidden
}

.doc-content thead {
  background-color: #2e3638
}

.doc-content thead th {
  color: #A0BE95;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #a0be952e
}

.doc-content tbody tr {
  border-bottom: 1px solid #8d8d8d1a;
  transition: background-color .18s ease
}

.doc-content tbody tr:last-child {
  border-bottom: none
}

.doc-content tbody tr:hover {
  background-color: #525c602e
}

.doc-content td {
  padding: 16px;
  color: #c8cccd;
  vertical-align: top;
  line-height: 1.6
}

.doc-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a0be954d 20%, #8d8d8d40 50%, #a0be954d 80%, transparent);
  margin: 48px 0
}

.doc-content div {
  margin: 8px 0
}

@media (max-width: 600px) {
  .doc-content {
    padding: 24px 16px;
    font-size: 15px
  }

  .doc-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .doc-content thead th,
  .doc-content td {
    padding: 8px
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .doc-content {
    padding: 48px 24px
  }
}

.ptl {
  background: #181c1e;
  color: #d8dfe0;
  overflow-x: hidden
}

.ptl .mf {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.ptl .decl {
  position: relative;
  padding: 96px 24px 80px;
  background: #0f1315
}

.ptl .decl-bg {
  position: absolute;
  inset: 0;
  background: url(./visual_archive/source-revised-pics.jpg) center/cover no-repeat;
  opacity: .18
}

.ptl .decl-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, #a0be9521 0%, transparent 68%)
}

.ptl .decl-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, #0f1315 85%)
}

.ptl .decl-body {
  position: relative;
  max-width: 1170px;
  margin: 0 auto
}

.ptl .decl-quote-mark {
  font-size: 220px;
  line-height: 1.15;
  color: #525C60;
  opacity: .09;
  position: absolute;
  top: -48px;
  left: -16px;
  pointer-events: none;
  user-select: none;
  font-style: normal
}

.ptl .decl-text {
  position: relative;
  max-width: 680px;
  padding-left: 8px
}

.ptl .decl-label {
  font-size: 15px;
  letter-spacing: .12em;
  color: #A0BE95;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block
}

.ptl .decl-h1 {
  font-size: 68px;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #eef1f1;
  margin-bottom: 24px
}

.ptl .decl-h1 span {
  color: #A0BE95
}

.ptl .decl-p {
  font-size: 18px;
  line-height: 1.6;
  color: #9eaaac;
  max-width: 560px
}

.ptl .decl-rule {
  width: 48px;
  height: 2px;
  background: #A0BE95;
  margin: 24px 0;
  border-radius: 4px
}

.ptl .exp-arc {
  position: relative;
  background: #181c1e;
  padding: 0 24px 80px
}

.ptl .exp-arc::before {
  content: '';
  display: block;
  height: 48px;
  background: #0f1315;
  border-radius: 0 0 42px 42px;
  margin-bottom: 48px
}

.ptl .exp-grid {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.ptl .exp-tag {
  font-size: 15px;
  color: #A0BE95;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.ptl .exp-h2 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: #d8dfe0;
  margin-bottom: 16px
}

.ptl .exp-h2 strong {
  font-size: 68px;
  display: block;
  color: #eef1f1
}

.ptl .exp-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  margin-bottom: 48px
}

.ptl .exp-img-wrap {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 #525c601c
}

.ptl .exp-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block
}

.ptl .exp-timeline {
  position: relative;
  padding-left: 24px
}

.ptl .exp-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, #A0BE95 0%, #525C60 60%, transparent 100%);
  border-radius: 4px
}

.ptl .exp-step {
  position: relative;
  margin-bottom: 32px
}

.ptl .exp-step:last-child {
  margin-bottom: 0
}

.ptl .exp-dot {
  position: absolute;
  left: -31px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 42px;
  background: #181c1e;
  border: 2px solid #525C60;
  transition: border-color .2s ease-out, background .2s ease-out
}

.ptl .exp-step:hover .exp-dot {
  border-color: #A0BE95;
  background: #A0BE95
}

.ptl .exp-step-num {
  font-size: 15px;
  color: #525C60;
  letter-spacing: .06em;
  display: block;
  margin-bottom: 8px
}

.ptl .exp-step-h {
  font-size: 22px;
  line-height: 1.4;
  color: #d8dfe0;
  margin-bottom: 8px
}

.ptl .exp-step-p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D
}

.ptl .exp-status {
  display: inline-block;
  font-size: 15px;
  padding: 4px 12px;
  border-radius: 26px;
  margin-top: 8px;
  border: 1px solid #525C60;
  color: #A0BE95
}

.ptl .fit-band {
  background: #1a2022;
  padding: 80px 24px;
  position: relative
}

.ptl .fit-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #525C60 30%, #A0BE95 50%, #525C60 70%, transparent)
}

.ptl .fit-inner {
  max-width: 1170px;
  margin: 0 auto
}

.ptl .fit-header {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px
}

.ptl .fit-h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #eef1f1;
  max-width: 500px
}

.ptl .fit-note {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D;
  max-width: 280px
}

.ptl .fit-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px
}

.ptl .fit-card {
  background: #181c1e;
  border-radius: 15px;
  padding: 24px;
  border: 1px solid #252c2f;
  box-shadow: 0 1px 4px 0 #525c600d;
  transition: border-color .25s ease-out, box-shadow .25s ease-out;
  position: relative;
  overflow: hidden
}

.ptl .fit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #A0BE95, transparent);
  border-radius: 0 0 15px 15px;
  opacity: 0;
  transition: opacity .2s ease
}

.ptl .fit-card:hover {
  border-color: #525C60;
  box-shadow: 0 6px 25px 0 #525c601c
}

.ptl .fit-card:hover::after {
  opacity: 1
}

.ptl .fit-card.wide {
  grid-column: span 2
}

.ptl .fit-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px
}

.ptl .fit-card-icon svg {
  width: 32px;
  height: 32px
}

.ptl .fit-card-h {
  font-size: 18px;
  line-height: 1.4;
  color: #d8dfe0;
  margin-bottom: 8px
}

.ptl .fit-card-p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D
}

.ptl .fit-card-badge {
  display: inline-block;
  font-size: 15px;
  padding: 4px 12px;
  border-radius: 26px;
  background: #a0be951a;
  color: #A0BE95;
  border: 1px solid #a0be9540;
  margin-top: 8px
}

.ptl .fit-img-wrap {
  border-radius: 15px;
  overflow: hidden
}

.ptl .fit-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block
}

.ptl .ppl {
  background: #181c1e;
  padding: 80px 24px
}

.ptl .ppl-inner {
  max-width: 1170px;
  margin: 0 auto
}

.ptl .ppl-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start
}

.ptl .ppl-img-stack {
  position: relative
}

.ptl .ppl-img-main {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 60px 0 #525c601c
}

.ptl .ppl-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block
}

.ptl .ppl-img-accent {
  position: absolute;
  bottom: -24px;
  right: -16px;
  width: 180px;
  border-radius: 9px;
  overflow: hidden;
  border: 3px solid #181c1e;
  box-shadow: 0 6px 25px 0 #525c601c
}

.ptl .ppl-img-accent img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block
}

.ptl .ppl-text-col {
  padding-top: 8px
}

.ptl .ppl-tag {
  font-size: 15px;
  color: #A0BE95;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.ptl .ppl-h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #eef1f1;
  margin-bottom: 24px
}

.ptl .ppl-p {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  margin-bottom: 16px
}

.ptl .ppl-roster {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ptl .ppl-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #1a2022;
  border-radius: 9px;
  border: 1px solid #252c2f;
  transition: border-color .2s ease-out
}

.ptl .ppl-person:hover {
  border-color: #525C60
}

.ptl .ppl-avatar {
  width: 48px;
  height: 48px;
  border-radius: 42px;
  background: #252c2f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid #525C60
}

.ptl .ppl-avatar svg {
  width: 24px;
  height: 24px
}

.ptl .ppl-person-info {
  flex: 1
}

.ptl .ppl-person-name {
  font-size: 18px;
  color: #d8dfe0;
  line-height: 1.4
}

.ptl .ppl-person-role {
  font-size: 15px;
  color: #8D8D8D;
  line-height: 1.4
}

.ptl .ppl-counter {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #252c2f
}

.ptl .ppl-stat-num {
  font-size: 38px;
  line-height: 1.15;
  color: #A0BE95;
  letter-spacing: -.02em
}

.ptl .ppl-stat-label {
  font-size: 15px;
  color: #8D8D8D
}

.ptl .diff {
  background: #0f1315;
  padding: 80px 24px;
  position: relative
}

.ptl .diff::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #A0BE95 40%, #525C60 70%, transparent 100%)
}

.ptl .diff-inner {
  max-width: 1170px;
  margin: 0 auto
}

.ptl .diff-top {
  text-align: center;
  margin-bottom: 48px
}

.ptl .diff-h2 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: #eef1f1;
  margin-bottom: 16px
}

.ptl .diff-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  max-width: 520px;
  margin: 0 auto
}

.ptl .diff-num-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px
}

.ptl .diff-item {
  background: #141819;
  border: 1px solid #252c2f;
  border-radius: 15px;
  padding: 24px;
  position: relative;
  transition: border-color .18s ease-out
}

.ptl .diff-item:hover {
  border-color: #A0BE95
}

.ptl .diff-item-n {
  font-size: 68px;
  line-height: 1.15;
  color: #252c2f;
  letter-spacing: -.04em;
  position: absolute;
  top: 8px;
  right: 16px;
  font-weight: 700;
  pointer-events: none
}

.ptl .diff-item-h {
  font-size: 22px;
  line-height: 1.4;
  color: #d8dfe0;
  margin-bottom: 8px;
  position: relative
}

.ptl .diff-item-p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D;
  position: relative
}

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

.ptl .diff-img-box {
  border-radius: 15px;
  overflow: hidden;
  position: relative
}

.ptl .diff-img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block
}

.ptl .diff-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, #a0be952e 0%, transparent 60%);
  pointer-events: none
}

.ptl .diff-quote {
  background: #181c1e;
  border-radius: 9px;
  padding: 24px;
  border-left: 3px solid #A0BE95;
  border-top: 1px solid #252c2f;
  border-right: 1px solid #252c2f;
  border-bottom: 1px solid #252c2f
}

.ptl .diff-quote-text {
  font-size: 22px;
  line-height: 1.6;
  color: #A0BE95;
  font-style: italic
}

@keyframes icon-cycle {

  0%,
  20% {
    color: #A0BE95;
    transform: scale(1.18)
  }

  25%,
  100% {
    color: #525C60;
    transform: scale(1)
  }
}

.ptl .fit-card-icon.active svg path,
.ptl .fit-card-icon.active svg rect,
.ptl .fit-card-icon.active svg circle {
  stroke: #A0BE95
}

@keyframes trace-border {
  to {
    stroke-dashoffset: 0
  }
}

.ptl .diff-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: border-color .18s ease-out;
  pointer-events: none
}

.ptl .diff-item:hover::after {
  border-color: #a0be9566
}

@media (max-width: 1200px) {
  .ptl .decl-h1 {
    font-size: 52px
  }

  .ptl .diff-num-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 900px) {
  .ptl .exp-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .ptl .ppl-row {
    grid-template-columns: 1fr
  }

  .ptl .ppl-img-accent {
    display: none
  }

  .ptl .fit-mosaic {
    grid-template-columns: 1fr 1fr
  }

  .ptl .fit-card.wide {
    grid-column: span 2
  }

  .ptl .fit-header {
    flex-direction: column;
    align-items: flex-start
  }

  .ptl .diff-img-row {
    grid-template-columns: 1fr
  }

  .ptl .diff-num-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 600px) {
  .ptl .decl-h1 {
    font-size: 38px
  }

  .ptl .exp-h2 strong {
    font-size: 52px
  }

  .ptl .fit-mosaic {
    grid-template-columns: 1fr
  }

  .ptl .fit-card.wide {
    grid-column: span 1
  }

  .ptl .diff-num-grid {
    grid-template-columns: 1fr
  }

  .ptl .ppl-counter {
    flex-direction: column;
    gap: 16px
  }

  .ptl .diff-h2 {
    font-size: 38px
  }
}

.ct-us {
  background-color: #111416;
  min-height: 100vh;
  overflow: hidden
}

.ct-us .band-bg {
  position: relative;
  background: linear-gradient(128deg, #1a2022 0%, #111416 55%, #161c1e 100%);
  padding: 48px 0 0;
  overflow: hidden
}

.ct-us .band-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, #a0be9512 0%, transparent 60%);
  pointer-events: none
}

.ct-us .band-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #A0BE95 30%, #525C60 70%, transparent);
  opacity: .5
}

.ct-us .strip-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px
}

.ct-us .strip-text {
  flex: 0 0 420px;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}

.ct-us .strip-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(180deg, transparent, #525C60 30%, #A0BE95 60%, transparent);
  opacity: .4
}

.ct-us .corner-bracket {
  position: absolute;
  width: 24px;
  height: 24px
}

.ct-us .corner-bracket.tl {
  top: 0;
  left: 0;
  border-top: 2px solid #A0BE95;
  border-left: 2px solid #A0BE95
}

.ct-us .corner-bracket.br {
  bottom: 0;
  right: 24px;
  border-bottom: 2px solid #525C60;
  border-right: 2px solid #525C60
}

.ct-us .pg-label {
  font-size: 15px;
  color: #A0BE95;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.ct-us .pg-label-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #A0BE95;
  opacity: .7
}

.ct-us .pg-heading {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #e8ecea;
  margin: 0 0 24px
}

.ct-us .pg-heading .accent-dot {
  color: #A0BE95
}

.ct-us .pg-sub {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0 0 24px
}

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

.ct-us .contact-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px
}

.ct-us .c-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #525c602e;
  border: 1px solid #525c604d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.ct-us .c-icon svg {
  width: 16px;
  height: 16px
}

.ct-us .c-detail {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.ct-us .c-label {
  font-size: 15px;
  color: #525C60;
  text-transform: uppercase;
  letter-spacing: .08em
}

.ct-us .c-val {
  font-size: 18px;
  color: #d4d8d6;
  line-height: 1.4
}

.ct-us .c-val a {
  color: #d4d8d6;
  text-decoration: none;
  transition: color .18s ease-out
}

.ct-us .c-val a:hover {
  color: #A0BE95
}

.ct-us .msg-links {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 8px
}

.ct-us .msg-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9px;
  border: 1px solid #a0be9540;
  color: #A0BE95;
  font-size: 15px;
  text-decoration: none;
  background: #a0be950f;
  transition: background .2s ease, border-color .2s ease
}

.ct-us .msg-link:hover {
  background: #a0be9521;
  border-color: #a0be9580
}

.ct-us .strip-img {
  flex: 1;
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden
}

.ct-us .img-frame {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0
}

.ct-us .img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.4) brightness(0.45)
}

.ct-us .img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #111416 0%, transparent 40%, transparent 70%, #111416 100%), linear-gradient(180deg, transparent 40%, #111416 100%)
}

.ct-us .img-corner-tl {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #A0BE95;
  border-left: 2px solid #A0BE95;
  z-index: 2
}

.ct-us .img-corner-br {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #525C60;
  border-right: 2px solid #525C60;
  z-index: 2
}

.ct-us .form-panel {
  background: #111416;
  padding: 48px 0;
  position: relative
}

.ct-us .form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #525C60 40%, transparent);
  opacity: .4
}

@keyframes brightpulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .93
  }
}

.ct-us .form-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, #a0be950a 0%, transparent 55%);
  animation: brightpulse 7s ease-in-out infinite;
  pointer-events: none
}

.ct-us .form-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.ct-us .form-aside {
  padding: 48px 0
}

.ct-us .aside-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: #e8ecea;
  margin: 0 0 16px
}

.ct-us .aside-heading span {
  font-size: 52px;
  color: #A0BE95;
  display: block;
  letter-spacing: -.04em
}

.ct-us .aside-body {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0 0 24px
}

.ct-us .divider-dot {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin: 24px 0
}

.ct-us .divider-dot-line {
  height: 1px;
  width: 48px;
  background: #525C60;
  opacity: .5
}

.ct-us .divider-dot-circle {
  width: 5px;
  height: 5px;
  border-radius: 42px;
  background: #A0BE95;
  opacity: .7
}

.ct-us .step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0
}

.ct-us .step-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  position: relative
}

.ct-us .step-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 44px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, #525c6080, transparent)
}

.ct-us .step-num {
  width: 28px;
  height: 28px;
  border-radius: 42px;
  border: 1px solid #a0be9559;
  background: #a0be9514;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #A0BE95;
  flex-shrink: 0;
  margin-top: 2px
}

.ct-us .step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D
}

.ct-us .step-text strong {
  color: #d4d8d6;
  display: block;
  font-size: 18px;
  margin-bottom: 4px
}

.ct-us .form-box {
  background: #525c6014;
  border: 1px solid #525c6038;
  border-radius: 15px;
  padding: 48px;
  box-shadow: 0 8px 60px 0 #525c601c;
  position: relative;
  z-index: 1
}

.ct-us .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.ct-us .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px
}

.ct-us .form-field.full {
  grid-column: 1 / -1
}

.ct-us .f-label {
  font-size: 15px;
  color: #8D8D8D;
  text-transform: uppercase;
  letter-spacing: .09em
}

.ct-us .f-input {
  background: #111416b3;
  border: 1px solid #525c604d;
  border-radius: 9px;
  padding: 16px;
  font-size: 18px;
  color: #e8ecea;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px 0 #525c6014;
  transition: border-color .18s ease-out, box-shadow .18s ease-out;
  appearance: none
}

.ct-us .f-input::placeholder {
  color: #8d8d8d73;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .06em
}

.ct-us .f-input:focus {
  border-color: #a0be9580;
  box-shadow: inset 0 2px 4px 0 #525c6014 0 0 0 3px #a0be9514
}

.ct-us .f-select {
  background: #111416b3;
  border: 1px solid #525c604d;
  border-radius: 9px;
  padding: 16px;
  font-size: 18px;
  color: #e8ecea;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  box-shadow: inset 0 2px 4px 0 #525c6014;
  transition: border-color .18s ease-out;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23525C60' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer
}

.ct-us .f-select:focus {
  border-color: #a0be9580
}

.ct-us .f-select option {
  background: #1a2022;
  color: #e8ecea
}

.ct-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 8px
}

.ct-us .privacy-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: #A0BE95;
  cursor: pointer
}

.ct-us .privacy-text {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D
}

.ct-us .privacy-text a {
  color: #A0BE95;
  text-decoration: none;
  transition: color .15s ease
}

.ct-us .privacy-text a:hover {
  color: #d4d8d6
}

.ct-us .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(128deg, #A0BE95 0%, #7aaa6c 100%);
  color: #111416;
  border: none;
  border-radius: 9px;
  padding: 16px 48px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 6px 25px 0 #a0be952e;
  transition: opacity .18s ease-out, transform .15s ease-out, box-shadow .18s ease-out
}

.ct-us .submit-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 8px 60px 0 #a0be9538
}

.ct-us .submit-btn:active {
  transform: translateY(0);
  opacity: .95
}

.ct-us .submit-btn:focus-visible {
  outline: 2px solid #A0BE95;
  outline-offset: 3px
}

@media (max-width: 900px) {
  .ct-us .strip-inner {
    flex-direction: column;
    gap: 0
  }

  .ct-us .strip-text {
    flex: none;
    padding: 48px 0 24px
  }

  .ct-us .strip-text::after {
    display: none
  }

  .ct-us .strip-img {
    min-height: 220px
  }

  .ct-us .form-wrap {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ct-us .form-aside {
    padding: 24px 0 0
  }

  .ct-us .form-box {
    padding: 24px
  }
}

@media (max-width: 600px) {
  .ct-us .pg-heading {
    font-size: 38px
  }

  .ct-us .form-row {
    grid-template-columns: 1fr
  }

  .ct-us .msg-links {
    flex-direction: column
  }

  .ct-us .aside-heading span {
    font-size: 38px
  }
}

.abt-pg {
  background: #1b2224;
  color: #d4d8d9;
  overflow-x: clip
}

.abt-pg .abt-pg-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px
}

.abt-pg .title-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 72px
}

.abt-pg .title-text-col {
  position: relative;
  padding: 48px 48px 48px 0
}

.abt-pg .title-text-col .big-quote {
  position: absolute;
  top: 16px;
  left: -16px;
  font-size: 200px;
  line-height: 1.15;
  color: #A0BE95;
  opacity: .07;
  pointer-events: none;
  user-select: none;
  font-style: normal;
  display: block
}

.abt-pg .title-text-col .eyebrow {
  font-size: 15px;
  letter-spacing: .12em;
  color: #A0BE95;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block
}

.abt-pg .title-text-col h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #e8ecec;
  margin: 0 0 24px
}

.abt-pg .title-text-col h1 span {
  font-size: 68px;
  display: block;
  color: #A0BE95;
  line-height: 1.15
}

.abt-pg .title-text-col .lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  max-width: 440px
}

.abt-pg .title-img-col {
  position: relative
}

.abt-pg .img-clip-wrap {
  overflow: hidden;
  border-radius: 4px 42px 4px 42px;
  width: 100%;
  height: 480px;
  box-shadow: 0 8px 60px 0 #525c601c
}

.abt-pg .img-clip-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: transform .5s ease-out, filter .3s ease;
  display: block
}

.abt-pg .img-clip-wrap:hover img {
  transform: translateX(-4%) scale(1.04);
  filter: grayscale(60%)
}

.abt-pg .title-border-top {
  border-top: 1px solid #A0BE95;
  opacity: .3
}

.abt-pg .title-border-bottom {
  border-bottom: 1px solid #525C60;
  opacity: .4
}

.abt-pg .team-band {
  padding: 72px 0 80px;
  background: #212b2e;
  position: relative
}

.abt-pg .team-band::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 100%, #a0be950f 0%, transparent 60%);
  pointer-events: none
}

.abt-pg .team-band-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start
}

.abt-pg .team-label-col h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #e8ecec;
  letter-spacing: -.02em;
  margin: 0 0 16px
}

.abt-pg .team-label-col h2 em {
  font-style: normal;
  font-size: 52px;
  display: block;
  color: #A0BE95
}

.abt-pg .team-label-col .sub-note {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D
}

.abt-pg .team-cards-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.abt-pg .person-card {
  background: #1b2224;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 1px 4px 0 #525c600d 0 6px 25px 0 #525c601c;
  transition: box-shadow .2s ease-out, transform .2s ease-out;
  border-top: 2px solid #A0BE95;
  border-bottom: 2px solid #525C60
}

.abt-pg .person-card:hover {
  box-shadow: 0 8px 60px 0 #525c601c;
  transform: translateY(-4px)
}

.abt-pg .person-img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px 0 #525c600d
}

.abt-pg .person-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter .3s ease-out, transform .5s ease-out
}

.abt-pg .person-card:hover .person-img-wrap img {
  filter: grayscale(20%);
  transform: scale(1.06)
}

.abt-pg .person-card h5 {
  font-size: 18px;
  line-height: 1.4;
  color: #e8ecec;
  margin: 0 0 8px;
  letter-spacing: -.01em
}

.abt-pg .person-card .role-tag {
  font-size: 15px;
  color: #A0BE95;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.abt-pg .person-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0
}

.abt-pg .wave-divider {
  display: block;
  width: 100%;
  height: 24px;
  background-image: radial-gradient(circle, #525C60 1.5px, transparent 1.5px);
  background-size: 16px 8px;
  background-position: 0 0;
  opacity: .5;
  margin: 0
}

.abt-pg .approach-band {
  padding: 80px 0;
  position: relative
}

.abt-pg .approach-band .bg-tri {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none
}

.abt-pg .approach-band .bg-tri::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(60deg, #525c6012 1px, transparent 1px), linear-gradient(-60deg, #525c6012 1px, transparent 1px), linear-gradient(0deg, #525c600a 1px, transparent 1px);
  background-size: 48px 48px
}

.abt-pg .approach-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: center
}

.abt-pg .approach-text h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #e8ecec;
  letter-spacing: -.02em;
  margin: 0 0 16px
}

.abt-pg .approach-text h2 strong {
  font-size: 52px;
  display: block;
  color: #e8ecec
}

.abt-pg .approach-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0
}

.abt-pg .approach-img-wrap {
  border-radius: 26px 4px 26px 4px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 6px 25px 0 #525c601c
}

.abt-pg .approach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease-out
}

.abt-pg .approach-img-wrap:hover img {
  transform: translateY(-4%) scale(1.04)
}

.abt-pg .metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px
}

.abt-pg .metric-item {
  background: #212b2e;
  border-radius: 9px;
  padding: 24px;
  border-top: 1px solid #A0BE95;
  border-bottom: 1px solid #525C60;
  box-shadow: 0 1px 4px 0 #525c600d;
  text-align: center;
  transition: transform .2s ease
}

.abt-pg .metric-item:hover {
  transform: translateY(-3px)
}

.abt-pg .metric-item .met-num {
  font-size: 38px;
  line-height: 1.15;
  color: #A0BE95;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 8px
}

.abt-pg .metric-item .met-label {
  font-size: 15px;
  color: #8D8D8D;
  line-height: 1.4
}

.abt-pg .steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative
}

.abt-pg .steps-list::before {
  content: "";
  display: block;
  position: absolute;
  top: 28px;
  left: calc(16.67% + 8px);
  right: calc(16.67% + 8px);
  height: 1px;
  background: linear-gradient(90deg, #A0BE95, #525C60, #A0BE95);
  opacity: .4
}

.abt-pg .step-item {
  padding: 24px;
  background: #212b2e;
  border-radius: 15px;
  box-shadow: 0 1px 4px 0 #525c600d 0 6px 25px 0 #525c601c
}

.abt-pg .step-item .step-num {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  background: #A0BE95;
  color: #1b2224;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0
}

.abt-pg .step-item h5 {
  font-size: 18px;
  line-height: 1.4;
  color: #e8ecec;
  margin: 0 0 8px
}

.abt-pg .step-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0
}

.abt-pg .step-item:active {
  background: #2a3a2e;
  transition: background .1s ease-out
}

@keyframes warmcool {
  0% {
    background-color: #1b2224
  }

  33% {
    background-color: #1e2620
  }

  66% {
    background-color: #1b2228
  }

  100% {
    background-color: #1b2224
  }
}

.abt-pg {
  animation: warmcool 18s ease-in-out infinite
}

@media (max-width: 1200px) {
  .abt-pg .metrics-row {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 900px) {
  .abt-pg .title-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0
  }

  .abt-pg .title-text-col {
    padding: 24px 0
  }

  .abt-pg .title-text-col h1 span {
    font-size: 52px
  }

  .abt-pg .img-clip-wrap {
    height: 300px
  }

  .abt-pg .team-band-grid {
    grid-template-columns: 1fr
  }

  .abt-pg .team-cards-col {
    grid-template-columns: repeat(2, 1fr)
  }

  .abt-pg .approach-top {
    grid-template-columns: 1fr
  }

  .abt-pg .steps-list {
    grid-template-columns: 1fr
  }

  .abt-pg .steps-list::before {
    display: none
  }
}

@media (max-width: 600px) {
  .abt-pg .title-text-col h1 {
    font-size: 38px
  }

  .abt-pg .title-text-col h1 span {
    font-size: 38px
  }

  .abt-pg .team-cards-col {
    grid-template-columns: 1fr
  }

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

  .abt-pg .team-label-col h2 em {
    font-size: 38px
  }
}

.hiw-root {
  background: #1b2224;
  color: #d4dde0;
  overflow-x: hidden
}

.hiw-root .grad-bg {
  background: radial-gradient(circle at 0% 100%, #a0be9521 0%, transparent 60%)
}

.hiw-root ::selection {
  background: #525C60;
  color: #d4dde0
}

.hiw-root .entry-row {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px
}

.hiw-root .entry-left {
  flex: 0 0 55%;
  min-width: 0
}

.hiw-root .entry-eyebrow {
  display: inline-block;
  font-size: 15px;
  letter-spacing: .12em;
  color: #A0BE95;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 1px solid #a0be954d;
  padding-bottom: 8px
}

.hiw-root .entry-h1 {
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #eaf0ec;
  margin: 0 0 24px
}

.hiw-root .entry-h1 span {
  font-size: 68px;
  display: block;
  color: #A0BE95;
  line-height: 1.15
}

.hiw-root .entry-desc {
  font-size: 18px;
  line-height: 1.6;
  color: #9eb0b5;
  max-width: 480px;
  margin: 0
}

.hiw-root .entry-right {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.hiw-root .entry-img-wrap {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 60px 0 #525c601c;
  position: relative
}

.hiw-root .entry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: saturate(0.6) brightness(0.75) sepia(0.18)
}

.hiw-root .entry-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #a0be952e 0%, #1b22248c 100%);
  border-radius: 15px
}

.hiw-root .entry-pattern {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  opacity: .18;
  pointer-events: none
}

.hiw-root .diag-lines {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  opacity: .07;
  pointer-events: none;
  overflow: hidden
}

.hiw-root .steps-band {
  background: #222c2f;
  position: relative
}

.hiw-root .steps-band .noise-layer {
  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");
  pointer-events: none;
  border-radius: 0
}

.hiw-root .steps-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
  z-index: 1
}

.hiw-root .steps-header {
  text-align: center;
  margin-bottom: 48px
}

.hiw-root .steps-header h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: #eaf0ec;
  margin: 0 0 16px
}

.hiw-root .steps-header h2 em {
  font-style: normal;
  font-size: 52px;
  color: #A0BE95
}

.hiw-root .steps-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0 auto;
  max-width: 520px
}

.hiw-root .steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.hiw-root .step-card {
  background: #1b2224;
  border-radius: 15px;
  padding: 24px;
  box-shadow: 0 6px 25px 0 #525c601c;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s ease-out;
  position: relative
}

.hiw-root .step-card:hover {
  box-shadow: 0 8px 60px 0 #525c601c
}

.hiw-root .step-card.offset {
  margin-top: 32px
}

.hiw-root .step-num {
  font-size: 68px;
  line-height: 1.15;
  color: #a0be951f;
  font-weight: 700;
  letter-spacing: -.04em;
  position: absolute;
  top: 8px;
  right: 16px;
  pointer-events: none;
  user-select: none
}

.hiw-root .step-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0
}

.hiw-root .step-card h3 {
  font-size: 22px;
  line-height: 1.15;
  color: #eaf0ec;
  margin: 0;
  letter-spacing: -.01em
}

.hiw-root .step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0
}

.hiw-root .step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0
}

.hiw-root .step-connector svg {
  opacity: .25
}

.hiw-root .fact-inline {
  background: #a0be9514;
  border-radius: 9px;
  padding: 8px 16px;
  font-size: 15px;
  line-height: 1.4;
  color: #A0BE95;
  border-left: 3px solid #a0be9566;
  border-top: 1px solid #a0be951f
}

.hiw-root .paths-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 48px 24px
}

.hiw-root .paths-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 48px
}

.hiw-root .anchor-num {
  font-size: 68px;
  line-height: 1.15;
  letter-spacing: -.04em;
  color: #A0BE95;
  flex-shrink: 0
}

.hiw-root .anchor-num span {
  font-size: 38px;
  color: #525C60;
  display: block;
  letter-spacing: -.01em;
  line-height: 1.4
}

.hiw-root .paths-intro {
  flex: 1
}

.hiw-root .paths-intro h2 {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: #eaf0ec;
  margin: 0 0 16px
}

.hiw-root .paths-intro p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0;
  max-width: 440px
}

.hiw-root .paths-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px
}

.hiw-root .path-item {
  border-top: 2px solid #a0be9540;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.hiw-root .path-item h4 {
  font-size: 18px;
  line-height: 1.4;
  color: #eaf0ec;
  margin: 0
}

.hiw-root .path-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0
}

.hiw-root .path-tag {
  display: inline-block;
  font-size: 15px;
  color: #A0BE95;
  background: #a0be951a;
  border-radius: 4px;
  padding: 4px 8px;
  margin-bottom: 8px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.hiw-root .brushstroke-div {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0
}

@keyframes grad-shift {
  0% {
    background-position: 0 80%
  }

  50% {
    background-position: 100% 20%
  }

  100% {
    background-position: 0 80%
  }
}

.hiw-root .entry-animated-bg {
  background: linear-gradient(230deg, #1b2224 0%, #222c2f 40%, #a0be9512 70%, #1b2224 100%);
  background-size: 300% 300%;
  animation: grad-shift 14s linear infinite
}

@media (max-width: 900px) {
  .hiw-root .entry-row {
    flex-direction: column;
    gap: 24px
  }

  .hiw-root .entry-left {
    flex: none;
    width: 100%
  }

  .hiw-root .entry-h1 {
    font-size: 38px
  }

  .hiw-root .entry-h1 span {
    font-size: 52px
  }

  .hiw-root .steps-grid {
    grid-template-columns: 1fr
  }

  .hiw-root .step-card.offset {
    margin-top: 0
  }

  .hiw-root .paths-cols {
    grid-template-columns: 1fr 1fr
  }

  .hiw-root .paths-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }
}

@media (max-width: 600px) {
  .hiw-root .entry-h1 {
    font-size: 28px
  }

  .hiw-root .entry-h1 span {
    font-size: 38px
  }

  .hiw-root .steps-header h2 {
    font-size: 28px
  }

  .hiw-root .steps-header h2 em {
    font-size: 38px
  }

  .hiw-root .paths-cols {
    grid-template-columns: 1fr
  }

  .hiw-root .anchor-num {
    font-size: 52px
  }

  .hiw-root .paths-intro h2 {
    font-size: 28px
  }

  .hiw-root .paths-inner {
    padding: 24px 16px
  }
}

.result-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: #181e20
}

.result-page .confirm-wrap {
  max-width: 560px;
  width: 100%;
  text-align: center
}

.result-page .icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 42px;
  border: 2px solid #A0BE95;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 6px 25px 0 #525c601c
}

.result-page .icon-ring svg {
  display: block
}

.result-page .confirm-heading {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #e8ecec;
  margin: 0 0 16px
}

.result-page .confirm-heading span {
  color: #A0BE95
}

.result-page .confirm-body {
  font-size: 18px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0 0 48px
}

.result-page .divider-line {
  width: 48px;
  height: 1px;
  background: #525C60;
  margin: 0 auto 48px
}

.result-page .action-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.result-page .btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #A0BE95;
  color: #181e20;
  font-size: 15px;
  font-weight: 700;
  border-radius: 9px;
  text-decoration: none;
  letter-spacing: .01em;
  transition: background .2s ease-out, box-shadow .18s ease;
  box-shadow: 0 1px 4px 0 #525c600d
}

.result-page .btn-primary:hover {
  background: #b8d0ae;
  box-shadow: 0 6px 25px 0 #525c601c
}

.result-page .btn-primary:focus {
  outline: 2px solid #A0BE95;
  outline-offset: 3px
}

.result-page .btn-secondary {
  display: inline-block;
  padding: 16px 24px;
  background: transparent;
  color: #8D8D8D;
  font-size: 15px;
  border-radius: 9px;
  text-decoration: none;
  border: 1px solid #525C60;
  letter-spacing: .01em;
  transition: color .15s ease-out, border-color .15s ease-out
}

.result-page .btn-secondary:hover {
  color: #e8ecec;
  border-color: #8D8D8D
}

.result-page .btn-secondary:focus {
  outline: 2px solid #525C60;
  outline-offset: 3px
}

.result-page .note-block {
  margin-top: 48px;
  padding: 24px;
  border-radius: 15px;
  background: #1f2a2d;
  border-top: 2px solid #525C60;
  border-left: 1px solid #2a3538;
  border-right: 1px solid #2a3538;
  border-bottom: 1px solid #2a3538;
  box-shadow: 0 8px 60px 0 #525c601c
}

.result-page .note-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #8D8D8D;
  margin: 0
}

.result-page .note-block p strong {
  color: #A0BE95;
  font-weight: 600
}

@media (max-width: 600px) {
  .result-page .confirm-heading {
    font-size: 28px
  }

  .result-page .action-row {
    flex-direction: column;
    align-items: stretch
  }

  .result-page .btn-primary,
  .result-page .btn-secondary {
    text-align: center
  }
}