/* Reset styles */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background-color: transparent;
  outline: none;
  border: none;
}

img {
  display: block;
  max-width: 100%;
}

/* @import './fixed-18.css'; */

.hdr-esquire {
  position: sticky;
  top: 0;
  z-index: 950;
  background:
    radial-gradient(900px 160px at 10% 0%, rgba(196,160,96,0.10), rgba(196,160,96,0) 60%),
    linear-gradient(180deg, #141313 0%, #111112 55%, #171616 100%);
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

.hdr-esquire__inner {
  display: flex;
justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px 16px;
}

.brand-monogram {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-monogram__logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
  background: radial-gradient(circle at 30% 30%, rgba(207,175,116,0.30), rgba(207,175,116,0.08));
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 12px 28px rgba(0,0,0,0.36);
}

.brand-monogram__name {
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 18px;
  color: #f3eee2;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
}

.nav-ledger {
  display: none;
}

.nav-ledger__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-ledger__item {
  list-style: none;
  position: relative;
}

.nav-ledger__link {
  display: inline-block;
  padding: 10px 3px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px !important;
  letter-spacing: 0.06em;
  color: #efe9dc;
  transition: transform 220ms ease, color 220ms ease;
}

.nav-ledger__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #caa462 0%, #8e7443 100%);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nav-ledger__link:hover,
.nav-ledger__link:focus {
  color: #fff6e6;
}

.nav-ledger__link:hover::after,
.nav-ledger__link:focus::after {
  transform: scaleX(1);
}

.toggler-chiaro {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 46px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 22px rgba(0,0,0,0.28);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.toggler-chiaro:active { transform: scale(0.98); }

.toggler-chiaro__line {
  width: 22px;
  height: 2px;
  background: #f6f1e6;
  margin: 3px 0;
  transition: transform 260ms ease, opacity 220ms ease;
}

.flyout-ledger {
  position: fixed;
  inset: 0;
  top: -100vh;
  height: 100vh;
  background:
    radial-gradient(1000px 220px at 80% 0%, rgba(196,160,96,0.12), rgba(196,160,96,0) 60%),
    linear-gradient(180deg, rgba(20,20,22,0.96) 0%, rgba(15,15,17,0.96) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: top 360ms ease, opacity 260ms ease;
  backdrop-filter: blur(3px);
}

.flyout-ledger.is-open,
.header-nav-mobile.is-open {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.flyout-ledger__inner {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  padding: 16px 16px 24px;
}

.flyout-ledger__close {
  justify-self: end;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  position: relative;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 8px 22px rgba(0,0,0,0.28);
  transition: transform 200ms ease;
}

.flyout-ledger__close:active { transform: scale(0.98); }

.flyout-ledger__x {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: #f6f1e6;
  transform-origin: center;
}

.flyout-ledger__x:first-child { transform: translate(-50%, -50%) rotate(45deg); }

.flyout-ledger__x:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.flyout-ledger__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.flyout-ledger__link {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #171616;
  background: linear-gradient(135deg, #d4b071 0%, #9f7f49 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 12px 30px rgba(0,0,0,0.36);
  transform: translateY(8px);
  opacity: 0;
  animation: fly-stagger 420ms ease forwards;
}

.header-nav-mobile.is-open .flyout-ledger__link:nth-child(1) { animation-delay: 80ms; }

.header-nav-mobile.is-open .flyout-ledger__link:nth-child(2) { animation-delay: 140ms; }

.header-nav-mobile.is-open .flyout-ledger__link:nth-child(3) { animation-delay: 200ms; }

.header-nav-mobile.is-open .flyout-ledger__link:nth-child(4) { animation-delay: 260ms; }

@keyframes fly-stagger {
  to { transform: translateY(0); opacity: 1; }
}

@media (min-width: 1280px) {
  .nav-ledger { display: block; }
  .toggler-chiaro { display: none; }
}

@media (min-width: 1440px) {
  .hdr-esquire__inner { padding: 16px; }
  .nav-ledger__link { font-size: 16px; }
}

@media (max-width: 359px) {
  .brand-monogram__name { display: none; }
}

.hdr-esquire,
.hdr-esquire * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vogue-hero-atrium {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(1400px 340px at 12% 0%, rgba(210,171,108,0.18) 0%, rgba(210,171,108,0) 65%),
    radial-gradient(1200px 300px at 88% 100%, rgba(124,89,52,0.18) 0%, rgba(124,89,52,0) 70%),
    linear-gradient(180deg, rgba(20,18,16,0.92), rgba(16,15,14,0.96)),
    url('./assets/hero-bg.jpg');
  background-size: 100% 100%, 100% 100%, cover, cover;
  background-position: 0 0, 0 0, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  overflow: hidden;
  z-index: 1;
}

.vogue-hero-atrium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 220deg at 10% 0%, rgba(235,206,152,0.12), rgba(235,206,152,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  mix-blend-mode: normal;
  pointer-events: none;
  animation: atrium-veil 12s linear infinite;
}

.vogue-hero-atrium::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 1000px at -10% -10%, rgba(0,0,0,0.25), transparent 60%),
    radial-gradient(900px 900px at 110% 110%, rgba(0,0,0,0.25), transparent 60%);
  pointer-events: none;
}

.atrium-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 18px;
  min-width: 0;
  opacity: 1;
  transform: none;
  animation: atrium-rise 560ms ease-out both;
  will-change: transform, opacity;
}

.atrium-lead__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-wrap: balance;
  color: #f7f3ea;
  padding-bottom: 12px;
  position: relative;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.42));
  width: 100%;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .atrium-lead__title {
    background: linear-gradient(90deg, #ffffff 0%, #f3ead7 55%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.atrium-lead__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #f0c978, #b7853e 70%, #8f6632);
  border-radius: 2px;
  animation: underline-sweep 900ms 200ms cubic-bezier(0.2,0.7,0.2,1) forwards;
}

.atrium-lead__title span {
  color: #e7c37b;
  text-shadow: 0 0 18px rgba(231,195,123,0.35);
}

.atrium-lead__subtitle {
  margin: 0;
  font-size: 20px;
  line-height: 1.74;
  font-weight: 500;
  color: rgba(252,247,238,0.96);
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.aurum-broker-suite {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(34,30,26,0.95), rgba(22,20,18,0.98));
  box-shadow: 0 16px 44px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.05) inset;
  position: relative;
  opacity: 1;
  transform: none;
  animation: card-unfold 600ms 120ms ease-out both;
  will-change: transform, opacity;
}

.aurum-broker-suite::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    radial-gradient(600px 220px at 10% 0%, rgba(232,196,124,0.16), rgba(232,196,124,0) 60%);
  pointer-events: none;
}

.aurum-broker-suite::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(180deg, #f0c978, #a87e40);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.aurum-broker-suite__header {
  display: flex;
flex-direction: column;
justify-content: center;
  gap: 18px;
  align-items: center;
}

.crest-logo {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(235,201,136,0.22), rgba(235,201,136,0.08));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 12px 30px rgba(40,30,18,0.5);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.crest-logo:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 16px 36px rgba(40,30,18,0.6); }

.crest-logo__img { width: 100%; height: 100%; object-fit: contain; }

.rating-cluster {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.rating-cluster__label {
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #efe5d2;
}

.rating-cluster__value {
  margin: 2px 0 0 0;
  font-size: 26px;
  font-weight: 900;
  color: #ffffff;
}

.rating-stars__svg { width: 120px; height: 24px; display: block; filter: drop-shadow(0 4px 10px rgba(167,122,57,0.3)); }

.benefit-ledger { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }

.benefit-ledger__row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
  position: relative;
  overflow: hidden;
}

.benefit-ledger__row::after {
  content: "";
  position: absolute;
  right: -20%;
  top: -40%;
  width: 60%;
  height: 200%;
  transform: rotate(18deg);
  background: radial-gradient(40% 50% at 50% 50%, rgba(240,201,120,0.18), rgba(240,201,120,0));
  opacity: 0;
  transition: opacity 260ms ease;
}

.benefit-ledger__row:hover::after { opacity: 1; }

.benefit-ledger__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(235,201,136,0.22), rgba(235,201,136,0.08));
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 18px rgba(235,201,136,0.28);
}

.benefit-ledger__icon svg { width: 16px; height: 16px; fill: #e7c37b; }

.benefit-ledger__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
  color: rgba(252,247,238,0.97);
}

.cta-bay { display: grid; place-items: center; padding-top: 6px; }

.cta-auric {
  display: inline-block;
  min-width: 232px;
  text-align: center;
  padding: 13px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1713;
  background: linear-gradient(180deg, #f3cf7a, #b88540);
  box-shadow: 0 10px 28px rgba(184,133,64,0.42), 0 1px 0 rgba(255,255,255,0.55) inset;
  transition: transform 180ms ease, box-shadow 220ms ease;
}

.cta-auric:hover,
.cta-auric:focus { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(184,133,64,0.5), 0 1px 0 rgba(255,255,255,0.6) inset; }

@keyframes atrium-rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes underline-sweep { to { width: 100%; } }

@keyframes card-unfold {
  from { transform: translateY(14px) scale(0.995); opacity: 0; }
  60% { transform: translateY(4px) scale(1.005); opacity: 1; }
  to { transform: translateY(0) scale(1); }
}

@keyframes atrium-veil {
  0% { transform: translateX(-2%); }
  50% { transform: translateX(2%); }
  100% { transform: translateX(-2%); }
}

@media (max-width: 1200px) {
  .vogue-hero-atrium__grid { grid-template-columns: 1fr; gap: 26px; }
  .aurum-broker-suite { max-width: 700px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .vogue-hero-atrium__grid { padding: 28px 16px 34px; }
  .atrium-lead__title { font-size: clamp(26px, 7.2vw, 40px); }
  .atrium-lead__subtitle { font-size: 16px; line-height: 1.65; }
  .aurum-broker-suite__header { grid-template-columns: 96px 1fr; }
  .crest-logo { width: 96px; height: 78px; border-radius: 14px; }
  .benefit-ledger__row { grid-template-columns: 30px 1fr; }
  .benefit-ledger__row p:last-child { justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  .vogue-hero-atrium::before { animation: none; }
  .atrium-lead { animation: none; opacity: 1; transform: none; }
  .aurum-broker-suite { animation: none; opacity: 1; transform: none; }
}

/* Stacking to avoid covering mobile menus */

.vogue-hero-atrium { z-index: 1; }

.elite-vanguard {
  position: relative;
  background: url(./assets/cards_bg.jpg) no-repeat top center / cover;
  color: #ffffff;
  overflow: hidden;
}

.elite-vanguard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

.elite-vanguard__wrapper {
  position: relative;
  z-index: 1;
  padding: 40px 20px 50px;
}

.vanguard-collection {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.collection-unit {
  flex: 1 1 auto;
  width: 100%;
}

.unit-framework {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(20, 20, 20, 0.85);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25), 0 4px 25px rgba(0, 0, 0, 0.4);
  transition: box-shadow 300ms ease;
}

.unit-framework:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4), 0 6px 30px rgba(0, 0, 0, 0.5);
}

.framework-portrait {
  flex: 0 0 auto;
  width: 180px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.framework-portrait:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.portrait-canvas {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.framework-details {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.framework-details h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #f5f5f5;
}

.framework-details p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
}

.details-insights {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.insights-ballots {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 8px;
}

.ballots-descriptor {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #d4af37;
}

.ballots-tally {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.insights-accolades {
  display: flex;
}

.accolades-emblem {
  width: 120px;
  height: 24px;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}

.framework-initiate {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.initiate-directive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1c1c1c;
  background: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.initiate-directive:hover,
.initiate-directive:focus {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1280px) {
  .unit-framework {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .framework-portrait {
    width: 100%;
  }

  .details-insights {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .framework-initiate {
    width: 100%;
    justify-content: center;
  }

  .initiate-directive {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .elite-vanguard__wrapper {
    padding: 30px 15px 40px;
  }
}

.faq-orion {
  position: relative;
  z-index: 1;
  color: #f6f2e8;
  background: radial-gradient(
      1200px 260px at 12% 0%,
      rgba(214, 178, 112, 0.14),
      rgba(214, 178, 112, 0) 65%
    ),
    radial-gradient(
      1000px 300px at 88% 100%,
      rgba(124, 90, 54, 0.16),
      rgba(124, 90, 54, 0) 70%
    ),
    linear-gradient(180deg, #151312 0%, #100f0e 100%);
  overflow: hidden;
}

.faq-orion::before {
  content: '';
  position: absolute;
  inset: -8% -5%;
  background: conic-gradient(
      from 235deg at 10% 0%,
      rgba(236, 204, 154, 0.12),
      rgba(236, 204, 154, 0) 60%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
  animation: orion-veil 12s linear infinite;
}

.faq-orion__container {
  padding: 36px 16px 46px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* FLEX wrapper + защита от внешних стилей */

.faq-orion .orion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.faq-orion .orion-item {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 100%;
  max-width: 100%;
  border-radius: 20px;
  background: linear-gradient(
    165deg,
    rgba(34, 30, 27, 0.96),
    rgba(20, 18, 16, 0.98)
  );
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(10px);
  opacity: 0;
  animation: orion-rise 560ms ease-out forwards;
}

.faq-orion .orion-item::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      600px 220px at 8% 0%,
      rgba(232, 196, 124, 0.14),
      rgba(232, 196, 124, 0) 60%
    );
  pointer-events: none;
}

/* Вопрос */

.orion-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.orion-question__text {
  flex: 1 1 auto;
  font-size: clamp(18px, 1.8vw, 20px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #efe6d6;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.orion-question__icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(235, 201, 136, 0.2),
    rgba(235, 201, 136, 0.06)
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 22px rgba(0, 0, 0, 0.28);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.orion-question__icon::before,
.orion-question__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: #f3e9d4;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.orion-question__icon::before {
  width: 14px;
  height: 2px;
}

.orion-question__icon::after {
  width: 2px;
  height: 14px;
  transition: opacity 220ms ease, transform 240ms ease;
}

/* Ответ */

.orion-answer {
  margin: 0;
  max-height: 0;
  opacity: 0;
  padding: 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(252, 247, 238, 0.96);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: max-height 420ms ease, padding 420ms ease, opacity 420ms ease;
}

.orion-answer.open {
  max-height: 1000px;
  padding: 0 18px 18px;
  opacity: 1;
}

/* Открытое состояние */

.orion-item:has(.orion-answer.open) .orion-question__icon {
  transform: rotate(180deg) scale(0.98);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 28px rgba(0, 0, 0, 0.32);
  background: linear-gradient(
    135deg,
    rgba(236, 204, 154, 0.28),
    rgba(236, 204, 154, 0.1)
  );
}

.orion-item:has(.orion-answer.open) .orion-question__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

/* Анимации */

@keyframes orion-veil {
  0% {
    transform: translateX(-2%);
  }
  50% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(-2%);
  }
}

@keyframes orion-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Мобилки */

@media (max-width: 640px) {
  .faq-orion__container {
    padding: 28px 16px 34px;
  }
  .orion-question {
    padding: 16px;
  }
  .orion-answer.open {
    padding: 0 16px 16px;
  }
}

/* Без анимаций */

@media (prefers-reduced-motion: reduce) {
  .faq-orion::before {
    animation: none;
  }
  .orion-item {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .orion-answer {
    transition: none;
  }
}

/* Слой секции */

.faq-orion {
  z-index: 1;
}

.summit-chronicle {
  position: relative;
  background:
    radial-gradient(1200px 260px at 12% 0%, rgba(214,178,112,0.14), rgba(214,178,112,0) 65%),
    radial-gradient(1100px 300px at 88% 100%, rgba(124,90,54,0.16), rgba(124,90,54,0) 70%),
    linear-gradient(180deg, #141211 0%, #100f0e 100%);
  color: #ffffff;
  overflow: hidden;
}

.summit-chronicle__vault {
  position: relative;
  z-index: 1;
  padding: 60px 30px 70px;
}

.chronicle-anthology {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 0;
  padding: 0;
}

@media (min-width: 1280px) {
  .chronicle-anthology {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.anthology-chapter {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 35px;
  border-radius: 32px;
  background-color: rgba(10, 10, 10, 0.92);
  box-shadow: 0 0 25px rgba(255, 223, 0, 0.25), 0 8px 40px rgba(0, 0, 0, 0.5);
  transition: box-shadow 400ms ease;
}

@media (min-width: 1280px) {
  .anthology-chapter {
    flex: 1 1 calc(50% - 25px);
  }
}

.anthology-chapter:hover {
  box-shadow: 0 0 35px rgba(255, 223, 0, 0.4), 0 10px 45px rgba(0, 0, 0, 0.6);
}

.chapter-exhibit {
  margin: 0;
  flex: 0 0 auto;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 223, 0, 0.2);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.chapter-exhibit:hover {
  transform: scale(1.025);
  box-shadow: 0 0 22px rgba(255, 223, 0, 0.38);
}

.exhibit-portrayal {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.chapter-exposition {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.chapter-exposition h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: #f8f8f8;
}

.chapter-exposition p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #e8e8e8;
}

.chapter-exposition span {
  font-weight: 700;
  color: #ffdf00;
}

.chapter-exposition a {
  color: #ffdf00;
  text-decoration: none;
  font-weight: 700;
  transition: color 250ms ease;
}

.chapter-exposition a:hover {
  color: #ffffff;
}

.chapter-exposition div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 768px) {
  .anthology-chapter {
    padding: 28px;
    gap: 20px;
  }

  .summit-chronicle__vault {
    padding: 50px 25px 60px;
  }
}

@media (max-width: 480px) {
  .summit-chronicle__vault {
    padding: 40px 20px 50px;
  }

  .chapter-exposition h2 {
    font-size: 22px;
  }

  .chapter-exposition p {
    font-size: 16px;
  }
}

.cookies-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #f8f9fc 0%, #e9effa 100%);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.cookies-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookies-container {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 1440px) {
  .cookies-container {
    padding: 20px 40px;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}

.cookies-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2d5a;
  text-align: center;
  max-width: 800px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards 0.3s;
}

@media screen and (min-width: 1440px) {
  .cookies-text {
    text-align: left;
  }
}

.cookies-text a {
  color: #4f7cff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.cookies-text a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4f7cff;
  transition: width 0.3s ease;
}

.cookies-text a:hover {
  color: #1a2d5a;
}

.cookies-text a:hover::after {
  width: 100%;
}

.cookies-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

@media screen and (min-width: 1440px) {
  .cookies-buttons {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
}

.btn-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards 0.5s;
}

.cookies-accept-js {
  background-color: #4f7cff;
  color: #ffffff;
}

.cookies-accept-js:hover {
  background-color: #3b5fd1;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(79, 124, 255, 0.3);
}

.cookies-decline-js {
  background-color: #e5e7eb;
  color: #1a2d5a;
}

.cookies-decline-js:hover {
  background-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.apex-vanguard-footer {
  position: relative;
  background-color: #0c0c0c;
  color: #f2f2f2;
  overflow: hidden;
  z-index: 1;
}

.apex-vanguard-footer__enclave {
  padding: 40px 20px 45px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visually-concealed {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.vanguard-advisories {
  background-color: #181818;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.2), 0 12px 38px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(10px);
  animation: vanguard-elevate 600ms ease-out both;
  isolation: isolate;
}

.advisories-segment {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.segment-preamble {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.preamble-symbol {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #282828;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.15), 0 12px 28px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
}

.preamble-symbol svg {
  width: 22px;
  height: 22px;
  fill: #e0e0e0;
  transition: transform 250ms ease;
}

.segment-preamble:hover .preamble-symbol svg {
  transform: scale(1.08);
}

.preamble-headline {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  text-transform: uppercase;
  line-height: 1.25;
  position: relative;
  padding-bottom: 8px;
}

.preamble-headline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100px;
  border-radius: 3px;
  background-color: #d4af37;
}

.segment-narrative {
  margin: 0 0 8px 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(240, 240, 240, 0.95);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  animation: vanguard-reveal 620ms ease-out both;
}

.apex-vanguard-footer__imprint {
  margin: 6px 0 0 0;
  text-align: center;
  font-size: 15px;
  color: rgba(220, 220, 220, 0.85);
  letter-spacing: 0.02em;
  animation: vanguard-reveal 620ms ease-out 100ms both;
}

.vanguard-promotion-array {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 35px;
  max-width: 1200px;
  width: 100%;
  padding: 45px 25px;
  background-color: #141414;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25), 0 14px 40px rgba(0, 0, 0, 0.45);
}

.array-emblem,
.array-gateway {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.array-emblem:hover,
.array-gateway:hover {
  transform: scale(1.06);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.array-emblem img,
.array-gateway img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.15);
}

@keyframes vanguard-elevate {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes vanguard-reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .apex-vanguard-footer__enclave { padding: 30px 18px 35px; }
  .vanguard-advisories { padding: 20px; }
  .segment-preamble { gap: 10px; }
  .preamble-symbol { width: 42px; height: 42px; border-radius: 12px; }
  .vanguard-promotion-array {
    flex-direction: column;
    gap: 25px;
    padding: 35px 20px;
  }
  .array-emblem,
  .array-gateway {
    width: 100%;
    max-width: 320px;
    height: 90px;
  }
  .array-emblem img,
  .array-gateway img {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .apex-vanguard-footer__enclave { padding: 25px 15px 30px; }
  .vanguard-advisories { padding: 18px; }
  .preamble-headline { font-size: 18px; }
  .segment-narrative { font-size: 14px; }
  .vanguard-promotion-array {
    gap: 20px;
    padding: 30px 15px;
  }
}

.page-margin {
  margin-bottom: 32px;
}

.page-margin-2 {
  margin-bottom: 16px;
}

.page-margin-8 {
  margin-bottom: 8px;
}

.page-margin-24 {
  margin-bottom: 8px;
}

.h3-uppercase {
  text-transform: uppercase;
}

.page-text-bold {
  font-weight: 600;
}

.page-text {
  line-height: 1.57143;
  @media screen and (min-width: 1440px) {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-simple-list {
  list-style: disc;
  padding-left: 20px;
}

.page-simple-link {
  line-height: 1.57143;
  color: #0059ff;
  @media screen and (min-width: 1440px) {
    font-size: 16px;
    line-height: 1.5;
  }
}

.page-title-h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.55556;
  @media screen and (min-width: 1440px) {
    font-size: 20px;
    line-height: 1.4;
  }
}

.page-title {
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
  margin: 0 auto;
  margin-bottom: 40px;
  margin-top: 116px;
  @media screen and (min-width: 1440px) {
    font-size: 28px;
    line-height: 1.57143;
    margin-top: 189px;
  }
}

.page-content {
  padding: 0 16px;
  padding-bottom: 60px;
  @media screen and (min-width: 1440px) {
    padding: 0 16px;
    padding-bottom: 120px;
  }
}

.btn-flip {
  opacity: 1;
  outline: 0;
  color: #fff;
  line-height: 40px;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none;
  font-family: 'Open Sans';
  text-transform: uppercase;
  position: absolute;
  top: 20px;
  left: 20px;

  &:hover {
    &:after {
      opacity: 1;
      transform: translateY(0) rotateX(0);
    }

    &:before {
      opacity: 0;
      transform: translateY(50%) rotateX(90deg);
    }
  }

  &:after {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    color: #323237;
    display: block;
    transition: 0.5s;
    position: absolute;
    background: #adadaf;
    content: attr(data-back);
    transform: translateY(-50%) rotateX(90deg);
  }

  &:before {
    top: 0;
    left: 0;
    opacity: 1;
    color: #adadaf;
    display: block;
    padding: 0 30px;
    line-height: 40px;
    transition: 0.5s;
    position: relative;
    background: #323237;
    content: attr(data-front);
    transform: translateY(0) rotateX(0);
  }
}

.page-section {
  margin-top: 100px;
}

.imperial-communication-realm {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 70px 0;
  background-color: #080808;
  color: #f8f8f8;
}

.imperial-communication-realm__narrative {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 25px;
}

.imperial-communication-realm__narrative h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 900;
  color: #ffffff;
}

.imperial-communication-realm__narrative h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #e5e5e5;
}

.imperial-communication-realm__narrative p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: #d5d5d5;
}

.imperial-communication-realm__dispatch {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 35px 25px;
  background-color: #121212;
  border-radius: 25px;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
}

.dispatch-pairing {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (min-width: 1280px) {
  .dispatch-pairing {
    flex-direction: row;
    gap: 30px;
  }
}

.pairing-segment {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pairing-segment label {
  font-size: 17px;
  font-weight: 600;
  color: #f2f2f2;
}

.pairing-segment input {
  padding: 16px;
  border: 1px solid #303030;
  border-radius: 12px;
  background-color: #1c1c1c;
  color: #ffffff;
  font-size: 17px;
  transition: box-shadow 250ms ease, border-color 250ms ease;
}

.pairing-segment input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  outline: none;
}

.dispatch-segment {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dispatch-segment label {
  font-size: 17px;
  font-weight: 600;
  color: #f2f2f2;
}

.dispatch-segment textarea {
  padding: 16px;
  border: 1px solid #303030;
  border-radius: 12px;
  background-color: #1c1c1c;
  color: #ffffff;
  font-size: 17px;
  min-height: 140px;
  resize: vertical;
  transition: box-shadow 250ms ease, border-color 250ms ease;
}

.dispatch-segment textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  outline: none;
}

.flawed-input {
  border-color: #ff0000 !important;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.35) !important;
}

.dispatch-initiator {
  padding: 16px 28px;
  border: none;
  border-radius: 12px;
  background-color: #d4af37;
  color: #080808;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 250ms ease, transform 250ms ease;
  align-self: flex-start;
}

.dispatch-initiator:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

.communication-gratitude-veil {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.veil-discourse {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 35px;
  background-color: #121212;
  border-radius: 25px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
  text-align: center;
}

.veil-discourse p {
  margin: 0;
  font-size: 20px;
  color: #f8f8f8;
}

.veil-discourse button {
  padding: 14px 25px;
  border: none;
  border-radius: 12px;
  background-color: #d4af37;
  color: #080808;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 250ms ease;
}

.veil-discourse button:hover {
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.45);
}

@media (max-width: 768px) {
  .imperial-communication-realm {
    padding: 50px 0;
    gap: 35px;
  }

  .imperial-communication-realm__narrative {
    padding: 0 18px;
  }

  .imperial-communication-realm__dispatch {
    padding: 28px 18px;
    gap: 22px;
  }

  .dispatch-initiator {
    align-self: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .imperial-communication-realm__narrative h1 {
    font-size: 30px;
  }

  .imperial-communication-realm__narrative h3 {
    font-size: 22px;
  }

  .imperial-communication-realm__narrative p {
    font-size: 16px;
  }

  .pairing-segment label,
  .dispatch-segment label {
    font-size: 16px;
  }

  .pairing-segment input,
  .dispatch-segment textarea {
    font-size: 16px;
  }

  .dispatch-initiator {
    font-size: 16px;
  }

  .veil-discourse p {
    font-size: 18px;
  }

  .veil-discourse button {
    font-size: 16px;
  }
}

:root {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
background-color: #080808;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.container {
  max-width: 375px;
  min-width: 320px;
  margin: 0 auto;
}

@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  overflow-x: hidden !important;
}
