* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  font-family: 'Exo 2', sans-serif;
  background-color: #111018;
  color: #F1EFEA;
}

.brand-header {
  background: linear-gradient(135deg, #16141f 0%, #1a1626 60%, #0e0d15 100%);
  border-bottom: 1px solid rgba(184, 155, 69, 0.18);
  box-shadow: 0 6px 25px -2px rgba(184, 155, 69, 0.11);
  position: relative;
  overflow: hidden;
}

.brand-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #B89B45 40%, #D2BBA8 70%, transparent 100%);
  pointer-events: none;
}

.header-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}

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

.logoframe {
  width: 72px;
  height: 88px;
  border-radius: 4px;
  border: 1px solid rgba(184, 155, 69, 0.35);
  background: rgba(241, 239, 234, 0.06);
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 6px 25px -2px rgba(184, 155, 69, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

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

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

.brandname {
  font-family: 'Exo 2', sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #F1EFEA;
}

.brandtag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #B89B45;
}

.navzone {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

.primarnav li {
  display: block;
}

.primarnav a {
  display: block;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #D2BBA8;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: color 0.15s ease-out, border-color 0.2s ease-out, background-color 0.15s ease;
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.primarnav a:hover {
  color: #F1EFEA;
  border-color: rgba(184, 155, 69, 0.3);
  background-color: rgba(184, 155, 69, 0.07);
}

.primarnav a:focus {
  outline: 2px solid #B89B45;
  outline-offset: 2px;
  text-decoration: underline;
}

.primarnav a.active {
  color: #B89B45;
  border-color: rgba(184, 155, 69, 0.4);
  background-color: rgba(184, 155, 69, 0.1);
}

@media (max-width: 1024px) {
  .header-grid {
    padding: 24px 24px;
    gap: 24px;
  }

  .primarnav a {
    padding: 12px 12px;
  }
}

@media (max-width: 640px) {
  .header-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 24px;
  }

  .navzone {
    justify-content: flex-start;
  }

  .primarnav {
    justify-content: flex-start;
  }

  .primarnav a {
    padding: 12px 12px;
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .header-grid {
    padding: 24px 12px;
  }

  .brandname {
    font-size: 19px;
  }

  .primarnav {
    gap: 4px;
  }

  .primarnav a {
    padding: 12px 8px;
  }
}

.sitefooter {
  background: linear-gradient(180deg, #13111c 0%, #0e0d15 100%);
  border-top: 1px solid rgba(184, 155, 69, 0.15);
  margin-top: auto;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logozone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logoframe {
  width: 68px;
  height: 84px;
  border-radius: 4px;
  border: 1px solid rgba(184, 155, 69, 0.25);
  background: rgba(241, 239, 234, 0.04);
  box-shadow: 0 1px 2px -2px rgba(210, 187, 168, 0.06), 0 6px 25px -2px rgba(210, 187, 168, 0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

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

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(210, 187, 168, 0.6);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  display: block;
}

.footer-links a {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(210, 187, 168, 0.7);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.25s ease;
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: #D2BBA8;
  border-color: rgba(210, 187, 168, 0.2);
}

.footer-links a:focus {
  outline: 2px solid #B89B45;
  outline-offset: 2px;
  text-decoration: underline;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.footer-contact-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(210, 187, 168, 0.55);
}

.footer-contact-item a {
  color: rgba(184, 155, 69, 0.85);
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.footer-contact-item a:hover {
  color: #B89B45;
}

.footer-contact-item a:focus {
  outline: 2px solid #B89B45;
  outline-offset: 2px;
  text-decoration: underline;
}

.footer-sep {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 155, 69, 0.2), transparent);
}

@media (max-width: 640px) {
  .footer-inner {
    padding: 36px 24px;
    gap: 24px;
  }

  .footer-links {
    gap: 4px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .footer-inner {
    padding: 24px 12px;
  }
}

.cookiebar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 4000;
  background: linear-gradient(135deg, #1a1626 0%, #16141f 100%);
  border-top: 1px solid rgba(184, 155, 69, 0.3);
  box-shadow: 0 8px 36px -2px rgba(184, 155, 69, 0.11);
  display: none;
}

.cookiebar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cookiebar-text {
  flex: 1;
  min-width: 240px;
}

.cookiebar-headline {
  font-family: 'Exo 2', sans-serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0 0 8px 0;
}

.cookiebar-desc {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #D2BBA8;
  margin: 0;
}

.cookiebar-desc a {
  color: #B89B45;
  text-decoration: underline;
}

.cookiebar-desc a:focus {
  outline: 2px solid #B89B45;
  outline-offset: 2px;
}

.cookiebar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookiebar-btn {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid;
  cursor: pointer;
  min-height: 44px;
  min-width: 120px;
  text-align: center;
  transition: background-color 0.15s ease-out, color 0.15s ease-out, border-color 0.2s ease;
  white-space: nowrap;
}

.cookiebar-btn:active {
  transform: scale(0.97);
}

.cookiebar-btn:focus {
  outline: 2px solid #B89B45;
  outline-offset: 2px;
}

.cookiebar-btn.accept {
  background-color: #B89B45;
  border-color: #B89B45;
  color: #111018;
}

.cookiebar-btn.accept:hover {
  background-color: #cdb05a;
  border-color: #cdb05a;
}

.cookiebar-btn.decline {
  background-color: transparent;
  border-color: rgba(210, 187, 168, 0.4);
  color: #D2BBA8;
}

.cookiebar-btn.decline:hover {
  background-color: rgba(210, 187, 168, 0.08);
  border-color: rgba(210, 187, 168, 0.6);
  color: #F1EFEA;
}

.prefstab {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 3999;
  display: none;
}

.prefstab-btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  background: #16141f;
  border: 1px solid rgba(184, 155, 69, 0.3);
  border-right: none;
  color: #B89B45;
  padding: 12px 8px;
  cursor: pointer;
  border-radius: 4px 0 0 4px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  min-height: 44px;
  min-width: 44px;
  transition: background-color 0.18s ease, color 0.15s ease-out;
}

.prefstab-btn:hover {
  background-color: rgba(184, 155, 69, 0.1);
  color: #F1EFEA;
}

.prefstab-btn:focus {
  outline: 2px solid #B89B45;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookiebar-inner {
    padding: 24px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .cookiebar-actions {
    width: 100%;
  }

  .cookiebar-btn {
    flex: 1;
  }
}

@media (max-width: 360px) {
  .cookiebar-inner {
    padding: 24px 12px;
  }
}

.doc-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 24px;
  background: #131210;
  color: #F1EFEA;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.015em;
}

.doc-content h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin-bottom: 36px;
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(184, 155, 69, 0.28);
}

.doc-content h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin-top: 72px;
  margin-bottom: 24px;
}

.doc-content h3 {
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: 0.015em;
  color: #D2BBA8;
  margin-top: 36px;
  margin-bottom: 12px;
}

.doc-content h4 {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.015em;
  color: #D2BBA8;
  margin-top: 24px;
  margin-bottom: 8px;
}

.doc-content h5 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #B89B45;
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.doc-content h6 {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(210, 187, 168, 0.7);
  margin-top: 24px;
  margin-bottom: 8px;
}

.doc-content ul {
  margin: 24px 0;
  padding-left: 24px;
  list-style: none;
}

.doc-content ol {
  margin: 24px 0;
  padding-left: 24px;
  list-style: none;
  counter-reset: policy-counter;
}

.doc-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  color: rgba(241, 239, 234, 0.88);
}

.doc-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #B89B45;
  border-radius: 4px;
}

.doc-content ol li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 16px;
  color: rgba(241, 239, 234, 0.88);
  counter-increment: policy-counter;
}

.doc-content ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #B89B45;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.doc-content ul ul,
.doc-content ol ol,
.doc-content ul ol,
.doc-content ol ul {
  margin: 8px 0;
  padding-left: 24px;
}

.doc-content ul ul li::before {
  width: 4px;
  height: 4px;
  background: rgba(184, 155, 69, 0.5);
  top: 12px;
}

.doc-content strong,
.doc-content b {
  color: #F1EFEA;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.doc-content a {
  color: #B89B45;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease-out, text-decoration-color 0.2s ease;
  text-decoration-color: rgba(184, 155, 69, 0.45);
}

.doc-content a:hover {
  color: #D2BBA8;
  text-decoration-color: rgba(210, 187, 168, 0.7);
}

.doc-content a:active {
  color: #F1EFEA;
}

.doc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 36px 0;
  font-size: 16px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 6px 25px -2px rgba(184, 155, 69, 0.11);
}

.doc-content thead {
  background: rgba(184, 155, 69, 0.14);
}

.doc-content thead tr {
  border-bottom: 1px solid rgba(184, 155, 69, 0.35);
}

.doc-content tbody tr {
  border-bottom: 1px solid rgba(241, 239, 234, 0.07);
  transition: background 0.12s ease-out;
}

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

.doc-content tbody tr:hover {
  background: rgba(184, 155, 69, 0.06);
}

.doc-content th {
  padding: 12px 24px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #D2BBA8;
  line-height: 1.5;
}

.doc-content td {
  padding: 12px 24px;
  text-align: left;
  font-size: 16px;
  color: rgba(241, 239, 234, 0.85);
  line-height: 1.7;
  vertical-align: top;
}

.doc-content hr {
  border: none;
  border-top: 1px solid rgba(184, 155, 69, 0.22);
  margin: 72px 0;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06);
}

.doc-content div {
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .doc-content {
    padding: 72px 36px;
  }

  .doc-content h1 {
    font-size: 42px;
  }

  .doc-content h2 {
    font-size: 42px;
    margin-top: 72px;
  }
}

@media (max-width: 640px) {
  .doc-content {
    padding: 36px 24px;
  }

  .doc-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .doc-content h2 {
    font-size: 23px;
    margin-top: 36px;
    margin-bottom: 12px;
  }

  .doc-content h3 {
    font-size: 19px;
  }

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

  .doc-content th,
  .doc-content td {
    padding: 12px 12px;
    font-size: 16px;
  }

  .doc-content hr {
    margin: 36px 0;
  }
}

@media (max-width: 360px) {
  .doc-content {
    padding: 24px 12px;
  }

  .doc-content h1 {
    font-size: 23px;
  }

  .doc-content h2 {
    font-size: 19px;
  }

  .doc-content ul,
  .doc-content ol {
    padding-left: 12px;
  }
}

.abtus {
  background: #111009;
  overflow-x: clip;
  position: relative;
}

.abtus .pg-reveal {
  animation: revealScale 0.5s ease-out both;
}

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

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

.abtus .badge-tag {
  display: inline-block;
  background: rgba(184, 155, 69, 0.12);
  color: #B89B45;
  border: 1px solid rgba(184, 155, 69, 0.28);
  border-radius: 42px;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  line-height: 1.5;
}

.abtus .titblk {
  position: relative;
  background: linear-gradient(323deg, #1a1200 0%, #0e0c06 40%, #141108 70%, #1c1500 100%);
  padding: 72px 24px;
  overflow: hidden;
}

.abtus .titblk-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abtus .titblk-circles span {
  position: absolute;
  border-radius: 42px;
  border: 1px solid rgba(184, 155, 69, 0.07);
}

.abtus .titblk-circles span:nth-child(1) {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(184, 155, 69, 0.06) 0%, transparent 70%);
}

.abtus .titblk-circles span:nth-child(2) {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 10%;
  border-radius: 50%;
  background: rgba(210, 187, 168, 0.04);
}

.abtus .titblk-circles span:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 5%;
  border-radius: 50%;
  border: 1px solid rgba(184, 155, 69, 0.06);
}

.abtus .titblk-wavy {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
}

.abtus .titblk-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px;
}

.abtus .titblk-text {
  flex: 1 1 0;
}

.abtus .titblk-text .badge-tag {
  margin-bottom: 24px;
}

.abtus .titblk-h1 {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0 0 24px 0;
}

.abtus .titblk-h1 em {
  font-style: normal;
  color: #B89B45;
}

.abtus .titblk-pts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.abtus .titblk-pts li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 19px;
  line-height: 1.5;
  color: #D2BBA8;
  letter-spacing: 0.01em;
}

.abtus .titblk-pts li .pt-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #B89B45;
  margin-top: 9px;
}

.abtus .titblk-imgside {
  flex: 0 0 420px;
  position: relative;
}

.abtus .titblk-imgwrap {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 6px 25px -2px rgba(184, 155, 69, 0.11), 0 8px 36px -2px rgba(184, 155, 69, 0.11);
}

.abtus .titblk-imgwrap img {
  width: 420px;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease-out;
  filter: brightness(0.88) saturate(0.9);
}

.abtus .titblk-imgwrap:hover img {
  transform: scale(1.04);
}

.abtus .titblk-glow {
  position: absolute;
  inset: -12px;
  border-radius: 4px;
  background: radial-gradient(ellipse at 70% 30%, rgba(184, 155, 69, 0.13) 0%, transparent 65%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .abtus .titblk-inner {
    flex-direction: column;
    gap: 36px;
  }

  .abtus .titblk-imgside {
    flex: none;
    width: 100%;
  }

  .abtus .titblk-imgwrap img {
    width: 100%;
    height: 240px;
  }

  .abtus .titblk-h1 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .abtus .titblk {
    padding: 36px 24px;
  }

  .abtus .titblk-h1 {
    font-size: 42px;
  }
}

@media (max-width: 360px) {
  .abtus .titblk-h1 {
    font-size: 23px;
  }
}

.abtus .whobl {
  background: #0c0b08;
  padding: 72px 24px;
  position: relative;
}

.abtus .whobl-wavy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
}

.abtus .whobl-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 72px;
  align-items: start;
}

.abtus .whobl-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.abtus .whobl-numhead {
  position: relative;
  padding-left: 8px;
}

.abtus .whobl-bignum {
  position: absolute;
  top: -12px;
  left: -8px;
  font-size: 72px;
  line-height: 1.2;
  color: rgba(184, 155, 69, 0.07);
  letter-spacing: 0.01em;
  pointer-events: none;
  user-select: none;
}

.abtus .whobl-h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0;
  position: relative;
  z-index: 1;
}

.abtus .whobl-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abtus .whobl-body p {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: #D2BBA8;
  letter-spacing: 0.01em;
}

.abtus .whobl-body p.micro {
  font-size: 19px;
  line-height: 1.5;
  color: #F1EFEA;
  font-weight: 600;
}

.abtus .whobl-imgs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.abtus .whobl-imgcard {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 25px -2px rgba(184, 155, 69, 0.11), 0 8px 36px -2px rgba(184, 155, 69, 0.11);
  position: relative;
}

.abtus .whobl-imgcard img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease-out;
  filter: brightness(0.85);
}

.abtus .whobl-imgcard:hover img {
  transform: scale(1.05);
}

.abtus .whobl-imgcap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(323deg, rgba(17, 16, 9, 0.85) 0%, rgba(17, 16, 9, 0.4) 100%);
  font-size: 16px;
  line-height: 1.5;
  color: #D2BBA8;
  letter-spacing: 0.01em;
}

.abtus .whobl-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.abtus .whobl-metric {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 4px;
  background: rgba(184, 155, 69, 0.05);
  border: 1px solid rgba(184, 155, 69, 0.1);
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.abtus .whobl-metric:hover {
  background: rgba(184, 155, 69, 0.1);
  border-color: rgba(184, 155, 69, 0.22);
}

.abtus .whobl-mval {
  font-size: 42px;
  line-height: 1.2;
  color: #B89B45;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.abtus .whobl-mlbl {
  font-size: 16px;
  line-height: 1.5;
  color: #D2BBA8;
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .abtus .whobl-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .abtus .whobl {
    padding: 36px 24px;
  }

  .abtus .whobl-h2 {
    font-size: 23px;
  }
}

.abtus .teambl {
  background: linear-gradient(323deg, #0e0c06 0%, #13110a 60%, #0b0a05 100%);
  padding: 72px 24px;
  position: relative;
}

.abtus .teambl-wavy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 24px;
  pointer-events: none;
}

.abtus .teambl-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.abtus .teambl-toprow {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 36px;
}

.abtus .teambl-numhead {
  position: relative;
  padding-left: 8px;
}

.abtus .teambl-bignum {
  position: absolute;
  top: -12px;
  left: -8px;
  font-size: 72px;
  line-height: 1.2;
  color: rgba(210, 187, 168, 0.06);
  pointer-events: none;
  user-select: none;
}

.abtus .teambl-h2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0;
  position: relative;
  z-index: 1;
}

.abtus .teambl-sub {
  font-size: 19px;
  line-height: 1.7;
  color: #D2BBA8;
  letter-spacing: 0.01em;
  max-width: 460px;
}

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

.abtus .tcard {
  border-radius: 4px;
  background: rgba(184, 155, 69, 0.04);
  border: 1px solid rgba(184, 155, 69, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06);
  transition: border-color 0.2s ease-out, box-shadow 0.35s ease-out;
}

.abtus .tcard:hover {
  border-color: rgba(184, 155, 69, 0.25);
  box-shadow: 0 6px 25px -2px rgba(184, 155, 69, 0.11), 0 8px 36px -2px rgba(184, 155, 69, 0.11);
}

.abtus .tcard-imgwrap {
  overflow: hidden;
  position: relative;
  height: 200px;
}

.abtus .tcard-imgwrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  filter: brightness(0.82) saturate(0.85);
}

.abtus .tcard:hover .tcard-imgwrap img {
  transform: scale(1.05);
}

.abtus .tcard-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.abtus .tcard-name {
  font-size: 19px;
  line-height: 1.5;
  color: #F1EFEA;
  letter-spacing: 0.01em;
  margin: 0;
}

.abtus .tcard-role {
  font-size: 16px;
  line-height: 1.5;
  color: #B89B45;
  letter-spacing: 0.02em;
  margin: 0;
}

.abtus .tcard-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #D2BBA8;
  letter-spacing: 0.01em;
  margin: 8px 0 0 0;
}

.abtus .tcard-highlight {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 155, 69, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.abtus .tcard-hval {
  font-size: 23px;
  line-height: 1.2;
  color: #B89B45;
  letter-spacing: 0.01em;
}

.abtus .tcard-hlbl {
  font-size: 16px;
  line-height: 1.5;
  color: #D2BBA8;
  letter-spacing: 0.01em;
}

.abtus .teambl-imgfull {
  margin-top: 36px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 36px -2px rgba(184, 155, 69, 0.11);
}

.abtus .teambl-imgfull img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.8);
  transition: transform 0.5s ease;
}

.abtus .teambl-imgfull:hover img {
  transform: scale(1.03);
}

.abtus .teambl-imgoverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, rgba(17, 16, 9, 0.7) 0%, rgba(17, 16, 9, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  gap: 8px;
}

.abtus .teambl-ovh {
  font-size: 23px;
  line-height: 1.2;
  color: #F1EFEA;
  letter-spacing: 0.01em;
  margin: 0;
}

.abtus .teambl-ovp {
  font-size: 19px;
  line-height: 1.5;
  color: #D2BBA8;
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 640px;
}

@media (max-width: 1024px) {
  .abtus .teambl-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abtus .teambl-toprow {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .abtus .teambl {
    padding: 36px 24px;
  }

  .abtus .teambl-grid {
    grid-template-columns: 1fr;
  }

  .abtus .teambl-h2 {
    font-size: 23px;
  }

  .abtus .teambl-imgfull img {
    height: 200px;
  }

  .abtus .teambl-imgoverlay {
    padding: 24px;
  }
}

@media (max-width: 360px) {
  .abtus .titblk-pts li {
    font-size: 16px;
  }
}

.frnt {
  background: #141210;
  color: #F1EFEA;
  overflow-x: clip;
  position: relative;
}

.frnt .reveal {
  opacity: 0;
  transform: translateY(32px);
  animation: slideUp 0.5s ease-out forwards;
}

.frnt .reveal.d1 {
  animation-delay: 0.1s;
}

.frnt .reveal.d2 {
  animation-delay: 0.22s;
}

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

.frnt .reveal.d4 {
  animation-delay: 0.46s;
}

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

.frnt .pgwrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.frnt .badge {
  display: inline-block;
  background: rgba(184, 155, 69, 0.15);
  color: #B89B45;
  border: 1px solid rgba(184, 155, 69, 0.3);
  border-radius: 42px;
  font-size: 16px;
  padding: 4px 12px;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.frnt .titlesec {
  padding: 72px 0 36px;
  position: relative;
  overflow: hidden;
}

.frnt .titlesec .curvebg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.frnt .titlesec .curvebg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.frnt .titlesec .tinner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.frnt .titlesec .tleft {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.frnt .titlesec .th1 {
  font-size: 72px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0;
}

.frnt .titlesec .th1 span {
  color: #B89B45;
}

.frnt .titlesec .tdesc {
  font-size: 19px;
  line-height: 1.7;
  color: #D2BBA8;
  margin: 0;
  max-width: 480px;
}

.frnt .titlesec .tlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B89B45;
  font-size: 19px;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 155, 69, 0.4);
  padding-bottom: 4px;
  width: fit-content;
  transition: color 0.18s ease-out, border-color 0.18s ease-out;
}

.frnt .titlesec .tlink:hover {
  color: #F1EFEA;
  border-color: rgba(241, 239, 234, 0.5);
}

.frnt .titlesec .tlink:active {
  transform: scale(0.97);
}

.frnt .titlesec .tright {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 6px 25px -2px rgba(184, 155, 69, 0.11);
}

.frnt .titlesec .tright::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, rgba(184, 155, 69, 0.22) 0%, transparent 60%);
  pointer-events: none;
}

.frnt .titlesec .tright img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: blur(0px);
  transition: filter 0.45s ease, transform 0.45s ease;
}

.frnt .titlesec .tright:hover img {
  filter: blur(0px);
  transform: scale(1.04);
}

.frnt .titlesec .taccent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #B89B45, transparent);
}

.frnt .whosec {
  padding: 72px 0;
  background: #1a1612;
  position: relative;
}

.frnt .whosec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 155, 69, 0.3), transparent);
}

.frnt .whosec .wgrid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.frnt .whosec .wlabel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px;
}

.frnt .whosec .wh2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0;
}

.frnt .whosec .wsubtext {
  font-size: 16px;
  line-height: 1.7;
  color: #D2BBA8;
  margin: 0;
}

.frnt .whosec .wcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.frnt .whosec .wcard {
  background: #201c17;
  border-radius: 4px;
  padding: 24px;
  border-top: 3px solid #B89B45;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 6px 25px -2px rgba(184, 155, 69, 0.11);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease-out;
}

.frnt .whosec .wcard:hover {
  transform: translateY(-4px);
}

.frnt .whosec .wcard.neutral {
  border-top-color: rgba(210, 187, 168, 0.4);
}

.frnt .whosec .wcard .wctag {
  font-size: 16px;
  color: #B89B45;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.frnt .whosec .wcard.neutral .wctag {
  color: #D2BBA8;
}

.frnt .whosec .wcard .wch5 {
  font-size: 19px;
  line-height: 1.5;
  color: #F1EFEA;
  margin: 0;
}

.frnt .whosec .wcard .wcp {
  font-size: 16px;
  line-height: 1.7;
  color: #D2BBA8;
  margin: 0;
}

.frnt .whosec .wimg {
  margin-top: 24px;
  grid-column: 1 / -1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.frnt .whosec .wimg img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.frnt .whosec .wimg:hover img {
  filter: blur(0px);
  transform: scale(1.03);
}

.frnt .whosec .wimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, rgba(184, 155, 69, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.frnt .proofsec {
  padding: 72px 0;
  background: #B89B45;
  position: relative;
}

.frnt .proofsec .pgrid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: center;
}

.frnt .proofsec .ph2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #141210;
  margin: 0 0 24px;
}

.frnt .proofsec .pdesc {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(20, 18, 16, 0.8);
  margin: 0 0 24px;
}

.frnt .proofsec .plist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frnt .proofsec .plist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #141210;
}

.frnt .proofsec .plist li .pdot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #141210;
  flex-shrink: 0;
  margin-top: 8px;
}

.frnt .proofsec .pimg {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 36px -2px rgba(184, 155, 69, 0.11);
}

.frnt .proofsec .pimg img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transition: filter 0.38s ease-out, transform 0.38s ease-out;
}

.frnt .proofsec .pimg:hover img {
  filter: blur(0px);
  transform: scale(1.04);
}

.frnt .proofsec .pmetrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.frnt .proofsec .pmet {
  background: rgba(20, 18, 16, 0.12);
  border-radius: 4px;
  padding: 12px;
  border-left: 3px solid rgba(20, 18, 16, 0.4);
  border-top: 1px solid rgba(20, 18, 16, 0.15);
}

.frnt .proofsec .pmet .pmnum {
  font-size: 42px;
  line-height: 1.2;
  color: #141210;
  letter-spacing: 0.01em;
  display: block;
}

.frnt .proofsec .pmet .pmlabel {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(20, 18, 16, 0.75);
  display: block;
}

.frnt .mirsec {
  padding: 72px 0;
  background: #141210;
  position: relative;
}

.frnt .mirsec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 187, 168, 0.25), transparent);
}

.frnt .mirsec .mwrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.frnt .mirsec .mimg {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.frnt .mirsec .mimg img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  filter: blur(3px);
  transition: filter 0.42s ease, transform 0.42s ease;
}

.frnt .mirsec .mimg:hover img {
  filter: blur(0px);
  transform: scale(1.04);
}

.frnt .mirsec .mimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(323deg, rgba(184, 155, 69, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.frnt .mirsec .mimg .maccent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #B89B45;
}

.frnt .mirsec .mright {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px;
}

.frnt .mirsec .mh2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0;
}

.frnt .mirsec .mscens {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frnt .mirsec .mscen {
  background: #1a1612;
  border-radius: 4px;
  padding: 24px;
  border-left: 3px solid rgba(184, 155, 69, 0.5);
  border-top: 1px solid rgba(184, 155, 69, 0.1);
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06);
}

.frnt .mirsec .mscen .mstag {
  font-size: 16px;
  color: #B89B45;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}

.frnt .mirsec .mscen .msp {
  font-size: 16px;
  line-height: 1.7;
  color: #D2BBA8;
  margin: 0;
}

.frnt .realsec {
  padding: 72px 0;
  background: #1a1612;
  position: relative;
}

.frnt .realsec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 155, 69, 0.3), transparent);
}

.frnt .realsec .rhead {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.frnt .realsec .rh2 {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0;
}

.frnt .realsec .rdesc {
  font-size: 19px;
  line-height: 1.7;
  color: #D2BBA8;
  margin: 0;
  max-width: 600px;
}

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

.frnt .realsec .rcard {
  background: #201c17;
  border-radius: 4px;
  padding: 24px;
  border-top: 3px solid #B89B45;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 8px 36px -2px rgba(184, 155, 69, 0.11);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.19s ease-out;
}

.frnt .realsec .rcard:hover {
  transform: translateY(-5px);
}

.frnt .realsec .rcard .rquote {
  font-size: 16px;
  line-height: 1.7;
  color: #D2BBA8;
  margin: 0;
  font-style: italic;
}

.frnt .realsec .rcard .rbefore {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(210, 187, 168, 0.6);
  margin: 0;
  padding-top: 8px;
  border-top: 1px solid rgba(184, 155, 69, 0.15);
}

.frnt .realsec .rcard .rafter {
  font-size: 16px;
  line-height: 1.5;
  color: #B89B45;
  margin: 0;
}

.frnt .realsec .rcard .rname {
  font-size: 16px;
  color: #F1EFEA;
  letter-spacing: 0.01em;
  margin: 0;
  font-weight: 600;
}

.frnt .realsec .rcard .rrole {
  font-size: 16px;
  color: rgba(210, 187, 168, 0.6);
  margin: 0;
}

@media (max-width: 1024px) {
  .frnt .titlesec .tinner {
    grid-template-columns: 1fr;
  }

  .frnt .titlesec .th1 {
    font-size: 58px;
  }

  .frnt .whosec .wgrid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .frnt .whosec .wlabel {
    position: static;
  }

  .frnt .proofsec .pgrid {
    grid-template-columns: 1fr;
  }

  .frnt .mirsec .mwrap {
    grid-template-columns: 1fr;
  }

  .frnt .realsec .rcards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .frnt .titlesec .th1 {
    font-size: 42px;
  }

  .frnt .whosec .wcards {
    grid-template-columns: 1fr;
  }

  .frnt .proofsec .pmetrics {
    grid-template-columns: 1fr;
  }

  .frnt .realsec .rcards {
    grid-template-columns: 1fr;
  }

  .frnt .mirsec .mimg img {
    height: 280px;
  }
}

@media (max-width: 360px) {
  .frnt .titlesec .th1 {
    font-size: 42px;
  }

  .frnt .pgwrap {
    padding: 0 12px;
  }
}

.ctus {
  background: #0e0c08;
  color: #F1EFEA;
  overflow: hidden;
  position: relative;
}

.ctus .reach-band {
  position: relative;
  padding: 72px 24px;
  overflow: hidden;
}

.ctus .reach-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(323deg, #B89B45 0%, transparent 55%), linear-gradient(180deg, #0e0c08 0%, #1a1508 50%, #0e0c08 100%);
  pointer-events: none;
}

.ctus .reach-band::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B89B45 30%, #B89B45 70%, transparent);
  pointer-events: none;
}

.ctus .reach-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 72px;
  align-items: flex-start;
}

.ctus .reach-left {
  flex: 0 0 420px;
  position: relative;
}

.ctus .reach-tag {
  display: inline-block;
  background: rgba(184, 155, 69, 0.12);
  border: 1px solid rgba(184, 155, 69, 0.35);
  color: #B89B45;
  font-size: 16px;
  letter-spacing: 0.02em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.ctus .reach-heading {
  font-size: 58px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0 0 24px 0;
  font-weight: 700;
}

.ctus .reach-heading span {
  color: #B89B45;
}

.ctus .reach-sub {
  font-size: 19px;
  line-height: 1.7;
  color: #D2BBA8;
  margin: 0 0 36px 0;
  letter-spacing: 0.01em;
}

.ctus .reach-frame {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(210, 187, 168, 0.15);
  border-radius: 4px;
  background: rgba(184, 155, 69, 0.04);
  box-shadow: 0 6px 25px -2px rgba(184, 155, 69, 0.11);
}

.ctus .reach-frame::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px dashed rgba(184, 155, 69, 0.2);
  border-radius: 4px;
  pointer-events: none;
}

.ctus .contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.ctus .contact-item:last-child {
  margin-bottom: 0;
}

.ctus .ci-icon {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(184, 155, 69, 0.15);
  border: 1px solid rgba(184, 155, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ctus .ci-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #B89B45;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctus .ci-text {
  flex: 1;
}

.ctus .ci-label {
  font-size: 16px;
  color: #D2BBA8;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 4px;
  line-height: 1.2;
}

.ctus .ci-val {
  font-size: 19px;
  color: #F1EFEA;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.18s ease-out;
}

.ctus .ci-val:hover {
  color: #B89B45;
}

.ctus .anchor-icon {
  margin-top: 36px;
  position: relative;
}

.ctus .anchor-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: rgba(184, 155, 69, 0.18);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.ctus .reach-right {
  flex: 1;
}

.ctus .form-box {
  background: rgba(241, 239, 234, 0.03);
  border: 1px solid rgba(210, 187, 168, 0.12);
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0 8px 36px -2px rgba(184, 155, 69, 0.11);
  position: relative;
}

.ctus .form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B89B45 40%, #D2BBA8 60%, transparent);
  border-radius: 4px 4px 0 0;
  pointer-events: none;
}

.ctus .form-title {
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.ctus .form-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #D2BBA8;
  margin: 0 0 36px 0;
  letter-spacing: 0.01em;
}

.ctus .form-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 24px;
}

.ctus .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ctus .form-group.full {
  flex: 0 0 100%;
}

.ctus .flabel {
  font-size: 16px;
  color: #D2BBA8;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ctus .flabel span {
  color: #B89B45;
  margin-left: 2px;
}

.ctus .finput {
  background: rgba(241, 239, 234, 0.05);
  border: 1px solid rgba(210, 187, 168, 0.2);
  border-radius: 4px;
  color: #F1EFEA;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 12px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.18s ease-out, box-shadow 0.22s ease-out, background 0.18s ease-out;
  width: 100%;
  box-sizing: border-box;
  inset-shadow: inset 0 1px 0 rgba(241, 239, 234, 0.06), inset 0 -1px 0 rgba(184, 155, 69, 0.08);
  box-shadow: inset 0 1px 0 rgba(241, 239, 234, 0.06), inset 0 -1px 0 rgba(184, 155, 69, 0.08);
}

.ctus .finput::placeholder {
  color: rgba(210, 187, 168, 0.4);
  transition: opacity 0.2s ease-out;
}

.ctus .finput:focus::placeholder {
  opacity: 0;
}

.ctus .finput:focus {
  border-color: rgba(184, 155, 69, 0.55);
  background: rgba(184, 155, 69, 0.06);
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 0 0 2px rgba(184, 155, 69, 0.1), inset 0 1px 0 rgba(241, 239, 234, 0.06);
}

.ctus .fselect {
  background: rgba(241, 239, 234, 0.05);
  border: 1px solid rgba(210, 187, 168, 0.2);
  border-radius: 4px;
  color: #F1EFEA;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 12px;
  line-height: 1.5;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: border-color 0.18s ease-out, background 0.18s ease-out;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B89B45' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  box-shadow: inset 0 1px 0 rgba(241, 239, 234, 0.06), inset 0 -1px 0 rgba(184, 155, 69, 0.08);
}

.ctus .fselect option {
  background: #1a1508;
  color: #F1EFEA;
}

.ctus .fselect:focus {
  border-color: rgba(184, 155, 69, 0.55);
  background-color: rgba(184, 155, 69, 0.06);
}

.ctus .time-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.ctus .time-opt {
  position: relative;
}

.ctus .time-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ctus .time-opt label {
  display: block;
  padding: 8px 12px;
  border: 1px solid rgba(210, 187, 168, 0.2);
  border-radius: 4px;
  font-size: 16px;
  color: #D2BBA8;
  cursor: pointer;
  transition: border-color 0.15s ease-out, background 0.15s ease-out, color 0.15s ease-out;
  letter-spacing: 0.01em;
  line-height: 1.2;
  user-select: none;
}

.ctus .time-opt label:hover {
  border-color: rgba(184, 155, 69, 0.45);
  color: #F1EFEA;
  background: rgba(184, 155, 69, 0.07);
}

.ctus .time-opt input[type="radio"]:checked+label {
  border-color: #B89B45;
  background: rgba(184, 155, 69, 0.15);
  color: #B89B45;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06);
}

.ctus .time-opt input[type="radio"]:focus-visible+label {
  outline: 2px solid #B89B45;
  outline-offset: 2px;
}

.ctus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.ctus .privacy-row input[type="checkbox"] {
  flex: 0 0 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #B89B45;
  cursor: pointer;
}

.ctus .privacy-text {
  font-size: 16px;
  line-height: 1.5;
  color: #D2BBA8;
  letter-spacing: 0.01em;
}

.ctus .privacy-text a {
  color: #B89B45;
  text-decoration: underline;
  text-decoration-color: rgba(184, 155, 69, 0.4);
  transition: color 0.15s ease-out, text-decoration-color 0.15s ease-out;
}

.ctus .privacy-text a:hover {
  color: #D2BBA8;
  text-decoration-color: rgba(210, 187, 168, 0.6);
}

.ctus .submit-btn {
  display: inline-block;
  padding: 12px 36px;
  background: linear-gradient(323deg, #B89B45 0%, #d4b558 100%);
  color: #0e0c08;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.18s ease-out, transform 0.12s ease-out, box-shadow 0.2s ease-out;
  box-shadow: 0 6px 25px -2px rgba(184, 155, 69, 0.11);
  line-height: 1.2;
}

.ctus .submit-btn:hover {
  opacity: 0.9;
  box-shadow: 0 8px 36px -2px rgba(184, 155, 69, 0.11);
}

.ctus .submit-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06);
}

.ctus .submit-btn:focus-visible {
  outline: 2px solid #B89B45;
  outline-offset: 3px;
}

.ctus .divider-fade {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 155, 69, 0.25) 30%, rgba(210, 187, 168, 0.15) 70%, transparent);
  margin: 0;
}

.ctus .details-band {
  position: relative;
  padding: 72px 24px;
  background: linear-gradient(323deg, rgba(184, 155, 69, 0.08) 0%, transparent 50%), #0e0c08;
}

.ctus .details-band::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 187, 168, 0.2) 30%, rgba(210, 187, 168, 0.2) 70%, transparent);
  pointer-events: none;
}

.ctus .details-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: stretch;
}

.ctus .detail-card {
  flex: 1;
  border: 1px solid rgba(210, 187, 168, 0.12);
  border-radius: 4px;
  padding: 36px;
  background: rgba(241, 239, 234, 0.02);
  position: relative;
  transition: border-color 0.22s ease-out, background 0.22s ease-out;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06);
}

.ctus .detail-card:hover {
  border-color: rgba(184, 155, 69, 0.3);
  background: rgba(184, 155, 69, 0.04);
}

.ctus .detail-card.featured {
  border-color: rgba(184, 155, 69, 0.25);
  background: rgba(184, 155, 69, 0.05);
  border-left: 3px solid #B89B45;
  border-top: 1px solid rgba(184, 155, 69, 0.25);
  border-right: 1px solid rgba(184, 155, 69, 0.25);
  border-bottom: 1px solid rgba(184, 155, 69, 0.25);
}

.ctus .dc-num {
  font-size: 72px;
  line-height: 1.2;
  font-weight: 700;
  color: rgba(184, 155, 69, 0.08);
  letter-spacing: 0.01em;
  position: absolute;
  top: 12px;
  right: 24px;
  pointer-events: none;
  user-select: none;
}

.ctus .dc-icon {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: rgba(184, 155, 69, 0.12);
  border: 1px solid rgba(184, 155, 69, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.ctus .dc-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #B89B45;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ctus .dc-heading {
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.ctus .dc-body {
  font-size: 16px;
  line-height: 1.7;
  color: #D2BBA8;
  margin: 0;
  letter-spacing: 0.01em;
}

.ctus .dc-body a {
  color: #B89B45;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.ctus .dc-body a:hover {
  color: #D2BBA8;
}

@keyframes colorShiftLoad {
  0% {
    color: rgba(184, 155, 69, 0.3);
  }

  100% {
    color: #F1EFEA;
  }
}

.ctus .reach-heading {
  animation: colorShiftLoad 0.8s ease-out forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }

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

.ctus .reach-tag {
  animation: fadeUp 0.35s ease-out both;
}

.ctus .reach-sub {
  animation: fadeUp 0.45s 0.1s ease-out both;
}

.ctus .reach-frame {
  animation: fadeUp 0.5s 0.18s ease-out both;
}

.ctus .form-box {
  animation: fadeUp 0.55s 0.08s ease-out both;
}

.ctus .detail-card {
  animation: fadeUp 0.5s ease-out both;
}

.ctus .detail-card:nth-child(2) {
  animation-delay: 0.1s;
}

.ctus .detail-card:nth-child(3) {
  animation-delay: 0.18s;
}

@media (max-width: 1024px) {
  .ctus .reach-inner {
    flex-direction: column;
    gap: 36px;
  }

  .ctus .reach-left {
    flex: 0 0 auto;
    width: 100%;
  }

  .ctus .reach-heading {
    font-size: 42px;
  }

  .ctus .details-inner {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .ctus .reach-band {
    padding: 36px 24px;
  }

  .ctus .reach-heading {
    font-size: 42px;
  }

  .ctus .form-box {
    padding: 24px;
  }

  .ctus .form-row {
    flex-direction: column;
    gap: 24px;
  }

  .ctus .details-band {
    padding: 36px 24px;
  }

  .ctus .detail-card {
    padding: 24px;
  }

  .ctus .submit-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .ctus .reach-heading {
    font-size: 42px;
  }

  .ctus .time-grid {
    flex-direction: column;
  }
}

.successPage {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111009;
  padding: 72px 24px;
}

.successPage .innerWrap {
  max-width: 580px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.successPage .iconRing {
  width: 80px;
  height: 80px;
  border-radius: 42px;
  border: 2px solid #B89B45;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 6px 25px -2px rgba(184, 155, 69, 0.11), 0 8px 36px -2px rgba(184, 155, 69, 0.11);
  flex-shrink: 0;
}

.successPage .iconRing svg {
  display: block;
}

.successPage .textBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.successPage .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 42px;
  background: rgba(184, 155, 69, 0.12);
  color: #B89B45;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border: 1px solid rgba(184, 155, 69, 0.25);
}

.successPage .mainHeading {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0;
}

.successPage .subText {
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #D2BBA8;
  margin: 0;
  max-width: 440px;
}

.successPage .dividerLine {
  width: 100%;
  height: 1px;
  background: linear-gradient(323deg, rgba(184, 155, 69, 0.35) 0%, rgba(210, 187, 168, 0.1) 60%, transparent 100%);
}

.successPage .infoRow {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  background: rgba(241, 239, 234, 0.03);
  border: 1px solid rgba(184, 155, 69, 0.14);
  border-radius: 4px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(241, 239, 234, 0.04), inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.successPage .infoRow .infoLabel {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #B89B45;
}

.successPage .infoRow .infoDetail {
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #F1EFEA;
  margin: 0;
}

.successPage .actionGroup {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.successPage .btnPrimary {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 4px;
  background: #B89B45;
  color: #111009;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 6px 25px -2px rgba(184, 155, 69, 0.11);
  transition: background-color 0.15s ease-out, box-shadow 0.2s ease, transform 0.1s ease;
}

.successPage .btnPrimary:hover {
  background: #cdb050;
  box-shadow: 0 1px 2px -2px rgba(184, 155, 69, 0.06), 0 6px 25px -2px rgba(184, 155, 69, 0.22), 0 8px 36px -2px rgba(184, 155, 69, 0.18);
}

.successPage .btnPrimary:active {
  transform: scale(0.97);
}

.successPage .btnPrimary:focus-visible {
  outline: 2px solid #B89B45;
  outline-offset: 3px;
}

.successPage .btnGhost {
  display: inline-block;
  padding: 12px 36px;
  border-radius: 4px;
  background: transparent;
  color: #D2BBA8;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid rgba(210, 187, 168, 0.3);
  cursor: pointer;
  transition: border-color 0.18s ease-out, color 0.18s ease-out, transform 0.1s ease;
}

.successPage .btnGhost:hover {
  border-color: rgba(210, 187, 168, 0.7);
  color: #F1EFEA;
}

.successPage .btnGhost:active {
  transform: scale(0.97);
}

.successPage .btnGhost:focus-visible {
  outline: 2px solid #D2BBA8;
  outline-offset: 3px;
}

.successPage .contactNote {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(210, 187, 168, 0.6);
  margin: 0;
  text-align: center;
}

.successPage .contactNote a {
  color: #B89B45;
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 155, 69, 0.35);
  transition: border-color 0.15s ease-out, color 0.12s ease;
}

.successPage .contactNote a:hover {
  color: #cdb050;
  border-bottom-color: rgba(184, 155, 69, 0.8);
}

@media (max-width: 640px) {
  .successPage {
    padding: 36px 24px;
  }

  .successPage .mainHeading {
    font-size: 23px;
  }

  .successPage .subText {
    font-size: 16px;
  }

  .successPage .actionGroup {
    flex-direction: column;
    align-items: stretch;
  }

  .successPage .btnPrimary,
  .successPage .btnGhost {
    text-align: center;
  }
}

@media (max-width: 360px) {
  .successPage .innerWrap {
    gap: 24px;
  }

  .successPage .infoRow {
    padding: 12px;
  }
}