* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
}

*:focus-visible {
  outline: 2px solid #5D46B1;
  outline-offset: 3px;
}

.hd {
  background: linear-gradient(160deg, #1b1630 0%, #0e0c1e 50%, #131028 100%);
  position: relative;
  overflow: hidden;
}

.hd::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #5D46B1, #A9A2D0, #5D46B1, transparent);
  pointer-events: none;
}

.hd-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.hd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(93, 70, 177, 0.18);
  gap: 24px;
}

.hd-contact-strip {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hd-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #A9A2D0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.hd-contact-item:hover {
  color: #F4F4F7;
}

.hd-contact-item svg {
  width: 14px;
  height: 14px;
  stroke: #5D46B1;
  flex-shrink: 0;
}

.hd-lang {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hd-lang-btn {
  background: rgba(93, 70, 177, 0.12);
  border: 1px solid rgba(93, 70, 177, 0.3);
  color: #A9A2D0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 0;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  transition: background 0.15s ease-out, color 0.12s ease-out;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hd-lang-btn:hover,
.hd-lang-btn.active {
  background: rgba(93, 70, 177, 0.3);
  color: #F4F4F7;
}

.hd-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 40px;
}

.hd-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.hd-logo-mount {
  width: 80px;
  height: 80px;
  border-radius: 36px;
  border: 2px solid #5D46B1;
  box-shadow: 0 0 0 1px rgba(93, 70, 177, 0.25), 0 5px 18px 0 rgba(93, 70, 177, 0.10), inset 0 1px 0 rgba(169, 162, 208, 0.15);
  background: rgba(93, 70, 177, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
}

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

.hd-brand-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.15;
}

.hd-nav-left,
.hd-nav-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.hd-nav-left {
  justify-content: flex-end;
}

.hd-nav-right {
  justify-content: flex-start;
}

.hd-nav-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #A9A2D0;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  line-height: 1.15;
  transition: color 0.12s ease-out;
  position: relative;
  white-space: nowrap;
}

.hd-nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: #5D46B1;
  transform: scaleX(0);
  transition: transform 0.15s ease-out;
  transform-origin: center;
}

.hd-nav-link:hover {
  color: #F4F4F7;
}

.hd-nav-link:hover::after {
  transform: scaleX(1);
}

.hd-nav-link.active {
  color: #F4F4F7;
}

.hd-nav-link.active::after {
  transform: scaleX(1);
  background: #A9A2D0;
}

@media (max-width: 1024px) {
  .hd-shell {
    padding: 0 24px;
  }

  .hd-mid {
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .hd-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .hd-contact-strip {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hd-mid {
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
    gap: 24px;
  }

  .hd-nav-left,
  .hd-nav-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hd-shell {
    padding: 0 12px;
  }

  .hd-contact-item {
    font-size: 13px;
  }
}

.ft {
  background: #0b0918;
  position: relative;
  overflow: hidden;
}

.ft-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(93, 70, 177, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ft-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 24, 0.6) 0%, transparent 30%, transparent 70%, rgba(11, 9, 24, 0.8) 100%);
}

.ft-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.ft-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ft-logo-mount {
  width: 80px;
  height: 80px;
  border-radius: 36px;
  border: 2px solid rgba(93, 70, 177, 0.5);
  box-shadow: 0 3px 5px 0 rgba(93, 70, 177, 0.06), 0 5px 18px 0 rgba(93, 70, 177, 0.10), inset 0 1px 0 rgba(169, 162, 208, 0.1);
  background: rgba(93, 70, 177, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
}

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

.ft-brand-name {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.15;
}

.ft-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93, 70, 177, 0.3), rgba(169, 162, 208, 0.2), rgba(93, 70, 177, 0.3), transparent);
}

.ft-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.ft-grp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.ft-grp-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #5D46B1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.15;
}

.ft-grp-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ft-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #A9A2D0;
  text-decoration: none;
  line-height: 1.65;
  transition: color 0.12s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ft-link:hover {
  color: #F4F4F7;
}

.ft-contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ft-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #A9A2D0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.12s ease-out;
  min-height: 44px;
}

.ft-contact-row:hover {
  color: #F4F4F7;
}

.ft-contact-row svg {
  width: 14px;
  height: 14px;
  stroke: #5D46B1;
  flex-shrink: 0;
}

.ft-addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #A9A2D0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  line-height: 1.65;
}

.ft-addr svg {
  width: 14px;
  height: 14px;
  stroke: #5D46B1;
  flex-shrink: 0;
  margin-top: 4px;
}

.ft-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(93, 70, 177, 0.12);
}

.ft-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 24px;
}

.ft-legal-link {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(169, 162, 208, 0.6);
  text-decoration: none;
  transition: color 0.12s ease-out;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ft-legal-link:hover {
  color: #A9A2D0;
}

.ft-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: rgba(169, 162, 208, 0.4);
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 768px) {
  .ft-shell {
    padding: 80px 24px 40px;
    gap: 40px;
  }

  .ft-sitemap {
    gap: 40px 24px;
  }

  .ft-grp {
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .ft-shell {
    padding: 80px 12px 40px;
  }

  .ft-sitemap {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .ft-legal-links {
    gap: 4px 12px;
  }
}

.ck-tray {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: none;
  max-width: 360px;
  width: calc(100vw - 48px);
}

.ck-box {
  background: #13102a;
  border: 1px solid rgba(93, 70, 177, 0.35);
  border-radius: 0;
  box-shadow: 0 10px 40px 0 rgba(93, 70, 177, 0.10);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ck-icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ck-icon-row svg {
  width: 20px;
  height: 20px;
  stroke: #5D46B1;
  flex-shrink: 0;
}

.ck-sub {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #A9A2D0;
  line-height: 1.65;
}

.ck-list {
  margin: 0;
  padding: 0 0 0 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: rgba(169, 162, 208, 0.7);
  line-height: 1.65;
}

.ck-list li {
  margin-bottom: 4px;
}

.ck-btns {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.ck-btn {
  flex: 1;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 12px;
  border-radius: 0;
  cursor: pointer;
  min-height: 44px;
  border: 1px solid rgba(93, 70, 177, 0.4);
  transition: filter 0.15s ease-out, background 0.12s ease-out;
  line-height: 1.15;
}

.ck-btn--accept {
  background: #5D46B1;
  color: #F4F4F7;
}

.ck-btn--accept:hover {
  filter: brightness(1.15);
}

.ck-btn--decline {
  background: transparent;
  color: #A9A2D0;
}

.ck-btn--decline:hover {
  background: rgba(93, 70, 177, 0.12);
  color: #F4F4F7;
}

.ck-btn--decline:focus-visible,
.ck-btn--accept:focus-visible {
  outline: 2px solid #5D46B1;
  outline-offset: 2px;
}.policy-gnne-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #F4F4F7;
    background: #12111a;
}

.policy-gnne-content p {
    font-size: 16px;
    line-height: 1.65;
    color: #c8c4e0;
    margin-bottom: 24px;
}

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

.policy-gnne-content li {
    font-size: 16px;
    line-height: 1.65;
    color: #c8c4e0;
    margin-bottom: 8px;
    padding-left: 8px;
}

.policy-gnne-content ul li::marker {
    color: #5D46B1;
}

.policy-gnne-content ol li::marker {
    color: #A9A2D0;
    font-size: 13px;
    font-weight: 600;
}

.policy-gnne-content strong,
.policy-gnne-content b {
    font-weight: 700;
    color: #F4F4F7;
    letter-spacing: -0.01em;
}

.policy-gnne-content em,
.policy-gnne-content i {
    font-style: italic;
    color: #A9A2D0;
}

.policy-gnne-content a {
    color: #A9A2D0;
    text-decoration: underline;
    text-decoration-color: rgba(93, 70, 177, 0.45);
    text-underline-offset: 3px;
    transition: color 0.15s ease-out, text-decoration-color 0.2s ease-out;
}

.policy-gnne-content a:hover {
    color: #F4F4F7;
    text-decoration-color: #5D46B1;
}

@media (max-width: 768px) {
    .policy-gnne-content {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .policy-gnne-content {
        padding: 40px 12px;
    }

    .policy-gnne-content p,
    .policy-gnne-content li {
        font-size: 16px;
    }
}
.srv {
  background: #0d0e14;
  color: #F4F4F7;
  overflow-x: clip;
  position: relative;
}

.srv__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@keyframes flicker {
  0%, 100% { opacity: 0.18; }
  30% { opacity: 0.32; }
  60% { opacity: 0.12; }
  80% { opacity: 0.28; }
}

.srv__accent-flicker {
  position: absolute;
  width: 480px;
  height: 480px;
  background: conic-gradient(from 0deg at 50% 50%, #5D46B1 0%, #A9A2D0 18%, #0d0e14 36%, #5D46B1 54%, #A9A2D0 72%, #0d0e14 90%, #5D46B1 100%);
  border-radius: 0;
  opacity: 0.18;
  animation: flicker 4.5s ease-in-out infinite;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.srv__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(93, 70, 177, 0.18);
  border: 1px solid rgba(93, 70, 177, 0.38);
  border-radius: 36px;
  padding: 4px 12px;
  font-size: 13px;
  color: #A9A2D0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

.srv__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
}

.srv__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,70,177,0.4), transparent);
}

.srv__divider-word {
  font-size: 13px;
  color: #A9A2D0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ── BLOCK 1: Hero with sidebar ── */
.hero-wrap {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}

.hero-wrap .srv__accent-flicker {
  top: -80px;
  right: -120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-text__kicker {
  font-size: 13px;
  color: #A9A2D0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-text__h1 {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #F4F4F7;
  margin: 0 0 24px;
}

.hero-text__h1 span {
  color: #5D46B1;
}

.hero-text__quote {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  border-top: 1px solid rgba(93,70,177,0.3);
  padding-top: 24px;
  max-width: 520px;
  font-style: italic;
}

.hero-text__deco {
  position: absolute;
  top: 0;
  left: -40px;
  width: 320px;
  height: 320px;
  background: conic-gradient(from 45deg at 30% 40%, rgba(93,70,177,0.12) 0%, transparent 60%);
  border-radius: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-text-inner {
  position: relative;
  z-index: 1;
}

.hero-img-col {
  position: relative;
}

.hero-img-wrap {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0px) saturate(1.1) sepia(0.18);
  transition: filter 0.18s ease-out;
  display: block;
}

.hero-img-wrap:hover img {
  filter: blur(0px) saturate(1.3) sepia(0.08);
}

.hero-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(93,70,177,0.22) 0%, transparent 55%);
  border-radius: 36px;
  pointer-events: none;
}

.hero-sidebar-stat {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  background: rgba(93,70,177,0.10);
  border: 1px solid rgba(93,70,177,0.22);
  border-radius: 36px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
}

.stat-card__num {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  color: #5D46B1;
  letter-spacing: -0.02em;
}

.stat-card__label {
  font-size: 13px;
  color: #A9A2D0;
  line-height: 1.65;
  margin-top: 4px;
}

/* ── BLOCK 2: Three-column featured ── */
.feat-wrap {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(180deg, #0d0e14 0%, #111220 60%, #0d0e14 100%);
}

.feat-wrap .srv__accent-flicker {
  bottom: -60px;
  left: -80px;
  animation-delay: 1.8s;
}

.feat-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.feat-head__h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  max-width: 480px;
  margin: 0;
}

.feat-head__sub {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  max-width: 300px;
  text-align: right;
}

.feat-cols {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  gap: 12px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.feat-card {
  border-radius: 36px;
  padding: 40px 24px;
  background: rgba(13,14,20,0.7);
  border: 1px solid rgba(93,70,177,0.18);
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
  transition: border-color 0.15s ease-out, box-shadow 0.2s ease;
}

.feat-card:hover {
  border-color: rgba(93,70,177,0.44);
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.feat-card--center {
  background: linear-gradient(160deg, rgba(93,70,177,0.22) 0%, rgba(93,70,177,0.06) 100%);
  border-color: rgba(93,70,177,0.38);
  padding-top: 80px;
  padding-bottom: 80px;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10), inset 0 1px 0 rgba(169,162,208,0.12);
}

.feat-card--center:hover {
  border-color: rgba(93,70,177,0.62);
}

.feat-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
  color: #5D46B1;
}

.feat-card__icon svg {
  width: 40px;
  height: 40px;
}

.feat-card__h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F4F4F7;
  margin: 0 0 12px;
}

.feat-card__p {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.feat-card__num {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.15;
  color: #5D46B1;
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 8px;
  opacity: 0.22;
}

/* ── BLOCK 3: Process / numbered list ── */
.proc-wrap {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.proc-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.proc-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: blur(2px) saturate(0.6);
  transition: filter 0.2s ease;
}

.proc-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0d0e14 0%, rgba(13,14,20,0.72) 50%, #0d0e14 100%);
}

.proc-inner {
  position: relative;
  z-index: 1;
}

.proc-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
}

.proc-head__h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.proc-head__desc {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  max-width: 560px;
}

.proc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.proc-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  background: rgba(13,14,20,0.82);
  border: 1px solid rgba(169,162,208,0.12);
  border-radius: 36px;
  padding: 40px;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  transition: border-color 0.15s ease-out;
}

.proc-item:hover {
  border-color: rgba(93,70,177,0.32);
}

.proc-item__num {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.15;
  color: #5D46B1;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: 64px;
  text-align: left;
}

.proc-item__body {}

.proc-item__h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #F4F4F7;
  margin: 0 0 8px;
}

.proc-item__p {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

/* ── BLOCK 4: Audience / CTA ── */
.aud-wrap {
  padding: 80px 0;
  position: relative;
  background: #111220;
  overflow: hidden;
}

.aud-wrap .srv__accent-flicker {
  top: -100px;
  right: -60px;
  animation-delay: 0.9s;
}

.aud-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.aud-left__h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0 0 24px;
}

.aud-left__p {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0 0 24px;
}

.aud-tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.aud-tag {
  background: rgba(93,70,177,0.14);
  border: 1px solid rgba(93,70,177,0.28);
  border-radius: 36px;
  padding: 4px 12px;
  font-size: 13px;
  color: #A9A2D0;
  letter-spacing: 0.04em;
}

.aud-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aud-card {
  background: rgba(13,14,20,0.6);
  border: 1px solid rgba(93,70,177,0.18);
  border-radius: 36px;
  padding: 24px 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
  transition: border-color 0.12s ease-out, box-shadow 0.18s ease;
}

.aud-card:hover {
  border-color: rgba(93,70,177,0.4);
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
}

.aud-card__icon {
  color: #5D46B1;
  flex-shrink: 0;
  margin-top: 4px;
}

.aud-card__icon svg {
  width: 24px;
  height: 24px;
}

.aud-card__h5 {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  margin: 0 0 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aud-card__p {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.aud-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5D46B1;
  color: #F4F4F7;
  border: none;
  border-radius: 36px;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  transition: brightness 0.12s ease-out;
}

.btn-primary:hover {
  filter: brightness(1.18);
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(93,70,177,0.38);
  border-radius: 36px;
  color: #A9A2D0;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease-out, color 0.15s ease-out;
}

.btn-secondary:hover {
  border-color: #5D46B1;
  color: #F4F4F7;
  filter: brightness(1.12);
}

.btn-secondary:focus {
  outline: 2px solid #A9A2D0;
  outline-offset: 3px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 300px;
  }
  .hero-text__h1 {
    font-size: 34px;
  }
  .feat-cols {
    grid-template-columns: 1fr 1fr;
  }
  .feat-card--center {
    grid-column: 1 / -1;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .aud-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-img-col {
    display: none;
  }
  .hero-text__h1 {
    font-size: 34px;
  }
  .feat-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .feat-head__sub {
    text-align: left;
  }
  .feat-cols {
    grid-template-columns: 1fr;
  }
  .feat-card--center {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .proc-list {
    grid-template-columns: 1fr;
  }
  .aud-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text__h1 {
    font-size: 25px;
  }
  .proc-item {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
  .proc-item__num {
    font-size: 34px;
    width: auto;
  }
  .aud-card {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }
  .aud-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .stat-card__num {
    font-size: 25px;
  }
}

.avl {
  background: #0d0e14;
  color: #F4F4F7;
  overflow-x: hidden;
}

.avl .sep {
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #5D46B1 0px, #5D46B1 4px, transparent 4px, transparent 12px);
  border: none;
  margin: 0;
}

.avl .sep--light {
  background-image: repeating-linear-gradient(to right, #A9A2D0 0px, #A9A2D0 3px, transparent 3px, transparent 10px);
  opacity: 0.4;
}

.avl .strip {
  position: relative;
  padding: 80px 0 40px;
}

.avl .strip__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.avl .strip__diag {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(93,70,177,0.04) 0px,
    rgba(93,70,177,0.04) 1px,
    transparent 1px,
    transparent 18px
  );
}

.avl .strip__img-bar {
  width: 100%;
  height: 72px;
  overflow: hidden;
  margin-bottom: 40px;
}

.avl .strip__img-bar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: sepia(0.5) contrast(1.1) brightness(0.6) saturate(0.7);
}

.avl .strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.avl .strip__h1 {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0;
  color: #F4F4F7;
  max-width: 760px;
  padding-bottom: 40px;
}

.avl .strip__h1 span {
  color: #5D46B1;
}

.avl .circles-deco {
  position: absolute;
  top: -40px;
  right: -80px;
  pointer-events: none;
  overflow: hidden;
}

.avl .circles-deco__ring {
  position: absolute;
  border-radius: 36px;
  border: 1px solid rgba(93,70,177,0.12);
}

.avl .circles-deco__ring--a {
  width: 320px;
  height: 320px;
  top: 0;
  right: 0;
}

.avl .circles-deco__ring--b {
  width: 220px;
  height: 220px;
  top: 50px;
  right: 50px;
  border-color: rgba(169,162,208,0.10);
}

.avl .circles-deco__ring--c {
  width: 140px;
  height: 140px;
  top: 90px;
  right: 90px;
  border-color: rgba(93,70,177,0.08);
}

.avl .sched {
  background: #111219;
  padding: 80px 0;
  position: relative;
}

.avl .sched::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #5D46B1, #A9A2D0 60%, transparent);
}

.avl .sched__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 80px;
  align-items: start;
}

.avl .sched__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A9A2D0;
  font-weight: 600;
  margin: 0 0 24px;
}

.avl .sched__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: #F4F4F7;
}

.avl .sched__desc {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0 0 40px;
}

.avl .sched__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
  position: relative;
}

.avl .sched__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.3) contrast(1.05) brightness(0.75) saturate(0.8);
  transition: filter 0.2s ease-out;
}

.avl .sched__img-wrap:hover img {
  filter: sepia(0.15) contrast(1.05) brightness(0.85) saturate(0.9);
}

.avl .sched__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(93,70,177,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.avl .sched__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.avl .tz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.avl .tz-card {
  background: #16171f;
  border-radius: 36px;
  padding: 24px;
  border: 1px solid rgba(93,70,177,0.14);
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
  position: relative;
  transition: border-color 0.15s ease-out, box-shadow 0.15s ease-out;
  outline: 2px solid transparent;
}

.avl .tz-card:hover {
  border-color: rgba(93,70,177,0.40);
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  outline-color: transparent;
}

.avl .tz-card--trace {
  position: relative;
}

.avl .tz-card--trace::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  border: 2px solid #5D46B1;
  opacity: 0;
  transition: opacity 0.18s ease-out;
  pointer-events: none;
}

.avl .tz-card--trace:hover::after {
  opacity: 1;
}

.avl .tz-card__region {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #A9A2D0;
  font-weight: 600;
  margin: 0 0 8px;
}

.avl .tz-card__time {
  font-size: 25px;
  font-weight: 800;
  color: #F4F4F7;
  line-height: 1.15;
  margin: 0 0 4px;
}

.avl .tz-card__zone {
  font-size: 13px;
  color: #5D46B1;
  font-weight: 600;
}

.avl .tz-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 0px;
  background: #5D46B1;
  position: absolute;
  top: 24px;
  right: 24px;
  transform: rotate(45deg);
}

.avl .tz-card--active .tz-card__dot {
  background: #A9A2D0;
  box-shadow: 0 0 0 3px rgba(169,162,208,0.20);
}

.avl .hours-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.avl .day-pill {
  background: #1a1b25;
  border-radius: 36px;
  padding: 12px 8px;
  text-align: left;
  border: 1px solid rgba(93,70,177,0.10);
  transition: background 0.12s ease-out, border-color 0.12s ease-out;
}

.avl .day-pill--on {
  background: rgba(93,70,177,0.18);
  border-color: rgba(93,70,177,0.35);
}

.avl .day-pill__name {
  font-size: 13px;
  color: #A9A2D0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.avl .day-pill__hrs {
  font-size: 13px;
  color: #F4F4F7;
  font-weight: 700;
}

.avl .day-pill--off .day-pill__hrs {
  color: rgba(244,244,247,0.28);
}

.avl .day-pill--off .day-pill__name {
  color: rgba(169,162,208,0.40);
}

.avl .sched__note {
  font-size: 13px;
  color: #A9A2D0;
  line-height: 1.65;
  padding: 12px 24px;
  border-radius: 36px;
  background: rgba(93,70,177,0.08);
  border: 1px solid rgba(93,70,177,0.15);
}

.avl .conn {
  padding: 80px 0;
  background: #0d0e14;
  position: relative;
}

.avl .conn::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, #A9A2D0 50%, transparent);
}

.avl .conn__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.avl .conn__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.avl .conn__heading-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.avl .conn__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5D46B1;
  font-weight: 700;
}

.avl .conn__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: #F4F4F7;
}

.avl .conn__desc-col {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  padding-top: 8px;
}

.avl .conn__img-col {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  position: relative;
}

.avl .conn__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(0.4) contrast(1.08) brightness(0.7) saturate(0.75);
}

.avl .conn__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 40%, rgba(13,14,20,0.55));
  pointer-events: none;
}

.avl .channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.avl .ch-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #111219;
  border-radius: 36px;
  border: 1px solid rgba(169,162,208,0.10);
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
  position: relative;
  transition: border-color 0.18s ease-out;
}

.avl .ch-item::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  border: 2px solid #5D46B1;
  opacity: 0;
  transition: opacity 0.16s ease-out;
  pointer-events: none;
}

.avl .ch-item:hover::after {
  opacity: 1;
}

.avl .ch-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 0px;
  background: rgba(93,70,177,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avl .ch-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: #A9A2D0;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avl .ch-item__name {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F4F4F7;
  margin: 0;
}

.avl .ch-item__val {
  font-size: 25px;
  font-weight: 800;
  color: #5D46B1;
  line-height: 1.15;
}

.avl .ch-item__note {
  font-size: 13px;
  color: #A9A2D0;
  line-height: 1.65;
}

.avl .icon-chain {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 24px 0;
  justify-content: center;
}

.avl .icon-chain__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.avl .icon-chain__circle {
  width: 56px;
  height: 56px;
  border-radius: 36px;
  background: rgba(93,70,177,0.18);
  border: 1px solid rgba(93,70,177,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06), inset 0 1px 0 rgba(169,162,208,0.10);
}

.avl .icon-chain__circle svg {
  width: 22px;
  height: 22px;
  stroke: #A9A2D0;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avl .icon-chain__lbl {
  font-size: 13px;
  color: #A9A2D0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.avl .icon-chain__dash {
  flex: 1;
  height: 1px;
  border-top: 2px dashed rgba(93,70,177,0.35);
  margin: 0 12px;
  margin-bottom: 24px;
  min-width: 40px;
}

.avl .plans {
  padding: 80px 0 40px;
  background: #111219;
  position: relative;
}

.avl .plans::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, #5D46B1 40%, #A9A2D0 80%, transparent);
}

.avl .plans__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.avl .plans__head {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 80px;
  margin-bottom: 40px;
  align-items: end;
}

.avl .plans__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: #F4F4F7;
}

.avl .plans__sub {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.avl .plans__cols {
  display: grid;
  grid-template-columns: 1fr 2fr 3fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.avl .plan-card {
  border-radius: 36px;
  padding: 24px;
  border: 1px solid rgba(93,70,177,0.14);
  background: #16171f;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
}

.avl .plan-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 36px;
  border: 2px solid #5D46B1;
  opacity: 0;
  transition: opacity 0.14s ease-out;
  pointer-events: none;
}

.avl .plan-card:hover::after {
  opacity: 1;
}

.avl .plan-card:hover {
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.avl .plan-card--featured {
  border-color: rgba(93,70,177,0.40);
  background: linear-gradient(155deg, rgba(93,70,177,0.12) 0%, #16171f 60%);
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10), inset 0 1px 0 rgba(169,162,208,0.08);
}

.avl .plan-card__badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #5D46B1;
  background: rgba(93,70,177,0.12);
  border-radius: 0px;
  padding: 4px 8px;
  align-self: flex-start;
}

.avl .plan-card__name {
  font-size: 25px;
  font-weight: 800;
  color: #F4F4F7;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

.avl .plan-card__desc {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.avl .plan-card__num {
  font-size: 62px;
  font-weight: 800;
  color: #5D46B1;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.avl .plan-card__unit {
  font-size: 16px;
  color: #A9A2D0;
  font-weight: 400;
}

.avl .plan-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.avl .plan-card__list li {
  font-size: 16px;
  color: #A9A2D0;
  line-height: 1.65;
  padding-left: 24px;
  position: relative;
}

.avl .plan-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #5D46B1;
  transform: rotate(45deg);
}

.avl .plan-card__cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 36px;
  background: #5D46B1;
  color: #F4F4F7;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: filter 0.14s ease-out, box-shadow 0.14s ease-out;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
}

.avl .plan-card__cta:hover {
  filter: brightness(1.18);
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.avl .plan-card__cta--sec {
  background: transparent;
  border: 1px solid rgba(93,70,177,0.40);
  color: #A9A2D0;
}

.avl .plan-card__cta--sec:hover {
  border-color: #5D46B1;
  color: #F4F4F7;
}

.avl .plans__foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(93,70,177,0.07);
  border-radius: 36px;
  border: 1px solid rgba(93,70,177,0.14);
  margin-bottom: 40px;
}

.avl .plans__foot-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avl .plans__foot-icon svg {
  width: 28px;
  height: 28px;
  stroke: #5D46B1;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.avl .plans__foot-text {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.avl .plans__foot-text strong {
  color: #F4F4F7;
}

@keyframes rotSettle {
  0% { transform: rotate(-6deg) translateY(8px); opacity: 0; }
  70% { transform: rotate(1.5deg) translateY(-2px); opacity: 1; }
  100% { transform: rotate(0deg) translateY(0); opacity: 1; }
}

.avl .anim-settle {
  animation: rotSettle 0.55s ease-out both;
}

.avl .anim-settle--d1 { animation-delay: 0.08s; }
.avl .anim-settle--d2 { animation-delay: 0.18s; }
.avl .anim-settle--d3 { animation-delay: 0.28s; }

@media (max-width: 1024px) {
  .avl .sched__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .avl .conn__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .avl .conn__img-col {
    grid-column: 1 / -1;
  }
  .avl .plans__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .avl .plans__cols {
    grid-template-columns: 1fr 1fr;
  }
  .avl .tz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .avl .strip__h1 {
    font-size: 34px;
  }
  .avl .strip__inner {
    padding: 0 24px;
  }
  .avl .sched__inner,
  .avl .conn__inner,
  .avl .plans__inner {
    padding: 0 24px;
  }
  .avl .channels {
    grid-template-columns: 1fr;
  }
  .avl .plans__cols {
    grid-template-columns: 1fr;
  }
  .avl .tz-grid {
    grid-template-columns: 1fr 1fr;
  }
  .avl .hours-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .avl .conn__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .avl .strip__h1 {
    font-size: 25px;
  }
  .avl .tz-grid {
    grid-template-columns: 1fr;
  }
  .avl .hours-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .avl .sched,
  .avl .conn,
  .avl .plans {
    padding: 40px 0;
  }
  .avl .plans__cols {
    gap: 12px;
  }
  .avl .icon-chain {
    flex-wrap: wrap;
    gap: 12px;
  }
  .avl .icon-chain__dash {
    display: none;
  }
}

.rt {
  background: #0d0e14;
  color: #F4F4F7;
  overflow-x: hidden;
  position: relative;
}

.rt .pg-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@keyframes fadeBlurIn {
  from { opacity: 0; filter: blur(12px); }
  to { opacity: 1; filter: blur(0); }
}

.rt .reveal {
  animation: fadeBlurIn 0.6s ease-out both;
}

.rt .reveal--d1 { animation-delay: 0.1s; }
.rt .reveal--d2 { animation-delay: 0.2s; }
.rt .reveal--d3 { animation-delay: 0.35s; }

/* ===== SECTION 1: TITLE BLOCK ===== */
.rt .tit {
  padding: 80px 0;
  position: relative;
  background: #0d0e14;
}

.rt .tit__bg-stripe {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.rt .tit__bg-stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    transparent,
    transparent 28px,
    rgba(93, 70, 177, 0.04) 28px,
    rgba(93, 70, 177, 0.04) 30px
  );
}

.rt .tit__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.rt .tit__txt {
  padding: 40px 40px 40px 0;
}

.rt .tit__label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A9A2D0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(169,162,208,0.3);
  padding-bottom: 8px;
}

.rt .tit__h1 {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #F4F4F7;
  margin: 0 0 24px 0;
}

.rt .tit__h1 span {
  color: #5D46B1;
}

.rt .tit__desc {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  max-width: 460px;
  margin: 0 0 40px 0;
}

.rt .tit__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5D46B1;
  color: #F4F4F7;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: brightness 0.15s ease-out;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
}

.rt .tit__cta:hover {
  filter: brightness(1.18);
}

.rt .tit__img-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.rt .tit__img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 45%;
  background: radial-gradient(ellipse at top left, rgba(93,70,177,0.45) 0%, transparent 70%);
  pointer-events: none;
}

.rt .tit__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt .tit__dots {
  position: absolute;
  bottom: 40px;
  right: 40px;
  pointer-events: none;
}

.rt .tit__dots span {
  display: block;
  border-radius: 50%;
  background: rgba(93,70,177,0.4);
  position: absolute;
}

/* ===== SECTION 2: WHO THIS WORKS FOR ===== */
.rt .who {
  padding: 80px 0;
  background: #131520;
  position: relative;
}

.rt .who::before {
  content: '';
  display: block;
  height: 40px;
  background: #0d0e14;
  clip-path: ellipse(55% 100% at 50% 0%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.rt .who__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.rt .who__aside {
  position: sticky;
  top: 24px;
}

.rt .who__aside-num {
  font-size: 62px;
  font-weight: 800;
  color: #5D46B1;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.rt .who__aside-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #A9A2D0;
  margin-top: 8px;
}

.rt .who__aside-img {
  margin-top: 24px;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
}

.rt .who__aside-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt .who__body {
  padding-top: 12px;
}

.rt .who__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.rt .who__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .who__list-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(93,70,177,0.06);
  border-radius: 36px;
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
  transition: background 0.15s ease-out;
}

.rt .who__list-item:hover {
  background: rgba(93,70,177,0.12);
}

.rt .who__item-num {
  font-size: 34px;
  font-weight: 800;
  color: #5D46B1;
  line-height: 1.15;
  min-width: 48px;
}

.rt .who__item-body {}

.rt .who__item-title {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rt .who__item-text {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

/* ===== SECTION 3: PROFESSIONAL RELATIONSHIPS ===== */
.rt .rels {
  padding: 80px 0 40px;
  background: #0d0e14;
  position: relative;
}

.rt .rels::before {
  content: '';
  display: block;
  height: 40px;
  background: #131520;
  clip-path: ellipse(55% 100% at 50% 0%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.rt .rels__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.rt .rels__top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: end;
}

.rt .rels__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0;
}

.rt .rels__intro {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

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

.rt .rels__card {
  background: #131520;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s ease-out, backdrop-filter 0.2s ease-out;
}

.rt .rels__card:hover {
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
  backdrop-filter: blur(4px);
}

.rt .rels__card-icon {
  width: 40px;
  height: 40px;
  background: rgba(93,70,177,0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rt .rels__card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #5D46B1;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rt .rels__card-title {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.rt .rels__card-text {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.rt .rels__img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.rt .rels__img-box {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
}

.rt .rels__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== SECTION 4: EVIDENCE OF SCALE ===== */
.rt .scale {
  padding: 80px 0;
  position: relative;
  background: #131520;
}

.rt .scale::before {
  content: '';
  display: block;
  height: 40px;
  background: #0d0e14;
  clip-path: ellipse(55% 100% at 50% 0%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.rt .scale__bg-dots {
  position: absolute;
  bottom: 40px;
  right: 24px;
  pointer-events: none;
  overflow: hidden;
}

.rt .scale__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.rt .scale__head {
  margin-bottom: 40px;
}

.rt .scale__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.rt .scale__sub {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  max-width: 560px;
  margin: 0;
}

.rt .scale__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.rt .scale__img-col {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.rt .scale__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt .scale__metrics {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .scale__metric {
  background: rgba(93,70,177,0.07);
  border-radius: 36px;
  padding: 24px;
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
}

.rt .scale__metric-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.rt .scale__metric-val {
  font-size: 34px;
  font-weight: 800;
  color: #5D46B1;
  line-height: 1.15;
}

.rt .scale__metric-unit {
  font-size: 13px;
  color: #A9A2D0;
  padding-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rt .scale__metric-label {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
}

.rt .scale__metric-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0 0 12px 0;
}

.rt .scale__bar {
  height: 8px;
  background: rgba(169,162,208,0.15);
  border-radius: 0;
  overflow: hidden;
}

.rt .scale__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #5D46B1, #A9A2D0);
  border-radius: 0;
  transition: width 0.5s ease-out;
}

/* ===== SECTION 5: WHAT LONG-TERM CLIENTS DESCRIBE ===== */
.rt .patt {
  padding: 80px 0;
  background: #0d0e14;
  position: relative;
}

.rt .patt::before {
  content: '';
  display: block;
  height: 40px;
  background: #131520;
  clip-path: ellipse(55% 100% at 50% 0%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.rt .patt__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.rt .patt__top {
  margin-bottom: 40px;
}

.rt .patt__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.rt .patt__intro {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  max-width: 520px;
  margin: 0;
}

.rt .patt__split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.rt .patt__quotes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .patt__quote {
  padding: 24px;
  background: #131520;
  border-radius: 36px;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s ease-out;
}

.rt .patt__quote:hover {
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.rt .patt__q-mark {
  width: 32px;
  height: 32px;
  background: #5D46B1;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rt .patt__q-mark svg {
  width: 16px;
  height: 16px;
  fill: #F4F4F7;
}

.rt .patt__q-text {
  font-size: 16px;
  line-height: 1.65;
  color: #F4F4F7;
  margin: 0;
  font-style: italic;
}

.rt .patt__q-name {
  font-size: 13px;
  color: #A9A2D0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rt .patt__img-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .patt__img-box {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
}

.rt .patt__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt .patt__stat {
  background: rgba(93,70,177,0.1);
  border-radius: 36px;
  padding: 24px;
  text-align: left;
}

.rt .patt__stat-val {
  font-size: 34px;
  font-weight: 800;
  color: #5D46B1;
  line-height: 1.15;
}

.rt .patt__stat-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 8px 0 0 0;
}

/* ===== SECTION 6: WHAT MAKES THIS DIFFERENT ===== */
.rt .diff {
  padding: 80px 0;
  background: #131520;
  position: relative;
}

.rt .diff::before {
  content: '';
  display: block;
  height: 40px;
  background: #0d0e14;
  clip-path: ellipse(55% 100% at 50% 0%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.rt .diff__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.rt .diff__txt {}

.rt .diff__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.rt .diff__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .diff__point {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.rt .diff__point-num {
  font-size: 34px;
  font-weight: 800;
  color: #5D46B1;
  line-height: 1.15;
  min-width: 40px;
}

.rt .diff__point-body {}

.rt .diff__point-title {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
}

.rt .diff__point-text {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.rt .diff__vis {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .diff__img-box {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.rt .diff__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt .diff__split-bg {
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr 1fr;
  height: 120px;
}

.rt .diff__split-top {
  background: #5D46B1;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.rt .diff__split-bot {
  background: #0d0e14;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.rt .diff__split-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #F4F4F7;
}

/* ===== SECTION 7: WHAT MAKES THE APPROACH WORK ===== */
.rt .appr {
  padding: 80px 0;
  background: #0d0e14;
  position: relative;
}

.rt .appr::before {
  content: '';
  display: block;
  height: 40px;
  background: #131520;
  clip-path: ellipse(55% 100% at 50% 0%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.rt .appr__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.rt .appr__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0 0 40px 0;
}

.rt .appr__layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 40px;
  align-items: start;
}

.rt .appr__img-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rt .appr__img-box {
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 2/3;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
}

.rt .appr__img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rt .appr__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rt .appr__step {
  background: #131520;
  border-radius: 36px;
  padding: 24px;
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s ease-out, background 0.15s ease-out;
}

.rt .appr__step:hover {
  background: rgba(93,70,177,0.1);
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.rt .appr__step-num {
  font-size: 34px;
  font-weight: 800;
  color: #5D46B1;
  line-height: 1.15;
}

.rt .appr__step-title {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.rt .appr__step-text {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.rt .appr__step--wide {
  grid-column: span 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .rt .tit__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rt .tit__h1 {
    font-size: 34px;
  }
  .rt .tit__txt {
    padding: 0;
  }
  .rt .who__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rt .who__aside {
    position: static;
  }
  .rt .rels__grid {
    grid-template-columns: 1fr 1fr;
  }
  .rt .rels__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rt .scale__layout {
    grid-template-columns: 1fr;
  }
  .rt .patt__split {
    grid-template-columns: 1fr;
  }
  .rt .diff__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rt .appr__layout {
    grid-template-columns: 1fr;
  }
  .rt .appr__img-side {
    display: none;
  }
}

@media (max-width: 768px) {
  .rt .tit__h1 {
    font-size: 25px;
  }
  .rt .rels__grid {
    grid-template-columns: 1fr;
  }
  .rt .rels__img-row {
    grid-template-columns: 1fr;
  }
  .rt .appr__steps {
    grid-template-columns: 1fr;
  }
  .rt .appr__step--wide {
    grid-column: span 1;
  }
  .rt .diff__inner {
    gap: 24px;
  }
  .rt .who__list-item {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .rt .tit {
    padding: 40px 0;
  }
  .rt .who,
  .rt .rels,
  .rt .scale,
  .rt .patt,
  .rt .diff,
  .rt .appr {
    padding: 40px 0;
  }
  .rt .patt__split {
    grid-template-columns: 1fr;
  }
}

.ab-us {
  background: #0d0e14;
  color: #F4F4F7;
  overflow-x: clip;
  position: relative;
}

.ab-us .reveal {
  opacity: 0;
  animation: ab-reveal 0.18s ease-out forwards;
}

.ab-us .reveal--d1 { animation-delay: 0.08s; }
.ab-us .reveal--d2 { animation-delay: 0.14s; }
.ab-us .reveal--d3 { animation-delay: 0.2s; }

@keyframes ab-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ab-us .fade-in {
  opacity: 0;
  animation: ab-fadein 0.2s ease-out forwards;
  animation-play-state: paused;
}

.ab-us .fade-in.visible {
  animation-play-state: running;
}

@keyframes ab-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ab-us .pg-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.ab-us .noise-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.ab-us .hero-blk {
  position: relative;
  padding: 80px 0 80px;
  overflow: hidden;
}

.ab-us .hero-blk__bg {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 220deg at 72% 48%, #0d0e14 0deg, #1a1630 60deg, #0d0e14 120deg, #130f1e 180deg, #0d0e14 240deg, #111320 300deg, #0d0e14 360deg);
  z-index: 0;
}

.ab-us .hero-blk__curve {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 320px;
  height: 320px;
  border-radius: 36px;
  border: 1px solid rgba(93,70,177,0.12);
  pointer-events: none;
  z-index: 0;
  transform: rotate(18deg);
}

.ab-us .hero-blk__curve--2 {
  bottom: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-color: rgba(169,162,208,0.06);
  transform: rotate(32deg);
}

.ab-us .hero-blk__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.ab-us .hero-blk__text {
  flex: 1 1 0;
  min-width: 0;
}

.ab-us .hero-blk__num {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 900;
  color: #5D46B1;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 4px;
}

.ab-us .hero-blk__h1 {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #F4F4F7;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.ab-us .hero-blk__h1 em {
  font-style: normal;
  color: #A9A2D0;
}

.ab-us .hero-blk__desc {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  max-width: 480px;
  margin: 0 0 40px 0;
}

.ab-us .hero-blk__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.ab-us .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 0px;
  border: 1px solid rgba(93,70,177,0.35);
  font-size: 13px;
  color: #A9A2D0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(93,70,177,0.08);
}

.ab-us .hero-blk__img-col {
  flex: 0 0 420px;
  position: relative;
}

.ab-us .hero-blk__img-wrap {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
  width: 420px;
  height: 520px;
}

.ab-us .hero-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-us .hero-blk__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 10%, transparent 40%, rgba(13,14,20,0.65) 100%);
  pointer-events: none;
}

.ab-us .hero-blk__stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.ab-us .hero-blk__stripe::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #5D46B1 0%, transparent 60%);
  opacity: 0.55;
}

.ab-us .story-blk {
  position: relative;
  padding: 80px 0;
  background: #111220;
}

.ab-us .story-blk__bg-accent {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 45deg at 20% 80%, #111220 0deg, #13112a 80deg, #111220 180deg, #0f1018 280deg, #111220 360deg);
  z-index: 0;
  pointer-events: none;
}

.ab-us .story-blk__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ab-us .story-blk__label {
  font-size: 13px;
  color: #5D46B1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.ab-us .story-blk__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.ab-us .story-blk__body {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0 0 24px 0;
}

.ab-us .story-blk__body + .story-blk__body {
  margin-top: 0;
}

.ab-us .story-blk__col--main {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
}

.ab-us .story-blk__col--stats {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ab-us .story-blk__col--img {
  grid-column: 3 / 4;
  position: relative;
}

.ab-us .story-blk__img-wrap {
  border-radius: 36px;
  overflow: hidden;
  width: 100%;
  height: 380px;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  position: relative;
}

.ab-us .story-blk__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-us .story-blk__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(93,70,177,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.ab-us .stat-card {
  background: rgba(93,70,177,0.08);
  border: 1px solid rgba(93,70,177,0.18);
  border-radius: 0px;
  padding: 24px;
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
  position: relative;
  overflow: hidden;
}

.ab-us .stat-card__stripe {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
  pointer-events: none;
}

.ab-us .stat-card__stripe::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5D46B1 0%, transparent 55%);
  opacity: 0.4;
}

.ab-us .stat-card__num {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  color: #5D46B1;
  letter-spacing: -0.5px;
  display: block;
  margin-bottom: 4px;
}

.ab-us .stat-card__label {
  font-size: 13px;
  color: #A9A2D0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.ab-us .team-blk {
  position: relative;
  padding: 80px 0;
  background: #0d0e14;
}

.ab-us .team-blk__bg {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 160deg at 85% 30%, #0d0e14 0deg, #0f0d1a 70deg, #0d0e14 160deg, #12101e 240deg, #0d0e14 360deg);
  z-index: 0;
  pointer-events: none;
}

.ab-us .team-blk__inner {
  position: relative;
  z-index: 1;
}

.ab-us .team-blk__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}

.ab-us .team-blk__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0;
}

.ab-us .team-blk__sub {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  max-width: 420px;
  margin: 0;
  text-align: right;
}

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

.ab-us .tm-card {
  background: #111220;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  transition: box-shadow 0.18s ease-out, transform 0.15s ease-out;
  position: relative;
}

.ab-us .tm-card:hover {
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
  transform: translateY(-2px);
}

.ab-us .tm-card__img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.ab-us .tm-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ab-us .tm-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17,18,32,0.85) 100%);
  pointer-events: none;
}

.ab-us .tm-card__stripe-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.ab-us .tm-card__stripe-corner::before {
  content: '';
  position: absolute;
  top: -14px;
  right: -14px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #5D46B1 0%, transparent 55%);
  opacity: 0.5;
}

.ab-us .tm-card__body {
  padding: 24px;
}

.ab-us .tm-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ab-us .tm-card__role {
  font-size: 13px;
  color: #5D46B1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 12px 0;
}

.ab-us .tm-card__bio {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

.ab-us .vals-blk {
  position: relative;
  padding: 80px 0;
  background: #13112a;
}

.ab-us .vals-blk__bg {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 300deg at 50% 50%, #13112a 0deg, #0f0d1e 90deg, #16133a 180deg, #0f0d1e 270deg, #13112a 360deg);
  z-index: 0;
  pointer-events: none;
}

.ab-us .vals-blk__inner {
  position: relative;
  z-index: 1;
}

.ab-us .vals-blk__header {
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.ab-us .vals-blk__h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #F4F4F7;
  text-transform: uppercase;
  margin: 0;
  flex: 0 0 auto;
}

.ab-us .vals-blk__lead {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
}

.ab-us .vals-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ab-us .val-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  background: rgba(13,14,20,0.6);
  border-radius: 0px;
  padding: 24px;
  border: 1px solid rgba(169,162,208,0.08);
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06);
  transition: border-color 0.15s ease-out;
}

.ab-us .val-item:hover {
  border-color: rgba(93,70,177,0.3);
}

.ab-us .val-item__num {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  color: #5D46B1;
  letter-spacing: -0.5px;
  flex: 0 0 auto;
  min-width: 40px;
}

.ab-us .val-item__content {
  flex: 1 1 0;
  min-width: 0;
}

.ab-us .val-item__h4 {
  font-size: 16px;
  font-weight: 700;
  color: #F4F4F7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
}

.ab-us .val-item__text {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
}

@media (max-width: 1024px) {
  .ab-us .hero-blk__inner {
    gap: 40px;
  }
  .ab-us .hero-blk__img-col {
    flex: 0 0 320px;
  }
  .ab-us .hero-blk__img-wrap {
    width: 320px;
    height: 400px;
  }
  .ab-us .hero-blk__h1 {
    font-size: 34px;
  }
  .ab-us .hero-blk__num {
    font-size: 34px;
  }
  .ab-us .story-blk__inner {
    grid-template-columns: 1fr 1fr;
  }
  .ab-us .story-blk__col--main {
    grid-column: 1 / 2;
  }
  .ab-us .story-blk__col--stats {
    grid-column: 2 / 3;
  }
  .ab-us .story-blk__col--img {
    grid-column: 1 / 3;
  }
  .ab-us .story-blk__img-wrap {
    height: 280px;
  }
  .ab-us .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ab-us .hero-blk {
    padding: 40px 0;
  }
  .ab-us .hero-blk__inner {
    flex-direction: column;
    gap: 24px;
  }
  .ab-us .hero-blk__img-col {
    flex: 0 0 auto;
    width: 100%;
  }
  .ab-us .hero-blk__img-wrap {
    width: 100%;
    height: 280px;
  }
  .ab-us .hero-blk__h1 {
    font-size: 25px;
  }
  .ab-us .hero-blk__num {
    font-size: 25px;
  }
  .ab-us .story-blk {
    padding: 40px 0;
  }
  .ab-us .story-blk__inner {
    grid-template-columns: 1fr;
  }
  .ab-us .story-blk__col--main,
  .ab-us .story-blk__col--stats,
  .ab-us .story-blk__col--img {
    grid-column: 1 / 2;
  }
  .ab-us .team-blk {
    padding: 40px 0;
  }
  .ab-us .team-blk__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .ab-us .team-blk__sub {
    text-align: left;
  }
  .ab-us .team-grid {
    grid-template-columns: 1fr;
  }
  .ab-us .vals-blk {
    padding: 40px 0;
  }
  .ab-us .vals-blk__header {
    flex-direction: column;
    gap: 12px;
  }
  .ab-us .vals-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ab-us .hero-blk__h1 {
    font-size: 25px;
  }
  .ab-us .hero-blk__desc {
    font-size: 13px;
  }
  .ab-us .story-blk__h2,
  .ab-us .team-blk__h2,
  .ab-us .vals-blk__h2 {
    font-size: 25px;
  }
  .ab-us .pg-wrap {
    padding: 0 12px;
  }
}

.cu {
  background: #0d0e14;
  color: #F4F4F7;
  overflow-x: hidden;
}

.cu .pg-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.cu .trace-border {
  position: relative;
}
.cu .trace-border::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 36px;
  animation: trace-draw 0.8s ease-out forwards;
  pointer-events: none;
}
@keyframes trace-draw {
  0% { border-color: transparent; clip-path: inset(0 100% 100% 0); }
  100% { border-color: rgba(93,70,177,0.4); clip-path: inset(0 0% 0% 0); }
}

.cu .blk-top {
  padding: 80px 0 40px;
  position: relative;
}

.cu .hero-diag {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 420px;
}

.cu .hero-diag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 210deg at 38% 50%, #0d0e14 0deg, #1a1530 60deg, #5D46B1 120deg, #A9A2D0 160deg, #1a1530 200deg, #0d0e14 280deg, #0d0e14 360deg);
  opacity: 0.18;
  z-index: 0;
}

.cu .hero-left {
  background: linear-gradient(138deg, #5D46B1 0%, #2a1f6e 55%, #0d0e14 100%);
  padding: 80px 40px 80px 40px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.cu .hero-right {
  padding: 40px 40px 40px 80px;
  position: relative;
  z-index: 1;
  background: #111220;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cu .hero-tag {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A9A2D0;
  margin-bottom: 24px;
  font-weight: 600;
}

.cu .hero-h1 {
  font-size: 62px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #F4F4F7;
  margin: 0 0 24px;
  font-weight: 800;
}

.cu .hero-h1 .hl {
  background: rgba(93,70,177,0.35);
  border-radius: 0px;
  padding: 0 8px;
  color: #c4bdf0;
}

.cu .hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0;
  max-width: 320px;
}

.cu .deco-shape {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 36px;
  background: conic-gradient(from 45deg at 50% 50%, rgba(93,70,177,0.3) 0deg, transparent 120deg, rgba(169,162,208,0.15) 240deg, transparent 360deg);
  transform: rotate(22deg);
  pointer-events: none;
}

.cu .deco-shape2 {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 80px;
  height: 80px;
  border-radius: 36px;
  border: 1px solid rgba(93,70,177,0.25);
  pointer-events: none;
}

.cu .contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu .c-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.cu .c-icon {
  width: 40px;
  height: 40px;
  border-radius: 0px;
  background: rgba(93,70,177,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu .c-icon svg {
  width: 18px;
  height: 18px;
  stroke: #A9A2D0;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cu .c-label {
  font-size: 13px;
  color: #A9A2D0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.cu .c-val {
  font-size: 16px;
  color: #F4F4F7;
  line-height: 1.65;
}

.cu .c-val a {
  color: #F4F4F7;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.cu .c-val a:hover {
  color: #A9A2D0;
}

.cu .blk-form {
  padding: 80px 0;
  background: #0d0e14;
  position: relative;
}

.cu .blk-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(93,70,177,0.5) 40%, rgba(169,162,208,0.3) 60%, transparent 100%);
}

.cu .form-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.cu .form-aside {
  position: sticky;
  top: 40px;
}

.cu .aside-num {
  font-size: 62px;
  line-height: 1.15;
  font-weight: 800;
  color: rgba(93,70,177,0.25);
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.cu .aside-h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.cu .aside-body {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin: 0 0 24px;
}

.cu .aside-note {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(169,162,208,0.6);
  border-top: 1px solid rgba(93,70,177,0.2);
  padding-top: 24px;
}

.cu .form-panel {
  background: #111220;
  border-radius: 36px;
  padding: 40px;
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

.cu .f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.cu .f-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cu .f-field--full {
  grid-column: 1 / -1;
}

.cu .f-label {
  font-size: 13px;
  color: #A9A2D0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.cu .f-input {
  background: rgba(93,70,177,0.08);
  border: 1px solid rgba(93,70,177,0.2);
  border-radius: 0px;
  padding: 12px 16px;
  font-size: 16px;
  color: #F4F4F7;
  outline: none;
  transition: border-color 0.15s ease-out, box-shadow 0.2s ease-out;
  width: 100%;
  box-sizing: border-box;
  font-weight: 400;
}

.cu .f-input::placeholder {
  color: rgba(169,162,208,0.4);
  font-weight: 300;
}

.cu .f-input:focus {
  border-color: #5D46B1;
  box-shadow: 0 3px 5px 0 rgba(93,70,177,0.06), inset 0 0 0 1px rgba(93,70,177,0.15);
}

.cu .slot-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.cu .slot-opt {
  position: relative;
}

.cu .slot-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cu .slot-opt label {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: #A9A2D0;
  border: 1px solid rgba(93,70,177,0.25);
  border-radius: 0px;
  cursor: pointer;
  transition: background 0.15s ease-out, color 0.15s ease-out, border-color 0.15s ease-out;
  user-select: none;
  white-space: nowrap;
}

.cu .slot-opt input[type="radio"]:checked + label {
  background: #5D46B1;
  color: #F4F4F7;
  border-color: #5D46B1;
}

.cu .slot-opt label:hover {
  border-color: #5D46B1;
  color: #F4F4F7;
}

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

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

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

.cu .privacy-txt {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(169,162,208,0.8);
}

.cu .privacy-txt a {
  color: #A9A2D0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease-out;
}

.cu .privacy-txt a:hover {
  color: #F4F4F7;
}

.cu .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #5D46B1;
  color: #F4F4F7;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  box-shadow: 0 5px 18px 0 rgba(93,70,177,0.10);
  transition: filter 0.15s ease-out, box-shadow 0.2s ease-out;
  width: 100%;
  justify-content: center;
}

.cu .btn-submit:hover {
  filter: brightness(1.15);
  box-shadow: 0 10px 40px 0 rgba(93,70,177,0.10);
}

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

.cu .btn-submit:active {
  filter: brightness(0.95);
}

.cu .btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cu .blk-meta {
  padding: 40px 0 80px;
  position: relative;
}

.cu .blk-meta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(169,162,208,0.2) 50%, transparent 100%);
}

.cu .meta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.4fr 0.4fr 1fr;
  gap: 24px;
  align-items: start;
}

.cu .meta-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cu .meta-lbl {
  font-size: 13px;
  color: rgba(169,162,208,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.cu .meta-val {
  font-size: 16px;
  line-height: 1.65;
  color: #F4F4F7;
}

.cu .meta-val a {
  color: #F4F4F7;
  text-decoration: none;
  transition: color 0.15s ease-out;
}

.cu .meta-val a:hover {
  color: #A9A2D0;
}

.cu .meta-divider {
  width: 1px;
  background: rgba(93,70,177,0.2);
  align-self: stretch;
  min-height: 60px;
}

.cu .q-mark {
  font-size: 62px;
  line-height: 1.15;
  color: rgba(93,70,177,0.2);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  pointer-events: none;
  user-select: none;
}

.cu .hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cu .hours-list li {
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 8px;
}

.cu .hours-list li span:first-child {
  color: rgba(169,162,208,0.6);
}

@media (max-width: 1024px) {
  .cu .hero-diag {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .cu .hero-left {
    clip-path: none;
    padding: 40px;
  }
  .cu .hero-right {
    padding: 40px;
  }
  .cu .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cu .form-aside {
    position: static;
  }
  .cu .meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .cu .meta-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .cu .hero-h1 {
    font-size: 34px;
  }
  .cu .f-row {
    grid-template-columns: 1fr;
  }
  .cu .meta-grid {
    grid-template-columns: 1fr;
  }
  .cu .form-panel {
    padding: 24px;
  }
  .cu .blk-top {
    padding: 40px 0 24px;
  }
  .cu .blk-form {
    padding: 40px 0;
  }
  .cu .blk-meta {
    padding: 24px 0 40px;
  }
}

@media (max-width: 480px) {
  .cu .hero-left {
    padding: 24px;
  }
  .cu .hero-right {
    padding: 24px;
  }
  .cu .aside-h2 {
    font-size: 25px;
  }
  .cu .slot-group {
    gap: 8px;
  }
  .cu .pg-wrap {
    padding: 0 12px;
  }
}

.suc {
  min-height: 100vh;
  background: #0d0c14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.suc__wrap {
  max-width: 560px;
  width: 100%;
  text-align: left;
}

.suc__icon {
  width: 56px;
  height: 56px;
  border-radius: 36px;
  background: linear-gradient(135deg, #5D46B1 0%, #2a2240 100%);
  box-shadow: 0 10px 40px 0 rgba(93, 70, 177, 0.10), inset 0 1px 0 rgba(169, 162, 208, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.suc__icon svg {
  width: 26px;
  height: 26px;
  stroke: #F4F4F7;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.suc__label {
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A9A2D0;
  font-weight: 600;
  margin-bottom: 12px;
}

.suc__title {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F4F4F7;
  font-weight: 700;
  margin-bottom: 24px;
}

.suc__body {
  font-size: 16px;
  line-height: 1.65;
  color: #A9A2D0;
  margin-bottom: 40px;
}

.suc__body span {
  color: #F4F4F7;
}

.suc__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #5D46B1 0%, transparent 100%);
  margin-bottom: 40px;
  opacity: 0.35;
}

.suc__meta {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.suc__meta-item .suc__meta-key {
  font-size: 13px;
  line-height: 1.15;
  color: #A9A2D0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.suc__meta-item .suc__meta-val {
  font-size: 16px;
  line-height: 1.15;
  color: #F4F4F7;
  font-weight: 600;
}

.suc__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
}

.suc__btn--pri {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 0px;
  background: #5D46B1;
  color: #F4F4F7;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 18px 0 rgba(93, 70, 177, 0.10);
  transition: brightness 0.15s ease-out;
}

.suc__btn--pri:hover {
  filter: brightness(1.18);
}

.suc__btn--pri:focus {
  outline: 2px solid #A9A2D0;
  outline-offset: 2px;
}

.suc__btn--sec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 0px;
  background: transparent;
  color: #A9A2D0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(169, 162, 208, 0.28);
  cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease;
}

.suc__btn--sec:hover {
  color: #F4F4F7;
  border-color: rgba(169, 162, 208, 0.6);
}

.suc__btn--sec:focus {
  outline: 2px solid #A9A2D0;
  outline-offset: 2px;
}

.suc__btn--pri svg,
.suc__btn--sec svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.suc__note {
  margin-top: 40px;
  padding: 12px 24px;
  border-radius: 36px;
  background: rgba(93, 70, 177, 0.10);
  box-shadow: inset 0 1px 0 rgba(169, 162, 208, 0.10);
  font-size: 13px;
  line-height: 1.65;
  color: #A9A2D0;
}

.suc__note a {
  color: #A9A2D0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.12s ease-out;
}

.suc__note a:hover {
  color: #F4F4F7;
}

@media (max-width: 480px) {
  .suc {
    padding: 40px 24px;
  }

  .suc__title {
    font-size: 25px;
  }

  .suc__actions {
    flex-direction: column;
  }

  .suc__btn--pri,
  .suc__btn--sec {
    width: 100%;
    justify-content: center;
  }
}
