@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 */

.aur-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0c1222;
  background-image: linear-gradient(180deg, rgba(12,18,34,0.96) 0%, rgba(12,18,34,0.92) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.aur-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.aur-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.aur-brand__logo {
  height: clamp(30px, 4.4vw, 46px);
  width: auto;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.aur-brand__name {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: 0.015em;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.aur-nav {
  display: none;
}

@media (min-width: 1025px) {
  .aur-nav { display: block; }
  .aur-nav__list {
    display: inline-grid;
    grid-auto-flow: column;
    gap: clamp(18px, 3vw, 42px);
    margin: 0;
    padding: 0;
    list-style: none;
  }
}

.aur-nav__item { list-style: none; }

.aur-ico {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.aur-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #e9efff;
  padding: 10px 2px;
  transition: transform 180ms ease, color 180ms ease;
}

.aur-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, #8bb8ff, #5fa3ff, #3b82f6);
  border-radius: 2px;
  transition: transform 240ms ease;
}

.aur-nav__link:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.aur-nav__link:hover::after { transform: scaleX(1); }

.aur-burger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  padding: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.aur-burger:focus,
.aur-burger:focus-visible {
  outline: 2px solid #5fa3ff;
  outline-offset: 2px;
}

.aur-burger:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.burger {
  position: relative;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}

.burger span + span { margin-top: 5px; }

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.elite-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,12,24,0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.elite-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.aur-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 440px);
  height: 100%;
  background: linear-gradient(180deg, #0f172a 0%, #0b1222 100%);
  border-left: 1px solid rgba(255,255,255,0.1);
  box-shadow: -20px 0 50px rgba(0,0,0,0.3);
  transform: translateX(24px);
  transition: transform 340ms cubic-bezier(.2,.7,.2,1);
}

.elite-mobile-menu.is-open .aur-mobile__panel { transform: translateX(0); }

.aur-mobile__list {
  list-style: none;
  margin: 0;
  padding: 22px 18px 18px 18px;
  display: grid;
  gap: 14px;
}

.aur-mobile__item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.aur-mobile__item:active {
  transform: scale(0.98);
  box-shadow: 0 6px 16px rgba(0,0,0,0.24);
}

.aur-mobile__link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #f1f6ff;
  font-weight: 800;
  font-size: 18px;
  padding: 16px 16px;
  letter-spacing: 0.01em;
}

.aur-mobile__link .aur-ico {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .aur-bar { padding: 12px 0; gap: 14px; }
  .aur-brand__logo { height: 36px; }
  .aur-brand__name { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .aur-nav__link,
  .aur-burger,
  .elite-mobile-menu,
  .aur-mobile__panel,
  .burger span { transition: none; }
}



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

.qx-aurelia-hero {
  position: relative;
  z-index: 0;
  padding: clamp(88px, 22vh, 100px) 0 clamp(64px, 14vh, 140px);
  background:
    radial-gradient(120% 140% at 10% 10%, #172b63 0%, rgba(23,43,99,0.6) 35%, rgba(7,13,31,0.6) 60%) ,
    linear-gradient(180deg, #0a1229 0%, #0b142f 60%, #0a1026 100%);
  color: #eaf1ff;
  overflow: hidden;
}

.qx-aurelia-hero::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -20%;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(93,151,255,0.22), rgba(93,151,255,0));
  filter: blur(6px);
  border-radius: 50%;
  pointer-events: none;
}

.qx-aurelia-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.07) 1px, rgba(255,255,255,0) 1px);
  background-size: 84px 100%;
  opacity: 0.18;
  pointer-events: none;
}

.qx-crown-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

@media (min-width: 992px) {
  .qx-crown-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.qx-text-stack {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  max-width: 720px;
  opacity: 0;
  transform: translateY(18px);
  animation: qx-fadeUp 700ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.qx-kicker {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b9c9f4;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  backdrop-filter: blur(0px);
}

.qx-display {
  margin: 0;
  font-size: clamp(34px, 6.2vw, 60px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #f5f8ff;
  position: relative;
}

.qx-display::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  height: 3px;
  width: 110px;
  background: linear-gradient(90deg, #6ea1ff 0%, #a7c3ff 100%);
  border-radius: 3px;
  transform: scaleX(0.7);
  transform-origin: left;
  animation: qx-underline 900ms ease 260ms forwards;
  opacity: 0.85;
}

.qx-lead {
  margin: 0;
  max-width: 68ch;
  font-size: clamp(16px, 1.9vw, 18px);
  line-height: 1.8;
  color: #c6d4f5;
  text-wrap: balance;
}

.qx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.qx-btn-prime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  color: #0a1229;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.8);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.qx-btn-prime .qx-ico {
  transition: transform 220ms ease;
}

.qx-btn-prime::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(120% 120% at -10% -10%, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 46%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.qx-btn-prime:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(118,161,255,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
}

.qx-btn-prime:hover .qx-ico {
  transform: translateX(4px);
}

.qx-btn-prime:focus-visible {
  outline: 2px solid #bcd4ff;
  outline-offset: 3px;
}

.qx-media-crest {
  margin: 0;
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  animation: qx-fadeUp 700ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.qx-media-crest::before {
  content: "";
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: clamp(100px, 16vw, 180px);
  height: clamp(100px, 16vw, 180px);
  background: radial-gradient(closest-side, rgba(110,161,255,0.22), rgba(110,161,255,0));
  border-radius: 50%;
  z-index: -1;
}

.qx-media-wrap {
  padding: clamp(12px, 1.6vw, 18px);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(5,10,25,0.55);
}

.qx-media-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transform: perspective(1200px) rotateX(0) rotateY(0);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease, box-shadow 300ms ease;
}

.qx-media-wrap:hover .qx-media-img {
  transform: perspective(1200px) rotateX(1.6deg) rotateY(-3.2deg) translateY(-2px);
  filter: saturate(1.04) brightness(1.03);
  box-shadow: 0 24px 54px rgba(0,0,0,0.45);
}

.qx-media-note {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #a8b8e6;
}

.qx-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.qx-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #d6e2ff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
}

.qx-trust-item svg {
  display: block;
}

@media (max-width: 768px) {
  .qx-display {
    font-size: clamp(28px, 8.2vw, 38px);
  }
  .qx-media-wrap {
    border-radius: 18px;
    padding: 12px;
  }
  .qx-media-img {
    border-radius: 14px;
  }
  .qx-trust {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes qx-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes qx-underline {
  0% { transform: scaleX(0); opacity: 0.4; }
  100% { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .qx-text-stack,
  .qx-media-crest {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .qx-media-wrap:hover .qx-media-img {
    transform: none;
  }
}




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

.vx-stats-panel {
  position: relative;
  z-index: 0;
  padding: clamp(56px, 12vh, 140px) 0;
  background:
    radial-gradient(120% 140% at 10% 10%, rgba(36,64,130,0.65) 0%, rgba(16,28,64,0.55) 40%, rgba(11,18,47,0.7) 70%),
    linear-gradient(180deg, #0a1129 0%, #0b132f 60%, #0a1026 100%);
  color: #eaf1ff;
  overflow: hidden;
}

.vx-stats-panel::before {
  content: "";
  position: absolute;
  right: -14%;
  top: -22%;
  width: 520px;
  height: 520px;
  background: radial-gradient(closest-side, rgba(120,160,255,0.22), rgba(120,160,255,0));
  border-radius: 50%;
  filter: blur(6px);
  pointer-events: none;
  opacity: 0.8;
  animation: vx-orb 22s linear infinite;
}

.vx-stats-head {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(22px, 3.6vw, 36px);
  max-width: 920px;
}

.vx-stats-eyebrow {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b9c9f4;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
}

.vx-stats-title {
  margin: 0;
  font-size: clamp(24px, 4.8vw, 40px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #f5f8ff;
  position: relative;
}

.vx-stats-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #6ea1ff 0%, #a7c3ff 100%);
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: vx-underline 900ms ease 300ms forwards;
}

.vx-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2.4vw, 24px);
}

@media (max-width: 1080px) {
  .vx-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .vx-stats-grid {
    grid-template-columns: 1fr;
  }
}

.vx-stat-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: clamp(16px, 2.4vw, 22px);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  color: #e7eeff;
  isolation: isolate;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: vx-rise 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vx-stat-card:nth-child(1){animation-delay:120ms}
.vx-stat-card:nth-child(2){animation-delay:200ms}
.vx-stat-card:nth-child(3){animation-delay:280ms}
.vx-stat-card:nth-child(4){animation-delay:360ms}

.vx-stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.vx-stat-card:hover::after {
  animation: vx-sheen 1100ms ease forwards;
  opacity: 1;
}

.vx-stat-ico {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0a1129;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  box-shadow: 0 10px 24px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
}

.vx-stat-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.vx-stat-figure {
  font-size: clamp(22px, 3.8vw, 28px);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.vx-stat-label {
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.4;
  color: #c6d4f5;
  text-wrap: balance;
}

.vx-stat-card:hover {
  transform: translateY(0) scale(1);
  box-shadow: 0 24px 54px rgba(5,10,25,0.55), inset 0 1px 0 rgba(255,255,255,0.9);
}

@media (max-width: 640px) {
  .vx-stat-card {
    grid-template-columns: 44px 1fr;
    border-radius: 16px;
  }
  .vx-stat-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
}

@keyframes vx-rise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vx-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes vx-orb {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}

@keyframes vx-underline {
  0% { transform: scaleX(0); opacity: 0.5; }
  100% { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .vx-stat-card,
  .vx-stats-title::after {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .vx-stat-card:hover::after {
    animation: none;
  }
}



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








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

.prx-offer-suite {
  position: relative;
  z-index: 0;
  padding: clamp(72px, 14vh, 160px) 0;
  background:
    radial-gradient(120% 140% at 10% 10%, rgba(27,48,109,0.72) 0%, rgba(18,34,80,0.62) 40%, rgba(10,18,41,0.78) 70%),
    linear-gradient(180deg, #0a1129 0%, #0b142f 60%, #0a1026 100%);
  color: #eaf1ff;
  overflow: hidden;
}

.prx-offer-suite::before {
  content: "";
  position: absolute;
  right: -16%;
  top: -22%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(120,160,255,0.22), rgba(120,160,255,0));
  filter: blur(6px);
  opacity: 0.85;
  pointer-events: none;
  animation: prx-orbit 24s linear infinite;
}

.prx-offer-suite::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  opacity: 0.5;
  pointer-events: none;
}

.prx-offer-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto clamp(28px, 4.8vw, 48px);
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  animation: prx-reveal 700ms cubic-bezier(0.22,1,0.36,1) 120ms forwards;
}

.prx-offer-eyebrow {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9c9f4;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
}

.prx-offer-title {
  margin: 0;
  font-size: clamp(26px, 5.4vw, 42px);
  line-height: 1.16;
  font-weight: 900;
  color: #f5f8ff;
  letter-spacing: 0.01em;
  position: relative;
}

.prx-offer-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #6ea1ff 0%, #a7c3ff 100%);
  border-radius: 3px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: prx-underline 900ms ease 300ms forwards;
}

.prx-offer-sub {
  margin: 10px auto 0;
  max-width: 70ch;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
  color: #c6d4f5;
  text-wrap: balance;
}

.prx-offer-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  .prx-offer-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .prx-offer-deck {
    grid-template-columns: 1fr;
  }
}

.prx-offer-unit {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: clamp(16px, 2.4vw, 22px);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  isolation: isolate;
  color: #e7eeff;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: prx-reveal 700ms cubic-bezier(0.22,1,0.36,1) 200ms forwards;
}

.prx-offer-unit:nth-child(2){animation-delay:280ms}
.prx-offer-unit:nth-child(3){animation-delay:360ms}

.prx-offer-unit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.prx-offer-unit:hover::after {
  animation: prx-sheen 1100ms ease forwards;
  opacity: 1;
}

.prx-offer-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0a1129;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  box-shadow: 0 12px 28px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
  transform: translateZ(0);
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1), box-shadow 240ms ease;
}

.prx-offer-unit:hover .prx-offer-icon {
  transform: rotate(-5deg) scale(1.04);
  box-shadow: 0 18px 40px rgba(118,161,255,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
}

.prx-offer-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.prx-offer-name {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.prx-offer-text {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.65;
  color: #c6d4f5;
  text-wrap: balance;
}

.prx-offer-unit:hover {
  transform: translateY(0) scale(1);
  box-shadow: 0 24px 54px rgba(5,10,25,0.55), inset 0 1px 0 rgba(255,255,255,0.9);
}

@media (max-width: 640px) {
  .prx-offer-unit {
    grid-template-columns: 52px 1fr;
    border-radius: 16px;
  }
  .prx-offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }
}

@keyframes prx-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes prx-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes prx-orbit {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}

@keyframes prx-underline {
  0% { transform: translateX(-50%) scaleX(0); opacity: 0.5; }
  100% { transform: translateX(-50%) scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .prx-offer-head,
  .prx-offer-unit {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .prx-offer-unit:hover::after { animation: none; }
}




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

.zl-about-canvas {
  position: relative;
  padding: clamp(84px, 16vh, 180px) 0;
  background:
    radial-gradient(120% 140% at 12% 8%, rgba(27,48,109,0.65) 0%, rgba(14,26,64,0.55) 40%, rgba(9,16,41,0.72) 70%),
    linear-gradient(180deg, #0a1129 0%, #0b142f 60%, #0a1026 100%);
  color: #e9f1ff;
  overflow: hidden;
}

.zl-about-canvas::before {
  content: "";
  position: absolute;
  right: -16%;
  top: -22%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(124,165,255,0.24), rgba(124,165,255,0));
  filter: blur(6px);
  opacity: 0.85;
  pointer-events: none;
  animation: zl-orb 26s linear infinite;
}

.zl-about-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  pointer-events: none;
  opacity: 0.5;
}

.zl-about-frame {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  max-width: 1080px;
  margin: 0 auto;
}

.zl-leadstack {
  display: grid;
  gap: 10px;
  align-items: start;
  opacity: 0;
  transform: translateY(18px);
  animation: zl-reveal 720ms cubic-bezier(0.22,1,0.36,1) 120ms forwards;
}

.zl-eyebrow {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9c9f4;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  width: fit-content;
}

.zl-display {
  margin: 0;
  font-size: clamp(28px, 5.6vw, 46px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #f6f8ff;
  position: relative;
}

.zl-display::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #6ea1ff 0%, #a7c3ff 100%);
  border-radius: 3px;
  transform: scaleX(0.6);
  transform-origin: left;
  animation: zl-underline 900ms ease 300ms forwards;
}

.zl-sublead {
  margin: 8px 0 0;
  max-width: 70ch;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.75;
  color: #c6d4f5;
  text-wrap: balance;
}

.zl-splitgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3.2vw, 32px);
}

@media (min-width: 992px) {
  .zl-splitgrid {
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }
}

.zl-richcopy p {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: #d8e3ff;
  text-wrap: pretty;
}

.zl-mark {
  font-weight: 900;
  color: #10224f;
  background: linear-gradient(180deg, rgba(230,240,255,0.8) 0%, rgba(156,194,255,0.8) 100%);
  padding: 2px 8px;
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 22px rgba(118,161,255,0.25);
  transition: transform 320ms cubic-bezier(0.22,1,0.36,1), box-shadow 320ms ease;
}

.zl-mark:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 14px 30px rgba(118,161,255,0.38);
}

.zl-quote {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  color: #cfe0ff;
  box-shadow: 0 16px 40px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}

.zl-quote p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.zl-aside {
  display: grid;
  gap: 12px;
}

.zl-featurelist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.zl-feature {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  color: #e7eeff;
  box-shadow: 0 18px 40px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: zl-reveal 720ms cubic-bezier(0.22,1,0.36,1) 220ms forwards;
  position: relative;
  overflow: hidden;
}

.zl-feature:nth-child(2){animation-delay:300ms}
.zl-feature:nth-child(3){animation-delay:380ms}

.zl-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.zl-feature:hover::after {
  animation: zl-sheen 1100ms ease forwards;
  opacity: 1;
}

.zl-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0a1129;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  box-shadow: 0 12px 28px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
  transform: translateZ(0);
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1), box-shadow 240ms ease;
}

.zl-feature:hover .zl-icon {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 18px 40px rgba(118,161,255,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
}

.zl-ft-text {
  font-size: 14px;
  line-height: 1.55;
  color: #d6e2ff;
  text-wrap: balance;
}

.zl-badge {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #cfe0ff;
  box-shadow: 0 12px 28px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
}

@media (max-width: 768px) {
  .zl-display { font-size: clamp(26px, 7vw, 36px); }
  .zl-feature { grid-template-columns: 38px 1fr; border-radius: 14px; }
  .zl-icon { width: 38px; height: 38px; border-radius: 10px; }
}

@keyframes zl-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes zl-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes zl-orb {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}

@keyframes zl-underline {
  0% { transform: scaleX(0); opacity: 0.5; }
  100% { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .zl-leadstack,
  .zl-feature {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .zl-feature:hover::after { animation: none; }
}



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



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

.nyx-help-lattice {
  position: relative;
  z-index: 0;
  padding: clamp(80px, 16vh, 180px) 0;
  background:
    radial-gradient(120% 140% at 12% 8%, rgba(27,48,109,0.65) 0%, rgba(14,26,64,0.55) 40%, rgba(9,16,41,0.72) 70%),
    linear-gradient(180deg, #0a1129 0%, #0b142f 60%, #0a1026 100%);
  color: #e9f1ff;
  overflow: hidden;
}

.nyx-help-lattice::before {
  content: "";
  position: absolute;
  right: -16%;
  top: -22%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(124,165,255,0.24), rgba(124,165,255,0));
  filter: blur(6px);
  opacity: 0.85;
  pointer-events: none;
  animation: nyx-orb 26s linear infinite;
}

.nyx-help-lattice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  pointer-events: none;
  opacity: 0.5;
}

.nyx-help-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto clamp(28px, 5vw, 52px);
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  animation: nyx-reveal 720ms cubic-bezier(0.22,1,0.36,1) 120ms forwards;
}

.nyx-help-eyebrow {
  display: inline-block;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9c9f4;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
}

.nyx-help-title {
  margin: 0;
  font-size: clamp(26px, 5.4vw, 42px);
  line-height: 1.16;
  font-weight: 900;
  color: #f5f8ff;
  letter-spacing: 0.01em;
  position: relative;
}

.nyx-help-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #6ea1ff 0%, #a7c3ff 100%);
  border-radius: 3px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: nyx-underline 900ms ease 300ms forwards;
}

.nyx-help-sub {
  margin: 8px auto 0;
  max-width: 70ch;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.75;
  color: #c6d4f5;
  text-wrap: balance;
}

.nyx-help-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
}

@media (max-width: 1024px) {
  .nyx-help-grid {
    grid-template-columns: 1fr;
  }
}

.nyx-help-card {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  grid-template-areas:
    "ico title cta"
    "ico text  cta";
  align-items: center;
  gap: 14px 16px;
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  color: #e7eeff;
  isolation: isolate;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: nyx-reveal 720ms cubic-bezier(0.22,1,0.36,1) 200ms forwards;
  overflow: hidden;
}

.nyx-help-card:nth-child(2){animation-delay:280ms}
.nyx-help-card:nth-child(3){animation-delay:360ms}
.nyx-help-card:nth-child(4){animation-delay:440ms}

.nyx-help-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.nyx-help-card:hover::after {
  animation: nyx-sheen 1100ms ease forwards;
  opacity: 1;
}

.nyx-icon {
  grid-area: ico;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0a1129;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  box-shadow: 0 12px 28px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
  transform: translateZ(0);
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1), box-shadow 240ms ease;
}

.nyx-help-card:hover .nyx-icon {
  transform: rotate(-5deg) scale(1.04);
  box-shadow: 0 18px 40px rgba(118,161,255,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
}

.nyx-copy {
  grid-area: title / title / text / text;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.nyx-card-title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.nyx-card-text {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.65;
  color: #c6d4f5;
  text-wrap: balance;
}

.nyx-cta {
  grid-area: cta;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #0a1129;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  box-shadow: 0 12px 28px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1), box-shadow 240ms ease, background 240ms ease;
}

.nyx-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(118,161,255,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .nyx-help-card {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "ico title"
      "ico text"
      "ico cta";
    border-radius: 16px;
  }
  .nyx-cta {
    justify-self: start;
    margin-top: 4px;
  }
}

@keyframes nyx-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes nyx-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes nyx-orb {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}

@keyframes nyx-underline {
  0% { transform: translateX(-50%) scaleX(0); opacity: 0.5; }
  100% { transform: translateX(-50%) scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nyx-help-header,
  .nyx-help-card {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .nyx-help-card:hover::after { animation: none; }
}


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

.mk-pledge-chamber {
  position: relative;
  z-index: 0;
  padding: clamp(84px, 16vh, 180px) 0;
  background:
    radial-gradient(120% 140% at 12% 8%, rgba(27,48,109,0.68) 0%, rgba(14,26,64,0.58) 40%, rgba(9,16,41,0.78) 70%),
    linear-gradient(180deg, #0a1129 0%, #0b142f 60%, #0a1026 100%);
  color: #e9f1ff;
  overflow: hidden;
}

.mk-pledge-chamber::before {
  content: "";
  position: absolute;
  right: -16%;
  top: -22%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(124,165,255,0.26), rgba(124,165,255,0));
  filter: blur(6px);
  opacity: 0.85;
  pointer-events: none;
  animation: mk-orb 26s linear infinite;
}

.mk-pledge-chamber::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  pointer-events: none;
  opacity: 0.5;
}

.mk-pledge-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(22px, 3.2vw, 32px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .mk-pledge-layout {
    grid-template-columns: 1fr;
  }
}

.mk-pledge-head {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  max-width: 960px;
  opacity: 0;
  transform: translateY(16px);
  animation: mk-reveal 720ms cubic-bezier(0.22,1,0.36,1) 120ms forwards;
}

.mk-pledge-kicker {
  display: inline-block;
  width: fit-content;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9c9f4;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
}

.mk-pledge-title {
  margin: 0;
  font-size: clamp(26px, 5.4vw, 42px);
  line-height: 1.16;
  font-weight: 900;
  color: #f6f8ff;
  letter-spacing: 0.01em;
  position: relative;
}

.mk-pledge-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg, #6ea1ff 0%, #a7c3ff 100%);
  border-radius: 3px;
  transform: scaleX(0.6);
  transform-origin: left;
  animation: mk-underline 900ms ease 300ms forwards;
}

.mk-pledge-sub {
  margin: 8px 0 0;
  max-width: 70ch;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.75;
  color: #c6d4f5;
  text-wrap: balance;
}

.mk-pledge-manifest {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-areas:
    "glyph text"
    "glyph list";
  gap: 14px 16px;
  padding: clamp(20px, 2.6vw, 28px);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 40px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  color: #e7eeff;
  isolation: isolate;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: mk-reveal 720ms cubic-bezier(0.22,1,0.36,1) 220ms forwards;
  overflow: hidden;
}

.mk-pledge-manifest::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.mk-pledge-manifest:hover::after {
  animation: mk-sheen 1100ms ease forwards;
  opacity: 1;
}

.mk-pledge-glyph {
  grid-area: glyph;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0a1129;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  box-shadow: 0 12px 28px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
  transform: translateZ(0);
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1), box-shadow 240ms ease;
}

.mk-pledge-manifest:hover .mk-pledge-glyph {
  transform: rotate(-5deg) scale(1.04);
  box-shadow: 0 18px 40px rgba(118,161,255,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
}

.mk-pledge-text {
  grid-area: text;
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: #d6e2ff;
  text-wrap: pretty;
}

.mk-pledge-mark {
  font-weight: 900;
  color: #10224f;
  background: linear-gradient(180deg, rgba(230,240,255,0.85) 0%, rgba(156,194,255,0.85) 100%);
  padding: 2px 8px;
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 22px rgba(118,161,255,0.25);
  transition: transform 320ms cubic-bezier(0.22,1,0.36,1), box-shadow 320ms ease;
}

.mk-pledge-mark:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 14px 30px rgba(118,161,255,0.38);
}

.mk-pledge-points {
  grid-area: list;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mk-pledge-point {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #eef3ff;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  transform: translateY(10px);
  opacity: 0;
  animation: mk-reveal 680ms cubic-bezier(0.22,1,0.36,1) 320ms forwards;
}

.mk-pledge-point:nth-child(2){animation-delay:380ms}
.mk-pledge-point:nth-child(3){animation-delay:440ms}

.mk-ico {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #0a1129;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
}

.mk-pledge-seal {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 16px);
}

.mk-seal-orbit {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(110,161,255,0.3), rgba(167,195,255,0.3), rgba(110,161,255,0.3));
  animation: mk-spin 20s linear infinite;
  box-shadow: 0 12px 28px rgba(5,10,25,0.45);
}

.mk-seal-orbit::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}

.mk-seal-core {
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #dce7ff;
}

.mk-seal-title {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mk-seal-score {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

@media (max-width: 992px) {
  .mk-seal-orbit { width: 120px; height: 120px; }
  .mk-seal-core { inset: 18px; }
  .mk-seal-score { font-size: 20px; }
}

@media (max-width: 768px) {
  .mk-pledge-manifest { border-radius: 18px; }
}

@keyframes mk-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mk-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes mk-orb {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}

@keyframes mk-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes mk-underline {
  0% { transform: scaleX(0); opacity: 0.5; }
  100% { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .mk-pledge-head,
  .mk-pledge-manifest,
  .mk-pledge-point {
    animation: none;
    transform: none;
    opacity: 1;
  }
  .mk-pledge-manifest:hover::after { animation: none; }
  .mk-seal-orbit { animation: none; }
}



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




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

.qv-onboard-luxe {
  position: relative;
  z-index: 0;
  padding: clamp(88px, 16vh, 190px) 0;
  background:
    radial-gradient(120% 140% at 12% 8%, rgba(27,48,109,0.7) 0%, rgba(14,26,64,0.6) 40%, rgba(9,16,41,0.78) 70%),
    linear-gradient(180deg, #0a1129 0%, #0b142f 60%, #0a1026 100%);
  color: #e9f1ff;
  overflow: hidden;
}

.qv-onboard-luxe::before {
  content: "";
  position: absolute;
  right: -16%;
  top: -22%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(124,165,255,0.26), rgba(124,165,255,0));
  filter: blur(6px);
  opacity: 0.85;
  pointer-events: none;
  animation: qv-orb 26s linear infinite;
}

.qv-onboard-luxe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  pointer-events: none;
  opacity: 0.5;
}

.qv-onboard-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 36px);
  align-items: start;
}

@media (max-width: 1024px) {
  .qv-onboard-grid { grid-template-columns: 1fr; }
}

.qv-onboard-intro {
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  opacity: 0;
  transform: translateY(18px);
  animation: qv-reveal 720ms cubic-bezier(0.22,1,0.36,1) 120ms forwards;
}

.qv-headblock {
  display: grid;
  gap: 10px;
}

.qv-kicker {
  display: inline-block;
  width: fit-content;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9c9f4;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
}

.qv-display {
  margin: 0;
  font-size: clamp(28px, 5.6vw, 46px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0.01em;
  color: #f6f8ff;
  position: relative;
}

.qv-display::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 160px;
  height: 3px;
  background: linear-gradient(90deg, #6ea1ff 0%, #a7c3ff 100%);
  border-radius: 3px;
  transform: scaleX(0.6);
  transform-origin: left;
  animation: qv-underline 900ms ease 300ms forwards;
}

.qv-lead {
  margin: 0;
  max-width: 72ch;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.75;
  color: #c6d4f5;
  text-wrap: balance;
}

.qv-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.qv-contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  color: #e7eeff;
  box-shadow: 0 16px 38px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  animation: qv-reveal 700ms cubic-bezier(0.22,1,0.36,1) 220ms forwards;
  position: relative;
  overflow: hidden;
}

.qv-contact-item:nth-child(2){animation-delay:300ms}
.qv-contact-item:nth-child(3){animation-delay:380ms}

.qv-contact-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.qv-contact-item:hover::after {
  animation: qv-sheen 1100ms ease forwards;
  opacity: 1;
}

.qv-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #0a1129;
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  box-shadow: 0 10px 24px rgba(118,161,255,0.35), inset 0 1px 0 rgba(255,255,255,0.85);
  transition: transform 240ms cubic-bezier(0.22,1,0.36,1), box-shadow 240ms ease;
}

.qv-contact-item:hover .qv-ico {
  transform: rotate(-6deg) scale(1.05);
  box-shadow: 0 16px 34px rgba(118,161,255,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
}

.qv-contact-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
}

.qv-contact-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #d6e2ff;
}

.qv-link {
  color: #dbe7ff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(219,231,255,0.45);
  transition: color 220ms ease, border-color 220ms ease;
}

.qv-link:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}

.qv-compliance {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  color: #cfe0ff;
  box-shadow: 0 18px 40px rgba(5,10,25,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  animation: qv-reveal 720ms cubic-bezier(0.22,1,0.36,1) 420ms forwards;
}

.qv-compliance-title {
  margin: 0 0 6px 0;
  font-size: 15px;
  font-weight: 800;
  color: #f2f6ff;
}

.qv-compliance-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.qv-form-panel {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 52px rgba(5,10,25,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
  padding: clamp(22px, 3.2vw, 28px);
  color: #e7eeff;
  isolation: isolate;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  animation: qv-reveal 760ms cubic-bezier(0.22,1,0.36,1) 200ms forwards;
}

.qv-form-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.16) 55%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.qv-form-panel:hover::after {
  animation: qv-sheen 1100ms ease forwards;
  opacity: 1;
}

.qv-form-head {
  display: inline-grid;
  grid-auto-flow: column;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 13px;
  color: #dce7ff;
}

.join__form {
  display: grid;
  gap: clamp(14px, 2.4vw, 20px);
}

.qv-field {
  display: grid;
  gap: 8px;
}

.qv-label {
  font-size: 13px;
  font-weight: 600;
  color: #eef3ff;
}

.qv-input,
.qv-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: #0a1129;
  background: #ffffff;
  border: 1px solid rgba(110,161,255,0.35);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(2,6,23,0.06) inset;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 200ms ease;
}

.qv-input::placeholder,
.qv-textarea::placeholder { color: #6b7280; }

.qv-input:focus,
.qv-textarea:focus {
  outline: none;
  border-color: #6ea1ff;
  box-shadow: 0 0 0 4px rgba(110,161,255,0.2);
  transform: translateY(-1px);
}

.qv-textarea { min-height: 140px; resize: vertical; }

.qv-legal {
  margin: 2px 0 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #cfe0ff;
  text-align: center;
}

.qv-submit {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(135deg, #e6f0ff 0%, #9cc2ff 100%);
  color: #0a1129;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(118,161,255,0.45), inset 0 1px 0 rgba(255,255,255,0.9);
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1), box-shadow 220ms ease;
}

.qv-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(118,161,255,0.55), inset 0 1px 0 rgba(255,255,255,1);
}

@media (max-width: 768px) {
  .qv-display { font-size: clamp(26px, 7vw, 36px); }
  .qv-lead { text-align: center; }
  .qv-headblock { text-align: center; }
  .qv-form-panel { border-radius: 18px; }
}

@keyframes qv-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes qv-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes qv-orb {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}

@keyframes qv-underline {
  0% { transform: scaleX(0); opacity: 0.5; }
  100% { transform: scaleX(1); opacity: 1; }
}


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

.vx-footer-atrium {
  position: relative;
  z-index: 0;
  padding: clamp(72px, 14vh, 160px) 0;
  background:
    radial-gradient(120% 140% at 12% 8%, rgba(27,48,109,0.68) 0%, rgba(14,26,64,0.58) 40%, rgba(9,16,41,0.78) 70%),
    linear-gradient(180deg, #0a1129 0%, #0b142f 60%, #0a1026 100%);
  color: #e9f1ff;
  overflow: hidden;
}

.vx-footer-atrium::before {
  content: "";
  position: absolute;
  right: -16%;
  top: -22%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(124,165,255,0.26), rgba(124,165,255,0));
  filter: blur(6px);
  opacity: 0.85;
  pointer-events: none;
  animation: vx-orb 26s linear infinite;
}

.vx-footer-atrium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
  pointer-events: none;
  opacity: 0.5;
}

.vx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}

@media (max-width: 992px) {
  .vx-footer-grid { grid-template-columns: 1fr; }
}

.vx-legal-dossier {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 52px rgba(5,10,25,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
  padding: clamp(18px, 2.8vw, 26px);
  color: #dbe7ff;
  opacity: 0;
  transform: translateY(18px);
  animation: vx-reveal 760ms cubic-bezier(0.22,1,0.36,1) 120ms forwards;
  overflow: hidden;
  isolation: isolate;
}

.vx-legal-dossier::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.16) 55%, rgba(255,255,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.vx-legal-dossier:hover::after {
  animation: vx-sheen 1100ms ease forwards;
  opacity: 1;
}

.vx-legal-head {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}

.vx-pill {
  display: inline-block;
  width: fit-content;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b9c9f4;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
}

.vx-legal-title {
  margin: 0;
  font-size: clamp(20px, 3.2vw, 26px);
  line-height: 1.25;
  font-weight: 900;
  color: #f6f8ff;
  position: relative;
}

.vx-legal-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 140px;
  height: 3px;
  background: linear-gradient(90deg, #6ea1ff 0%, #a7c3ff 100%);
  border-radius: 3px;
  transform: scaleX(0.6);
  transform-origin: left;
  animation: vx-underline 900ms ease 300ms forwards;
}

.vx-legal-body p {
  margin: 12px 0 0 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.8;
  color: #c6d4f5;
  transition: color 280ms ease, transform 280ms ease;
}

.vx-legal-body p:hover {
  color: #eaf1ff;
  transform: translateY(-1px);
}

.vx-legal-body strong { color: #ffffff; font-weight: 900; }

.vx-legal-body a {
  color: #dbe7ff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(219,231,255,0.45);
  transition: color 220ms ease, border-color 220ms ease;
}

.vx-legal-body a:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}

.vx-quicklinks {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 22px 52px rgba(5,10,25,0.5), inset 0 1px 0 rgba(255,255,255,0.22);
  padding: clamp(16px, 2.4vw, 22px);
  color: #e7eeff;
  opacity: 0;
  transform: translateY(18px);
  animation: vx-reveal 760ms cubic-bezier(0.22,1,0.36,1) 200ms forwards;
  overflow: hidden;
}

.vx-links-title {
  margin: 0 0 10px 0;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #cfe0ff;
}

.vx-links {
  display: grid;
  gap: 10px;
}

.vx-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.5;
  background-image: linear-gradient(#a7c3ff, #a7c3ff);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size 240ms ease, transform 240ms ease, color 240ms ease;
}

.vx-link:hover {
  color: #dbe7ff;
  background-size: 100% 2px;
  transform: translateY(-1px);
}

.vx-bottom-bar {
  display: grid;
  place-items: center;
  margin-top: clamp(22px, 3.4vw, 32px);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
  opacity: 0;
  transform: translateY(18px);
  animation: vx-reveal 760ms cubic-bezier(0.22,1,0.36,1) 320ms forwards;
}

.vx-copy {
  margin: 0;
  font-size: 13.5px;
  color: #cfe0ff;
  text-align: center;
}

@media (max-width: 768px) {
  .vx-legal-title { font-size: clamp(18px, 5.4vw, 22px); }
  .vx-quicklinks, .vx-legal-dossier { border-radius: 18px; }
}

@keyframes vx-reveal {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes vx-sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes vx-orb {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}

@keyframes vx-underline {
  0% { transform: scaleX(0); opacity: 0.5; }
  100% { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .vx-legal-dossier,
  .vx-quicklinks,
  .vx-bottom-bar {
    animation: none;
    transform: none;
    opacity: 1;
  }
}


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