@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("https://fffff.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://fffff.com/fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #000000;
  --primary-color: #123453;
  --accent-color: #bc8c62;
  --warning-color: red;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: var(--dark-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}


/* header */

.orfeo-nav-pavilion {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1200;
  background: radial-gradient(120% 140% at 0% 0%, #0b1220 0%, #0f1a31 60%, #0a1326 100%);
  padding: clamp(12px, 2.2vw, 18px) 0;
  box-shadow: 0 12px 28px rgba(5, 10, 20, 0.45);
  border-bottom: 1px solid rgba(231, 226, 217, 0.08);
  overflow: visible;
}
.orfeo-nav-pavilion::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  opacity: 0.85;
  transform: scaleX(0.6);
  transform-origin: center;
  animation: orfeo-gilded 2.6s ease-in-out infinite;
  pointer-events: none;
}

.orfeo-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
  animation: orfeo-reveal 720ms ease-out;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 14px);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
}
.brand-badge:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(199,162,75,0.55), 0 8px 20px rgba(199,162,75,0.18);
  background: rgba(255,255,255,0.09);
}
.brand-badge__logo {
  height: clamp(38px, 5.4vw, 50px);
  width: auto;
  border-radius: 8px;
  background-color: rgba(255,255,255,0.42);
}
.brand-badge__name {
  color: #e7edf7;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  white-space: nowrap;
}

.prime-nav__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1200px) {
  .prime-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 36px);
  }
}
.prime-nav__item { position: relative; }

.prime-nav__link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #d8deea;
  font-weight: 800;
  font-size: clamp(14px, 1.6vw, 17px);
  letter-spacing: 0.06em;
  padding: 12px 16px;
  border-radius: 999px;
  background-image: linear-gradient(90deg, rgba(199,162,75,0.18), rgba(199,162,75,0));
  background-size: 200% 100%;
  background-position: 100% 0;
  transition: color 240ms ease, transform 240ms ease, box-shadow 260ms ease, background-position 400ms ease;
}
.prime-nav__link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(199,162,75,0), rgba(199,162,75,0.9), rgba(199,162,75,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 320ms ease;
}
.prime-nav__link:hover {
  color: #0f1527;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(199,162,75,0.28);
  background-position: 0 0;
  background-color: rgba(231,226,217,0.9);
}
.prime-nav__link:hover::after { transform: scaleX(1); }
.prime-nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(199,162,75,0.55);
}

.nav-switch { display: none; }
@media (max-width: 1199.98px) {
  .nav-switch {
    display: flex;
    align-items: center;
  }
}

.burger {
  width: 34px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 240ms ease;
}
.burger:hover { opacity: 0.85; }
.burger::before,
.burger::after,
.burger span {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #e9e6de, #c7a24b);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1), opacity 220ms ease;
}
.burger.is-open::before { transform: translateY(10.5px) rotate(45deg); }
.burger.is-open::after { transform: translateY(-10.5px) rotate(-45deg); }
.burger.is-open span { opacity: 0; transform: translateX(-12px); }
@media (min-width: 1200px) { .burger { display: none; } }

.refined-mobile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #0f1a31 0%, #0b1220 100%);
  box-shadow: 0 22px 40px rgba(5,10,20,0.6);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 460ms ease, opacity 420ms ease;
  z-index: 1300;
}
.refined-mobile-dropdown.is-open {
  display: block;
  max-height: 520px;
  opacity: 1;
}

.mob-rail {
  list-style: none;
  margin: 0;
  padding: clamp(18px, 5vw, 28px) 0;
  display: grid;
  gap: clamp(14px, 3.2vw, 22px);
  justify-items: center;
}
.mob-rail__item {
  transform: translateY(10px);
  opacity: 0;
  transition: transform 360ms ease, opacity 360ms ease;
}
.refined-mobile-dropdown.is-open .mob-rail__item { transform: translateY(0); opacity: 1; }
.refined-mobile-dropdown.is-open .mob-rail__item:nth-child(1) { transition-delay: 80ms; }
.refined-mobile-dropdown.is-open .mob-rail__item:nth-child(2) { transition-delay: 160ms; }
.refined-mobile-dropdown.is-open .mob-rail__item:nth-child(3) { transition-delay: 240ms; }

.mobile-corporate-link {
  display: inline-block;
  text-decoration: none;
  color: #e7edf7;
  font-size: clamp(18px, 4.2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 12px 26px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: color 240ms ease, background-color 260ms ease, box-shadow 260ms ease;
  position: relative;
  overflow: hidden;
}
.mobile-corporate-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.55), rgba(255,255,255,0));
  animation: orfeo-sheen 3s ease-in-out infinite;
}
.mobile-corporate-link:hover {
  color: #0f1527;
  background: rgba(231,226,217,0.9);
  box-shadow: 0 12px 26px rgba(199,162,75,0.28);
}

@keyframes orfeo-reveal {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes orfeo-gilded {
  0% { transform: scaleX(0.5); opacity: 0.6; }
  50% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0.5); opacity: 0.6; }
}
@keyframes orfeo-sheen {
  0% { left: -40%; }
  45% { left: 140%; }
  100% { left: 140%; }
}

/* Читаемость и адаптивность */
@media (max-width: 768px) {
  .orfeo-rail { gap: 12px; }
  .brand-badge__logo { height: 42px; }
  .brand-badge__name { font-size: 18px; }
}


/* --------------------hero---------------------- */

.lyra-hero-atelier {
  position: relative;
  z-index: 1;
  padding: clamp(110px, 18vh, 160px) 0 clamp(70px, 12vh, 120px);
  background: linear-gradient(160deg, #0f1115 0%, #12181e 55%, #0c1417 100%);
  overflow: hidden;
}
.lyra-hero-atelier::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 10% -10%, rgba(57, 208, 178, 0.12), rgba(57, 208, 178, 0));
  pointer-events: none;
}

.lyra-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 6vw, 60px);
  align-items: center;
}
@media (min-width: 992px) {
  .lyra-hero-grid {
    grid-template-columns: minmax(320px, 52%) 1fr;
    gap: clamp(40px, 7vw, 90px);
  }
}

.lyra-brief {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(214, 232, 229, 0.12);
  border-radius: 20px;
  padding: clamp(18px, 3.2vw, 34px);
  box-shadow: 0 20px 40px rgba(6, 12, 14, 0.5);
  transform: translateY(18px);
  opacity: 0;
  animation: lyra-reveal 720ms ease-out 120ms forwards;
}

.lyra-brief__head { display: grid; gap: 10px; }

.lyra-eyebrow {
  margin: 0;
  font-size: clamp(12px, 1.4vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9fdad0;
  opacity: 0.9;
}

.lyra-title {
  margin: 0;
  font-size: clamp(30px, 5.2vw, 56px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #eef6f5;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.lyra-title-underline {
  width: clamp(90px, 14vw, 180px);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(43,212,166,0), rgba(43,212,166,0.95), rgba(43,212,166,0));
  transform-origin: left center;
  transform: scaleX(0);
  animation: lyra-underline 900ms ease-out 320ms forwards;
}

.lyra-lede {
  margin: clamp(14px, 2.2vw, 20px) 0 clamp(22px, 3vw, 30px);
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.8;
  color: #cfe5e1;
  text-wrap: balance;
}

.lyra-cta-wrap { display: flex; flex-wrap: wrap; gap: 12px; }
.lyra-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.8vw, 14px) clamp(26px, 3.4vw, 36px);
  border-radius: 14px 18px 14px 18px;
  text-decoration: none;
  font-weight: 900;
  font-size: clamp(15px, 1.8vw, 17px);
  letter-spacing: 0.06em;
  color: #081012;
  background: linear-gradient(180deg, #5ae6c6 0%, #2bd4a6 70%, #19c595 100%);
  box-shadow: 0 10px 24px rgba(32, 202, 164, 0.35), inset 0 0 0 1px rgba(8,16,18,0.1);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.lyra-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.65), rgba(255,255,255,0));
  animation: lyra-sheen 3s ease-in-out infinite;
}
.lyra-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(32,202,164,0.45), inset 0 0 0 1px rgba(8,16,18,0.14); }

.lyra-visual {
  position: relative;
  transform-style: preserve-3d;
  perspective: 900px;
  margin: 0;
  opacity: 0;
  animation: lyra-reveal 720ms ease-out 220ms forwards;
}
.lyra-visual__img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid rgba(214, 232, 229, 0.18);
  box-shadow: 0 26px 60px rgba(0,0,0,0.5);
  transform: rotateY(-6deg) translateZ(0);
  transition: transform 500ms ease, box-shadow 420ms ease, filter 420ms ease;
  filter: saturate(1.02) contrast(1.05) brightness(1.02);
}
.lyra-visual:hover .lyra-visual__img {
  transform: rotateY(0deg);
  box-shadow: 0 34px 70px rgba(0,0,0,0.6);
  filter: saturate(1.08) contrast(1.08);
}

/* Декоративные, но ненавязчивые элементы */
.lyra-aura {
  position: absolute;
  left: -200px;
  top: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.18;
  background: radial-gradient(circle at 45% 45%, rgba(43,212,166,0.65), rgba(43,212,166,0));
  pointer-events: none;
  animation: lyra-orb 16s ease-in-out infinite alternate;
}
.lyra-arc {
  position: absolute;
  right: -220px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.14;
  background: radial-gradient(circle at 60% 60%, rgba(88,189,255,0.45), rgba(88,189,255,0));
  pointer-events: none;
  animation: lyra-orb 18s ease-in-out infinite alternate;
  animation-delay: 0.8s;
}
.lyra-ribbon {
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(43,212,166,0), rgba(43,212,166,0.95), rgba(43,212,166,0));
  opacity: 0.9;
  animation: lyra-ribbon-pulse 5.2s ease-in-out infinite;
  pointer-events: none;
}

/* Анимации */
@keyframes lyra-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lyra-underline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes lyra-sheen {
  0% { left: -40%; }
  45% { left: 140%; }
  100% { left: 140%; }
}
@keyframes lyra-orb {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes lyra-ribbon-pulse {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Читаемость и адаптивность */
@media (max-width: 768px) {
  .lyra-title { font-size: clamp(26px, 7.5vw, 36px); }
  .lyra-lede { font-size: clamp(15px, 3.4vw, 17px); }
  .lyra-cta { padding: 12px 24px; font-size: 15px; }
}

/* Секция ниже мобильного меню хедера */
.lyra-hero-atelier { z-index: 1; }



/* ----------------------stats-section---------------------------- */

.aurum-metrics-vista {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 12vh, 120px) 0;
  background: radial-gradient(120% 90% at 8% 0%, #0f1116 0%, #151926 55%, #0f121a 100%);
  overflow: hidden;
}
.aurum-metrics-vista::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 70% at 100% 0%, rgba(164, 132, 255, 0.12), rgba(164, 132, 255, 0));
  pointer-events: none;
}

.aurum-head {
  text-align: center;
  margin-bottom: clamp(24px, 5vw, 48px);
  transform: translateY(16px);
  opacity: 0;
  animation: aurum-reveal 700ms ease-out forwards;
}
.aurum-title {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef1f7;
  text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.aurum-title-accent {
  display: inline-block;
  width: clamp(90px, 12vw, 160px);
  height: 4px;
  margin-top: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(164,132,255,0), rgba(164,132,255,0.95), rgba(164,132,255,0));
  transform-origin: center;
  transform: scaleX(0);
  animation: aurum-accent 900ms ease-out 260ms forwards;
}

.aurum-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3.2vw, 28px);
}
@media (min-width: 640px) {
  .aurum-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .aurum-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.aurum-card {
  position: relative;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(164,132,255,0.22);
  box-shadow: 0 18px 36px rgba(9, 12, 18, 0.5);
  padding: clamp(18px, 3.2vw, 26px);
  overflow: hidden;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: aurum-reveal 720ms ease-out forwards;
}
.aurum-card:nth-child(1) { animation-delay: 120ms; }
.aurum-card:nth-child(2) { animation-delay: 220ms; }
.aurum-card:nth-child(3) { animation-delay: 320ms; }
.aurum-card:nth-child(4) { animation-delay: 420ms; }

.aurum-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(260px 110px at -10% -10%, rgba(164,132,255,0.18), rgba(164,132,255,0));
  opacity: 0;
  transition: opacity 380ms ease;
}
.aurum-card:hover::after { opacity: 1; }

.aurum-crest {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #e7e6ee 0%, #bdb9ff 60%, #a484ff 100%);
  color: #10131a;
  box-shadow: 0 14px 26px rgba(164,132,255,0.35), inset 0 0 0 1px rgba(16,19,26,0.08);
}
.aurum-icon { width: 28px; height: 28px; display: block; }

.aurum-body { margin-top: 16px; }

.aurum-figure {
  display: block;
  font-size: clamp(36px, 5.8vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #f2f4fb;
  text-shadow: 0 4px 16px rgba(0,0,0,0.4);
  position: relative;
}
.aurum-figure::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 72px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(164,132,255,0), rgba(164,132,255,0.95), rgba(164,132,255,0));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 360ms ease;
}
.aurum-card:hover .aurum-figure::after { transform: scaleX(1); }

.aurum-caption {
  margin: 18px 0 0;
  color: #cfd6e9;
  font-size: clamp(14px, 2.1vw, 16px);
  line-height: 1.6;
}

/* Декор */
.aurum-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: aurum-orb 16s ease-in-out infinite alternate;
}
.aurum-orb--violet {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(164,132,255,0.55), rgba(164,132,255,0));
}
.aurum-orb--silver {
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle at 60% 60%, rgba(193,206,220,0.45), rgba(193,206,220,0));
  animation-delay: 1s;
}
.aurum-baseline {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(164,132,255,0), rgba(164,132,255,0.9), rgba(164,132,255,0));
  opacity: 0.85;
  animation: aurum-streak 5s ease-in-out infinite;
  pointer-events: none;
}

/* Анимации */
@keyframes aurum-reveal {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes aurum-accent {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes aurum-orb {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes aurum-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Адаптив и читаемость */
@media (max-width: 768px) {
  .aurum-title { font-size: clamp(24px, 7vw, 32px); }
  .aurum-figure { font-size: clamp(32px, 9vw, 44px); }
  .aurum-caption { font-size: 15px; }
}

/* Секция ниже мобильного меню */
.aurum-metrics-vista { z-index: 1; }


/* ----------------------stats-section---------------------------- */


/* ----------------------refined-info-section---------------------------- */

.noctis-about-pavilion {
  position: relative;
  z-index: 1;
  padding: clamp(96px, 15vh, 160px) 0;
  background: linear-gradient(180deg, #0d1016 0%, #0f1520 55%, #0b0f18 100%);
  overflow: hidden;
}
.noctis-about-pavilion::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 8% -10%, rgba(86, 152, 255, 0.12), rgba(86, 152, 255, 0));
  pointer-events: none;
}

.noctis-frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(26px, 6vw, 64px);
  align-items: start;
}
@media (min-width: 1024px) {
  .noctis-frame {
    grid-template-columns: 1.1fr minmax(260px, 0.6fr);
    gap: clamp(40px, 6.5vw, 96px);
  }
}

.noctis-head {
  display: grid;
  gap: 10px;
  transform: translateY(18px);
  opacity: 0;
  animation: noctis-reveal 720ms ease-out 80ms forwards;
}
.noctis-kicker {
  margin: 0;
  font-size: clamp(12px, 1.4vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a9c4ff;
  opacity: 0.95;
}
.noctis-title {
  margin: 0;
  font-size: clamp(28px, 4.8vw, 46px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #eef3fb;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.noctis-underline {
  width: clamp(100px, 14vw, 200px);
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(86,152,255,0), rgba(86,152,255,0.95), rgba(86,152,255,0));
  transform-origin: left center;
  transform: scaleX(0);
  animation: noctis-accent 900ms ease-out 280ms forwards;
}

.noctis-article {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168, 186, 222, 0.18);
  border-radius: 20px;
  padding: clamp(20px, 3.6vw, 36px);
  box-shadow: 0 24px 48px rgba(8, 12, 18, 0.55);
  transform: translateY(18px);
  opacity: 0;
  animation: noctis-reveal 720ms ease-out 180ms forwards;
}
.noctis-lede {
  margin: 0 0 clamp(20px, 3vw, 28px) 0;
  font-size: clamp(16px, 2.1vw, 19px);
  line-height: 1.85;
  color: #d9e2f2;
  text-wrap: balance;
}
.noctis-mark {
  background-image: linear-gradient(180deg, rgba(86,152,255,0.4), rgba(86,152,255,0));
  color: #0c111a;
  padding: 0 6px;
  border-radius: 8px;
  font-weight: 800;
}

.noctis-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2.6vw, 20px);
}
@media (min-width: 768px) {
  .noctis-panels { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.noctis-panel {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(168,186,222,0.18);
  padding: clamp(12px, 2vw, 16px);
  transition: transform 280ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
@media (hover:hover) and (pointer:fine) {
  .noctis-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.45);
    border-color: rgba(86,152,255,0.45);
  }
}
.noctis-panel__title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-size: clamp(15px, 1.9vw, 17px);
  font-weight: 900;
  color: #f0f4fd;
  letter-spacing: 0.02em;
}
.noctis-panel__text {
  margin: 0;
  font-size: clamp(14px, 2vw, 16px);
  color: #cdd8ec;
  line-height: 1.6;
}
.noctis-glyph {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #ecf2ff, #7aa3ff);
  color: #0f1520;
  box-shadow: 0 12px 24px rgba(86,152,255,0.35), inset 0 0 0 1px rgba(15,21,32,0.08);
}
.noctis-glyph__icon { width: 22px; height: 22px; display: block; }

.noctis-aside {
  transform: translateY(18px);
  opacity: 0;
  animation: noctis-reveal 720ms ease-out 260ms forwards;
}
.noctis-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2vw, 14px);
}
.noctis-badge {
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(168,186,222,0.18);
  padding: 12px;
  text-align: center;
  transition: transform 240ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.noctis-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.45);
  border-color: rgba(86,152,255,0.45);
}
.noctis-badge__figure {
  display: block;
  font-size: clamp(20px, 3.4vw, 28px);
  font-weight: 900;
  color: #f3f6ff;
  line-height: 1;
}
.noctis-badge__label {
  display: block;
  font-size: clamp(12px, 1.8vw, 13px);
  color: #c9d5ea;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Декор, но без клеток */
.noctis-aura {
  position: absolute;
  left: -220px;
  top: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  background: radial-gradient(circle at 45% 45%, rgba(86,152,255,0.6), rgba(86,152,255,0));
  pointer-events: none;
  animation: noctis-orb 16s ease-in-out infinite alternate;
}
.noctis-arc {
  position: absolute;
  right: -260px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.14;
  background: radial-gradient(circle at 60% 60%, rgba(190,205,224,0.45), rgba(190,205,224,0));
  pointer-events: none;
  animation: noctis-orb 18s ease-in-out infinite alternate;
  animation-delay: 0.8s;
}

/* Анимации */
@keyframes noctis-reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes noctis-accent {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes noctis-orb {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}

/* Адаптивная читаемость */
@media (max-width: 768px) {
  .noctis-title { font-size: clamp(24px, 7vw, 32px); }
  .noctis-lede { font-size: clamp(15px, 3.2vw, 17px); }
}

/* Слой ниже мобильного меню шапки */
.noctis-about-pavilion { z-index: 1; }


/* ----------------------refined-info-section---------------------------- */





/* ----------------------services---------------------------- */

.copper-services-atrium {
  position: relative;
  z-index: 1;
  padding: clamp(88px, 14vh, 148px) 0;
  background: linear-gradient(180deg, #0e1013 0%, #14181f 60%, #0f1318 100%);
  overflow: hidden;
}
.copper-services-atrium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 80% at 12% -10%, rgba(255,153,102,0.10), rgba(255,153,102,0));
  pointer-events: none;
}

.copper-head {
  text-align: center;
  margin-bottom: clamp(26px, 6vw, 56px);
  transform: translateY(18px);
  opacity: 0;
  animation: copper-reveal 700ms ease-out forwards;
}
.copper-title {
  margin: 0;
  font-size: clamp(28px, 4.8vw, 46px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #eef2f6;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}
.copper-sub {
  margin: 8px 0 0 0;
  font-size: clamp(14px, 2vw, 16px);
  color: #cdd6e3;
}
.copper-accent {
  display: inline-block;
  width: clamp(100px, 14vw, 200px);
  height: 4px;
  border-radius: 4px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(255,153,102,0), rgba(255,153,102,0.95), rgba(255,153,102,0));
  transform-origin: center;
  transform: scaleX(0);
  animation: copper-accent 900ms ease-out 260ms forwards;
}

.copper-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 3.2vw, 28px);
}
@media (min-width: 768px) { .copper-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.copper-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,153,102,0.22);
  box-shadow: 0 20px 40px rgba(8,12,18,0.55);
  padding: clamp(18px, 3.2vw, 26px);
  overflow: hidden;
  transform: translateY(14px) rotateX(2deg);
  opacity: 0;
  animation: copper-reveal 720ms ease-out forwards;
}
.copper-card:nth-child(1) { animation-delay: 120ms; }
.copper-card:nth-child(2) { animation-delay: 220ms; }
.copper-card:nth-child(3) { animation-delay: 320ms; }

.copper-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px 120px at -10% -10%, rgba(255,153,102,0.18), rgba(255,153,102,0));
  opacity: 0;
  transition: opacity 360ms ease;
}
.copper-card:hover::after { opacity: 1; }

.copper-card__crest {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px 0;
}
.copper-icon {
  width: 28px;
  height: 28px;
  color: #0f141b;
  background: linear-gradient(180deg, #ffe7dc 0%, #ffb899 60%, #ff9966 100%);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 14px 26px rgba(255,153,102,0.35), inset 0 0 0 1px rgba(15,20,27,0.08);
}
.copper-chip {
  justify-self: end;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffcfb9;
  background: rgba(255,153,102,0.14);
  border: 1px solid rgba(255,153,102,0.35);
  border-radius: 999px;
  padding: 6px 10px;
}

.copper-card__title {
  margin: 6px 0 6px;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 900;
  color: #f3f6fb;
  letter-spacing: 0.02em;
}
.copper-card__text {
  margin: 0;
  font-size: clamp(14px, 2.1vw, 16px);
  color: #cfd6e6;
  line-height: 1.7;
}

/* Hover/Focus эффекты карточек */
@media (hover:hover) and (pointer:fine) {
  .copper-card {
    transition: transform 280ms ease, box-shadow 320ms ease, border-color 320ms ease;
  }
  .copper-card:hover {
    transform: translateY(-6px) rotateX(0);
    box-shadow: 0 28px 56px rgba(0,0,0,0.55);
    border-color: rgba(255,153,102,0.45);
  }
}

/* Декор секции */
.copper-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(44px);
  opacity: 0.18;
  pointer-events: none;
  transform: translateZ(0);
  animation: copper-orb 16s ease-in-out infinite alternate;
}
.copper-orb--amber {
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 40% 40%, rgba(255,153,102,0.55), rgba(255,153,102,0));
}
.copper-orb--slate {
  right: -260px;
  bottom: -260px;
  background: radial-gradient(circle at 60% 60%, rgba(164,178,196,0.45), rgba(164,178,196,0));
  animation-delay: 1s;
}
.copper-baseline {
  position: absolute;
  inset: auto -20% 0 -20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,153,102,0), rgba(255,153,102,0.9), rgba(255,153,102,0));
  opacity: 0.85;
  animation: copper-streak 5s ease-in-out infinite;
  pointer-events: none;
}

/* Анимации */
@keyframes copper-reveal {
  from { opacity: 0; transform: translateY(14px) rotateX(2deg); }
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}
@keyframes copper-accent {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes copper-orb {
  0% { transform: translate(0,0); }
  100% { transform: translate(16px, -18px); }
}
@keyframes copper-streak {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-2px); }
}

/* Читаемость и адаптивность */
@media (max-width: 768px) {
  .copper-title { font-size: clamp(24px, 7vw, 32px); }
  .copper-card__title { font-size: clamp(16px, 5.2vw, 20px); }
  .copper-card__text { font-size: clamp(14px, 4vw, 16px); }
}

/* Секция ниже мобильного меню шапки */
.copper-services-atrium { z-index: 1; }


/* -----------------------help------------------------ */

.elite-service-showcase {
  padding: clamp(80px, 12vh, 140px) 0;
  background: radial-gradient(circle at center, #121212 0%, #000000 100%);
  position: relative;
  overflow: hidden;
}

.elite-service-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.03), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.prestige-service-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
  position: relative;
  z-index: 2;
}

.executive-service-title {
  font-size: clamp(32px, 5.5vw, 48px);
  font-weight: 900;
  color: #fafafa;
  opacity: 0;
  transform: translateY(30px);
  animation: titleRise 1.2s ease-out forwards;
}

.executive-service-title::before {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(to right, #c0a062, #e0c080);
  margin: 0 auto 20px;
  transition: width 0.7s ease;
}

.elite-service-showcase:hover .executive-service-title::before {
  width: 160px;
}

.opulent-service-collection {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 4vw, 35px);
  justify-content: center;
  position: relative;
  z-index: 2;
}

.refined-service-panel {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: clamp(25px, 3.5vw, 35px);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: panelAscend 1.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  max-width: 420px;
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.refined-service-panel:nth-child(1) { animation-delay: 0.2s; }
.refined-service-panel:nth-child(2) { animation-delay: 0.4s; }
.refined-service-panel:nth-child(3) { animation-delay: 0.6s; }
.refined-service-panel:nth-child(4) { animation-delay: 0.8s; }

.refined-service-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.refined-service-panel::after {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 200%;
  background: linear-gradient(to top, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: bottom 0.8s ease;
}

.refined-service-panel:hover::after {
  bottom: 100%;
}

.service-icon-wrapper {
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  transition: background 0.5s ease;
}

.refined-service-panel:hover .service-icon-wrapper {
  background: rgba(212, 175, 55, 0.2);
}

.service-emblem {
  width: 48px;
  height: 48px;
  transition: transform 0.5s ease;
}

.refined-service-panel:hover .service-emblem {
  transform: rotate(15deg) scale(1.15);
}

.service-heading {
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 800;
  color: #f2f2f2;
  margin-bottom: 14px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-description {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #d8d8d8;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  letter-spacing: 0.5px;
}

.premium-engagement-link {
  padding: clamp(10px, 1.4vw, 12px) clamp(20px, 2.4vw, 25px);
  background: linear-gradient(135deg, #e0c080 0%, #c0a062 100%);
  color: #101010;
  text-decoration: none;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  transition: background 0.6s ease, box-shadow 0.6s ease;
  position: relative;
  overflow: hidden;
}

.premium-engagement-link:hover {
  background: linear-gradient(135deg, #c0a062 0%, #e0c080 100%);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.premium-engagement-link::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.premium-engagement-link:hover::before {
  left: 100%;
}

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

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

@media (max-width: 768px) {
  .elite-service-showcase {
    padding: clamp(50px, 9vh, 80px) 0;
  }
  .executive-service-title {
    font-size: clamp(26px, 6vw, 36px);
  }
  .refined-service-panel {
    max-width: 100%;
  }
  .service-heading {
    font-size: clamp(18px, 2.6vw, 22px);
  }
  .service-description {
    font-size: clamp(13px, 2vw, 15px);
  }
  .premium-engagement-link {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* ----------------------noble-commitment-section---------------------------- */

.sovereign-integrity-vault {
  padding: clamp(70px, 11vh, 120px) 0;
  background: linear-gradient(to right, #101010 0%, #202020 100%);
  position: relative;
  overflow: hidden;
}

.sovereign-integrity-vault::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at bottom right, rgba(224, 192, 128, 0.1), transparent 70%);
  z-index: 1;
}

.majestic-integrity-chamber {
  max-width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.95);
  animation: chamberExpansion 1.6s ease-out forwards;
}

.imperial-integrity-decree {
  font-size: clamp(30px, 4.8vw, 44px);
  font-weight: 900;
  color: #fcfcfc;
  margin-bottom: 30px;
  position: relative;
  line-height: 1.35;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.imperial-integrity-decree::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 0;
  background: linear-gradient(to left, #c0a062, #e0c080);
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.majestic-integrity-chamber:hover .imperial-integrity-decree::after {
  height: 4px;
}

.lavish-integrity-narrative {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.9);
  animation: narrativeUnfold 1.7s ease-in-out 0.6s forwards;
}

.sublime-explanatory-text {
  font-size: clamp(16px, 2vw, 18px);
  color: #ececec;
  line-height: 1.9;
  font-weight: 300;
  margin: 0;
  letter-spacing: 1.2px;
}

.eminent-brand-highlight {
  font-weight: 900;
  color: #e0c080;
  position: relative;
  padding: 4px 10px;
  transition: text-shadow 0.7s ease;
}

.eminent-brand-highlight:hover {
  text-shadow: 0 0 15px rgba(224, 192, 128, 0.5);
}

@keyframes chamberExpansion {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes narrativeUnfold {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .sovereign-integrity-vault {
    padding: clamp(50px, 9vh, 80px) 0;
  }
  .imperial-integrity-decree {
    font-size: clamp(24px, 6vw, 36px);
  }
  .sublime-explanatory-text {
    font-size: clamp(14px, 2.4vw, 16px);
  }
  .majestic-integrity-chamber:hover .imperial-integrity-decree::after {
    width: 110px;
  }
}

/* ----------------------noble-commitment-section---------------------------- */




/* ----------------------join, form---------------------------- */

.prestigious-alliance-hall {
  padding: clamp(100px, 14vh, 160px) 0;
  background: linear-gradient(to top, #151515 0%, #050505 100%);
  position: relative;
  overflow: hidden;
}

.prestigious-alliance-hall::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.1), transparent 60%);
  z-index: 1;
}

.sumptuous-alliance-framework {
  display: flex;
  flex-direction: column;
  gap: clamp(50px, 7vw, 70px);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .sumptuous-alliance-framework {
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
  }
}

.distinguished-knowledge-repository {
  max-width: 100%;
  opacity: 0;
  transform: translateY(40px);
  animation: repositoryEmergence 1.3s ease-out forwards;
}

@media (min-width: 992px) {
  .distinguished-knowledge-repository {
    max-width: 45%;
  }
}

.imperious-alliance-manifesto {
  margin-bottom: 30px;
}

.majestic-alliance-edict {
  font-size: clamp(34px, 5.8vw, 48px);
  font-weight: 900;
  color: #f8f8f8;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
  .majestic-alliance-edict {
    text-align: left;
  }
}

.majestic-alliance-edict::before {
  content: '';
  display: block;
  width: 150px;
  height: 0;
  background: linear-gradient(to left, #e0c080, #c0a062);
  margin: 0 auto 25px;
  transition: height 0.7s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media (min-width: 992px) {
  .majestic-alliance-edict::before {
    margin: 0 0 25px;
  }
}

.distinguished-knowledge-repository:hover .majestic-alliance-edict::before {
  height: 5px;
}

.lavish-alliance-invocation {
  font-size: clamp(18px, 2.3vw, 20px);
  color: #d5d5d5;
  line-height: 1.85;
  text-align: center;
  font-weight: 300;
}

@media (min-width: 992px) {
  .lavish-alliance-invocation {
    text-align: left;
  }
}

.grand-knowledge-directory {
  margin-bottom: 40px;
}

.alliance-intel-ensemble {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.intel-artifact {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  opacity: 0;
  transform: translateX(-30px);
  animation: artifactRevelation 1s ease-in-out forwards;
}

.intel-artifact:nth-child(1) { animation-delay: 0.4s; }
.intel-artifact:nth-child(2) { animation-delay: 0.6s; }
.intel-artifact:nth-child(3) { animation-delay: 0.8s; }

.artifact-insignia {
  width: 28px;
  height: 28px;
  color: #c0a062;
  transition: transform 0.6s ease, color 0.6s ease;
}

.intel-artifact:hover .artifact-insignia {
  transform: scale(1.25) rotate(-10deg);
  color: #ffd700;
}

.artifact-details {
  flex: 1;
}

.artifact-label {
  font-size: clamp(20px, 2.3vw, 22px);
  font-weight: 700;
  color: #f2f2f2;
  margin: 0;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}

.artifact-narrative {
  font-size: clamp(16px, 2vw, 18px);
  color: #dcdcdc;
  margin: 10px 0 0 0;
}

.narrative-link {
  color: #c0a062;
  text-decoration: none;
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

.narrative-link:hover {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.adherence-exegesis {
  opacity: 0;
  transform: scale(0.95);
  animation: exegesisUnveil 1.1s ease-in-out 1s forwards;
}

.opulent-consultation-refuge {
  max-width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 25px;
  padding: clamp(35px, 5.5vw, 45px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.18);
  opacity: 0;
  transform: translateY(40px);
  animation: refugeManifest 1.3s ease-out 0.5s forwards;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

@media (min-width: 992px) {
  .opulent-consultation-refuge {
    max-width: 45%;
  }
}

.alliance-conduit {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4.5vw, 35px);
}

.consultation-fffff {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  padding: 0;
  margin: 0;
}

.fffff-caption {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 600;
  color: #e5e5e5;
}

.fffff-portal,
.fffff-expanse {
  padding: 16px 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  font-size: clamp(16px, 1.8vw, 18px);
  background: rgba(255, 255, 255, 0.06);
  color: #f5f5f5;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.fffff-portal:focus,
.fffff-expanse:focus {
  border-color: #e0c080;
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.3);
  outline: none;
}

.fffff-expanse {
  resize: vertical;
  min-height: 160px;
}

.fffff-notice {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #d5d5d5;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 300;
}

.notice-pact {
  color: #c0a062;
  text-decoration: none;
  transition: color 0.5s ease;
}

.notice-pact:hover {
  color: #ffd700;
}

.consultation-emissary {
  max-width: 250px;
  margin: 0 auto;
  padding: 16px 0;
  background: linear-gradient(135deg, #c0a062 0%, #e0c080 100%);
  color: #101010;
  border: none;
  border-radius: 70px;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.consultation-emissary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

.consultation-emissary::after {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 300%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent 50%);
  opacity: 0;
  transition: opacity 0.8s ease, bottom 0.8s ease;
}

.consultation-emissary:hover::after {
  opacity: 1;
  bottom: 100%;
}

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

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

@keyframes exegesisUnveil {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  .prestigious-alliance-hall {
    padding: clamp(70px, 12vh, 100px) 0;
  }
  .majestic-alliance-edict {
    font-size: clamp(28px, 6.5vw, 40px);
  }
  .lavish-alliance-invocation {
    font-size: clamp(16px, 2.6vw, 18px);
  }
  .artifact-label {
    font-size: clamp(18px, 2.1vw, 20px);
  }
  .artifact-narrative {
    font-size: clamp(15px, 1.8vw, 17px);
  }
  .opulent-consultation-refuge {
    padding: 30px;
  }
  .fffff-caption {
    font-size: 16px;
  }
  .fffff-portal,
  .fffff-expanse {
    font-size: 16px;
  }
  .fffff-notice {
    font-size: 14px;
  }
  .consultation-emissary {
    font-size: 16px;
    max-width: 220px;
  }
}

/* --------------------------footer--------------------------- */

.exalted-conclusion-fffff {
  padding: clamp(60px, 10vh, 100px) 0;
background: radial-gradient(120% 140% at 0% 0%, #0b1220 0%, #0f1a31 60%, #0a1326 100%);
  position: relative;
  overflow: hidden;
}

.exalted-conclusion-fffff::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at bottom right, rgba(212, 175, 55, 0.12), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.splendid-advisory-vault {
  max-width: 1000px;
  margin: 0 auto clamp(30px, 5vw, 40px) auto;
  opacity: 0;
  transform: translateY(-30px);
  animation: vaultDescent 1.4s ease-out forwards;
  position: relative;
  z-index: 2;
}

.refined-advisory-chronicle {
  font-size: clamp(13px, 1.6vw, 15px);
  color: #e5e5e5;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  font-weight: 300;
  letter-spacing: 0.6px;
}

.refined-advisory-chronicle strong {
  color: #f8f8f8;
  font-weight: 700;
}

.refined-advisory-chronicle a {
  color: #c0a062;
  text-decoration: none;
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

.refined-advisory-chronicle a:hover {
  color: #ffd700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.noble-conclusion-core {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(30px, 5vw, 40px);
  opacity: 0;
  transform: scale(0.9);
  animation: coreExpansion 1.4s ease-out 0.5s forwards;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .noble-conclusion-core {
    flex-direction: column;
    gap: 30px;
  }
}

.imperial-ownership-declaration {
  font-size: clamp(13px, 1.6vw, 15px);
  color: #e5e5e5;
  font-weight: 300;
  text-align: center;
}

.elite-navigation-conglomerate {
  display: flex;
  justify-content: center;
}

.dignified-navigation-array {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 4vw, 35px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.array-component {
  opacity: 0;
  transform: translateX(30px);
  animation: componentSlide 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.array-component:nth-child(1) { animation-delay: 0.6s; }
.array-component:nth-child(2) { animation-delay: 0.7s; }
.array-component:nth-child(3) { animation-delay: 0.8s; }
.array-component:nth-child(4) { animation-delay: 0.9s; }

.monarchic-navigation-conduit {
  font-size: clamp(13px, 1.6vw, 15px);
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.5s ease, padding-top 0.5s ease;
}

.monarchic-navigation-conduit::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: #ffd700;
  transition: width 0.5s ease;
}

.monarchic-navigation-conduit:hover {
  color: #ffd700;
  padding-top: 4px;
}

.monarchic-navigation-conduit:hover::before {
  width: 90%;
}

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

@keyframes coreExpansion {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@media (max-width: 768px) {
  .exalted-conclusion-fffff {
    padding: clamp(40px, 8vh, 60px) 0;
  }
  .refined-advisory-chronicle {
    font-size: clamp(12px, 1.5vw, 14px);
  }
  .imperial-ownership-declaration {
    font-size: clamp(12px, 1.5vw, 14px);
  }
  .dignified-navigation-array {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .monarchic-navigation-conduit {
    font-size: clamp(12px, 1.5vw, 14px);
  }
}

/* -------------------------cookie------------------------------- */

.elegant-cookie-notice {
    position: fixed;
    bottom: clamp(20px, 3vw, 30px);
    right: clamp(20px, 3vw, 30px);
    max-width: clamp(300px, 35vw, 400px);
    width: 90%;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(60px);
    animation: cookieSlideUp 0.8s ease-out forwards;
    transition: box-shadow 0.4s ease;
}

.elegant-cookie-notice:hover {
    box-shadow: 0 12px 35px rgba(0, 31, 63, 0.3);
}

.refined-cookie-content {
    padding: clamp(20px, 3vw, 25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.prestige-cookie-heading {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 15px;
    position: relative;
}

.prestige-cookie-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #ffd700, #d4af37);
    margin: 10px auto 0;
    transition: width 0.4s ease;
}

.prestige-cookie-heading:hover::after {
    width: 80px;
}

.sophisticated-cookie-text {
    font-size: clamp(13px, 1.6vw, 14px);
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.noble-cookie-actions {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
}

.luxury-accept-button {
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
    background: linear-gradient(135deg, #001f3f 0%, #004080 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.luxury-accept-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 31, 63, 0.3);
}

.luxury-accept-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0);
}

.luxury-accept-button:hover::before {
    opacity: 1;
    transform: scale(1);
}

.luxury-reject-button {
    padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 25px);
    background: #e8edf3;
    color: #001f3f;
    border: none;
    border-radius: 50px;
    font-size: clamp(13px, 1.5vw, 14px);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.luxury-reject-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 31, 63, 0.2);
    background: #d0d4d8;
}

.luxury-reject-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0);
}

.luxury-reject-button:hover::before {
    opacity: 1;
    transform: scale(1);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .elegant-cookie-notice {
        max-width: 90%;
        bottom: 15px;
        right: 15px;
        padding: 15px;
    }
    .prestige-cookie-heading {
        font-size: clamp(16px, 2vw, 18px);
    }
    .sophisticated-cookie-text {
        font-size: clamp(12px, 1.5vw, 13px);
    }
    .luxury-accept-button,
    .luxury-reject-button {
        padding: 8px 20px;
        font-size: clamp(12px, 1.4vw, 13px);
    }
}

/* -------------------------pages--------------------------- */

.main-content {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: clamp(50px, 10vh, 80px) 0;
}

.policy-section {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 8vh, 60px) 0;
}

.policy-heading {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 32px;
    text-align: center;
    color: #2a2a4e;
    font-weight: 700;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s ease-out forwards;
}

.policy-content {
    font-size: clamp(14px, 1.8vw, 16px);
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.policy-content p {
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.policy-content p:hover {
    color: #2a2a4e;
}

.policy-content h2 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 16px;
    color: #2a2a4e;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.policy-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content h2:hover::after {
    width: 100px;
}

.policy-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.policy-content li:hover {
    transform: translateX(5px);
}

.policy-content a {
    color: #4da8ff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.policy-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #4da8ff;
    transition: width 0.3s ease;
}

.policy-content a:hover {
    color: #2a2a4e;
}

.policy-content a:hover::after {
    width: 100%;
}

.policy-action-btn {
    max-width: 180px;
    width: 100%;
    margin: 32px auto 0;
    padding: 12px 0;
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    color: #ffffff;
    text-align: center;
    display: block;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.policy-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(77, 168, 255, 0.4);
}

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .policy-heading {
        font-size: clamp(24px, 6vw, 32px);
    }
    .policy-content {
        font-size: 14px;
    }
    .policy-content h2 {
        font-size: 20px;
    }
    .policy-action-btn {
        padding: 10px 0;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .policy-section {
        padding: 30px 0;
    }
    .policy-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .policy-content {
        font-size: 13px;
    }
    .policy-content h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .policy-content ul {
        margin-left: 15px;
    }
    .policy-content li {
        margin-bottom: 8px;
    }
    .policy-action-btn {
        max-width: 160px;
        margin-top: 20px;
        padding: 8px 0;
    }
}