@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@latest/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/montserrat@latest/700.css');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background-color: #16162e;
  color: #EEEEF8;
  overflow-x: hidden;
}

:focus {
  outline: none;
  filter: invert(1);
}

.pg-head {
  background: linear-gradient(160deg, #1a1a3e 0%, #23235a 60%, #2a2060 100%);
  border-bottom: 1px solid rgba(72, 72, 162, 0.28);
  box-shadow: 0 5px 22px 0 rgba(72, 72, 162, 0.10);
  position: relative;
  overflow: hidden;
}

.pg-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4848A2 0%, #84A7BB 50%, #4848A2 100%);
  pointer-events: none;
}

.pg-head::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(72, 72, 162, 0.07);
  pointer-events: none;
}

.head-box {
  max-width: 1366px;
  margin: 0 auto;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-box {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 238, 248, 0.08);
  border: 1px solid rgba(132, 167, 187, 0.30);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 1px 4px 0 rgba(72, 72, 162, 0.08), 0 5px 22px 0 rgba(72, 72, 162, 0.10);
  text-decoration: none;
}

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

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

.brand-name {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  color: #EEEEF8;
  letter-spacing: -0.5px;
  text-decoration: none;
}

.brand-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #84A7BB;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.head-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.locale-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(72, 72, 162, 0.18);
  border: 1px solid rgba(72, 72, 162, 0.32);
  border-radius: 4px;
  padding: 4px 12px;
}

.locale-badge .fi {
  width: 20px;
  height: 14px;
  border-radius: 0px;
}

.locale-badge span {
  font-size: 14px;
  font-weight: 700;
  color: #84A7BB;
  letter-spacing: 0.1em;
}

.head-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  background: rgba(238, 238, 248, 0.04);
  border: 1px solid rgba(132, 167, 187, 0.14);
  border-radius: 10px;
  padding: 8px 16px;
}

.nav-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #EEEEF8;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: color 0.15s ease-out, border-color 0.2s ease-out, background-color 0.15s ease-out;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover {
  color: #84A7BB;
  border-color: rgba(132, 167, 187, 0.40);
  background-color: rgba(132, 167, 187, 0.08);
}

.nav-link.active {
  color: #4848A2;
  border-color: rgba(72, 72, 162, 0.50);
  background-color: rgba(72, 72, 162, 0.12);
  font-weight: 700;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(132, 167, 187, 0.20);
  flex-shrink: 0;
}

.pg-foot {
  background: linear-gradient(180deg, #12122a 0%, #0e0e20 100%);
  border-top: 1px solid rgba(72, 72, 162, 0.22);
  margin-top: 48px;
}

.foot-box {
  max-width: 1366px;
  margin: 0 auto;
  padding: 48px 48px 0;
}

.foot-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(132, 167, 187, 0.12);
}

.foot-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.foot-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238, 238, 248, 0.06);
  border: 1px solid rgba(132, 167, 187, 0.25);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 1px 4px 0 rgba(132, 167, 187, 0.08);
}

.foot-logo-pill img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

.foot-brand-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  color: #EEEEF8;
}

.foot-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #84A7BB;
}

.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot-contact-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #EEEEF8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foot-email {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #84A7BB;
  text-decoration: none;
  border: 1px solid rgba(132, 167, 187, 0.20);
  border-radius: 4px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s ease-out, border-color 0.2s ease-out;
}

.foot-email:hover {
  color: #EEEEF8;
  border-color: rgba(132, 167, 187, 0.50);
}

.foot-email-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.foot-links-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #EEEEF8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foot-policy-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.foot-pill-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #84A7BB;
  text-decoration: none;
  background: rgba(72, 72, 162, 0.10);
  border: 1px solid rgba(72, 72, 162, 0.22);
  border-radius: 4px;
  padding: 8px 16px;
  display: inline-block;
  transition: color 0.15s ease-out, background-color 0.15s ease-out, border-color 0.2s ease-out;
  white-space: nowrap;
}

.foot-pill-link:hover {
  color: #EEEEF8;
  background: rgba(72, 72, 162, 0.22);
  border-color: rgba(72, 72, 162, 0.45);
}

.foot-bottom {
  padding: 32px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-copy {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(132, 167, 187, 0.60);
}

.foot-locale {
  display: flex;
  align-items: center;
  gap: 8px;
}

.foot-locale .fi {
  width: 18px;
  height: 12px;
  border-radius: 0px;
  opacity: 0.7;
}

.foot-locale-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(132, 167, 187, 0.50);
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .head-box {
    padding: 32px 32px;
  }

  .foot-box {
    padding: 48px 32px 0;
  }
}

@media (max-width: 768px) {
  .head-box {
    padding: 24px 16px;
    gap: 24px;
  }

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

  .foot-box {
    padding: 32px 16px 0;
  }

  .foot-top {
    flex-direction: column;
    gap: 32px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .brand-name {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .head-box {
    padding: 16px 12px;
    gap: 16px;
  }

  .foot-box {
    padding: 24px 12px 0;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px 12px;
  }

  .brand-name {
    font-size: 20px;
  }
}

.consent-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: linear-gradient(90deg, #1a1a3e 0%, #23235a 100%);
  border-bottom: 1px solid rgba(72, 72, 162, 0.40);
  box-shadow: 0 5px 22px 0 rgba(72, 72, 162, 0.13);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.consent-bar-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #EEEEF8;
  flex: 1;
  min-width: 200px;
}

.consent-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.consent-btn-accept {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  color: #EEEEF8;
  background: transparent;
  border: 1px solid rgba(72, 72, 162, 0.70);
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.15s ease-out, border-color 0.2s ease-out, color 0.15s ease-out;
  letter-spacing: 0.04em;
}

.consent-btn-accept:hover,
.consent-btn-accept:focus {
  background: rgba(72, 72, 162, 0.30);
  border-color: rgba(72, 72, 162, 1);
  color: #EEEEF8;
}

.consent-link-decline {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #84A7BB;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease-out;
}

.consent-link-decline:hover,
.consent-link-decline:focus {
  color: #EEEEF8;
}

@media (max-width: 768px) {
  .consent-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .consent-bar-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.legal-content {
  color: #EEEEF8;
  margin: 0 auto;
  max-width: 1366px;
  padding: 48px 32px;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  margin-top: 0;
  opacity: 0.92;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  margin-top: 0;
  padding-left: 32px;
}

.legal-content ul {
  list-style-type: disc;
}

.legal-content ol {
  list-style-type: decimal;
}

.legal-content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
  opacity: 0.92;
}

.legal-content li:last-child {
  margin-bottom: 0;
}

.legal-content ul ul,
.legal-content ol ol,
.legal-content ul ol,
.legal-content ol ul {
  margin-bottom: 8px;
  margin-top: 8px;
}

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

.legal-content em,
.legal-content i {
  color: #84A7BB;
  font-style: italic;
}

.legal-content hr {
  background: linear-gradient(90deg, #4848A2 0%, #84A7BB 50%, transparent 100%);
  border: none;
  height: 1px;
  margin-bottom: 32px;
  margin-top: 32px;
  opacity: 0.45;
}

.legal-content div {
  margin-bottom: 16px;
}

.legal-content div p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .legal-content {
    padding: 48px 32px;
  }
}

@media (max-width: 768px) {
  .legal-content {
    padding: 32px 16px;
  }

  .legal-content p {
    font-size: 16px;
  }

  .legal-content li {
    font-size: 16px;
  }

  .legal-content ul,
  .legal-content ol {
    padding-left: 16px;
  }
}

@media (max-width: 375px) {
  .legal-content {
    padding: 32px 12px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 14px;
    line-height: 1.8;
  }

  .legal-content hr {
    margin-bottom: 16px;
    margin-top: 16px;
  }
}

.bdet {
  background: #0d0d1a;
  color: #EEEEF8;
  padding: 0;
  overflow-x: hidden;
}

.bdet .bc-bar {
  max-width: 1366px;
  margin: 0 auto;
  padding: 16px 32px;
}

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

.bdet .bc-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #84A7BB;
}

.bdet .bc-list li a {
  color: #84A7BB;
  text-decoration: none;
  padding: 4px 4px;
  transition: color 0.15s ease-out, background 0.15s ease-out;
  border-radius: 4px;
}

.bdet .bc-list li a:hover {
  color: #EEEEF8;
  background: rgba(72, 72, 162, 0.25);
}

.bdet .bc-list li .bc-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #4848A2;
  border-radius: 0px;
  transform: rotate(45deg);
}

.bdet .bc-list li.bc-cur {
  color: #EEEEF8;
}

.bdet .art-lead {
  max-width: 1366px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.bdet .art-meta-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bdet .art-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(72, 72, 162, 0.18);
  border: 1px solid rgba(72, 72, 162, 0.45);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #84A7BB;
  width: fit-content;
}

.bdet .art-tag .tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #4848A2;
  flex-shrink: 0;
}

.bdet .art-h1 {
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #EEEEF8;
  margin: 0;
}

.bdet .art-sub {
  font-size: 16px;
  line-height: 1.8;
  color: #84A7BB;
  margin: 0;
}

.bdet .art-readtime {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #84A7BB;
}

.bdet .rt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bdet .rt-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #4848A2;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bdet .art-img-col {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.13);
}

.bdet .art-img-col img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.45) brightness(0.75);
  transition: filter 0.2s ease-out;
}

.bdet .art-img-col:hover img {
  filter: saturate(1) brightness(0.92);
}

.bdet .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(72, 72, 162, 0.35) 0%, rgba(132, 167, 187, 0.08) 100%);
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.bdet .art-img-col:hover .img-overlay {
  opacity: 0;
}

.bdet .deco-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.bdet .deco-circles span {
  position: absolute;
  border-radius: 10px;
  border: 1px solid rgba(72, 72, 162, 0.12);
}

.bdet .deco-circles span:nth-child(1) {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -40px;
  border-radius: 10px;
  transform: rotate(20deg);
}

.bdet .deco-circles span:nth-child(2) {
  width: 90px;
  height: 90px;
  bottom: 32px;
  left: 16px;
  border-radius: 10px;
  transform: rotate(10deg);
}

.bdet .divider-a {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.bdet .divider-a .dline {
  height: 1px;
  width: 220px;
  background: linear-gradient(90deg, rgba(72, 72, 162, 0.6) 0%, rgba(132, 167, 187, 0.1) 100%);
}

.bdet .divider-a .dcenter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.bdet .divider-a .dcenter span {
  display: block;
  width: 8px;
  height: 8px;
  background: #4848A2;
  transform: rotate(45deg);
}

.bdet .divider-a .dcenter .dsmall {
  width: 5px;
  height: 5px;
  background: #84A7BB;
  opacity: 0.5;
}

.bdet .art-body-wrap {
  max-width: 1366px;
  margin: 0 auto;
  padding: 48px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.bdet .art-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bdet .art-body .art-p {
  font-size: 16px;
  line-height: 1.8;
  color: #c8c8e8;
  margin: 0;
}

.bdet .art-body .art-h2 {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #EEEEF8;
  margin: 16px 0 0;
}

.bdet .art-body .art-h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: #EEEEF8;
  margin: 12px 0 0;
}

.bdet .art-body mark {
  background: rgba(72, 72, 162, 0.35);
  color: #EEEEF8;
  border-radius: 4px;
  padding: 0 4px;
}

.bdet .art-body del {
  color: #84A7BB;
  opacity: 0.7;
}

.bdet .art-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bdet .art-body ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #c8c8e8;
  padding-left: 16px;
  position: relative;
}

.bdet .art-body ul li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #4848A2;
  font-weight: 700;
}

.bdet .art-body figure {
  margin: 16px 0;
  border-radius: 10px;
  overflow: hidden;
}

.bdet .art-body figure img {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.bdet .art-body figcaption {
  font-size: 14px;
  line-height: 1.5;
  color: #84A7BB;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.bdet .art-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 32px;
}

.bdet .sidebar-card {
  background: rgba(72, 72, 162, 0.08);
  border: 1px solid rgba(72, 72, 162, 0.2);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 5px 22px 0 rgba(72, 72, 162, 0.10);
}

.bdet .sidebar-card .sc-label {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #84A7BB;
  font-weight: 700;
  text-transform: uppercase;
}

.bdet .sidebar-card .sc-title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 900;
  color: #EEEEF8;
  margin: 0;
}

.bdet .sidebar-card .sc-text {
  font-size: 14px;
  line-height: 1.8;
  color: #84A7BB;
  margin: 0;
}

.bdet .sidebar-card .sc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bdet .sidebar-card .sc-list li {
  font-size: 14px;
  line-height: 1.5;
  color: #c8c8e8;
  padding-left: 12px;
  position: relative;
}

.bdet .sidebar-card .sc-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: #4848A2;
  font-size: 12px;
}

.bdet .sidebar-card .sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #84A7BB;
  background: transparent;
  border: 1px solid rgba(132, 167, 187, 0.4);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out, border-color 0.15s ease-out;
}

.bdet .sidebar-card .sc-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(72, 72, 162, 0.18);
  transition: width 0.18s ease-out;
}

.bdet .sidebar-card .sc-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4848A2;
  transition: width 0.18s ease-out;
}

.bdet .sidebar-card .sc-btn:hover {
  color: #EEEEF8;
  border-color: #4848A2;
}

.bdet .sidebar-card .sc-btn:hover::before {
  width: 100%;
}

.bdet .sidebar-card .sc-btn:hover::after {
  width: 100%;
}

.bdet .sidebar-card .sc-btn:focus {
  outline: 2px solid #4848A2;
  outline-offset: 2px;
}

.bdet .divider-b {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.bdet .divider-b .dl2 {
  height: 1px;
  width: 120px;
  background: linear-gradient(90deg, rgba(132, 167, 187, 0.08) 0%, rgba(72, 72, 162, 0.5) 100%);
}

.bdet .divider-b .dc2 {
  width: 32px;
  height: 1px;
  background: #4848A2;
}

.bdet .tips-band {
  background: #0b0b1f;
  border-top: 1px solid rgba(72, 72, 162, 0.18);
  border-bottom: 1px solid rgba(72, 72, 162, 0.18);
  padding: 48px 0;
  margin-top: 16px;
}

.bdet .tips-inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: 32px;
  align-items: start;
}

.bdet .tips-label-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.bdet .tips-big-label {
  font-size: 66px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(72, 72, 162, 0.18);
  margin: 0;
  user-select: none;
}

.bdet .tips-caption {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4848A2;
  font-weight: 700;
}

.bdet .tips-mid-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-right: 1px solid rgba(72, 72, 162, 0.15);
  padding-right: 32px;
}

.bdet .tips-mid-col .tm-heading {
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  color: #EEEEF8;
  margin: 0;
}

.bdet .tips-mid-col .tm-text {
  font-size: 14px;
  line-height: 1.8;
  color: #84A7BB;
  margin: 0;
}

.bdet .tips-right-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bdet .tip-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 4px;
  background: rgba(72, 72, 162, 0.06);
  border: 1px solid transparent;
  transition: border-color 0.18s ease-out, background 0.18s ease-out;
  animation: seq-reveal 0.2s ease-out both;
}

.bdet .tip-item:nth-child(1) {
  animation-delay: 0.05s;
}

.bdet .tip-item:nth-child(2) {
  animation-delay: 0.10s;
}

.bdet .tip-item:nth-child(3) {
  animation-delay: 0.15s;
}

.bdet .tip-item:nth-child(4) {
  animation-delay: 0.20s;
}

@keyframes seq-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.bdet .tip-item:hover {
  border-color: rgba(72, 72, 162, 0.35);
  background: rgba(72, 72, 162, 0.12);
}

.bdet .tip-num {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
  color: rgba(72, 72, 162, 0.5);
  min-width: 32px;
  letter-spacing: -0.02em;
}

.bdet .tip-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bdet .tip-txt strong {
  font-size: 14px;
  font-weight: 700;
  color: #EEEEF8;
  line-height: 1.5;
}

.bdet .tip-txt span {
  font-size: 14px;
  line-height: 1.5;
  color: #84A7BB;
}

.bdet .contact-strip {
  max-width: 1366px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bdet .cs-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
}

.bdet .cs-left .cs-eyebrow {
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4848A2;
  font-weight: 700;
}

.bdet .cs-left .cs-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  color: #EEEEF8;
  margin: 0;
}

.bdet .cs-left .cs-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #84A7BB;
  margin: 0;
}

.bdet .cs-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

.bdet .cs-right .cs-link {
  font-size: 16px;
  color: #84A7BB;
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.15s ease-out, background 0.15s ease-out;
}

.bdet .cs-right .cs-link:hover {
  color: #EEEEF8;
  background: rgba(72, 72, 162, 0.2);
}

.bdet .cs-right .cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #4848A2;
  background: transparent;
  border: 1px solid rgba(72, 72, 162, 0.5);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out, border-color 0.18s ease-out;
}

.bdet .cs-right .cs-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: rgba(72, 72, 162, 0.15);
  transition: width 0.18s ease-out;
}

.bdet .cs-right .cs-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #4848A2;
  transition: width 0.18s ease-out;
}

.bdet .cs-right .cs-btn:hover {
  color: #EEEEF8;
  border-color: #4848A2;
}

.bdet .cs-right .cs-btn:hover::before {
  width: 100%;
}

.bdet .cs-right .cs-btn:hover::after {
  width: 100%;
}

.bdet .cs-right .cs-btn:focus {
  outline: 2px solid #4848A2;
  outline-offset: 2px;
}

.bdet .zoom-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 4px 0 rgba(72, 72, 162, 0.08);
}

.bdet .zoom-img-wrap img {
  display: block;
  width: 100%;
  object-fit: cover;
  animation: slow-zoom 12s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

@media (max-width: 1024px) {
  .bdet .art-lead {
    grid-template-columns: 1fr;
    padding: 32px 32px 32px;
    gap: 32px;
  }

  .bdet .art-h1 {
    font-size: 36px;
  }

  .bdet .art-img-col img {
    height: 320px;
  }

  .bdet .art-body-wrap {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }

  .bdet .art-sidebar {
    position: static;
  }

  .bdet .tips-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .bdet .tips-label-col {
    display: none;
  }

  .bdet .tips-mid-col {
    border-right: none;
    padding-right: 0;
  }

  .bdet .contact-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .bdet .bc-bar {
    padding: 12px 16px;
  }

  .bdet .art-lead {
    padding: 32px 16px;
    gap: 32px;
  }

  .bdet .art-h1 {
    font-size: 26px;
  }

  .bdet .art-img-col img {
    height: 240px;
  }

  .bdet .art-body-wrap {
    padding: 32px 16px;
  }

  .bdet .divider-a,
  .bdet .divider-b {
    padding: 0 16px;
  }

  .bdet .tips-inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .bdet .tips-mid-col {
    border-right: none;
    padding-right: 0;
  }

  .bdet .contact-strip {
    padding: 32px 16px;
  }

  .bdet .cs-left .cs-heading {
    font-size: 26px;
  }
}

@media (max-width: 375px) {
  .bdet .art-h1 {
    font-size: 20px;
  }

  .bdet .art-sub {
    font-size: 14px;
  }

  .bdet .art-body .art-h2 {
    font-size: 20px;
  }

  .bdet .cs-left .cs-heading {
    font-size: 20px;
  }
}

.cont-us {
  background: #0d0d1a;
  overflow-x: clip;
  padding: 0;
  width: 100%;
}

.cont-us .pg-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
}

.cont-us .pg-top .txt-side {
  align-items: flex-start;
  background: linear-gradient(157deg, #1a1a38 0%, #0d0d1a 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  padding: 48px;
  position: relative;
}

.cont-us .pg-top .txt-side::after {
  background: #4848A2;
  bottom: 0;
  content: "";
  height: 3px;
  left: 48px;
  position: absolute;
  width: 60px;
}

.cont-us .pg-top .txt-side .badge {
  background: rgba(72, 72, 162, 0.18);
  border: 1px solid rgba(72, 72, 162, 0.4);
  border-radius: 4px;
  color: #84A7BB;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  text-transform: uppercase;
}

.cont-us .pg-top .txt-side .pg-h1 {
  color: #EEEEF8;
  font-size: 66px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.cont-us .pg-top .txt-side .pg-h1 span {
  color: #4848A2;
}

.cont-us .pg-top .txt-side .sub-txt {
  color: #84A7BB;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 360px;
}

.cont-us .pg-top .txt-side .circ-deco {
  border: 1px solid rgba(72, 72, 162, 0.12);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.cont-us .pg-top .txt-side .circ-deco.c1 {
  height: 220px;
  opacity: 0.4;
  right: -60px;
  top: -60px;
  width: 220px;
}

.cont-us .pg-top .txt-side .circ-deco.c2 {
  border-color: rgba(132, 167, 187, 0.08);
  bottom: -40px;
  height: 140px;
  left: 20px;
  opacity: 0.5;
  width: 140px;
}

.cont-us .pg-top .txt-side .circ-deco.c3 {
  border-color: rgba(72, 72, 162, 0.07);
  height: 80px;
  opacity: 0.6;
  right: 40px;
  top: 50%;
  width: 80px;
}

.cont-us .pg-top .img-side {
  overflow: hidden;
  position: relative;
}

.cont-us .pg-top .img-side img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 0.18s ease-out;
  width: 100%;
}

.cont-us .pg-top .img-side .img-overlay {
  background: linear-gradient(157deg, rgba(72, 72, 162, 0.55) 0%, rgba(132, 167, 187, 0.3) 100%);
  bottom: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.18s ease-out;
}

.cont-us .pg-top .img-side:hover .img-overlay {
  opacity: 0;
}

.cont-us .pg-top .img-side:hover img {
  filter: grayscale(0%);
}

.cont-us .pg-top .img-side img {
  filter: grayscale(30%);
}

.cont-us .wave-div {
  height: 32px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.cont-us .wave-div svg {
  display: block;
  height: 100%;
  width: 100%;
}

.cont-us .form-zone {
  background: #111128;
  padding: 48px;
  position: relative;
}

.cont-us .form-zone::before {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234848A2' fill-opacity='0.04'%3E%3Cpath d='M0 0h1v1H0zM20 0h1v1h-1zM0 20h1v1H0zM20 20h1v1h-1z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.cont-us .form-zone .fz-inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr 1.6fr;
  margin: 0 auto;
  max-width: 1366px;
  position: relative;
}

.cont-us .form-zone .contact-meta {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cont-us .form-zone .contact-meta .meta-label {
  color: #4848A2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cont-us .form-zone .contact-meta .meta-h {
  color: #EEEEF8;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.cont-us .form-zone .contact-meta .meta-desc {
  color: #84A7BB;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.cont-us .form-zone .contact-meta .chn-icons {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cont-us .form-zone .contact-meta .chn-icons .icon-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.cont-us .form-zone .contact-meta .chn-icons .icon-row .ic-box {
  align-items: center;
  background: rgba(72, 72, 162, 0.15);
  border: 1px solid rgba(72, 72, 162, 0.3);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.cont-us .form-zone .contact-meta .chn-icons .icon-row .ic-box svg {
  display: block;
}

.cont-us .form-zone .contact-meta .chn-icons .icon-row .ic-txt {
  color: #EEEEF8;
  font-size: 14px;
  line-height: 1.5;
}

.cont-us .form-zone .contact-meta .chn-icons .icon-row .ic-txt a {
  color: #84A7BB;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.cont-us .form-zone .contact-meta .chn-icons .icon-row .ic-txt a:hover {
  color: #EEEEF8;
}

.cont-us .form-zone .contact-meta .dash-connect {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 16px 0;
}

.cont-us .form-zone .contact-meta .dash-connect .dc-node {
  background: #4848A2;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.cont-us .form-zone .contact-meta .dash-connect .dc-line {
  border-top: 1px dashed rgba(72, 72, 162, 0.5);
  flex: 1;
}

.cont-us .form-zone .contact-meta .dash-connect .dc-node.end {
  background: #84A7BB;
}

.cont-us .form-zone .contact-meta .dash-connect .dc-mid {
  align-items: center;
  background: rgba(72, 72, 162, 0.12);
  border: 1px solid rgba(72, 72, 162, 0.25);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  gap: 4px;
  padding: 4px 8px;
}

.cont-us .form-zone .contact-meta .dash-connect .dc-mid span {
  color: #84A7BB;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.cont-us .form-zone .contact-meta .domain-block {
  background: rgba(72, 72, 162, 0.08);
  border: 1px solid rgba(72, 72, 162, 0.2);
  border-radius: 4px;
  padding: 16px;
}

.cont-us .form-zone .contact-meta .domain-block .code-label {
  color: #4848A2;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cont-us .form-zone .contact-meta .domain-block pre {
  background: #0d0d1a;
  border-radius: 4px;
  color: #84A7BB;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  overflow-x: auto;
  padding: 12px;
}

.cont-us .form-zone .contact-meta .domain-block pre .kw {
  color: #4848A2;
}

.cont-us .form-zone .contact-meta .domain-block pre .val {
  color: #EEEEF8;
}

.cont-us .form-zone .form-panel {
  background: rgba(14, 14, 30, 0.8);
  border: 1px solid rgba(72, 72, 162, 0.18);
  border-radius: 10px;
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.13);
  padding: 48px;
}

.cont-us .form-zone .form-panel .fp-h {
  color: #EEEEF8;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 32px;
}

.cont-us .form-zone .form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cont-us .form-zone .form-panel .field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.cont-us .form-zone .form-panel .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont-us .form-zone .form-panel .field label {
  color: #84A7BB;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cont-us .form-zone .form-panel .field input,
.cont-us .form-zone .form-panel .field select {
  appearance: none;
  background: rgba(14, 14, 30, 0.9);
  border: 1px solid rgba(72, 72, 162, 0.3);
  border-radius: 4px;
  color: #EEEEF8;
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  padding: 12px 16px;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  width: 100%;
}

.cont-us .form-zone .form-panel .field input::placeholder {
  color: #84A7BB;
  font-size: 14px;
  opacity: 0.7;
}

.cont-us .form-zone .form-panel .field select option {
  background: #111128;
  color: #EEEEF8;
}

.cont-us .form-zone .form-panel .field input:focus,
.cont-us .form-zone .form-panel .field select:focus {
  border-color: #4848A2 !important;
  box-shadow: 0 1px 4px 0 rgba(72, 72, 162, 0.08) !important;
}

.cont-us .form-zone .form-panel .field input:focus-visible,
.cont-us .form-zone .form-panel .field select:focus-visible {
  border-color: #4848A2 !important;
  box-shadow: 0 0 0 3px rgba(72, 72, 162, 0.35) !important;
  outline: none !important;
}

.cont-us .form-zone .form-panel .chn-pick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cont-us .form-zone .form-panel .chn-pick .chn-label {
  color: #84A7BB;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cont-us .form-zone .form-panel .chn-pick .chn-opts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.cont-us .form-zone .form-panel .chn-pick .chn-opts .chn-opt {
  position: relative;
}

.cont-us .form-zone .form-panel .chn-pick .chn-opts .chn-opt input[type="radio"] {
  height: 1px;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 1px;
}

.cont-us .form-zone .form-panel .chn-pick .chn-opts .chn-opt label {
  background: rgba(72, 72, 162, 0.08);
  border: 1px solid rgba(72, 72, 162, 0.25);
  border-radius: 4px;
  color: #84A7BB;
  cursor: pointer;
  display: block;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: background 0.12s ease-out, border-color 0.12s ease-out, color 0.12s ease-out;
}

.cont-us .form-zone .form-panel .chn-pick .chn-opts .chn-opt input[type="radio"]:checked+label {
  background: rgba(72, 72, 162, 0.3);
  border-color: #4848A2;
  color: #EEEEF8;
}

.cont-us .form-zone .form-panel .chn-pick .chn-opts .chn-opt label:hover {
  border-color: #84A7BB;
  color: #EEEEF8;
}

.cont-us .form-zone .form-panel .chn-pick .chn-opts .chn-opt input[type="radio"]:focus-visible+label {
  box-shadow: 0 0 0 3px rgba(72, 72, 162, 0.35) !important;
  outline: none !important;
}

.cont-us .form-zone .form-panel .priv-row {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 8px 0;
}

.cont-us .form-zone .form-panel .priv-row input[type="checkbox"] {
  accent-color: #4848A2;
  cursor: pointer;
  flex-shrink: 0;
  height: 16px;
  margin-top: 4px;
  width: 16px;
}

.cont-us .form-zone .form-panel .priv-row input[type="checkbox"]:focus-visible {
  outline: 2px solid #4848A2 !important;
  outline-offset: 2px !important;
}

.cont-us .form-zone .form-panel .priv-row .priv-txt {
  color: #84A7BB;
  font-size: 14px;
  line-height: 1.8;
}

.cont-us .form-zone .form-panel .priv-row .priv-txt a {
  color: #84A7BB;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.12s ease-out;
}

.cont-us .form-zone .form-panel .priv-row .priv-txt a:hover {
  color: #EEEEF8;
}

.cont-us .form-zone .form-panel .submit-btn {
  background: transparent;
  border: 1px solid #4848A2;
  border-radius: 4px;
  color: #4848A2;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 32px;
  position: relative;
  text-transform: uppercase;
  transition: color 0.15s ease-out, background 0.15s ease-out;
  width: 100%;
}

.cont-us .form-zone .form-panel .submit-btn::before,
.cont-us .form-zone .form-panel .submit-btn::after {
  border-color: #EEEEF8;
  border-style: solid;
  border-width: 0;
  bottom: -1px;
  content: "";
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
  transition: border-width 0.15s ease-out;
}

.cont-us .form-zone .form-panel .submit-btn::before {
  border-radius: 4px 4px 0 0;
  border-top-width: 0;
}

.cont-us .form-zone .form-panel .submit-btn::after {
  border-bottom-width: 0;
  border-radius: 0 0 4px 4px;
}

.cont-us .form-zone .form-panel .submit-btn:hover {
  background: #4848A2;
  color: #EEEEF8;
}

.cont-us .form-zone .form-panel .submit-btn:hover::before {
  border-top-width: 2px;
}

.cont-us .form-zone .form-panel .submit-btn:hover::after {
  border-bottom-width: 2px;
}

.cont-us .form-zone .form-panel .submit-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(72, 72, 162, 0.35) !important;
  outline: none !important;
}

.cont-us .form-zone .form-panel .submit-btn:active {
  background: #3a3a8a;
}

@keyframes fadeBlurIn {
  from {
    filter: blur(8px);
    opacity: 0;
    transform: translateY(12px);
  }

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

.cont-us .pg-top .txt-side {
  animation: fadeBlurIn 0.2s ease-out both;
}

.cont-us .pg-top .img-side {
  animation: fadeBlurIn 0.18s ease-out 0.08s both;
}

.cont-us .form-zone .form-panel {
  animation: fadeBlurIn 0.2s ease-out 0.12s both;
}

.cont-us .form-zone .contact-meta {
  animation: fadeBlurIn 0.18s ease-out 0.06s both;
}

@media (max-width: 1024px) {
  .cont-us .pg-top {
    grid-template-columns: 1fr 1fr;
    min-height: 380px;
  }

  .cont-us .pg-top .txt-side {
    padding: 32px;
  }

  .cont-us .pg-top .txt-side .pg-h1 {
    font-size: 50px;
  }

  .cont-us .form-zone {
    padding: 32px;
  }

  .cont-us .form-zone .fz-inner {
    gap: 32px;
    grid-template-columns: 1fr 1.4fr;
  }

  .cont-us .form-zone .form-panel {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .cont-us .pg-top {
    grid-template-columns: 1fr;
  }

  .cont-us .pg-top .img-side {
    height: 240px;
  }

  .cont-us .pg-top .txt-side {
    padding: 32px;
  }

  .cont-us .pg-top .txt-side .pg-h1 {
    font-size: 36px;
  }

  .cont-us .form-zone {
    padding: 32px 16px;
  }

  .cont-us .form-zone .fz-inner {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .cont-us .form-zone .form-panel {
    padding: 24px 16px;
  }

  .cont-us .form-zone .form-panel .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .cont-us .pg-top .txt-side {
    padding: 16px;
  }

  .cont-us .pg-top .txt-side .pg-h1 {
    font-size: 26px;
  }

  .cont-us .form-zone {
    padding: 16px 8px;
  }

  .cont-us .form-zone .form-panel {
    padding: 16px 12px;
  }

  .cont-us .form-zone .form-panel .chn-pick .chn-opts {
    flex-direction: column;
  }
}

.abt-auth {
  background: #0e0e1a;
  overflow-x: hidden;
  position: relative;
}

.abt-auth .fade-el {
  opacity: 0;
  animation: fadeReveal 0.6s ease-out forwards;
}

.abt-auth .fade-el:nth-child(1) {
  animation-delay: 0.1s;
}

.abt-auth .fade-el:nth-child(2) {
  animation-delay: 0.22s;
}

.abt-auth .fade-el:nth-child(3) {
  animation-delay: 0.34s;
}

.abt-auth .fade-el:nth-child(4) {
  animation-delay: 0.46s;
}

@keyframes fadeReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.abt-auth .eyebrow {
  display: inline-block;
  background: rgba(72, 72, 162, 0.22);
  border: 1px solid rgba(132, 167, 187, 0.35);
  border-radius: 4px;
  color: #84A7BB;
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  text-transform: uppercase;
}

.abt-auth .dash-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin: 32px 0;
}

.abt-auth .dash-divider .d-line {
  width: 48px;
  height: 1px;
  background: rgba(132, 167, 187, 0.4);
}

.abt-auth .dash-divider .d-shape {
  width: 6px;
  height: 6px;
  border: 1px solid #84A7BB;
  border-radius: 0px;
  transform: rotate(45deg);
}

.abt-auth .ttl-blk {
  position: relative;
  padding: 96px 32px 64px;
  max-width: 1366px;
  margin: 0 auto;
  overflow: hidden;
}

.abt-auth .ttl-blk .pattern-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(72, 72, 162, 0.08) 39px, rgba(72, 72, 162, 0.08) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(72, 72, 162, 0.08) 39px, rgba(72, 72, 162, 0.08) 40px);
  pointer-events: none;
}

.abt-auth .ttl-blk .light-leak {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 80% 20%, rgba(72, 72, 162, 0.38) 0%, rgba(132, 167, 187, 0.12) 45%, transparent 70%);
  pointer-events: none;
  border-radius: 0px;
}

.abt-auth .ttl-blk .ttl-inner {
  position: relative;
  max-width: 680px;
}

.abt-auth .ttl-blk .ttl-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.abt-auth .ttl-blk .icon-sym {
  display: flex;
  align-items: center;
  gap: 8px;
}

.abt-auth .ttl-blk .icon-sym svg {
  opacity: 0.7;
}

.abt-auth .ttl-blk h1 {
  color: #EEEEF8;
  font-size: 66px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.abt-auth .ttl-blk h1 span {
  color: #84A7BB;
}

.abt-auth .ttl-blk .sub-name {
  color: #84A7BB;
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}

.abt-auth .ttl-blk .wave-edge {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.abt-auth .ttl-blk .wave-edge svg {
  display: block;
  width: 100%;
}

.abt-auth .prof-split {
  background: #141428;
  padding: 64px 32px;
}

.abt-auth .prof-split .ps-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.abt-auth .prof-split .ps-img-col {
  position: relative;
}

.abt-auth .prof-split .ps-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.13);
}

.abt-auth .prof-split .ps-img-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.85);
  transition: filter 0.18s ease-out, box-shadow 0.18s ease-out;
}

.abt-auth .prof-split .ps-img-wrap:hover img {
  filter: saturate(1) brightness(1);
}

.abt-auth .prof-split .ps-img-wrap:hover {
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.28);
}

.abt-auth .prof-split .ps-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(14, 14, 26, 0.88);
  border: 1px solid rgba(132, 167, 187, 0.3);
  border-radius: 4px;
  padding: 8px 12px;
  color: #84A7BB;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.abt-auth .prof-split .ps-curved-line {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.abt-auth .prof-split .ps-txt-col {
  padding-top: 8px;
}

.abt-auth .prof-split .ps-txt-col h2 {
  color: #EEEEF8;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.abt-auth .prof-split .ps-txt-col .accent-tag {
  display: inline-block;
  background: rgba(72, 72, 162, 0.28);
  border: 1px solid rgba(72, 72, 162, 0.5);
  border-radius: 4px;
  color: #84A7BB;
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding: 4px 8px;
}

.abt-auth .prof-split .ps-txt-col p {
  color: #b8bdd4;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.abt-auth .prof-split .ps-txt-col p:last-of-type {
  margin-bottom: 0;
}

.abt-auth .prof-split .metrics-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(132, 167, 187, 0.15);
}

.abt-auth .prof-split .metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.abt-auth .prof-split .metric-item .m-num {
  color: #4848A2;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.abt-auth .prof-split .metric-item .m-lbl {
  color: #84A7BB;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.abt-auth .exp-blk {
  background: linear-gradient(162deg, #1a1a38 0%, #0e0e1a 100%);
  padding: 64px 32px;
  position: relative;
}

.abt-auth .exp-blk .exp-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.abt-auth .exp-blk .exp-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.abt-auth .exp-blk .exp-top h2 {
  color: #EEEEF8;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  max-width: 480px;
}

.abt-auth .exp-blk .exp-top .top-note {
  color: #84A7BB;
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
  text-align: right;
}

.abt-auth .exp-blk .exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.abt-auth .exp-blk .exp-card {
  background: rgba(132, 167, 187, 0.05);
  border: 1px solid rgba(132, 167, 187, 0.12);
  border-radius: 10px;
  padding: 32px;
  position: relative;
  transition: border-color 0.15s ease-out, background 0.15s ease-out;
}

.abt-auth .exp-blk .exp-card:hover {
  background: rgba(72, 72, 162, 0.12);
  border-color: rgba(72, 72, 162, 0.45);
}

.abt-auth .exp-blk .exp-card .card-num {
  color: rgba(72, 72, 162, 0.4);
  font-size: 50px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.abt-auth .exp-blk .exp-card h4 {
  color: #EEEEF8;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin: 0 0 8px;
}

.abt-auth .exp-blk .exp-card p {
  color: #8a93b0;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.abt-auth .exp-blk .exp-card .card-dash {
  color: #4848A2;
  margin-right: 6px;
}

.abt-auth .exp-blk .frosted-band {
  margin-top: 48px;
  background: rgba(238, 238, 248, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(238, 238, 248, 0.1);
  border-radius: 10px;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.abt-auth .exp-blk .frosted-band .fb-icon-pair {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.abt-auth .exp-blk .frosted-band .fb-icon-pair svg {
  opacity: 0.7;
}

.abt-auth .exp-blk .frosted-band .fb-txt h5 {
  color: #EEEEF8;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.5;
  margin: 0 0 4px;
}

.abt-auth .exp-blk .frosted-band .fb-txt p {
  color: #8a93b0;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.abt-auth .layers-blk {
  background: #0e0e1a;
  padding: 64px 32px 96px;
}

.abt-auth .layers-blk .lb-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.abt-auth .layers-blk .lb-head {
  text-align: center;
  margin-bottom: 48px;
}

.abt-auth .layers-blk .lb-head h2 {
  color: #EEEEF8;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.abt-auth .layers-blk .lb-head p {
  color: #84A7BB;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 520px;
}

.abt-auth .layers-blk .checker-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.abt-auth .layers-blk .ck-row {
  display: contents;
}

.abt-auth .layers-blk .ck-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 22px 0 rgba(72, 72, 162, 0.10);
  transition: box-shadow 0.2s ease-out;
}

.abt-auth .layers-blk .ck-img:hover {
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.22);
}

.abt-auth .layers-blk .ck-img img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.8);
  transition: filter 0.18s ease-out;
}

.abt-auth .layers-blk .ck-img:hover img {
  filter: saturate(1) brightness(1);
}

.abt-auth .layers-blk .ck-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  background: #141428;
  border-radius: 10px;
  border: 1px solid rgba(132, 167, 187, 0.1);
}

.abt-auth .layers-blk .ck-txt h3 {
  color: #EEEEF8;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.abt-auth .layers-blk .ck-txt p {
  color: #8a93b0;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.abt-auth .layers-blk .ck-txt .dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.abt-auth .layers-blk .ck-txt .dash-list li {
  color: #8a93b0;
  font-size: 14px;
  line-height: 1.8;
  padding-left: 16px;
  position: relative;
}

.abt-auth .layers-blk .ck-txt .dash-list li::before {
  content: "–";
  color: #4848A2;
  left: 0;
  position: absolute;
}

.abt-auth .layers-blk .ck-txt .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.abt-auth .layers-blk .ck-txt .tag-row .tag {
  background: rgba(72, 72, 162, 0.2);
  border: 1px solid rgba(72, 72, 162, 0.4);
  border-radius: 4px;
  color: #84A7BB;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding: 4px 8px;
}

.abt-auth .layers-blk .ck-img.offset {
  grid-column: 2;
  grid-row: 2;
}

.abt-auth .layers-blk .ck-txt.offset {
  grid-column: 1;
  grid-row: 2;
}

.abt-auth .layers-blk .lb-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.abt-auth .layers-blk .btn-ghost {
  background: transparent;
  border: 1px solid rgba(72, 72, 162, 0.5);
  border-radius: 4px;
  color: #84A7BB;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 12px 32px;
  position: relative;
  transition: color 0.15s ease-out, background 0.15s ease-out;
  overflow: hidden;
}

.abt-auth .layers-blk .btn-ghost::before,
.abt-auth .layers-blk .btn-ghost::after {
  content: "";
  position: absolute;
  background: #4848A2;
  transition: transform 0.15s ease-out;
}

.abt-auth .layers-blk .btn-ghost::before {
  height: 1px;
  left: 0;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.abt-auth .layers-blk .btn-ghost::after {
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: right;
}

.abt-auth .layers-blk .btn-ghost:hover {
  background: rgba(72, 72, 162, 0.18);
  color: #EEEEF8;
}

.abt-auth .layers-blk .btn-ghost:hover::before,
.abt-auth .layers-blk .btn-ghost:hover::after {
  transform: scaleX(1);
}

.abt-auth .layers-blk .btn-ghost:focus {
  outline: 2px solid #84A7BB;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .abt-auth .ttl-blk h1 {
    font-size: 50px;
  }

  .abt-auth .prof-split .ps-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .abt-auth .exp-blk .exp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .abt-auth .layers-blk .checker-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .abt-auth .ttl-blk {
    padding: 64px 16px 48px;
  }

  .abt-auth .ttl-blk h1 {
    font-size: 36px;
  }

  .abt-auth .prof-split {
    padding: 48px 16px;
  }

  .abt-auth .prof-split .ps-inner {
    grid-template-columns: 1fr;
  }

  .abt-auth .prof-split .ps-curved-line {
    display: none;
  }

  .abt-auth .prof-split .metrics-row {
    gap: 16px;
  }

  .abt-auth .exp-blk {
    padding: 48px 16px;
  }

  .abt-auth .exp-blk .exp-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .abt-auth .exp-blk .exp-top .top-note {
    text-align: left;
  }

  .abt-auth .exp-blk .exp-grid {
    grid-template-columns: 1fr;
  }

  .abt-auth .exp-blk .frosted-band {
    flex-direction: column;
    padding: 32px 16px;
  }

  .abt-auth .layers-blk {
    padding: 48px 16px 64px;
  }

  .abt-auth .layers-blk .checker-grid {
    grid-template-columns: 1fr;
  }

  .abt-auth .layers-blk .ck-img.offset {
    grid-column: 1;
    grid-row: auto;
  }

  .abt-auth .layers-blk .ck-txt.offset {
    grid-column: 1;
    grid-row: auto;
  }

  .abt-auth .layers-blk .ck-txt {
    padding: 24px 16px;
  }
}

@media (max-width: 375px) {
  .abt-auth .ttl-blk h1 {
    font-size: 26px;
  }

  .abt-auth .prof-split .metric-item .m-num {
    font-size: 26px;
  }

  .abt-auth .exp-blk .exp-top h2 {
    font-size: 26px;
  }

  .abt-auth .layers-blk .lb-head h2 {
    font-size: 26px;
  }

  .abt-auth .layers-blk .ck-txt h3 {
    font-size: 20px;
  }
}

.blg-root {
  background: #0d0d1a;
  color: #EEEEF8;
  overflow-x: hidden;
  padding: 0;
}

.blg-root .pg-top {
  border-top: 2px solid #4848A2;
  border-bottom: 2px solid #84A7BB;
  padding: 48px 32px;
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px;
  position: relative;
}

.blg-root .pg-top .left-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 32px 0;
}

.blg-root .pg-top .left-col .tag-lbl {
  display: inline-block;
  background: #4848A2;
  color: #EEEEF8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  width: fit-content;
}

.blg-root .pg-top .left-col h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: #EEEEF8;
}

.blg-root .pg-top .left-col h1 .grad-word {
  background: linear-gradient(112deg, #84A7BB, #EEEEF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blg-root .pg-top .left-col .sub-txt {
  font-size: 16px;
  line-height: 1.5;
  color: #84A7BB;
  margin: 0;
  max-width: 420px;
}

.blg-root .pg-top .right-col {
  flex: 0 0 480px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.blg-root .pg-top .right-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease-out;
}

.blg-root .pg-top .right-col:hover img {
  transform: scale(1.03);
}

.blg-root .pg-top .right-col .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(72, 72, 162, 0.72) 0%, rgba(132, 167, 187, 0.18) 100%);
  transition: opacity 0.2s ease-out;
  pointer-events: none;
}

.blg-root .pg-top .right-col:hover .img-overlay {
  opacity: 0;
}

.blg-root .pg-top .dot-path {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  pointer-events: none;
}

.blg-root .pg-top .dot-path span {
  display: block;
  border-radius: 0px;
}

.blg-root .pg-top .dot-path .dp1 {
  width: 6px;
  height: 6px;
  background: #4848A2;
  border-radius: 0px;
}

.blg-root .pg-top .dot-path .dp2 {
  width: 4px;
  height: 4px;
  background: #84A7BB;
  border-radius: 0px;
}

.blg-root .pg-top .dot-path .dp3 {
  width: 3px;
  height: 3px;
  background: #EEEEF8;
  opacity: 0.5;
  border-radius: 0px;
}

.blg-root .divider-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px 0;
}

.blg-root .divider-dots span {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 0px;
  background: #4848A2;
  opacity: 0.7;
}

.blg-root .divider-dots span:nth-child(2) {
  background: #84A7BB;
  opacity: 1;
}

.blg-root .divider-dots span:nth-child(3) {
  background: #4848A2;
  opacity: 0.7;
}

.blg-root .intro-band {
  background: linear-gradient(112deg, #4848A2 0%, #1a1a3e 100%);
  padding: 48px 32px;
}

.blg-root .intro-band .ib-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.blg-root .intro-band .ib-stat {
  flex: 1 1 0;
  border-top: 2px solid rgba(132, 167, 187, 0.4);
  padding: 16px 0 0 0;
}

.blg-root .intro-band .ib-stat .num {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  color: #EEEEF8;
  letter-spacing: -0.03em;
}

.blg-root .intro-band .ib-stat .lbl {
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.blg-root .intro-band .ib-desc {
  flex: 2 1 0;
}

.blg-root .intro-band .ib-desc h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  color: #EEEEF8;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
}

.blg-root .intro-band .ib-desc p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(238, 238, 248, 0.8);
  margin: 0;
}

.blg-root .posts-area {
  max-width: 1366px;
  margin: 0 auto;
  padding: 48px 32px;
}

.blg-root .posts-area .area-head {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(72, 72, 162, 0.4);
  padding-bottom: 12px;
}

.blg-root .posts-area .area-head h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  color: #EEEEF8;
  margin: 0;
  letter-spacing: -0.01em;
}

.blg-root .posts-area .area-head .cnt-lbl {
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blg-root .posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blg-root .post-card {
  background: #131326;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 22px 0 rgba(72, 72, 162, 0.10);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(16px);
  animation: card-in 0.2s ease-out forwards;
}

.blg-root .post-card:nth-child(1) {
  animation-delay: 0.05s;
}

.blg-root .post-card:nth-child(2) {
  animation-delay: 0.10s;
}

.blg-root .post-card:nth-child(3) {
  animation-delay: 0.15s;
}

.blg-root .post-card:nth-child(4) {
  animation-delay: 0.20s;
}

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

.blg-root .post-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  border-radius: 0;
}

.blg-root .post-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease-out;
}

.blg-root .post-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.blg-root .post-card .card-img-wrap .ci-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(72, 72, 162, 0.65) 0%, rgba(132, 167, 187, 0.15) 100%);
  transition: opacity 0.15s ease-out;
  pointer-events: none;
}

.blg-root .post-card:hover .card-img-wrap .ci-overlay {
  opacity: 0;
}

.blg-root .post-card .card-img-wrap .ci-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 0;
  transition: border-color 0.15s ease-out;
  pointer-events: none;
  box-sizing: border-box;
}

.blg-root .post-card:hover .card-img-wrap .ci-border {
  border-color: #84A7BB;
}

.blg-root .post-card .card-body {
  flex: 1 1 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blg-root .post-card .card-body .rt-badge {
  display: inline-block;
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.blg-root .post-card .card-body h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  color: #EEEEF8;
  margin: 0;
  letter-spacing: -0.01em;
}

.blg-root .post-card .card-body .desc-txt {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(238, 238, 248, 0.7);
  margin: 0;
  flex: 1 1 auto;
}

.blg-root .post-card .card-foot {
  padding: 12px 16px;
  border-top: 1px solid rgba(72, 72, 162, 0.25);
}

.blg-root .post-card .card-foot .rd-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #84A7BB;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: color 0.15s ease-out, background 0.15s ease-out, border-color 0.15s ease-out;
}

.blg-root .post-card .card-foot .rd-link:hover {
  color: #EEEEF8;
  background: rgba(72, 72, 162, 0.18);
  border-color: #4848A2;
  padding: 4px 8px;
}

.blg-root .post-card .card-foot .rd-link:focus {
  outline: 2px solid #84A7BB;
  outline-offset: 2px;
}

.blg-root .topics-strip {
  background: #0a0a18;
  border-top: 1px solid rgba(72, 72, 162, 0.3);
  border-bottom: 1px solid rgba(132, 167, 187, 0.2);
  padding: 48px 32px;
}

.blg-root .topics-strip .ts-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.blg-root .topics-strip .ts-left {
  flex: 0 0 260px;
}

.blg-root .topics-strip .ts-left h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  color: #EEEEF8;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.blg-root .topics-strip .ts-left p {
  font-size: 14px;
  line-height: 1.5;
  color: #84A7BB;
  margin: 0;
}

.blg-root .topics-strip .ts-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.blg-root .topics-strip .ts-right .topic-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(72, 72, 162, 0.18);
}

.blg-root .topics-strip .ts-right .topic-row:last-child {
  border-bottom: none;
}

.blg-root .topics-strip .ts-right .topic-row .t-dash {
  width: 16px;
  height: 2px;
  background: #4848A2;
  flex-shrink: 0;
}

.blg-root .topics-strip .ts-right .topic-row .t-name {
  font-size: 16px;
  font-weight: 700;
  color: #EEEEF8;
  flex: 1 1 0;
  letter-spacing: -0.01em;
}

.blg-root .topics-strip .ts-right .topic-row .t-tag {
  font-size: 14px;
  color: #84A7BB;
  background: rgba(72, 72, 162, 0.18);
  border-radius: 4px;
  padding: 4px 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blg-root .about-strip {
  max-width: 1366px;
  margin: 0 auto;
  padding: 48px 32px;
  text-align: center;
}

.blg-root .about-strip h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  color: #EEEEF8;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.blg-root .about-strip p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(238, 238, 248, 0.75);
  max-width: 620px;
  margin: 0 auto 32px auto;
}

.blg-root .about-strip .cta-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.blg-root .about-strip .cta-row .btn-ghost {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #84A7BB;
  text-decoration: none;
  border: 1px solid #4848A2;
  border-radius: 4px;
  padding: 12px 32px;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out, background 0.15s ease-out, border-color 0.15s ease-out;
}

.blg-root .about-strip .cta-row .btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4848A2;
  transition: left 0.2s ease-out;
  z-index: 0;
}

.blg-root .about-strip .cta-row .btn-ghost:hover::before {
  left: 0;
}

.blg-root .about-strip .cta-row .btn-ghost:hover {
  color: #EEEEF8;
  border-color: #4848A2;
}

.blg-root .about-strip .cta-row .btn-ghost span {
  position: relative;
  z-index: 1;
}

.blg-root .about-strip .cta-row .btn-ghost:focus {
  outline: 2px solid #84A7BB;
  outline-offset: 2px;
}

.blg-root .contact-band {
  background: linear-gradient(112deg, #131326 0%, #1a1a3e 100%);
  border-top: 2px solid #4848A2;
  border-bottom: 2px solid #84A7BB;
  padding: 48px 32px;
}

.blg-root .contact-band .cb-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}

.blg-root .contact-band .cb-text {
  flex: 1 1 0;
}

.blg-root .contact-band .cb-text h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  color: #EEEEF8;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.blg-root .contact-band .cb-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #84A7BB;
  margin: 0;
}

.blg-root .contact-band .cb-form {
  flex: 0 0 420px;
}

.blg-root .contact-band .cb-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blg-root .contact-band .cb-form .f-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.blg-root .contact-band .cb-form input,
.blg-root .contact-band .cb-form textarea {
  background: rgba(72, 72, 162, 0.12);
  border: 1px solid rgba(72, 72, 162, 0.4);
  border-radius: 4px;
  color: #EEEEF8;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.15s ease-out, background 0.15s ease-out;
}

.blg-root .contact-band .cb-form input::placeholder,
.blg-root .contact-band .cb-form textarea::placeholder {
  color: #84A7BB;
  font-size: 14px;
}

.blg-root .contact-band .cb-form input:focus,
.blg-root .contact-band .cb-form textarea:focus {
  outline: none;
  border-color: #84A7BB;
  background: rgba(72, 72, 162, 0.22);
}

.blg-root .contact-band .cb-form textarea {
  resize: vertical;
  min-height: 80px;
}

.blg-root .contact-band .cb-form .f-submit {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #84A7BB;
  border: 1px solid #4848A2;
  border-radius: 4px;
  padding: 12px 32px;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out, background 0.15s ease-out, border-color 0.15s ease-out;
  align-self: flex-start;
}

.blg-root .contact-band .cb-form .f-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4848A2;
  transition: left 0.2s ease-out;
  z-index: 0;
}

.blg-root .contact-band .cb-form .f-submit:hover::before {
  left: 0;
}

.blg-root .contact-band .cb-form .f-submit:hover {
  color: #EEEEF8;
}

.blg-root .contact-band .cb-form .f-submit span {
  position: relative;
  z-index: 1;
}

.blg-root .contact-band .cb-form .f-submit:focus {
  outline: 2px solid #84A7BB;
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .blg-root .pg-top {
    flex-direction: column;
    gap: 32px;
    padding: 32px 16px;
  }

  .blg-root .pg-top .right-col {
    flex: 0 0 auto;
    height: 280px;
  }

  .blg-root .pg-top .left-col h1 {
    font-size: 36px;
  }

  .blg-root .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .blg-root .posts-area {
    padding: 32px 16px;
  }

  .blg-root .intro-band .ib-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }

  .blg-root .intro-band {
    padding: 32px 16px;
  }

  .blg-root .topics-strip .ts-inner {
    flex-direction: column;
    gap: 32px;
  }

  .blg-root .topics-strip {
    padding: 32px 16px;
  }

  .blg-root .topics-strip .ts-left {
    flex: 0 0 auto;
  }

  .blg-root .contact-band .cb-inner {
    flex-direction: column;
    gap: 32px;
  }

  .blg-root .contact-band .cb-form {
    flex: 0 0 auto;
    width: 100%;
  }

  .blg-root .contact-band {
    padding: 32px 16px;
  }

  .blg-root .about-strip {
    padding: 32px 16px;
  }
}

@media (max-width: 768px) {
  .blg-root .posts-grid {
    grid-template-columns: 1fr;
  }

  .blg-root .pg-top .left-col h1 {
    font-size: 26px;
  }

  .blg-root .intro-band .ib-inner {
    flex-direction: column;
    gap: 16px;
  }

  .blg-root .about-strip h2 {
    font-size: 26px;
  }

  .blg-root .topics-strip .ts-left h2 {
    font-size: 26px;
  }

  .blg-root .contact-band .cb-form .f-row {
    flex-direction: column;
  }
}

@media (max-width: 375px) {
  .blg-root .pg-top .left-col h1 {
    font-size: 20px;
  }

  .blg-root .about-strip h2 {
    font-size: 20px;
  }

  .blg-root .posts-area .area-head h2 {
    font-size: 20px;
  }
}

.strt {
  background: #0e0e1a;
  color: #EEEEF8;
  overflow-x: hidden;
}

.strt .two-zone {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 1366px;
  margin: 0 auto;
  padding-top: 80px;
}

.strt .tz-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 48px 16px 48px 32px;
}

.strt .tz-imgs .img-cell {
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.strt .tz-imgs .img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6) saturate(0.7);
  transition: filter 0.18s ease-out;
}

.strt .tz-imgs .img-cell:hover img {
  filter: brightness(0.9) saturate(1.1);
}

.strt .tz-imgs .img-cell .img-tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(72, 72, 162, 0.45) 0%, rgba(132, 167, 187, 0.15) 100%);
  pointer-events: none;
  transition: opacity 0.15s ease-out;
}

.strt .tz-imgs .img-cell:hover .img-tint {
  opacity: 0;
}

.strt .tz-imgs .img-cell.span2 {
  grid-column: span 2;
}

.strt .tz-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 32px 48px 48px;
  background: linear-gradient(160deg, #0e0e1a 60%, #1a1a38 100%);
}

.strt .tz-label {
  display: inline-block;
  background: #4848A2;
  color: #EEEEF8;
  font-size: 14px;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.strt .tz-h1 {
  font-size: 50px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #EEEEF8;
  margin: 0 0 16px 0;
}

.strt .tz-tagline {
  font-size: 16px;
  line-height: 1.5;
  color: #84A7BB;
  margin: 0 0 32px 0;
  max-width: 400px;
}

.strt .tz-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.strt .btn-ghost {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #EEEEF8;
  border: 1px solid rgba(132, 167, 187, 0.5);
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
  background: transparent;
  transition: color 0.15s ease-out, border-color 0.12s ease-out;
  overflow: hidden;
}

.strt .btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4848A2;
  transition: left 0.18s ease-out;
  z-index: 0;
}

.strt .btn-ghost:hover::before {
  left: 0;
}

.strt .btn-ghost span {
  position: relative;
  z-index: 1;
}

.strt .btn-ghost:hover {
  border-color: #4848A2;
  color: #EEEEF8;
}

.strt .btn-ghost.prim {
  background: #4848A2;
  border-color: #4848A2;
}

.strt .btn-ghost.prim::before {
  background: #6060c8;
}

.strt .posts-band {
  background: #13132a;
  padding: 48px 32px;
}

.strt .posts-band .pb-head {
  max-width: 1366px;
  margin: 0 auto 32px auto;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid rgba(132, 167, 187, 0.2);
  padding-bottom: 16px;
}

.strt .posts-band .pb-head h2 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: #EEEEF8;
  margin: 0;
}

.strt .posts-band .pb-head .ph-sub {
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.06em;
}

.strt .posts-grid {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.strt .post-card {
  background: #0e0e1a;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 22px 0 rgba(72, 72, 162, 0.10);
  transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
}

.strt .post-card:hover {
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.13);
  transform: translateY(-2px);
}

.strt .post-card .pc-img {
  overflow: hidden;
  height: 180px;
  position: relative;
}

.strt .post-card .pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(0.75);
  transition: filter 0.18s ease-out;
}

.strt .post-card:hover .pc-img img {
  filter: brightness(0.9) saturate(1);
}

.strt .post-card .pc-img .pc-tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 14, 26, 0.9) 100%);
  pointer-events: none;
}

.strt .post-card .pc-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strt .post-card .pc-time {
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.08em;
}

.strt .post-card h3 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #EEEEF8;
  margin: 0;
}

.strt .post-card .pc-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #84A7BB;
  margin: 0;
  flex: 1;
}

.strt .post-card .pc-link {
  display: inline-block;
  font-size: 14px;
  color: #84A7BB;
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.12s ease-out, border-color 0.15s ease-out;
  align-self: flex-start;
}

.strt .post-card .pc-link:hover {
  color: #EEEEF8;
  border-bottom-color: #4848A2;
}

.strt .rhythm-blk {
  background: #0e0e1a;
  padding: 48px 32px;
  position: relative;
}

.strt .rhythm-blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #4848A2, transparent);
}

.strt .rhythm-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.strt .rhythm-left h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #EEEEF8;
  margin: 0 0 16px 0;
}

.strt .rhythm-left p {
  font-size: 14px;
  line-height: 1.8;
  color: #84A7BB;
  margin: 0;
}

.strt .rhythm-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.strt .rh-item {
  background: #13132a;
  border-radius: 4px;
  padding: 16px;
  border-top: 2px solid #4848A2;
  box-shadow: 0 1px 4px 0 rgba(72, 72, 162, 0.08);
}

.strt .rh-item .rh-freq {
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.strt .rh-item h4 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #EEEEF8;
  margin: 0 0 8px 0;
}

.strt .rh-item p {
  font-size: 14px;
  line-height: 1.5;
  color: #84A7BB;
  margin: 0;
}

.strt .series-blk {
  background: #4848A2;
  padding: 48px 32px;
}

.strt .series-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.strt .series-inner h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #EEEEF8;
  margin: 0 0 8px 0;
}

.strt .series-inner .si-sub {
  font-size: 14px;
  color: rgba(238, 238, 248, 0.7);
  margin: 0 0 32px 0;
}

.strt .series-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strt .ser-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 16px;
  align-items: center;
  background: rgba(14, 14, 26, 0.35);
  border-radius: 4px;
  padding: 16px;
  transition: background 0.15s ease-out;
}

.strt .ser-row:hover {
  background: rgba(14, 14, 26, 0.55);
}

.strt .ser-num {
  font-size: 26px;
  font-weight: 900;
  color: rgba(238, 238, 248, 0.25);
  line-height: 1.1;
  text-align: center;
}

.strt .ser-info h4 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  color: #EEEEF8;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.strt .ser-info p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(238, 238, 248, 0.7);
  margin: 0;
}

.strt .ser-tag {
  font-size: 14px;
  color: rgba(238, 238, 248, 0.6);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.strt .author-blk {
  background: #13132a;
  padding: 48px 32px;
  position: relative;
}

.strt .author-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.strt .auth-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.strt .auth-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) saturate(0.8);
  transition: filter 0.18s ease-out;
}

.strt .auth-img-wrap:hover img {
  filter: brightness(0.9) saturate(1);
}

.strt .auth-img-wrap .auth-tint {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(72, 72, 162, 0.5) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.15s ease-out;
}

.strt .auth-img-wrap:hover .auth-tint {
  opacity: 0;
}

.strt .auth-txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strt .auth-txt .corner-mark {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-top: 2px solid #4848A2;
  border-left: 2px solid #4848A2;
  border-radius: 0px;
  margin-bottom: 8px;
}

.strt .auth-txt h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #EEEEF8;
  margin: 0;
}

.strt .auth-txt .auth-name {
  font-size: 20px;
  font-weight: 900;
  color: #84A7BB;
  letter-spacing: 0.04em;
  margin: 0;
}

.strt .auth-txt p {
  font-size: 14px;
  line-height: 1.8;
  color: #84A7BB;
  margin: 0;
}

.strt .auth-txt .auth-creds {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.strt .auth-txt .cred-item {
  font-size: 14px;
  color: #EEEEF8;
  padding-left: 12px;
  position: relative;
}

.strt .auth-txt .cred-item::before {
  content: '-';
  position: absolute;
  left: 0;
  color: #4848A2;
}

.strt .sub-blk {
  background: #0e0e1a;
  padding: 48px 32px;
  position: relative;
}

.strt .sub-blk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #84A7BB, transparent);
}

.strt .sub-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.strt .sub-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strt .sub-left h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #EEEEF8;
  margin: 0;
}

.strt .sub-left p {
  font-size: 14px;
  line-height: 1.8;
  color: #84A7BB;
  margin: 0;
}

.strt .sub-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strt .sub-detail-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #84A7BB;
}

.strt .sub-detail-item .sdi-dot {
  width: 6px;
  height: 6px;
  border-radius: 0px;
  background: #4848A2;
  flex-shrink: 0;
  transform: rotate(45deg);
}

.strt .sub-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #13132a;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 5px 22px 0 rgba(72, 72, 162, 0.10);
}

.strt .sub-form label {
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.strt .sub-form input[type="text"],
.strt .sub-form input[type="email"] {
  width: 100%;
  background: #0e0e1a;
  border: 1px solid rgba(132, 167, 187, 0.3);
  border-radius: 4px;
  padding: 8px 12px;
  color: #EEEEF8;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease-out;
  box-sizing: border-box;
}

.strt .sub-form input[type="text"]:focus,
.strt .sub-form input[type="email"]:focus {
  border-color: #4848A2;
}

.strt .sub-form input::placeholder {
  color: #84A7BB;
  font-style: italic;
}

.strt .sub-form .sub-btn {
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid #4848A2;
  border-radius: 4px;
  color: #EEEEF8;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease-out, border-color 0.12s ease-out;
}

.strt .sub-form .sub-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #4848A2;
  transition: left 0.18s ease-out;
  z-index: 0;
}

.strt .sub-form .sub-btn:hover::before {
  left: 0;
}

.strt .sub-form .sub-btn span {
  position: relative;
  z-index: 1;
}

.strt .sub-form .sub-btn:hover {
  border-color: #6060c8;
}

.strt .picks-blk {
  background: #13132a;
  padding: 48px 32px;
}

.strt .picks-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.strt .picks-inner .pi-head {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}

.strt .picks-inner .pi-head h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #EEEEF8;
  margin: 0;
}

.strt .picks-inner .pi-head .pi-badge {
  background: rgba(132, 167, 187, 0.15);
  color: #84A7BB;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
}

.strt .picks-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.strt .pick-row {
  display: grid;
  grid-template-columns: 48px 1fr 200px;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(132, 167, 187, 0.12);
  transition: background 0.12s ease-out;
}

.strt .pick-row:first-child {
  border-top: 1px solid rgba(132, 167, 187, 0.12);
}

.strt .pick-row:hover {
  background: rgba(72, 72, 162, 0.08);
}

.strt .pick-idx {
  font-size: 26px;
  font-weight: 900;
  color: rgba(72, 72, 162, 0.4);
  line-height: 1.1;
}

.strt .pick-info h4 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #EEEEF8;
  margin: 0 0 4px 0;
}

.strt .pick-info p {
  font-size: 14px;
  line-height: 1.5;
  color: #84A7BB;
  margin: 0;
}

.strt .pick-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.strt .pick-link-wrap .pk-tag {
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.06em;
  background: rgba(72, 72, 162, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
}

.strt .pick-link-wrap a {
  font-size: 14px;
  color: #84A7BB;
  text-decoration: none;
  letter-spacing: 0.06em;
  padding: 4px 8px;
  border: 1px solid rgba(132, 167, 187, 0.3);
  border-radius: 4px;
  transition: background 0.15s ease-out, color 0.12s ease-out;
}

.strt .pick-link-wrap a:hover {
  background: #4848A2;
  color: #EEEEF8;
  border-color: #4848A2;
}

.strt .territories-blk {
  background: #0e0e1a;
  padding: 48px 32px;
}

.strt .terr-inner {
  max-width: 1366px;
  margin: 0 auto;
}

.strt .terr-inner h2 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #EEEEF8;
  margin: 0 0 8px 0;
  text-align: center;
}

.strt .terr-inner .ti-sub {
  font-size: 14px;
  color: #84A7BB;
  text-align: center;
  margin: 0 0 32px 0;
}

.strt .terr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.strt .terr-card {
  background: #13132a;
  border-radius: 10px;
  padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: 0 1px 4px 0 rgba(72, 72, 162, 0.08);
  transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
}

.strt .terr-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(90deg, #4848A2, #84A7BB);
  border-radius: 0px;
}

.strt .terr-card:hover {
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.13);
  transform: translateY(-3px);
}

.strt .terr-card .tc-icon {
  width: 32px;
  height: 32px;
}

.strt .terr-card h4 {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #EEEEF8;
  margin: 0;
}

.strt .terr-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #84A7BB;
  margin: 0;
}

.strt .terr-card .tc-reader {
  font-size: 14px;
  color: rgba(132, 167, 187, 0.6);
  letter-spacing: 0.06em;
  border-top: 1px solid rgba(132, 167, 187, 0.15);
  padding-top: 12px;
}

.strt .terr-card .tc-link {
  font-size: 14px;
  color: #84A7BB;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.12s ease-out;
  align-self: flex-start;
}

.strt .terr-card .tc-link:hover {
  color: #EEEEF8;
}

.strt .quote-blk {
  background: #13132a;
  padding: 48px 32px;
  position: relative;
}

.strt .quote-inner {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}

.strt .quote-bubble {
  flex: 1;
  background: #4848A2;
  border-radius: 10px;
  padding: 32px;
  position: relative;
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.13);
}

.strt .quote-bubble::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 48px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 0px solid transparent;
  border-top: 16px solid #4848A2;
}

.strt .quote-bubble blockquote {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #EEEEF8;
  font-style: italic;
}

.strt .quote-meta {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 48px;
}

.strt .quote-meta .qm-name {
  font-size: 16px;
  font-weight: 900;
  color: #EEEEF8;
  letter-spacing: -0.01em;
}

.strt .quote-meta .qm-role {
  font-size: 14px;
  color: #84A7BB;
  letter-spacing: 0.06em;
}

.strt .quote-meta .qm-flag {
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .strt .two-zone {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .strt .tz-imgs {
    height: 320px;
    padding: 16px 16px 8px 16px;
  }

  .strt .tz-text {
    padding: 32px 16px;
  }

  .strt .tz-h1 {
    font-size: 36px;
  }

  .strt .rhythm-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .strt .rhythm-right {
    grid-template-columns: 1fr;
  }

  .strt .posts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strt .author-inner {
    grid-template-columns: 1fr;
  }

  .strt .auth-img-wrap img {
    height: 240px;
  }

  .strt .sub-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .strt .terr-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strt .quote-inner {
    flex-direction: column;
    gap: 32px;
  }

  .strt .quote-meta {
    width: 100%;
    padding-top: 16px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .strt .pick-row {
    grid-template-columns: 48px 1fr;
  }

  .strt .pick-link-wrap {
    grid-column: 2;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .strt .tz-imgs {
    height: 260px;
  }

  .strt .tz-h1 {
    font-size: 26px;
  }

  .strt .posts-grid {
    grid-template-columns: 1fr;
  }

  .strt .ser-row {
    grid-template-columns: 32px 1fr;
  }

  .strt .ser-tag {
    display: none;
  }

  .strt .terr-grid {
    grid-template-columns: 1fr;
  }

  .strt .rhythm-right {
    grid-template-columns: 1fr;
  }

  .strt .two-zone {
    padding-top: 32px;
  }
}

@media (max-width: 375px) {
  .strt .tz-h1 {
    font-size: 20px;
  }

  .strt .tz-text {
    padding: 16px;
  }

  .strt .posts-band,
  .strt .rhythm-blk,
  .strt .series-blk,
  .strt .author-blk,
  .strt .sub-blk,
  .strt .picks-blk,
  .strt .territories-blk,
  .strt .quote-blk {
    padding: 32px 16px;
  }

  .strt .sub-form {
    padding: 16px;
  }
}

.pg-success {
  background: #0d0d1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

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

.pg-success .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: linear-gradient(160deg, #4848A2 0%, #84A7BB 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px 0 rgba(72, 72, 162, 0.13);
  flex-shrink: 0;
}

.pg-success .icon-wrap svg {
  display: block;
}

.pg-success .msg-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 520px;
}

.pg-success .badge {
  display: inline-block;
  background: #4848A2;
  color: #EEEEF8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  box-shadow: 0 1px 4px 0 rgba(72, 72, 162, 0.08);
}

.pg-success .title {
  color: #EEEEF8;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
}

.pg-success .subtitle {
  color: #84A7BB;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.pg-success .divider {
  width: 48px;
  height: 2px;
  background: #4848A2;
  border-radius: 0px;
}

.pg-success .detail-box {
  background: #13132b;
  border: 1px solid #4848A2;
  border-radius: 10px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 5px 22px 0 rgba(72, 72, 162, 0.10);
}

.pg-success .detail-box .detail-label {
  color: #84A7BB;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.pg-success .detail-box .detail-text {
  color: #EEEEF8;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.pg-success .detail-box .detail-text:last-child {
  margin-bottom: 0;
}

.pg-success .detail-box .detail-email {
  color: #84A7BB;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  border-bottom: 1px solid #4848A2;
  transition: color 0.15s ease-out, border-color 0.2s ease;
}

.pg-success .detail-box .detail-email:hover {
  color: #EEEEF8;
  border-color: #84A7BB;
}

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

.pg-success .btn-ghost {
  position: relative;
  display: inline-block;
  color: #84A7BB;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 4px;
  border: 1px solid #4848A2;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.15s ease-out;
}

.pg-success .btn-ghost::before,
.pg-success .btn-ghost::after {
  content: '';
  position: absolute;
  background: #4848A2;
  transition: transform 0.18s ease-out;
}

.pg-success .btn-ghost::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
}

.pg-success .btn-ghost::after {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
}

.pg-success .btn-ghost:hover {
  color: #EEEEF8;
}

.pg-success .btn-ghost:hover::before,
.pg-success .btn-ghost:hover::after {
  transform: scaleX(1);
}

.pg-success .btn-ghost:focus-visible {
  outline: 2px solid #84A7BB;
  outline-offset: 4px;
}

.pg-success .btn-primary {
  position: relative;
  display: inline-block;
  color: #EEEEF8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 4px;
  border: 1px solid #4848A2;
  background: #4848A2;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.15s ease-out, color 0.15s ease-out;
}

.pg-success .btn-primary:hover {
  background: transparent;
  color: #84A7BB;
}

.pg-success .btn-primary:focus-visible {
  outline: 2px solid #84A7BB;
  outline-offset: 4px;
}

.pg-success .brand-note {
  color: #4848A2;
  font-size: 14px;
  letter-spacing: 0.06em;
  margin: 0;
}

@media (max-width: 768px) {
  .pg-success .title {
    font-size: 26px;
  }

  .pg-success .detail-box {
    padding: 16px;
  }

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

@media (max-width: 375px) {
  .pg-success {
    padding: 32px 8px;
  }

  .pg-success .title {
    font-size: 20px;
  }

  .pg-success .btn-ghost,
  .pg-success .btn-primary {
    padding: 12px 16px;
    font-size: 14px;
  }
}