@import "https://fonts.googleapis.com/css2?family=Cormorant:wght@400;700&display=swap";

html,
body {
  margin: 0;
  padding: 0
}

body {
  position: relative;
  min-height: 100vh;
  font-family: 'Cormorant', serif;
  background-color: #111318;
  color: #f0ede8
}

.site-header {
  background: linear-gradient(160deg, #0d1117 0%, #14202a 60%, #0f1a1f 100%);
  border-bottom: 1px solid #4D7384;
  box-shadow: 0 6px 20px 0 #4d73841a;
  padding: 0
}

.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px 8px;
  gap: 16px;
  position: relative
}

.brand-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.logo-container {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4d738480;
  box-shadow: 0 2px 4px 0 #4d73840f 0 6px 20px 0 #4d73841a;
  border-radius: 2px;
  padding: 8px;
  background: #ffffff0a
}

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

.brand-name-text {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #f0ede8;
  line-height: 1.1;
  text-transform: uppercase
}

.brand-tagline {
  font-size: 13px;
  color: #C2C2C2;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase
}

.status-badge {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #C2C2C2;
  letter-spacing: .02em;
  line-height: 1.35;
  border: 1px solid #c2c2c233;
  border-radius: 2px;
  padding: 4px 16px
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #4D7384;
  flex-shrink: 0
}

.menu-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 32px 16px;
  border-top: 1px solid #4d73842e
}

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

.primary-menu li {
  display: flex;
  align-items: center
}

.primary-menu li+li::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #4d738466;
  margin-right: 4px
}

.menu-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .05em;
  color: #C2C2C2;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 2px;
  line-height: 1.35;
  transition: color .15s ease-out, background-color .15s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center
}

.menu-link:hover {
  color: #f0ede8;
  background-color: #4d738426
}

.menu-link:focus {
  outline: 2px solid #4D7384;
  outline-offset: 3px
}

.menu-link.active-page {
  color: #f0ede8;
  border-bottom: 2px solid #4D7384
}

.site-footer {
  background-color: #0d1117;
  border-top: 1px solid #4d73844d
}

.footer-bento {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px
}

.footer-brand-block {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  background: #4d738414;
  border: 1px solid #4d738433;
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 4px 0 #4d73840f
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #f0ede8;
  line-height: 1.1;
  text-transform: uppercase
}

.footer-founding {
  font-size: 13px;
  color: #C2C2C2;
  letter-spacing: .02em;
  line-height: 1.55
}

.footer-slogan {
  font-size: 14px;
  color: #4D7384;
  letter-spacing: .03em;
  line-height: 1.55;
  font-style: italic
}

.footer-contact-block {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: #ffffff05;
  border: 1px solid #c2c2c21a;
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 4px 0 #4d73840f
}

.footer-block-label {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #555;
  line-height: 1.35
}

.footer-address {
  font-size: 13px;
  color: #C2C2C2;
  line-height: 1.8;
  letter-spacing: .01em
}

.footer-contact-link {
  font-size: 14px;
  color: #4D7384;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.55;
  display: block;
  transition: color .12s ease-out
}

.footer-contact-link:hover {
  color: #f0ede8
}

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

.footer-links-block {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  background: #ffffff05;
  border: 1px solid #c2c2c21a;
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 4px 0 #4d73840f
}

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

.footer-nav-list li a {
  font-size: 14px;
  color: #C2C2C2;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.55;
  transition: color .12s ease-out;
  display: inline-block;
  padding: 4px 0
}

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

.footer-nav-list li a:focus {
  outline: 2px solid #4D7384;
  outline-offset: 3px
}

.footer-logo-row {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0 16px
}

.footer-logo-container {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4d738466;
  box-shadow: 0 6px 20px 0 #4d73841a;
  border-radius: 2px;
  padding: 8px;
  background: #ffffff08
}

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

.footer-bottom-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #4d738426;
  flex-wrap: wrap;
  gap: 8px
}

.footer-copyright {
  font-size: 13px;
  color: #555;
  letter-spacing: .02em;
  line-height: 1.35
}

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

.footer-legal-links li a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  letter-spacing: .02em;
  line-height: 1.35;
  transition: color .12s ease-out
}

.footer-legal-links li a:hover {
  color: #C2C2C2
}

.footer-legal-links li a:focus {
  outline: 2px solid #4D7384;
  outline-offset: 3px
}

.consent-popup {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 560px;
  max-width: calc(100% - 32px);
  background: #14202a;
  border: 1px solid #4d738466;
  border-radius: 20px;
  box-shadow: 0 12px 40px 0 #4d738424;
  padding: 32px;
  z-index: 1200;
  display: none
}

.consent-description {
  font-size: 14px;
  color: #C2C2C2;
  line-height: 1.55;
  letter-spacing: .01em;
  margin-bottom: 8px
}

.consent-headline {
  font-size: 16px;
  font-weight: 700;
  color: #f0ede8;
  line-height: 1.35;
  letter-spacing: .02em;
  margin-bottom: 16px
}

.consent-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.consent-accept {
  font-family: 'Cormorant', serif;
  font-size: 14px;
  letter-spacing: .04em;
  color: #f0ede8;
  background: transparent;
  border: 1px solid #4D7384;
  border-radius: 2px;
  padding: 8px 32px;
  cursor: pointer;
  line-height: 1.35;
  min-height: 44px;
  transition: background-color .15s ease-out, color .15s ease-out
}

.consent-accept:hover {
  background-color: #4d738433;
  color: #f0ede8
}

.consent-accept:active {
  transform: scale(0.97)
}

.consent-accept:focus {
  outline: 2px solid #4D7384;
  outline-offset: 3px
}

.consent-decline {
  font-family: 'Cormorant', serif;
  font-size: 13px;
  letter-spacing: .03em;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  min-height: 44px;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .12s ease-out
}

.consent-decline:hover {
  color: #C2C2C2
}

.consent-decline:focus {
  outline: 2px solid #4D7384;
  outline-offset: 3px
}

.terms-area {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px;
  color: #f0f0f0;
  background-color: #1b2228;
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: .01em
}

.terms-area h1 {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #fff;
  margin-top: 0;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #4D7384
}

.terms-area h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #fff;
  margin-top: 32px;
  margin-bottom: 16px
}

.terms-area h3 {
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: .01em;
  color: #e8e8e8;
  margin-top: 32px;
  margin-bottom: 16px
}

.terms-area h4 {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: .02em;
  color: #d8d8d8;
  margin-top: 16px;
  margin-bottom: 8px
}

.terms-area h5 {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #c8c8c8;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase
}

.terms-area h6 {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: .02em;
  color: #b8b8b8;
  margin-top: 16px;
  margin-bottom: 8px;
  text-transform: uppercase
}

.terms-area strong,
.terms-area b {
  color: #fff;
  font-weight: 700
}

.terms-area em,
.terms-area i {
  color: #C2C2C2;
  font-style: italic
}

.terms-area a {
  color: #4D7384;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .15s ease-out, text-decoration-color .15s ease-out
}

.terms-area a:hover {
  color: #7aafc4;
  text-decoration-color: #7aafc4
}

.terms-area a:active {
  color: #C2C2C2
}

.terms-area hr {
  border: none;
  border-top: 1px solid #3a4a54;
  margin-top: 32px;
  margin-bottom: 32px;
  opacity: .8
}

.guides {
  background: #111418;
  color: #e8e8e8;
  overflow-x: clip
}

.guides .stat-card-split {
  display: flex;
  flex-direction: row
}

.guides .page-top {
  padding: 48px 32px 80px;
  border-bottom: 1px solid #4d73842e;
  position: relative
}

.guides .page-top::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 32px;
  width: 64px;
  height: 3px;
  background: #4D7384;
  border-radius: 2px
}

.guides .top-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 32px
}

.guides .top-label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4D7384;
  margin-bottom: 16px;
  display: block
}

.guides .top-heading {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #f0f0f0;
  margin: 0 0 16px;
  font-weight: 300;
  text-transform: uppercase
}

.guides .top-heading strong {
  font-weight: 700;
  color: #fff
}

.guides .top-accent {
  font-size: 37px;
  line-height: 1.1;
  color: #4D7384;
  font-weight: 700;
  display: block;
  letter-spacing: .01em
}

.guides .top-text-col {
  flex: 1 1 0;
  min-width: 0
}

.guides .top-aside {
  flex: 0 0 260px;
  font-size: 13px;
  line-height: 1.55;
  color: #aaa;
  letter-spacing: .01em;
  padding-left: 32px;
  border-left: 2px solid #4d73844d;
  margin-bottom: 8px
}

.guides .top-desc {
  font-size: 16px;
  line-height: 1.55;
  color: #bbb;
  margin: 0;
  max-width: 560px;
  letter-spacing: .01em
}

.guides .metrics-band {
  background: #161b20;
  padding: 32px;
  border-bottom: 1px solid #c2c2c214
}

.guides .metrics-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: stretch
}

.guides .stat-card {
  flex: 1 1 0;
  border: 1px solid #4d738433;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 6px 20px 0 #4d73841a;
  transition: border-color .15s ease-out, box-shadow .2s ease-out
}

.guides .stat-card:hover {
  border-color: #4d738480;
  box-shadow: 0 12px 40px 0 #4d738424
}

.guides .stat-card-split {
  display: flex;
  flex-direction: row;
  height: 100%
}

.guides .stat-zone {
  flex: 1 1 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.guides .stat-zone.left {
  background: #4d73841f;
  border-right: 1px solid #4d73842e
}

.guides .stat-zone.right {
  background: #11141899
}

.guides .stat-number {
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
  color: #4D7384;
  letter-spacing: .01em;
  display: block
}

.guides .stat-label {
  font-size: 13px;
  line-height: 1.35;
  color: #888;
  margin-top: 4px;
  letter-spacing: .01em;
  display: block
}

.guides .stat-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #aaa;
  letter-spacing: .01em
}

.guides .guides-grid-section {
  padding: 64px 32px;
  background: #111418;
  position: relative
}

.guides .guides-grid-section::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #4D7384 0%, transparent 70%)
}

.guides .guides-grid-inner {
  max-width: 1100px;
  margin: 0 auto
}

.guides .grid-heading-row {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 32px
}

.guides .grid-heading {
  font-size: 27px;
  line-height: 1.35;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #e8e8e8;
  margin: 0
}

.guides .grid-heading em {
  font-style: normal;
  color: #4D7384
}

.guides .grid-rule {
  flex: 1 1 0;
  height: 1px;
  background: #c2c2c21f
}

.guides .three-col {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start
}

.guides .guide-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.guides .guide-col.wide {
  flex: 3 1 0
}

.guides .guide-col.mid {
  flex: 2 1 0
}

.guides .guide-col.narrow {
  flex: 1.2 1 0
}

.guides .guide-card {
  border: 1px solid #c2c2c21a;
  border-radius: 2px;
  padding: 16px;
  background: #161b20;
  box-shadow: 0 2px 4px 0 #5555550f;
  transition: border-color .15s ease-out, transform .2s ease;
  cursor: default;
  border-left: 3px solid transparent
}

.guides .guide-card:hover {
  transform: translateY(-2px);
  border-color: #4d73844d #4d73844d #4d73844d #4D7384
}

.guides .guide-card.selected {
  border-color: #4d738440 #4d738440 #4d738440 #4D7384
}

.guides .card-tag {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4D7384;
  margin-bottom: 8px;
  display: block
}

.guides .card-title {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #e8e8e8;
  margin: 0 0 8px;
  letter-spacing: .01em
}

.guides .card-body {
  font-size: 14px;
  line-height: 1.55;
  color: #999;
  margin: 0;
  letter-spacing: .01em
}

.guides .card-meta {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
  letter-spacing: .01em
}

.guides .card-meta span {
  color: #C2C2C2
}

.guides .guide-card.featured {
  background: linear-gradient(160deg, #1a2530 0%, #161b20 60%);
  border-left: 3px solid #4D7384;
  border-top-color: #4d738440;
  border-right-color: #4d738440;
  border-bottom-color: #4d738440
}

.guides .card-title.large {
  font-size: 20px;
  line-height: 1.35
}

.guides .image-section {
  position: relative;
  padding: 80px 32px;
  overflow: hidden
}

.guides .image-bg {
  position: absolute;
  inset: 0;
  background-image: url(./graphic_assets/RESOURCE-1-3.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.35) saturate(0.7);
  transform: scale(1);
  animation: imgscale 1.2s .1s ease-out both
}

@keyframes imgscale {
  from {
    transform: scale(0.97)
  }

  to {
    transform: scale(1)
  }
}

.guides .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #111418d1 0%, #4d73842e 100%)
}

.guides .image-section-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center
}

.guides .image-text-col {
  flex: 1 1 0
}

.guides .image-heading {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #f0f0f0;
  margin: 0 0 16px
}

.guides .image-heading strong {
  font-weight: 700;
  color: #fff
}

.guides .image-body {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin: 0 0 16px;
  letter-spacing: .01em;
  max-width: 480px
}

.guides .image-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.guides .image-list li {
  font-size: 14px;
  line-height: 1.55;
  color: #bbb;
  letter-spacing: .01em;
  padding-left: 16px;
  position: relative
}

.guides .image-list li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: #4D7384
}

.guides .image-aside-col {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.guides .aside-card {
  background: #111418bf;
  border: 1px solid #4d738438;
  border-radius: 2px;
  padding: 16px;
  box-shadow: 0 6px 20px 0 #4d73841a
}

.guides .aside-card-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #4D7384;
  display: block;
  margin-bottom: 8px
}

.guides .aside-card-text {
  font-size: 14px;
  line-height: 1.55;
  color: #ccc;
  margin: 0;
  letter-spacing: .01em
}

.guides .aside-card-number {
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
  display: block;
  margin-bottom: 4px
}

.guides .btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background: #4D7384;
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: lowercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 20px 0 #4d73841a;
  transition: background .15s ease-out, box-shadow .2s ease-out
}

.guides .btn-primary:hover {
  background: #5d8799;
  box-shadow: 0 12px 40px 0 #4d738424
}

.guides .btn-primary:active {
  transform: scale(0.97)
}

.guides .diagonal-divider {
  height: 40px;
  background: #161b20;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
  margin-top: -1px
}

.guides .diagonal-divider-dark {
  height: 40px;
  background: #111418;
  clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
  margin-bottom: -1px
}

.guides .path-section {
  background: #161b20;
  padding: 64px 32px 80px;
  border-top: 1px solid #c2c2c20f
}

.guides .path-inner {
  max-width: 1100px;
  margin: 0 auto
}

.guides .path-header {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-bottom: 32px;
  align-items: flex-start
}

.guides .path-heading {
  font-size: 27px;
  line-height: 1.35;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #e8e8e8;
  margin: 0;
  flex: 0 0 auto
}

.guides .path-heading strong {
  color: #4D7384;
  font-weight: 700
}

.guides .path-intro {
  flex: 1 1 0;
  font-size: 14px;
  line-height: 1.55;
  color: #999;
  margin: 0;
  letter-spacing: .01em;
  padding-top: 4px
}

.guides .path-steps {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.guides .path-step {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  border: 1px solid #c2c2c214;
  border-radius: 2px;
  overflow: hidden;
  background: #111418;
  transition: border-color .15s ease-out
}

.guides .path-step:hover {
  border-color: #4d738459
}

.guides .step-number-col {
  flex: 0 0 64px;
  background: #4d73841a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  font-weight: 700;
  color: #4d738466;
  letter-spacing: .01em;
  border-right: 1px solid #4d738426
}

.guides .step-content {
  flex: 1 1 0;
  padding: 16px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center
}

.guides .step-main {
  flex: 2 1 0
}

.guides .step-title {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
  color: #e0e0e0;
  margin: 0 0 4px;
  letter-spacing: .01em
}

.guides .step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #888;
  margin: 0;
  letter-spacing: .01em
}

.guides .step-side {
  flex: 1 1 0;
  font-size: 13px;
  line-height: 1.55;
  color: #666;
  letter-spacing: .01em;
  text-align: right
}

.guides .step-side strong {
  color: #C2C2C2;
  display: block;
  font-size: 14px;
  margin-bottom: 4px
}

.guides .link-animated {
  color: #4D7384;
  text-decoration: none;
  display: inline;
  background-image: linear-gradient(#4D7384, #4D7384);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: right bottom;
  transition: background-size .18s ease-out;
  padding-bottom: 1px
}

.guides .link-animated:hover {
  background-size: 100% 1px;
  background-position: left bottom
}

@media (max-width: 900px) {
  .guides .top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .guides .top-aside {
    flex: unset;
    padding-left: 16px
  }

  .guides .three-col {
    flex-direction: column
  }

  .guides .guide-col.wide,
  .guides .guide-col.mid,
  .guides .guide-col.narrow {
    flex: unset;
    width: 100%
  }

  .guides .metrics-inner {
    flex-direction: column
  }

  .guides .image-section-inner {
    flex-direction: column
  }

  .guides .image-aside-col {
    flex: unset;
    width: 100%
  }

  .guides .path-header {
    flex-direction: column;
    gap: 16px
  }

  .guides .step-content {
    flex-direction: column;
    gap: 8px
  }

  .guides .step-side {
    text-align: left
  }

  .guides .top-heading {
    font-size: 37px
  }
}

.about-us-page {
  background-color: #111418;
  color: #e8e8e8;
  overflow-x: clip
}

.about-us-page .title-block {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 0;
  padding-top: 80px;
  padding-bottom: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: end
}

.about-us-page .title-image-left,
.about-us-page .title-image-right {
  overflow: hidden;
  position: relative;
  height: 340px;
  border-radius: 2px
}

.about-us-page .title-image-left img,
.about-us-page .title-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.about-us-page .title-image-left::after,
.about-us-page .title-image-right::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, #111418 0%, transparent 100%);
  pointer-events: none
}

.about-us-page .title-text-center {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center
}

.about-us-page .eyebrow-label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4D7384;
  margin-bottom: 16px;
  font-weight: 400
}

.about-us-page .page-heading {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  margin: 0
}

.about-us-page .page-heading span {
  color: #4D7384
}

.about-us-page .section-divider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.about-us-page .section-divider .line {
  height: 1px;
  background-color: #2e3540;
  width: 100%
}

.about-us-page .about-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 16px 80px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start
}

.about-us-page .about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px
}

.about-us-page .sidebar-metric {
  border-left: 2px solid #4D7384;
  border-bottom: 1px solid #2e3540;
  padding: 16px;
  position: relative
}

.about-us-page .sidebar-metric .metric-number {
  font-size: 37px;
  line-height: 1.1;
  font-weight: 300;
  color: #fff;
  letter-spacing: .01em
}

.about-us-page .sidebar-metric .metric-label {
  font-size: 13px;
  color: #C2C2C2;
  line-height: 1.55;
  letter-spacing: .02em;
  margin-top: 4px
}

.about-us-page .sidebar-metric .metric-badge {
  position: absolute;
  top: -8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background-color: #4D7384;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.1
}

.about-us-page .sidebar-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px
}

.about-us-page .sidebar-tag {
  background-color: #1a2028;
  border: 1px solid #2e3540;
  border-radius: 2px;
  padding: 8px;
  font-size: 13px;
  color: #C2C2C2;
  letter-spacing: .01em;
  line-height: 1.35
}

.about-us-page .about-main-content {
  display: flex;
  flex-direction: column;
  gap: 32px
}

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

.about-us-page .content-block-heading {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  margin: 0
}

.about-us-page .content-block-aside {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start
}

.about-us-page .aside-note {
  font-size: 13px;
  color: #4D7384;
  line-height: 1.55;
  letter-spacing: .02em;
  border-right: 1px solid #2e3540;
  padding-right: 16px;
  padding-top: 4px
}

.about-us-page .aside-text {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
  letter-spacing: .01em;
  margin: 0
}

.about-us-page .content-image-wide {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  height: 240px
}

.about-us-page .content-image-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .2s ease-out
}

.about-us-page .content-image-wide:hover img {
  transform: scale(1.03)
}

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

.about-us-page .dash-list li {
  font-size: 16px;
  line-height: 1.55;
  color: #d0d0d0;
  letter-spacing: .01em;
  padding-left: 20px;
  position: relative
}

.about-us-page .dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #4D7384;
  font-weight: 300
}

.about-us-page .people-strip {
  background-color: #141a22;
  border-top: 1px solid #2e3540;
  border-bottom: 1px solid #2e3540;
  padding: 32px 0
}

.about-us-page .people-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.about-us-page .person-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 2px;
  background-color: #111418;
  box-shadow: 0 6px 20px 0 #4d73841a;
  transition: box-shadow .15s ease-out
}

.about-us-page .person-card:hover {
  box-shadow: 0 12px 40px 0 #4d738424
}

.about-us-page .person-name {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1.35
}

.about-us-page .person-role {
  font-size: 13px;
  color: #4D7384;
  letter-spacing: .02em;
  line-height: 1.35;
  text-transform: uppercase
}

.about-us-page .person-note {
  font-size: 14px;
  color: #C2C2C2;
  line-height: 1.55;
  letter-spacing: .01em
}

.about-us-page .second-section {
  background-color: #0e1319;
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden
}

.about-us-page .second-section-bg {
  position: absolute;
  inset: 0;
  background-image: url(./graphic_assets/2026-08-20-6.jpg);
  background-size: cover;
  background-position: center;
  opacity: .07;
  animation: panorama-move 18s linear infinite alternate
}

@keyframes panorama-move {
  from {
    background-position: 20% center
  }

  to {
    background-position: 80% center
  }
}

.about-us-page .second-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative
}

.about-us-page .second-section-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start
}

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

.about-us-page .approach-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  margin: 0
}

.about-us-page .approach-text-block {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.about-us-page .approach-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
  letter-spacing: .01em;
  margin: 0
}

.about-us-page .approach-paragraph a {
  color: #4D7384;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease-out, color .1s ease
}

.about-us-page .approach-paragraph a:hover {
  color: #fff;
  border-bottom-color: #4D7384
}

.about-us-page .approach-image {
  overflow: hidden;
  border-radius: 2px;
  height: 280px;
  position: relative
}

.about-us-page .approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

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

.about-us-page .principle-item {
  padding: 16px;
  border-radius: 2px;
  background-color: #141a22;
  border: 1px solid #2e3540;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: background-color .15s ease-out, border-color .15s ease-out;
  cursor: default
}

.about-us-page .principle-item:hover {
  background-color: #1c2535;
  border-color: #4D7384
}

.about-us-page .principle-item:hover .principle-number {
  background-color: #4D7384;
  color: #fff
}

.about-us-page .principle-number {
  position: absolute;
  top: -10px;
  right: 12px;
  width: 22px;
  height: 22px;
  background-color: #2e3540;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #C2C2C2;
  font-weight: 600;
  line-height: 1.1;
  transition: background-color .15s ease-out, color .15s ease-out
}

.about-us-page .principle-heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  margin: 0
}

.about-us-page .principle-text {
  font-size: 14px;
  line-height: 1.55;
  color: #C2C2C2;
  letter-spacing: .01em;
  margin: 0
}

.about-us-page .section-cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 8px
}

.about-us-page .btn-primary {
  display: inline-block;
  padding: 12px 32px;
  background-color: #4D7384;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: lowercase;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #4D7384;
  transition: background-color .15s ease-out, color .1s ease;
  box-shadow: 0 2px 4px 0 #4d73840f
}

.about-us-page .btn-primary:hover {
  background-color: #3a5e6e;
  border-color: #3a5e6e
}

.about-us-page .btn-primary:active {
  transform: scale(0.97)
}

.about-us-page .btn-secondary {
  display: inline-block;
  padding: 12px 32px;
  background-color: transparent;
  color: #C2C2C2;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: lowercase;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid #2e3540;
  transition: border-color .15s ease-out, color .1s ease
}

.about-us-page .btn-secondary:hover {
  border-color: #4D7384;
  color: #fff
}

.about-us-page .btn-secondary:active {
  transform: scale(0.97)
}

.about-us-page .second-divider {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.about-us-page .second-divider .line {
  height: 1px;
  background-color: #2e3540;
  width: 100%
}

.about-us-page .people-section-label {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 32px
}

@media (max-width: 900px) {
  .about-us-page .title-block {
    grid-template-columns: 1fr 1.4fr 1fr;
    padding-top: 48px
  }

  .about-us-page .title-image-left,
  .about-us-page .title-image-right {
    height: 240px
  }

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

  .about-us-page .about-body {
    grid-template-columns: 1fr;
    padding: 48px 16px 64px
  }

  .about-us-page .about-sidebar {
    position: static
  }

  .about-us-page .sidebar-inner-grid {
    grid-template-columns: repeat(4, 1fr)
  }

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

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

@media (max-width: 600px) {
  .about-us-page .title-block {
    grid-template-columns: 1fr;
    padding-top: 32px
  }

  .about-us-page .title-image-left {
    display: none
  }

  .about-us-page .title-image-right {
    height: 180px
  }

  .about-us-page .title-text-center {
    padding: 0 8px;
    align-items: flex-start;
    text-align: left
  }

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

  .about-us-page .content-block-aside {
    grid-template-columns: 1fr
  }

  .about-us-page .aside-note {
    border-right: none;
    border-bottom: 1px solid #2e3540;
    padding-right: 0;
    padding-bottom: 8px
  }

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

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

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

.contact-us {
  background: #111318;
  color: #d8d8d8;
  overflow-x: clip
}

.contact-us .frame-lines {
  position: relative;
  border-top: 1px solid #4d73844d;
  border-bottom: 1px solid #4d73844d
}

.contact-us .frame-lines::before,
.contact-us .frame-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #4d73841f;
  pointer-events: none
}

.contact-us .frame-lines::before {
  top: 3px
}

.contact-us .frame-lines::after {
  bottom: 3px
}

.contact-us .reach-panel {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start
}

.contact-us .reach-image-col {
  position: relative
}

.contact-us .reach-image-wrapper {
  overflow: hidden;
  border-radius: 2px;
  position: relative
}

.contact-us .reach-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  opacity: .72;
  filter: contrast(1.08) saturate(0.85);
  transition: opacity .2s ease-out
}

.contact-us .reach-image-wrapper:hover img {
  opacity: .88
}

.contact-us .reach-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1113182e 0%, #4d738438 100%);
  pointer-events: none
}

.contact-us .bracket-left {
  position: absolute;
  top: 16px;
  left: -16px;
  width: 24px;
  height: 80px;
  border-left: 2px solid #4d738499;
  border-top: 2px solid #4d738499;
  border-bottom: 2px solid #4d738499;
  border-radius: 2px 0 0 2px;
  pointer-events: none
}

.contact-us .bracket-right {
  position: absolute;
  bottom: 16px;
  right: -16px;
  width: 24px;
  height: 80px;
  border-right: 2px solid #4d738499;
  border-top: 2px solid #4d738499;
  border-bottom: 2px solid #4d738499;
  border-radius: 0 2px 2px 0;
  pointer-events: none
}

.contact-us .reach-text-col {
  padding-top: 8px
}

.contact-us .reach-label {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4D7384;
  margin-bottom: 16px;
  display: block
}

.contact-us .reach-heading {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #f0f0f0;
  margin: 0 0 8px;
  font-weight: 300;
  text-transform: uppercase
}

.contact-us .reach-heading .outlined-word {
  -webkit-text-stroke: 1px #4D7384;
  color: transparent
}

.contact-us .reach-subheading {
  font-size: 16px;
  line-height: 1.55;
  color: #a0a8b0;
  margin: 0 0 32px;
  max-width: 380px
}

.contact-us .reach-detail-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 16px
}

.contact-us .reach-detail-dot {
  width: 6px;
  height: 6px;
  border-radius: 20px;
  background: #4D7384;
  margin-top: 7px;
  flex-shrink: 0
}

.contact-us .reach-detail-text {
  font-size: 14px;
  line-height: 1.55;
  color: #b8bec6
}

.contact-us .reach-detail-text a {
  color: #7aaabb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease-out, color .15s ease-out
}

.contact-us .reach-detail-text a:hover {
  color: #a0c8d8;
  border-bottom-color: #a0c8d880
}

.contact-us .reach-action-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 14px;
  letter-spacing: .02em;
  color: #f0f0f0;
  text-decoration: none;
  border-bottom: 1px solid #4d738480;
  padding-bottom: 4px;
  transition: color .15s ease-out, border-color .18s ease
}

.contact-us .reach-action-link:hover {
  color: #7aaabb;
  border-bottom-color: #4D7384
}

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

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

.contact-us .form-belt {
  background: #161a20;
  padding: 64px 32px 72px
}

.contact-us .form-belt-inner {
  max-width: 1100px;
  margin: 0 auto
}

.contact-us .form-meta {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 32px
}

.contact-us .form-heading-group {
  flex: 1
}

.contact-us .form-tag {
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #555;
  display: block;
  margin-bottom: 8px
}

.contact-us .form-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #e8e8e8;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0
}

.contact-us .form-heading .outlined-word {
  -webkit-text-stroke: 1px #C2C2C2;
  color: transparent
}

.contact-us .form-note-aside {
  width: 200px;
  flex-shrink: 0
}

.contact-us .form-note-text {
  font-size: 13px;
  line-height: 1.55;
  color: #666e78;
  font-style: italic
}

.contact-us .editorial-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

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

.contact-us .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-us .field-label {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #666e78
}

.contact-us .field-input {
  background: #1e2330;
  border: 1px solid #5555554d;
  border-radius: 2px;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.55;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .15s ease-out, background .15s ease-out;
  outline: none
}

.contact-us .field-input::placeholder {
  font-style: italic;
  opacity: .52;
  color: #d8d8d8
}

.contact-us .field-input:focus {
  border-color: #4D7384;
  background: #212736
}

.contact-us .field-select {
  background: #1e2330;
  border: 1px solid #5555554d;
  border-radius: 2px;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 1.55;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .15s ease-out, background .15s ease-out;
  outline: none;
  appearance: none;
  cursor: pointer
}

.contact-us .field-select:focus {
  border-color: #4D7384;
  background: #212736
}

.contact-us .budget-group {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.contact-us .budget-label {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #666e78;
  margin-bottom: 4px
}

.contact-us .budget-options {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap
}

.contact-us .budget-option {
  position: relative
}

.contact-us .budget-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.contact-us .budget-option label {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #55555559;
  border-radius: 2px;
  font-size: 13px;
  color: #888e98;
  cursor: pointer;
  transition: border-color .15s ease-out, color .15s ease-out, background .15s ease-out;
  letter-spacing: .02em
}

.contact-us .budget-option label:hover {
  border-color: #4d738499;
  color: #b0bcc4
}

.contact-us .budget-option input[type="radio"]:checked+label {
  border-color: #4D7384;
  color: #d8d8d8;
  background: #4d738424
}

.contact-us .budget-option input[type="radio"]:focus-visible+label {
  outline: 2px solid #4D7384;
  outline-offset: 2px
}

.contact-us .privacy-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-start
}

.contact-us .privacy-checkbox {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #4D7384;
  cursor: pointer
}

.contact-us .privacy-text {
  font-size: 13px;
  line-height: 1.55;
  color: #666e78
}

.contact-us .privacy-text a {
  color: #7aaabb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease-out, color .12s ease-out
}

.contact-us .privacy-text a:hover {
  color: #a0c8d8;
  border-bottom-color: #a0c8d873
}

.contact-us .submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.contact-us .submit-button {
  background: #4D7384;
  color: #f0f0f0;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: .06em;
  padding: 14px 32px;
  cursor: pointer;
  transition: background .15s ease-out, transform .1s ease;
  box-shadow: 0 6px 20px 0 #4d73841a
}

.contact-us .submit-button:hover {
  background: #3d5f70
}

.contact-us .submit-button:active {
  transform: scale(0.97)
}

.contact-us .submit-button:focus-visible {
  outline: 2px solid #7aaabb;
  outline-offset: 3px
}

.contact-us .submit-note {
  font-size: 13px;
  color: #555;
  font-style: italic
}

.contact-us .wave-divider-2 {
  width: 100%;
  overflow: hidden;
  line-height: 0
}

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

.contact-us .details-strip {
  background: #13171d;
  padding: 56px 32px 64px
}

.contact-us .details-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start
}

.contact-us .strip-col-main {
  border-right: 1px solid #4d73842e;
  padding-right: 32px
}

.contact-us .strip-col-main h3 {
  font-size: 27px;
  font-weight: 300;
  letter-spacing: .01em;
  line-height: 1.35;
  color: #e0e0e0;
  margin: 0 0 16px;
  text-transform: uppercase
}

.contact-us .strip-col-main p {
  font-size: 14px;
  line-height: 1.8;
  color: #888e98;
  margin: 0
}

.contact-us .strip-col {
  padding-top: 4px
}

.contact-us .strip-col-heading {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4D7384;
  margin: 0 0 16px;
  display: block
}

.contact-us .strip-detail-item {
  margin-bottom: 16px
}

.contact-us .strip-detail-item:last-child {
  margin-bottom: 0
}

.contact-us .strip-detail-label {
  font-size: 13px;
  color: #555;
  letter-spacing: .04em;
  display: block;
  margin-bottom: 4px
}

.contact-us .strip-detail-value {
  font-size: 14px;
  line-height: 1.55;
  color: #b0bcc4
}

.contact-us .strip-detail-value a {
  color: #7aaabb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease-out, color .12s ease-out
}

.contact-us .strip-detail-value a:hover {
  color: #a0c8d8;
  border-bottom-color: #a0c8d873
}

.contact-us .hours-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.contact-us .hours-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #888e98;
  padding-left: 12px;
  position: relative
}

.contact-us .hours-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #4D7384
}

.contact-us .flip-on-load {
  animation: flipReveal .5s ease-out both
}

@keyframes flipReveal {
  0% {
    opacity: 0;
    transform: rotateX(18deg) translateY(12px)
  }

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

.contact-us .flip-on-load-delay {
  animation: flipReveal .5s .15s ease-out both
}

@media (max-width: 860px) {
  .contact-us .reach-panel {
    grid-template-columns: 1fr;
    padding: 48px 16px 56px
  }

  .contact-us .reach-image-wrapper img {
    height: 300px
  }

  .contact-us .reach-heading {
    font-size: 37px
  }

  .contact-us .editorial-form {
    grid-template-columns: 1fr
  }

  .contact-us .field-full,
  .contact-us .budget-group,
  .contact-us .privacy-row,
  .contact-us .submit-row {
    grid-column: 1
  }

  .contact-us .form-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .contact-us .form-note-aside {
    width: 100%
  }

  .contact-us .details-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .contact-us .strip-col-main {
    border-right: none;
    border-bottom: 1px solid #4d73842e;
    padding-right: 0;
    padding-bottom: 32px
  }

  .contact-us .form-belt {
    padding: 48px 16px 56px
  }

  .contact-us .details-strip {
    padding: 48px 16px 56px
  }
}

.first {
  background: #111416;
  color: #f0ede8;
  overflow-x: clip
}

.first .first-schema {
  display: none
}

.first .page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.first .title-block {
  position: relative;
  padding: 96px 32px 80px;
  background: #0d0f11;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.first .title-bloom {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, #4d738438 0%, #4d73840f 55%, transparent 100%);
  pointer-events: none
}

.first .title-bloom-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 40% 35% at 50% 38%, #c2c2c212 0%, transparent 70%);
  pointer-events: none
}

.first .reading-arrow-left {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, transparent, #4d738480, transparent);
  pointer-events: none
}

.first .reading-arrow-right {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, transparent, #4d738480, transparent);
  pointer-events: none
}

.first .reading-dot-left {
  position: absolute;
  left: 36px;
  top: calc(50% + 60px);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #4d738480;
  transform: rotate(45deg);
  pointer-events: none
}

.first .reading-dot-right {
  position: absolute;
  right: 36px;
  top: calc(50% + 60px);
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #4d738480;
  transform: rotate(45deg);
  pointer-events: none
}

.first .title-image-frame {
  position: relative;
  width: 200px;
  height: 200px;
  margin-bottom: 32px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 12px 40px 0 #4d738424;
  animation: slideFromLeft .7s ease-out both
}

.first .title-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: transform 8s ease
}

.first .title-image-frame:hover img {
  transform: scale(1.06)
}

.first .title-eyebrow {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4D7384;
  margin-bottom: 16px;
  animation: slideFromRight .6s ease-out .1s both
}

.first .title-heading {
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: .01em;
  font-weight: 700;
  color: #f0ede8;
  max-width: 780px;
  margin: 0 auto 16px;
  animation: slideFromLeft .7s ease-out .2s both
}

.first .title-heading span {
  color: #4D7384
}

.first .title-sub {
  font-size: 20px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #C2C2C2;
  max-width: 520px;
  margin: 0 auto 32px;
  animation: slideFromRight .7s ease-out .3s both
}

.first .title-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideFromLeft .6s ease-out .4s both
}

.first .btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: #4D7384;
  color: #f0ede8;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: lowercase;
  transition: background .15s ease-out, box-shadow .15s ease-out;
  box-shadow: 0 6px 20px 0 #4d73841a
}

.first .btn-primary:hover {
  background: #3d5f6e;
  box-shadow: 0 12px 40px 0 #4d738424
}

.first .btn-primary:active {
  transform: scale(0.97)
}

.first .btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #C2C2C2;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 2px;
  border: 1px solid #c2c2c24d;
  cursor: pointer;
  text-decoration: none;
  text-transform: lowercase;
  transition: border-color .2s ease, color .2s ease
}

.first .btn-secondary:hover {
  border-color: #4D7384;
  color: #f0ede8
}

.first .btn-secondary:active {
  transform: scale(0.97)
}

.first .gap-section {
  background: #141719;
  padding: 80px 0
}

.first .gap-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start
}

.first .gap-aside {
  flex: 0 0 220px;
  padding-top: 8px
}

.first .gap-aside-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4D7384;
  line-height: 1.35;
  border-left: 3px solid #4D7384;
  border-top: 1px solid #4d73844d;
  padding: 8px 0 8px 16px
}

.first .gap-aside-note {
  font-size: 13px;
  line-height: 1.55;
  color: #888;
  margin-top: 16px;
  padding-left: 16px
}

.first .gap-body {
  flex: 1
}

.first .gap-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .01em;
  font-weight: 600;
  color: #f0ede8;
  margin-bottom: 16px;
  text-transform: uppercase;
  animation: slideFromRight .7s ease-out both
}

.first .gap-paragraph {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #C2C2C2;
  margin-bottom: 16px;
  max-width: 600px
}

.first .gap-metrics {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap
}

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

.first .gap-metric-number {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .01em;
  font-weight: 700;
  color: #4D7384;
  transition: color .15s ease-out, text-shadow .2s ease
}

.first .gap-metric:hover .gap-metric-number {
  color: #7aafc2;
  text-shadow: 0 6px 20px #4d738466
}

.first .gap-metric-label {
  font-size: 13px;
  letter-spacing: .04em;
  color: #888;
  text-transform: uppercase
}

.first .gap-image-strip {
  flex: 0 0 260px;
  border-radius: 2px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 12px 40px 0 #4d738424
}

.first .gap-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 7s ease
}

.first .gap-image-strip:hover img {
  transform: scale(1.05)
}

.first .creators-section {
  background: #0d0f11;
  padding: 96px 0 80px;
  position: relative
}

.first .creators-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4D7384, transparent);
  pointer-events: none
}

.first .creators-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.first .creators-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 32px
}

.first .creators-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .02em;
  font-weight: 600;
  color: #f0ede8;
  text-transform: uppercase;
  max-width: 480px;
  animation: slideFromLeft .7s ease-out both
}

.first .creators-intro {
  font-size: 14px;
  line-height: 1.55;
  color: #888;
  max-width: 340px;
  letter-spacing: .01em
}

.first .creators-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px
}

.first .creator-card {
  background: #161a1d;
  border-radius: 2px;
  padding: 32px;
  border: 1px solid #c2c2c214;
  transition: border-color .15s ease-out, box-shadow .2s ease
}

.first .creator-card:hover {
  border-color: #4d738466;
  box-shadow: 0 12px 40px 0 #4d738424
}

.first .creator-card.wide {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start
}

.first .creator-image {
  width: 100px;
  height: 100px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 6px 20px 0 #4d73841a
}

.first .creator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 6s ease
}

.first .creator-image:hover img {
  transform: scale(1.08)
}

.first .creator-details {
  flex: 1
}

.first .creator-name {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: .02em;
  font-weight: 600;
  color: #f0ede8;
  text-transform: uppercase;
  margin-bottom: 4px
}

.first .creator-role {
  font-size: 13px;
  letter-spacing: .06em;
  color: #4D7384;
  text-transform: uppercase;
  margin-bottom: 16px
}

.first .creator-bio {
  font-size: 14px;
  line-height: 1.55;
  color: #C2C2C2;
  letter-spacing: .01em
}

.first .creator-stat-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px
}

.first .creator-stat {
  font-size: 13px;
  color: #555;
  letter-spacing: .03em;
  padding: 4px 8px;
  border: 1px solid #5555554d;
  border-radius: 2px
}

.first .investment-section {
  background: #141719;
  padding: 80px 0
}

.first .investment-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: stretch
}

.first .investment-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.first .investment-label {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4D7384
}

.first .investment-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .01em;
  font-weight: 700;
  color: #f0ede8;
  text-transform: uppercase;
  animation: slideFromLeft .7s ease-out both
}

.first .investment-body {
  font-size: 16px;
  line-height: 1.55;
  color: #C2C2C2;
  letter-spacing: .01em
}

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

.first .investment-list li {
  font-size: 14px;
  line-height: 1.55;
  color: #C2C2C2;
  letter-spacing: .01em;
  padding-left: 20px;
  position: relative
}

.first .investment-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #4D7384
}

.first .investment-right {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.first .investment-tier {
  background: #161a1d;
  border-radius: 2px;
  padding: 32px;
  border: 1px solid #c2c2c214;
  transition: border-color .15s ease-out, box-shadow .18s ease
}

.first .investment-tier:hover {
  border-color: #4d738480;
  box-shadow: 0 12px 40px 0 #4d738424
}

.first .investment-tier.featured {
  border-color: #4d738466;
  background: linear-gradient(160deg, #161a1d 60%, #4d738414 100%)
}

.first .tier-name {
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4D7384;
  margin-bottom: 8px
}

.first .tier-price {
  font-size: 27px;
  line-height: 1.1;
  font-weight: 700;
  color: #f0ede8;
  letter-spacing: .01em;
  margin-bottom: 4px
}

.first .tier-period {
  font-size: 13px;
  color: #555;
  letter-spacing: .03em;
  margin-bottom: 16px
}

.first .tier-detail {
  font-size: 14px;
  line-height: 1.55;
  color: #C2C2C2;
  letter-spacing: .01em
}

.first .tier-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: .04em;
  color: #4D7384;
  text-decoration: none;
  text-transform: lowercase;
  position: relative;
  padding-bottom: 2px
}

.first .tier-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100%;
  right: 0;
  height: 1px;
  background: #4D7384;
  transition: left .18s ease-out
}

.first .tier-link:hover::after {
  left: 0
}

.first .voices-section {
  background: #0d0f11;
  padding: 96px 0;
  position: relative
}

.first .voices-top-rule {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, #c2c2c21f 50%, transparent 90%);
  pointer-events: none
}

.first .voices-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.first .voices-heading {
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: .02em;
  font-weight: 600;
  color: #f0ede8;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: slideFromRight .7s ease-out both
}

.first .voices-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.first .voice-item {
  background: #141719;
  border-radius: 2px;
  padding: 32px;
  border-top: 2px solid #4d73844d;
  border-left: 1px solid #c2c2c20f;
  transition: border-top-color .15s ease-out, box-shadow .2s ease
}

.first .voice-item:hover {
  border-top-color: #4D7384;
  box-shadow: 0 6px 20px 0 #4d73841a
}

.first .voice-item.tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.first .voice-image-block {
  width: 100%;
  height: 200px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px
}

.first .voice-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 7s ease
}

.first .voice-image-block:hover img {
  transform: scale(1.04)
}

.first .voice-quote {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #f0ede8;
  margin-bottom: 16px;
  font-style: italic
}

.first .voice-quote::before {
  display: block;
  width: 24px;
  height: 2px;
  background: #4D7384;
  margin-bottom: 16px;
  content: ""
}

.first .voice-person {
  font-size: 13px;
  letter-spacing: .06em;
  color: #555;
  text-transform: uppercase
}

.first .voice-context {
  font-size: 13px;
  line-height: 1.55;
  color: #4D7384;
  letter-spacing: .02em;
  margin-top: 4px
}

.first .community-section {
  background: linear-gradient(170deg, #141719 0%, #0d1214 60%, #101618 100%);
  padding: 80px 0 96px
}

.first .community-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

.first .community-top {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 32px
}

.first .community-heading-block {
  flex: 1
}

.first .community-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .02em;
  font-weight: 700;
  color: #f0ede8;
  text-transform: uppercase;
  animation: slideFromLeft .7s ease-out both
}

.first .community-subheading {
  font-size: 14px;
  line-height: 1.55;
  color: #888;
  margin-top: 8px;
  letter-spacing: .01em;
  max-width: 400px
}

.first .community-stat-block {
  flex: 0 0 260px;
  background: #161a1d;
  border-radius: 2px;
  padding: 32px;
  border: 1px solid #4d738433;
  box-shadow: 0 6px 20px 0 #4d73841a
}

.first .community-big-number {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 700;
  color: #4D7384;
  letter-spacing: .01em
}

.first .community-big-label {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  margin-top: 4px
}

.first .community-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 16px
}

.first .pillar {
  padding: 32px 16px;
  border-radius: 2px;
  background: #161a1d;
  border-bottom: 2px solid #4d738433;
  transition: border-bottom-color .15s ease-out, background .2s ease
}

.first .pillar:hover {
  border-bottom-color: #4D7384;
  background: #1a1f23
}

.first .pillar-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  position: relative
}

.first .pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: #4D7384;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.first .pillar-name {
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  color: #f0ede8;
  margin-bottom: 8px
}

.first .pillar-desc {
  font-size: 13px;
  line-height: 1.55;
  color: #888;
  letter-spacing: .01em
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-28px)
  }

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

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(28px)
  }

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

@media (max-width: 900px) {
  .first .gap-inner {
    flex-direction: column
  }

  .first .gap-aside {
    flex: none;
    width: 100%
  }

  .first .gap-image-strip {
    flex: none;
    width: 100%;
    height: 200px
  }

  .first .creators-grid {
    grid-template-columns: 1fr
  }

  .first .creator-card.wide {
    grid-column: span 1;
    flex-direction: column
  }

  .first .investment-inner {
    flex-direction: column
  }

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

  .first .voices-layout {
    grid-template-columns: 1fr
  }

  .first .voice-item.tall {
    grid-row: span 1
  }

  .first .community-top {
    flex-direction: column
  }

  .first .community-stat-block {
    flex: none;
    width: 100%
  }

  .first .community-pillars {
    grid-template-columns: 1fr 1fr
  }

  .first .creators-top {
    flex-direction: column;
    align-items: flex-start
  }

  .first .title-heading {
    font-size: 37px
  }
}

@media (max-width: 600px) {
  .first .title-heading {
    font-size: 27px
  }

  .first .gap-metrics {
    flex-direction: column;
    gap: 16px
  }

  .first .community-pillars {
    grid-template-columns: 1fr
  }

  .first .reading-arrow-left,
  .first .reading-arrow-right,
  .first .reading-dot-left,
  .first .reading-dot-right {
    display: none
  }

  .first .title-block {
    padding: 64px 16px 48px
  }

  .first .gap-section,
  .first .investment-section,
  .first .community-section {
    padding: 48px 0
  }

  .first .creators-section,
  .first .voices-section {
    padding: 64px 0
  }
}

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

.success-page .success-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

.success-page .success-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a2a32 0%, #2a3d48 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px 0 #4d73841a;
  flex-shrink: 0
}

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

.success-page .success-content {
  text-align: center;
  max-width: 560px
}

.success-page .success-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4D7384;
  margin-bottom: 16px;
  line-height: 1.35
}

.success-page .success-heading {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: .01em;
  color: #f0eeea;
  margin: 0 0 16px;
  font-weight: 300;
  text-transform: uppercase
}

.success-page .success-body {
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #C2C2C2;
  margin: 0 0 32px
}

.success-page .success-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #4D7384 0%, #2a3d48 100%);
  margin: 0 auto 32px;
  border-radius: 2px
}

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

.success-page .button-primary {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #4D7384 0%, #3a5a6a 100%);
  color: #f0eeea;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  line-height: 1.35;
  box-shadow: 0 6px 20px 0 #4d73841a;
  transition: background .15s ease-out, box-shadow .2s ease-out, transform .1s ease
}

.success-page .button-primary:hover {
  background: linear-gradient(135deg, #5a8496 0%, #4D7384 100%);
  box-shadow: 0 12px 40px 0 #4d738424
}

.success-page .button-primary:active {
  transform: scale(0.97)
}

.success-page .button-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: #C2C2C2;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid #2e3c44;
  cursor: pointer;
  line-height: 1.35;
  transition: border-color .15s ease-out, color .15s ease-out, transform .1s ease
}

.success-page .button-secondary:hover {
  border-color: #4D7384;
  color: #f0eeea
}

.success-page .button-secondary:active {
  transform: scale(0.97)
}

.success-page .success-note {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: .01em;
  color: #555;
  text-align: center;
  max-width: 400px
}

.success-page .success-note span {
  color: #4D7384
}