@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://domain.com/fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("https://domain.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 */

/* ====== Шапка: новый деловой стиль ====== */
.exec-panel {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1a2338 0%, #0f172a 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  padding: clamp(10px, 2.5vw, 20px) 0;
  animation: exec-reveal 800ms ease-in-out;
}

.exec-arrange {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 1.8vw, 25px);
}

.exec-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.exec-emblem-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 4vw, 45px);
  height: clamp(32px, 4vw, 45px);
  border-radius: 50%;
  background: linear-gradient(145deg, #334155 0%, #1e293b 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.1);
  transition: box-shadow 400ms ease, transform 400ms ease;
}

.exec-emblem-img {
  width: 70%;
  height: auto;
  border-radius: 4px;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
  background-color: #ffffff;
}

.exec-identity:hover .exec-emblem-box {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), inset 0 1px 3px rgba(255, 255, 255, 0.15);
  transform: rotate(5deg) scale(1.05);
}

.exec-identity-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(14px, 1.5vw, 18px);
  color: #f8fafc;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.exec-guide-track {
  display: none;
}

@media (min-width: 1025px) {
  .exec-guide-track {
    display: block;
  }
}

.exec-guide-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(16px, 2.8vw, 32px);
}

.exec-guide-element {
  position: relative;
}

.exec-guide-anchor {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 16px);
  color: #cbd5e1;
  padding: 8px 10px;
  border-radius: 8px;
  transition: color 400ms ease, background 400ms ease, box-shadow 400ms ease;
  position: relative;
}

.exec-guide-anchor .exec-symbol {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  opacity: 0.85;
  transition: opacity 400ms ease, transform 400ms ease;
}

.exec-guide-anchor::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 100%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 400ms ease, transform 400ms ease;
}

.exec-guide-anchor:hover {
  color: #93c5fd;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.exec-guide-anchor:hover .exec-symbol {
  opacity: 1;
  transform: scale(1.1);
}

.exec-guide-anchor:hover::before {
  opacity: 1;
  transform: scale(1);
}

.exec-guide-anchor:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
  background: rgba(59, 130, 246, 0.1);
}

.exec-switcher {
  display: block;
}

.burger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform 300ms ease;
}

.burger span,
.burger::before,
.burger::after {
  display: block;
  width: 100%;
  height: 2px;
  background: #cbd5e1;
  border-radius: 2px;
  transition: transform 350ms ease, opacity 350ms ease, background 350ms ease;
}

.burger::before {
  content: "";
  top: 0;
}

.burger::after {
  content: "";
  bottom: 0;
}

.burger:hover {
  transform: scale(1.08);
}

.burger:hover span,
.burger:hover::before,
.burger:hover::after {
  background: #93c5fd;
}

@media (min-width: 1025px) {
  .exec-switcher {
    display: none;
  }
}

.burger.is-open::before {
  transform: translateY(11px) rotate(45deg);
}

.burger.is-open::after {
  transform: translateY(-11px) rotate(-45deg);
}

.burger.is-open span {
  opacity: 0;
  transform: scale(0);
}

.elite-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.97) 100%);
  backdrop-filter: blur(8px) saturate(130%);
  transform: translateY(100%);
  transition: transform 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 350ms ease;
  opacity: 0;
  z-index: 999;
}

.elite-mobile-menu.is-open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.exec-portable-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 5vw, 40px);
}

.exec-portable-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3.5vw, 30px);
  text-align: center;
}

.exec-portable-element {
  opacity: 0;
  transform: scale(0.95);
}

.elite-mobile-menu.is-open .exec-portable-element {
  animation: exec-emerge 500ms ease forwards;
}

.elite-mobile-menu.is-open .exec-portable-element:nth-child(1) {
  animation-delay: 100ms;
}

.elite-mobile-menu.is-open .exec-portable-element:nth-child(2) {
  animation-delay: 200ms;
}

.elite-mobile-menu.is-open .exec-portable-element:nth-child(3) {
  animation-delay: 300ms;
}

.mobile-nav-connection {
  display: block;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: clamp(20px, 5.5vw, 28px);
  color: #f1f5f9;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.mobile-nav-connection:hover {
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
  transform: scale(1.02);
}

.exec-portable-base {
  margin-top: auto;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  text-align: center;
}

.exec-portable-text {
  margin: 0;
  font-size: clamp(11px, 2.4vw, 13px);
  color: #94a3b8;
}

@keyframes exec-reveal {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes exec-emerge {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .exec-arrange {
    justify-content: space-between;
  }
  .exec-guide-track {
    display: none;
  }
}

@media (max-width: 600px) {
  .exec-identity-name {
    font-size: 14px;
  }
}

.exec-panel,
.exec-panel * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* =========================
   HERO — деловой премиум-стиль
   ========================= */
.prestige-gateway {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 12vh, 140px) 0;
  background: linear-gradient(160deg, #0f1a2e 0%, #0a1222 50%, #0d1527 100%);
  color: #e2edff;
  isolation: isolate;
}

.prestige-gateway::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 10% 30%, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.8;
}

.prestige-gateway::after {
  content: "";
  position: absolute;
  left: -15%;
  bottom: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96,165,250,0.15) 0%, transparent 60%);
  filter: blur(15px);
  animation: prestige-pulse 7s ease-in-out infinite alternate;
}

.prestige-gateway__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4.5vw, 48px);
  align-items: center;
}

@media (min-width: 1024px) {
  .prestige-gateway__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(35px, 5.5vw, 70px);
  }
}

.prestige-gateway__narrative {
  position: relative;
  z-index: 1;
  animation: prestige-ascend 800ms ease-in both;
}

.prestige-gateway__headline {
  margin: 0 0 16px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-size: clamp(30px, 5.8vw, 52px);
  color: #f0f6ff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.prestige-gateway__highlight {
  background-image: linear-gradient(95deg, #7ab3ff 0%, #4b8dff 50%, #a3d2ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.prestige-gateway__overview {
  margin: 0 0 22px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  font-size: clamp(15px, 2vw, 17px);
  color: #b8c9e5;
  max-width: 60ch;
  opacity: 0.92;
}

.prestige-gateway__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  list-style: none;
  margin: 0 0 26px 0;
  padding: 0;
}

@media (min-width: 600px) {
  .prestige-gateway__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }
}

.prestige-gateway__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1) inset;
  transition: transform 250ms ease, background 250ms ease, border-color 250ms ease;
}

.prestige-gateway__feature:hover {
  transform: translateX(4px);
  background: rgba(96,165,250,0.05);
  border-color: rgba(96,165,250,0.2);
}

.prestige-gateway__emblem {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: #7ab3ff;
  opacity: 0.9;
}

.prestige-gateway__invitation {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.prestige-gateway__prompt {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: clamp(13px, 1.7vw, 15px);
  color: #0a1120;
  background: linear-gradient(140deg, #a0c8ff 0%, #5496ff 50%, #1c6ae8 100%);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(28,106,232,0.3), 0 2px 4px rgba(255,255,255,0.5) inset;
  transition: transform 250ms ease, box-shadow 250ms ease, filter 250ms ease;
  overflow: hidden;
}

.prestige-gateway__prompt::after {
  content: "";
  position: absolute;
  top: -25%;
  left: -35%;
  width: 35%;
  height: 220%;
  transform: rotate(30deg);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.7) 50%, transparent 100%);
  animation: prestige-glint 3s ease-in-out infinite;
}

.prestige-gateway__prompt:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(28,106,232,0.4);
  filter: brightness(1.05);
}

.prestige-gateway__prompt:focus-visible {
  outline: 2px solid #7ab3ff;
  outline-offset: 4px;
}

.prestige-gateway__visual {
  position: relative;
  z-index: 1;
  animation: prestige-ascend 900ms ease-in 100ms both;
}

.prestige-gateway__frame {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(170deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 16px 45px rgba(0,0,0,0.3);
}

.prestige-gateway__visual-element {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.005);
  transition: transform 500ms ease, filter 500ms ease;
  filter: brightness(0.96) contrast(1.05) saturate(1.03);
}

.prestige-gateway__frame:hover .prestige-gateway__visual-element {
  transform: scale(1.02);
  filter: brightness(1.02) contrast(1.07) saturate(1.06);
}

.prestige-gateway__insight {
  position: absolute;
  right: 8%;
  top: -12px;
  transform: translateY(0);
  background: rgba(6,12,24,0.75);
  border: 1px solid rgba(96,165,250,0.22);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  animation: prestige-levitate 4.8s ease-in-out infinite;
  max-width: 85%;
}

.prestige-gateway__insight-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prestige-gateway__insight-group + .prestige-gateway__insight-group {
  margin-top: 4px;
}

.prestige-gateway__insight-tag {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #091120;
  background: linear-gradient(140deg, #96c2ff 0%, #5b9cff 100%);
  border-radius: 999px;
}

.prestige-gateway__insight-title {
  font-size: 13px;
  font-weight: 600;
  color: #dfeaff;
}

.prestige-gateway__insight-marker {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5b9cff;
  box-shadow: 0 0 0 5px rgba(91,156,255,0.15);
}

.prestige-gateway__insight-detail {
  font-size: 12px;
  color: #b9cbea;
}

@keyframes prestige-ascend {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes prestige-glint {
  0% { left: -35%; }
  50% { left: 135%; }
  100% { left: 135%; }
}

@keyframes prestige-pulse {
  from { transform: scale(0.95); opacity: 0.7; }
  to { transform: scale(1.1); opacity: 1; }
}

@keyframes prestige-levitate {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1023.98px) {
  .prestige-gateway__insight { right: 12px; left: 12px; top: -10px; }
}

@media (max-width: 599.98px) {
  .prestige-gateway { padding: clamp(60px, 12vh, 110px) 0 85px; }
  .prestige-gateway__headline { font-size: clamp(26px, 7.5vw, 38px); }
  .prestige-gateway__overview { font-size: clamp(13px, 3.4vw, 16px); }
}

@media (prefers-reduced-motion: reduce) {
  .prestige-gateway__narrative,
  .prestige-gateway__visual,
  .prestige-gateway__insight,
  .prestige-gateway::after { animation: none !important; }
  .prestige-gateway__prompt::after { display: none; }
}

.prestige-gateway,
.prestige-gateway * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



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

.summit-metrics {
  position: relative;
  padding: clamp(30px, 11vh, 40px) 0;
  background: linear-gradient(150deg, #0c182c 0%, #091220 50%, #0b1426 100%);
  overflow: hidden;
}

.summit-metrics::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 30% 10%, rgba(59,130,246,0.1) 0%, transparent 80%);
  pointer-events: none;
  opacity: 0.75;
}

.summit-metrics::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 70%);
  filter: blur(12px);
  animation: summit-gleam 8s ease-in-out infinite alternate;
}

.summit-metrics__assembly {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.8vw, 24px);
  justify-content: center;
}

@media (min-width: 1024px) {
  .summit-metrics__assembly {
    flex-wrap: nowrap;
    gap: clamp(16px, 2.2vw, 28px);
  }
}

.summit-metrics__entry {
  flex: 1 1 calc(50% - clamp(14px, 2.8vw, 24px)/2);
  position: relative;
  border-radius: 14px;
  padding: clamp(18px, 2.8vw, 26px);
  background: linear-gradient(160deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(96,165,250,0.4);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  color: #e3edff;
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

@media (min-width: 1024px) {
  .summit-metrics__entry {
    flex: 1;
  }
}

.summit-metrics__entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 100% at 100% 100%, rgba(96,165,250,0.15) 0%, transparent 60%);
  mix-blend-mode: overlay;
  opacity: 0.85;
  pointer-events: none;
}

.summit-metrics__entry::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 30%;
  height: 180%;
  transform: rotate(-20deg);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.summit-metrics__symbol-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 8px;
  height: 26px;
}

.summit-metrics__symbol {
  width: 20px;
  height: 20px;
  fill: #7ab3ff;
  opacity: 0.95;
  transition: transform 300ms ease, opacity 300ms ease;
}

.summit-metrics__value {
  margin: 4px 0 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fafcff;
  text-shadow: 0 2px 3px rgba(0,0,0,0.25);
}

.summit-metrics__description {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 1.8vw, 15px);
  line-height: 1.55;
  color: #b8c9e5;
}

.summit-metrics__entry:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border-color: rgba(96,165,250,0.6);
}

.summit-metrics__entry:hover .summit-metrics__symbol {
  transform: translateX(2px);
  opacity: 1;
}

@keyframes summit-gleam {
  from {
    transform: scale(0.9);
    opacity: 0.75;
  }
  to {
    transform: scale(1.15);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .summit-metrics__entry::after {
    display: none;
  }
  .summit-metrics::after {
    animation: none;
  }
}

.summit-metrics,
.summit-metrics * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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






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

.elite-offerings {
  position: relative;
  padding: clamp(30px, 13vh, 40px) 0;
  background: linear-gradient(155deg, #0a152a 0%, #08101e 50%, #0a1224 100%);
  color: #e5f0ff;
  overflow: hidden;
  isolation: isolate;
}

.elite-offerings::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 90% at 25% 5%, rgba(59,130,246,0.14) 0%, transparent 75%);
  pointer-events: none;
}

.elite-offerings::after {
  content: "";
  position: absolute;
  left: -12%;
  top: -12%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(96,165,250,0.16) 0%, transparent 65%);
  filter: blur(14px);
  animation: elite-radiance 9s ease-in-out infinite alternate;
}

.elite-offerings__intro {
  text-align: center;
  margin-bottom: clamp(26px, 4.5vw, 40px);
}

.elite-offerings__heading {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 5.2vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #f2f8ff;
}

.elite-offerings__emphasis {
  background-image: linear-gradient(90deg, #85bbff 0%, #4a8eff 50%, #b0d9ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.elite-offerings__collection {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 3.2vw, 24px);
}

@media (min-width: 640px) {
  .elite-offerings__collection {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .elite-offerings__collection {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.8vw, 28px);
  }
}

.elite-offerings__item {
  position: relative;
  border-radius: 16px;
  padding: clamp(20px, 3.2vw, 26px);
  background: linear-gradient(165deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(96,165,250,0.45);
  box-shadow: 0 20px 48px rgba(0,0,0,0.42);
  overflow: hidden;
  color: #e0eaff;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.elite-offerings__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 100% at 100% 0%, rgba(96,165,250,0.16) 0%, transparent 55%);
  pointer-events: none;
}

.elite-offerings__item::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: -18%;
  width: 35%;
  height: 190%;
  transform: rotate(-25deg);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.elite-offerings__emblem {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: radial-gradient(110% 110% at 25% 15%, rgba(96,165,250,0.22) 0%, rgba(96,165,250,0.05) 65%);
  color: #85bbff;
  margin-bottom: 12px;
  transition: transform 280ms ease, filter 280ms ease;
}

.elite-offerings__emblem svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.elite-offerings__subtitle {
  margin: 0 0 6px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 2.1vw, 19px);
  line-height: 1.25;
  color: #fafcff;
  letter-spacing: 0.02em;
}

.elite-offerings__description {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 1.9vw, 15px);
  line-height: 1.65;
  color: #b8c9e5;
  max-width: 58ch;
}

.elite-offerings__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.48);
  border-color: rgba(96,165,250,0.65);
}

.elite-offerings__item:hover .elite-offerings__emblem {
  transform: translateX(2px);
  filter: brightness(1.1);
}

.elite-offerings__item:hover::after {
  opacity: 1;
}

@keyframes elite-radiance {
  from {
    transform: scale(0.92);
    opacity: 0.8;
  }
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .elite-offerings__item::after {
    display: none;
  }
  .elite-offerings::after {
    animation: none;
  }
}

.elite-offerings,
.elite-offerings * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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

.vanguard-support {
  position: relative;
  padding: clamp(75px, 13vh, 145px) 0;
  background: linear-gradient(145deg, #0b162b 0%, #09111f 50%, #0b1325 100%);
  color: #e4efff;
  overflow: hidden;
  isolation: isolate;
}

.vanguard-support::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(85% 85% at 15% 8%, rgba(59,130,246,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.vanguard-support::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -8%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(96,165,250,0.14) 0%, transparent 60%);
  filter: blur(13px);
  animation: vanguard-luminance 10s ease-in-out infinite alternate;
}

.vanguard-support__caption {
  text-align: center;
  margin: 0 0 clamp(24px, 4vw, 36px) 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(25px, 5vw, 38px);
  line-height: 1.18;
  letter-spacing: 0.03em;
  color: #f1f7ff;
}

.vanguard-support__focus {
  background-image: linear-gradient(85deg, #7fb6ff 0%, #4589ff 50%, #a9d6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vanguard-support__panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 3vw, 20px);
}

@media (min-width: 1024px) {
  .vanguard-support__panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 2.5vw, 32px);
  }
}

.vanguard-support__panel {
  position: relative;
  border-radius: 15px;
  padding: clamp(18px, 3vw, 24px);
  background: linear-gradient(170deg, rgba(255,255,255,0.11) 0%, rgba(255,255,255,0.07) 100%);
  border: 1px solid rgba(96,165,250,0.5);
  box-shadow: 0 14px 36px rgba(0,0,0,0.38);
  overflow: hidden;
  color: #dde9ff;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.vanguard-support__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 90% at 0% 100%, rgba(96,165,250,0.14) 0%, transparent 50%);
  pointer-events: none;
}

.vanguard-support__panel::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -16%;
  width: 32%;
  height: 180%;
  transform: rotate(20deg);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.58) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 340ms ease;
}

.vanguard-support__marker {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: radial-gradient(100% 100% at 20% 10%, rgba(96,165,250,0.2) 0%, rgba(96,165,250,0.04) 60%);
  color: #7fb6ff;
  margin-bottom: 10px;
  transition: transform 320ms ease, filter 320ms ease;
}

.vanguard-support__marker svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.vanguard-support__label {
  margin: 0 0 4px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.28;
  color: #f8fdff;
  letter-spacing: 0.03em;
}

.vanguard-support__summary {
  margin: 0 0 14px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.8vw, 14px);
  line-height: 1.6;
  color: #b3c4e0;
  max-width: 56ch;
}

.vanguard-support__invite {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 13px;
  color: #0a1020;
  background: linear-gradient(130deg, #a5cdff 0%, #5c9aff 50%, #2272e9 100%);
  box-shadow: 0 6px 18px rgba(34,114,233,0.32), 0 2px 3px rgba(255,255,255,0.55) inset;
  overflow: hidden;
  transition: transform 320ms ease, box-shadow 320ms ease, filter 320ms ease;
}

.vanguard-support__invite svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.vanguard-support__invite::after {
  content: "";
  position: absolute;
  top: -18%;
  left: -28%;
  width: 28%;
  height: 190%;
  transform: rotate(20deg);
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.68) 50%, transparent 100%);
  animation: vanguard-gloss 3.2s ease-in-out infinite;
}

.vanguard-support__panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.45);
  border-color: rgba(96,165,250,0.7);
}

.vanguard-support__panel:hover .vanguard-support__marker {
  transform: translateY(1px);
  filter: brightness(1.08);
}

.vanguard-support__panel:hover::after {
  opacity: 1;
}

@keyframes vanguard-luminance {
  from {
    transform: scale(0.88);
    opacity: 0.85;
  }
  to {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes vanguard-gloss {
  0% {
    left: -28%;
  }
  50% {
    left: 128%;
  }
  100% {
    left: 128%;
  }
}

.vanguard-support,
.vanguard-support * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.regency-pledge {
  position: relative;
  padding: clamp(75px, 13vh, 140px) 0;
  background: linear-gradient(150deg, #0a1429 0%, #08101e 50%, #0a1224 100%);
  color: #e3eeff;
  overflow: hidden;
  isolation: isolate;
}

.regency-pledge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(75% 75% at 20% 12%, rgba(59,130,246,0.11) 0%, transparent 65%);
  pointer-events: none;
}

.regency-pledge::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(96,165,250,0.13) 0%, transparent 55%);
  filter: blur(12px);
  animation: regency-aura 11s ease-in-out infinite alternate;
}

.regency-pledge__enclosure {
  position: relative;
  border-radius: 18px;
  padding: clamp(18px, 3vw, 26px);
  background: linear-gradient(175deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(96,165,250,0.25);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  overflow: hidden;
}

.regency-pledge__enclosure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 100% at 100% 0%, rgba(96,165,250,0.14) 0%, transparent 50%);
  pointer-events: none;
}

.regency-pledge__prelude {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(20px, 3.5vw, 28px);
  animation: regency-elevate 700ms ease-out both;
}

.regency-pledge__insignia {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: radial-gradient(110% 110% at 25% 15%, rgba(96,165,250,0.2) 0%, rgba(96,165,250,0.04) 60%);
  color: #7fb6ff;
  flex: 0 0 40px;
}

.regency-pledge__insignia svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.regency-pledge__proclamation {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 5vw, 36px);
  line-height: 1.22;
  letter-spacing: 0.03em;
  color: #f0f6ff;
}

.regency-pledge__nexus {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.8vw, 24px);
}

@media (min-width: 980px) {
  .regency-pledge__nexus {
    flex-direction: row;
    gap: clamp(20px, 3.5vw, 36px);
  }
}

.regency-pledge__declaration {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2.1vw, 16px);
  line-height: 1.75;
  color: #b8c9e5;
  transform: translateX(-10px);
  opacity: 0;
  animation: regency-unveil 800ms cubic-bezier(0.25,0.46,0.45,0.94) 100ms forwards;
}

.regency-pledge__declaration p {
  margin: 0 0 14px 0;
}

.regency-pledge__brand {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 999px;
  background: linear-gradient(130deg, #a5cdff 0%, #5c9aff 50%, #2272e9 100%);
  color: #0a1020;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(34,114,233,0.3), 0 1px 2px rgba(255,255,255,0.55) inset;
}

.regency-pledge__tenets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 560px) {
  .regency-pledge__tenets {
    flex-wrap: nowrap;
  }
}

.regency-pledge__tenet {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(96,165,250,0.22);
  color: #e2edff;
  transition: transform 240ms ease, background-color 240ms ease, border-color 240ms ease;
  flex: 1;
}

.regency-pledge__tenet svg {
  width: 16px;
  height: 16px;
  fill: #7fb6ff;
}

.regency-pledge__tenet:hover {
  transform: translateX(3px);
  background-color: rgba(96,165,250,0.08);
  border-color: rgba(96,165,250,0.35);
}

.regency-pledge__epigraph {
  position: relative;
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(185deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(96,165,250,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.38);
  transform: translateX(10px);
  opacity: 0;
  animation: regency-unveil 840ms cubic-bezier(0.25,0.46,0.45,0.94) 200ms forwards;
}

.regency-pledge__epigraph-content {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #dfeaff;
}

.regency-pledge__epigraph-symbol {
  width: 18px;
  height: 18px;
  fill: #7fb6ff;
}

.regency-pledge__epigraph-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.regency-pledge__attribution {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.regency-pledge__divider {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.75), transparent);
  animation: regency-shimmer 3200ms ease-in-out infinite;
}

.regency-pledge__source {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.07em;
  color: #c8d9ff;
  text-transform: uppercase;
}

@keyframes regency-elevate {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes regency-unveil {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes regency-shimmer {
  0% {
    box-shadow: 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 12px rgba(96,165,250,0.4);
  }
  100% {
    box-shadow: 0 0 0 transparent;
  }
}

@keyframes regency-aura {
  from {
    transform: scale(0.9);
    opacity: 0.82;
  }
  to {
    transform: scale(1.1);
    opacity: 1;
  }
}

@media (max-width: 599.98px) {
  .regency-pledge__proclamation {
    font-size: clamp(22px, 6.5vw, 30px);
  }
  .regency-pledge__epigraph-content p {
    font-size: 13px;
  }
}


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




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

.apex-enrollment {
  position: relative;
  padding: clamp(80px, 12vh, 150px) 0;
  background: linear-gradient(140deg, #0b152a 0%, #090f1d 50%, #0b1323 100%);
  color: #e2edff;
  overflow: hidden;
  isolation: isolate;
}

.apex-enrollment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 10% 15%, rgba(59,130,246,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.apex-enrollment::after {
  content: "";
  position: absolute;
  top: -9%;
  right: -9%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(96,165,250,0.12) 0%, transparent 50%);
  filter: blur(11px);
  animation: apex-glow 12s ease-in-out infinite alternate;
}

.apex-enrollment__framework {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3.5vw, 32px);
  align-items: start;
}

@media (min-width: 992px) {
  .apex-enrollment__framework {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4.5vw, 44px);
  }
}

.apex-enrollment__overview {
  animation: apex-ascend 800ms ease-out both;
}

.apex-enrollment__header {
  margin: 0 0 8px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 5.5vw, 42px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: #eff5ff;
}

.apex-enrollment__synopsis {
  margin: 0 0 16px 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.75;
  color: #b3c4e0;
  max-width: 60ch;
}

.apex-enrollment__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

@media (min-width: 560px) {
  .apex-enrollment__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.apex-enrollment__highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(96,165,250,0.25);
  color: #dfeaff;
  transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.apex-enrollment__highlight:hover {
  transform: translateX(2px);
  background-color: rgba(96,165,250,0.07);
  border-color: rgba(96,165,250,0.38);
}

.apex-enrollment__marker {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(110% 110% at 25% 15%, rgba(96,165,250,0.18) 0%, rgba(96,165,250,0.03) 55%);
  color: #7ab3ff;
  flex: 0 0 36px;
}

.apex-enrollment__marker svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.apex-enrollment__subheader {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #f7fcff;
}

.apex-enrollment__info {
  margin: 3px 0 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #c8d9ff;
  line-height: 1.55;
}

.apex-enrollment__advisory {
  margin-top: 8px;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(96,165,250,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.38);
  animation: apex-ascend 840ms ease-out 80ms both;
}

.apex-enrollment__advisory-header {
  margin: 0 0 6px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #f7fcff;
}

.apex-enrollment__advisory-content {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #b3c4e0;
  line-height: 1.65;
}

.apex-enrollment__reference {
  color: #85bbff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(96,165,250,0.55);
  transition: color 240ms ease, border-color 240ms ease;
}

.apex-enrollment__reference:hover {
  color: #c8d9ff;
  border-color: rgba(200,217,255,0.85);
}

.apex-enrollment__submission {
  position: relative;
  border-radius: 18px;
  padding: clamp(20px, 3.4vw, 28px);
  background: linear-gradient(185deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  border: 1px solid rgba(96,165,250,0.32);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  animation: apex-manifest 880ms cubic-bezier(0.25,0.46,0.45,0.94) 160ms forwards;
}

.apex-enrollment__submission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 100% at 100% 0%, rgba(96,165,250,0.16) 0%, transparent 55%);
  pointer-events: none;
}

.apex-enrollment__entry {
  display: grid;
  gap: 6px;
}

.apex-enrollment__prompt {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #eff5ff;
}

.apex-enrollment__field,
.apex-enrollment__multiline {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(96,165,250,0.3);
  background: #0c1427;
  color: #e2edff;
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.apex-enrollment__field::placeholder,
.apex-enrollment__multiline::placeholder {
  color: #94a3b8;
}

.apex-enrollment__field:focus,
.apex-enrollment__multiline:focus {
  outline: none;
  border-color: #85bbff;
  box-shadow: 0 0 0 3px rgba(96,165,250,0.15);
  transform: translateX(1px);
}

.apex-enrollment__multiline {
  resize: vertical;
  min-height: 120px;
}

.apex-enrollment__consent {
  margin: 4px 0 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 1.55;
  color: #b9cbea;
  text-align: center;
}

.apex-enrollment__dispatch {
  width: 100%;
  margin-top: 4px;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 14px;
  color: #090f1d;
  background: linear-gradient(125deg, #9fc6ff 0%, #619fff 50%, #2978f2 100%);
  box-shadow: 0 10px 24px rgba(41,120,242,0.35), 0 1px 2px rgba(255,255,255,0.55) inset;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.apex-enrollment__dispatch:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(41,120,242,0.45);
  filter: brightness(1.05);
}

@keyframes apex-ascend {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes apex-manifest {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes apex-glow {
  from {
    transform: scale(0.92);
    opacity: 0.8;
  }
  to {
    transform: scale(1.08);
    opacity: 1;
  }
}

.apex-enrollment,
.apex-enrollment * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


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

.sovereign-base {
  position: relative;
  padding: clamp(75px, 13vh, 130px) 0 28px 0;
  background: linear-gradient(145deg, #091320 0%, #070d1b 50%, #09111f 100%);
  color: #e1ecff;
  overflow: hidden;
  isolation: isolate;
}

.sovereign-base::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 70% at 15% 10%, rgba(59,130,246,0.09) 0%, transparent 55%);
  pointer-events: none;
}

.sovereign-base::after {
  content: "";
  position: absolute;
  bottom: -8%;
  right: -8%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96,165,250,0.11) 0%, transparent 45%);
  filter: blur(10px);
  animation: sovereign-radiate 13s ease-in-out infinite alternate;
}

.sovereign-base__structure {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3.5vw, 28px);
  margin-bottom: clamp(22px, 3.5vw, 32px);
}

@media (min-width: 1024px) {
  .sovereign-base__structure {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) minmax(0, 0.65fr) minmax(0, 0.75fr);
    gap: clamp(22px, 3vw, 36px);
  }
}

.sovereign-base__identity__anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.sovereign-base__identity__title {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #eef4ff;
  text-transform: uppercase;
}

.sovereign-base__description {
  margin: 6px 0 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #b3c4e0;
  line-height: 1.65;
  max-width: 40ch;
}

.sovereign-base__heading {
  margin: 0 0 8px 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #f6fbff;
  letter-spacing: 0.03em;
}

.sovereign-base__paragraph {
  margin: 0 0 10px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #b3c4e0;
  line-height: 1.75;
}

.sovereign-base__paragraph strong {
  color: #dfeaff;
}

.sovereign-base__navigation {
  display: grid;
  grid-auto-rows: min-content;
  gap: 8px;
}

.sovereign-base__nav-item {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #dfeaff;
  text-decoration: none;
  padding: 1px 0;
  transition: color 240ms ease, transform 240ms ease;
}

.sovereign-base__nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #85bbff, #2978f2);
  transition: width 260ms ease;
  border-radius: 1px;
}

.sovereign-base__nav-item:hover {
  color: #c8d9ff;
  transform: translateX(1px);
}

.sovereign-base__nav-item:hover::after {
  width: 100%;
}

.sovereign-base__connect-entry {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
  text-decoration: none;
  color: #dfeaff;
  margin-bottom: 8px;
}

.sovereign-base__connect-symbol {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96,165,250,0.1);
  color: #7ab3ff;
}

.sovereign-base__connect-symbol svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sovereign-base__connect-detail {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #c8d9ff;
}

.sovereign-base__closure {
  position: relative;
  margin-top: clamp(6px, 1.5vw, 12px);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sovereign-base__closure::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.5), transparent);
}

@media (max-width: 768px) {
  .sovereign-base__closure {
    flex-direction: column;
    align-items: flex-start;
  }
}

.sovereign-base__rights {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #b3c4e0;
}

@keyframes sovereign-radiate {
  from {
    transform: scale(0.95);
    opacity: 0.78;
  }
  to {
    transform: scale(1.05);
    opacity: 1;
  }
}

.sovereign-base,
.sovereign-base * {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* -------------------------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;
    }
}



.sovereign-gratitude-realm {
    padding: clamp(80px, 13vh, 140px) 0;
    background: linear-gradient(to bottom, #fafafa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sovereign-gratitude-realm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.04) 0%, transparent 50%);
    opacity: 0.5;
    animation: subtleGlow 5s infinite alternate ease-in-out;
}

.exalted-gratitude-proclamation {
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 40px);
    opacity: 0;
    transform: scale(0.9);
    animation: proclamationBloom 1.3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.exalted-gratitude-proclamation h1 {
    font-size: clamp(34px, 6vw, 48px);
    font-weight: 900;
    color: #0f172a;
    position: relative;
    transition: color 0.6s ease;
}

.exalted-gratitude-proclamation h1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(to right, #1e40af, #3b82f6);
    transition: width 0.6s ease;
}

.exalted-gratitude-proclamation:hover h1::after {
    width: 120px;
}

.exalted-gratitude-proclamation:hover h1 {
    color: #1d4ed8;
}

.regal-gratitude-narrative {
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: narrativeAscend 1.4s ease-out 0.3s forwards;
}

.regal-gratitude-narrative p {
    font-size: clamp(16px, 2.1vw, 18px);
    color: #374151;
    line-height: 1.8;
    margin-bottom: 25px;
    transition: color 0.6s ease;
}

.regal-gratitude-narrative p:hover {
    color: #1f2937;
}

.noble-guidance-chapter {
    margin-bottom: clamp(30px, 5vw, 40px);
}

.noble-guidance-chapter h2 {
    font-size: clamp(24px, 3.5vw, 28px);
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    transition: color 0.6s ease;
}

.noble-guidance-chapter h2::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: #2563eb;
    transition: width 0.6s ease;
}

.noble-guidance-chapter:hover h2 {
    color: #1e40af;
}

.noble-guidance-chapter:hover h2::before {
    width: 80px;
}

.aristocratic-guidance-roster {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aristocratic-guidance-roster li {
    font-size: clamp(15px, 2vw, 17px);
    color: #475569;
    line-height: 1.7;
    position: relative;
    padding-left: 30px;
    opacity: 0;
    transform: translateX(-20px);
    animation: listItemSlide 0.9s ease-out forwards;
}

.aristocratic-guidance-roster li:nth-child(1) { animation-delay: 0.5s; }
.aristocratic-guidance-roster li:nth-child(2) { animation-delay: 0.6s; }
.aristocratic-guidance-roster li:nth-child(3) { animation-delay: 0.7s; }

.aristocratic-guidance-roster li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1e40af;
    font-size: 24px;
    transition: color 0.6s ease, transform 0.6s ease;
}

.aristocratic-guidance-roster li:hover {
    color: #334155;
}

.aristocratic-guidance-roster li:hover::before {
    color: #2563eb;
    transform: scale(1.2);
}

.narrative-link {
    color: #1e40af;
    text-decoration: none;
    position: relative;
    transition: color 0.5s ease;
}

.narrative-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.5s ease;
}

.narrative-link:hover {
    color: #2563eb;
}

.narrative-link:hover::after {
    width: 100%;
}

.opulent-exploration-portal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 2vw, 16px) clamp(30px, 4vw, 35px);
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.2);
    transition: transform 0.6s ease, box-shadow 0.6s ease, background 0.6s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.opulent-exploration-portal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.3);
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

.opulent-exploration-portal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
    opacity: 0;
}

.opulent-exploration-portal:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

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

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

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

@keyframes subtleGlow {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 0.2;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sovereign-gratitude-realm {
        padding: clamp(60px, 11vh, 90px) 0;
    }
    .exalted-gratitude-proclamation h1 {
        font-size: clamp(28px, 7vw, 40px);
    }
    .regal-gratitude-narrative p {
        font-size: clamp(14px, 2.5vw, 16px);
    }
    .noble-guidance-chapter h2 {
        font-size: clamp(22px, 4vw, 26px);
    }
    .aristocratic-guidance-roster li {
        font-size: clamp(14px, 2.2vw, 16px);
    }
    .opulent-exploration-portal {
        font-size: 15px;
        padding: 12px 25px;
    }
}

.celestial-navigation-beacon {
    z-index: 999 !important;
}