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

.helios-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(10px, 2vw, 20px) 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transform: translateZ(0);
  transition: transform 0.3s ease;
}

.brand-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
}

.brand-link:hover {
  transform: translateY(-1px);
}

.brand-badge {
  height: clamp(28px, 4.2vw, 44px);
  width: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.06);
  background-color: #ffffff;
}

.brand-wordmark {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f172a;
}

.primary-nav {
  justify-self: center;
}

.nav-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(18px, 3vw, 40px);
}

@media (min-width: 1025px) {
  .nav-list {
    display: inline-flex;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  text-decoration: none;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 600;
  color: #0f172a;
  padding: 8px 2px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  background-image: linear-gradient(#2563eb, #2563eb);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0% 100%;
}

.nav-link:hover {
  color: #111827;
  background-size: 100% 2px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  width: 34px;
  height: 26px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.burger::before,
.burger::after,
.burger span {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #0f172a;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease, bottom 0.35s ease;
}

.burger span {
  margin: 6px 0;
}

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

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

.burger.is-open span {
  opacity: 0;
}

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

.elite-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

.mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(100%, 720px);
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.12);
  transform: translateY(-20px);
  transition: transform 0.4s ease;
}

.elite-mobile-menu.is-open .mobile-panel {
  transform: translateY(0);
}

.mobile-list {
  list-style: none;
  margin: 0;
  padding: clamp(20px, 4vw, 36px);
  display: grid;
  gap: clamp(14px, 3vw, 20px);
}

.mobile-item {
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mobile-item:active {
  transform: scale(0.98);
  box-shadow: 0 6px 14px rgba(2, 6, 23, 0.08);
}

.mobile-nav-connection {
  display: block;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  font-size: clamp(18px, 5vw, 22px);
  padding: clamp(12px, 3.6vw, 18px) clamp(14px, 4vw, 22px);
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  .nav-grid {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .brand-badge {
    height: 34px;
  }
}


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

.luxe-hero-plate {
  position: relative;
  padding: clamp(72px, 14vh, 160px) 0;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 55%, #eef2ff 100%);
  overflow: hidden;
}

.luxe-hero-plate::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 70%;
  background: radial-gradient(60% 60% at 20% 20%, rgba(37, 99, 235, 0.10) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
  filter: blur(4px);
}

.luxe-hero-plate::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  background: conic-gradient(from 180deg at 50% 50%, rgba(2, 6, 23, 0.06), rgba(59, 130, 246, 0.10), rgba(2, 6, 23, 0.06));
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(20px);
  animation: haloSpin 18s linear infinite;
}

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

@media (min-width: 1024px) {
  .meridian-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.veritas-copy-stack {
  display: grid;
  gap: clamp(16px, 2.4vw, 24px);
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.orion-headline {
  margin: 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #0f172a;
  position: relative;
}

.orion-headline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 4px;
  width: 72px;
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
  border-radius: 4px;
  transform-origin: left;
  transform: scaleX(0.6);
  animation: underlinePop 1s ease forwards 0.4s;
}

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

.cta-royal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(12px, 1.6vw, 16px) clamp(22px, 3vw, 28px);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-royal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at -10% -10%, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 45%);
  opacity: 0.0;
  transition: opacity 0.25s ease;
}

.cta-royal::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: none;
}

.cta-royal:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.32);
}

.cta-royal:hover::before {
  opacity: 1;
}

.cta-royal:hover::after {
  animation: sweep 1s ease;
}

.atlas-media-frame {
  margin: 0;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.08);
  padding: clamp(10px, 1.8vw, 16px);
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.atlas-media-frame::before {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  background: radial-gradient(closest-side, rgba(14, 165, 233, 0.18), rgba(14, 165, 233, 0));
  border-radius: 50%;
  z-index: -1;
}

.atlas-media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease, box-shadow 0.3s ease;
}

.atlas-media-frame:hover .atlas-media {
  transform: perspective(1200px) rotateX(1.5deg) rotateY(-3deg) translateY(-2px);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.12);
  filter: saturate(1.02) brightness(1.02);
}

@media (max-width: 768px) {
  .orion-headline {
    font-size: clamp(28px, 8vw, 40px);
  }
  .atlas-media-frame {
    padding: 10px;
    border-radius: 16px;
  }
  .atlas-media {
    border-radius: 12px;
  }
}

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

@keyframes sweep {
  0% {
    left: -40%;
  }
  100% {
    left: 140%;
  }
}

@keyframes haloSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes underlinePop {
  0% { transform: scaleX(0); opacity: 0.6; }
  100% { transform: scaleX(1); opacity: 1; }
}



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

.aurelius-stats-band {
  position: relative;
  padding: clamp(24px, 7vh, 56px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 60%, #eef2ff 100%);
  overflow: hidden;
}

.aurelius-stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 22px 22px, 22px 22px;
  pointer-events: none;
}

.aurelius-stats-band::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(closest-side, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0));
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
  animation: auroraDrift 20s linear infinite;
}

.quant-microgrid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.6vw, 14px);
  align-items: center;
  justify-content: center;
}

.datum-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.06);
  white-space: nowrap;
  width: auto;
  max-width: none;
  transform: translateY(8px) scale(0.92);
  opacity: 0;
  animation: chipRise 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.datum-chip:nth-child(1){animation-delay:.05s}
.datum-chip:nth-child(2){animation-delay:.15s}
.datum-chip:nth-child(3){animation-delay:.25s}
.datum-chip:nth-child(4){animation-delay:.35s}

.datum-chip::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  padding: 1px;
  background: linear-gradient(90deg, rgba(29,78,216,0.35), rgba(14,165,233,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
}

.datum-chip:hover::before { opacity: 1; }

.datum-chip:hover {
  transform: translateY(-2px) scale(0.94);
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.10);
}

.datum-value {
  margin: 0;
  font-size: clamp(14px, 2.8vw, 16px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #1e3a8a;
}

.datum-label {
  margin: 0;
  font-size: clamp(12px, 2.4vw, 14px);
  line-height: 1;
  color: #334155;
}

@media (max-width: 640px) {
  .datum-chip { padding: 7px 10px; gap: 6px; }
  .datum-value { font-size: 14px; }
  .datum-label { font-size: 12px; }
}

@keyframes chipRise {
  to { opacity: 1; transform: translateY(0) scale(0.92); }
}

@keyframes auroraDrift {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


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


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

.clarion-about-plate {
  position: relative;
  padding: clamp(72px, 14vh, 140px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 60%, #eef2ff 100%);
  overflow: hidden;
}

.clarion-about-plate::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(30% 30% at 15% 10%, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0) 70%),
    radial-gradient(24% 24% at 85% 12%, rgba(14,165,233,0.10) 0%, rgba(14,165,233,0) 70%),
    linear-gradient(to right, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: auto, auto, 22px 22px;
  background-repeat: no-repeat, no-repeat, repeat;
  pointer-events: none;
}

.clarion-viewport {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: clamp(24px, 4vw, 36px);
  transform: translateY(18px);
  opacity: 0;
  animation: clarionFadeUp .8s cubic-bezier(0.22,1,0.36,1) .1s forwards;
}

.clarion-lead {
  text-align: left;
}

.clarion-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: linear-gradient(90deg, #e0e7ff 0%, #e0f2fe 100%);
  padding: 6px 10px;
  border-radius: 999px;
}

.clarion-title {
  margin: 12px 0 0 0;
  font-size: clamp(28px, 5.6vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  position: relative;
}

.clarion-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin-top: 14px;
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
  border-radius: 4px;
  transform: scaleX(.6);
  transform-origin: left;
  animation: clarionUnderline .9s ease .35s forwards;
}

.clarion-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 28px);
}

@media (min-width: 992px) {
  .clarion-split {
    grid-template-columns: 1.2fr .8fr;
    align-items: start;
  }
  .clarion-split::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: calc(60% - .5px);
    width: 1px;
    background: linear-gradient(180deg, rgba(15,23,42,0), rgba(37,99,235,0.2), rgba(15,23,42,0));
  }
}

.clarion-copy p {
  margin: 0;
  font-size: clamp(16px, 2.1vw, 18px);
  line-height: 1.8;
  color: #334155;
  text-wrap: pretty;
}

.brand-sigil {
  font-style: normal;
  font-weight: 800;
  color: #1e3a8a;
  background: linear-gradient(180deg, rgba(37,99,235,0.12) 0%, rgba(14,165,233,0.12) 100%);
  padding: 2px 8px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(15,23,42,0.06) inset;
  transition: box-shadow .35s ease, transform .35s ease;
}

.brand-sigil:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.35) inset, 0 6px 16px rgba(2,6,23,0.08);
}

.clarion-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.highlight-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
  transform: translateY(12px);
  opacity: 0;
  animation: clarionFadeUp .7s cubic-bezier(0.22,1,0.36,1) .25s forwards;
}

.highlight-item:nth-child(2) { animation-delay: .38s; }
.highlight-item:nth-child(3) { animation-delay: .51s; }

.highlight-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  background: radial-gradient(circle at 35% 35%, #e0e7ff 0%, #e0f2fe 60%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.06);
  transition: transform .4s cubic-bezier(0.22,1,0.36,1), color .4s ease;
}

.highlight-item:hover .highlight-ico {
  transform: rotate(-6deg) scale(1.03);
  color: #2563eb;
}

.highlight-text {
  font-size: 14px;
  line-height: 1.5;
  color: #0f172a;
}

@media (max-width: 768px) {
  .clarion-lead { text-align: center; }
  .clarion-title { font-size: clamp(26px, 7vw, 36px); }
  .clarion-split::before { display: none; }
}

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

@keyframes clarionUnderline {
  to { transform: scaleX(1); }
}


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





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

.lumina-suite {
  position: relative;
  padding: clamp(70px, 12vh, 140px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #eef2ff 100%);
  overflow: hidden;
}

.lumina-suite::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(30% 30% at 20% 10%, rgba(37, 99, 235, 0.10) 0%, rgba(37, 99, 235, 0) 70%),
    radial-gradient(28% 28% at 85% 15%, rgba(14, 165, 233, 0.10) 0%, rgba(14, 165, 233, 0) 70%);
  pointer-events: none;
}

.lumina-head {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 56px);
  transform: translateY(18px);
  opacity: 0;
  animation: luminaFadeUp .8s cubic-bezier(0.22,1,0.36,1) .1s forwards;
}

.lumina-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: linear-gradient(90deg, #e0e7ff 0%, #e0f2fe 100%);
  padding: 6px 10px;
  border-radius: 999px;
}

.lumina-title {
  margin: 14px 0 0 0;
  font-size: clamp(28px, 5.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  position: relative;
}

.lumina-title::after {
  content: "";
  display: block;
  margin: 14px auto 0;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
  border-radius: 4px;
  transform: scaleX(.6);
  animation: titleGrow .9s ease .35s forwards;
}

.lumina-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(18px, 3.2vw, 28px);
}

.suite-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 24px);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(2,6,23,0.06);
  transform: translateY(18px);
  opacity: 0;
  animation: luminaFadeUp .8s cubic-bezier(0.22,1,0.36,1) .2s forwards;
  overflow: hidden;
}

.suite-card:nth-child(2) { animation-delay: .35s; }
.suite-card:nth-child(3) { animation-delay: .5s; }

.suite-card::before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
  transform: translateX(-20%) scaleX(.4);
  transition: transform .5s ease;
}

.suite-card::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -20%;
  width: 160px;
  height: 160px;
  background: radial-gradient(closest-side, rgba(37,99,235,.12), rgba(37,99,235,0));
  border-radius: 50%;
  filter: blur(8px);
}

.suite-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(2,6,23,0.10);
  border-color: rgba(37, 99, 235, 0.18);
}

.suite-card:hover::before {
  transform: translateX(0) scaleX(1);
}

.suite-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e0e7ff 0%, #e0f2fe 60%, #ffffff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06), 0 8px 18px rgba(2,6,23,.06);
  transition: transform .45s cubic-bezier(0.22,1,0.36,1), color .45s ease, box-shadow .45s ease;
}

.suite-card:hover .suite-ico {
  transform: rotate(-6deg) scale(1.03);
  color: #2563eb;
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.25), 0 14px 28px rgba(2,6,23,.10);
}

.suite-ico svg {
  width: 28px;
  height: 28px;
  display: block;
}

.suite-copy {
  display: grid;
  gap: 6px;
}

.suite-title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.25;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: .01em;
}

.suite-text {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.65;
  color: #334155;
  max-width: 48ch;
}

@media (max-width: 768px) {
  .suite-card {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }
  .suite-ico {
    width: 50px;
    height: 50px;
  }
}

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

@keyframes titleGrow {
  to { transform: scaleX(1); }
}


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

.solstice-help-suite {
  position: relative;
  padding: clamp(72px, 14vh, 150px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 60%, #eef2ff 100%);
  overflow: hidden;
}

.solstice-help-suite::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(30% 30% at 12% 8%, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0) 70%),
    radial-gradient(26% 26% at 88% 12%, rgba(14,165,233,0.10) 0%, rgba(14,165,233,0) 70%),
    linear-gradient(to right, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
  background-repeat: no-repeat, no-repeat, repeat;
  pointer-events: none;
}

.solstice-headline {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 56px);
  transform: translateY(18px);
  opacity: 0;
  animation: solFadeUp .8s cubic-bezier(0.22,1,0.36,1) .1s forwards;
}

.solstice-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: linear-gradient(90deg, #e0e7ff 0%, #e0f2fe 100%);
  padding: 6px 10px;
  border-radius: 999px;
}

.solstice-title {
  margin: 12px 0 0 0;
  font-size: clamp(28px, 5.6vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  position: relative;
}

.solstice-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
  border-radius: 4px;
  transform: scaleX(.6);
  animation: solUnderline .9s ease .35s forwards;
}

.solstice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 28px);
}

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

.provision-tile {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  grid-template-areas:
    "icon title cta"
    "icon text  cta";
  align-items: center;
  gap: 14px 16px;
  padding: clamp(18px, 2.6vw, 26px);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 28px rgba(2,6,23,0.06);
  overflow: hidden;
  transform: translateY(18px);
  opacity: 0;
  animation: solFadeUp .8s cubic-bezier(0.22,1,0.36,1) .2s forwards;
}

.provision-tile:nth-child(2) { animation-delay: .35s; }
.provision-tile:nth-child(3) { animation-delay: .5s; }
.provision-tile:nth-child(4) { animation-delay: .65s; }

.provision-tile::before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
  transform: translateX(-20%) scaleX(.4);
  transition: transform .5s ease;
}

.provision-tile::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: 180px;
  height: 180px;
  background: radial-gradient(closest-side, rgba(37,99,235,.12), rgba(37,99,235,0));
  border-radius: 50%;
  filter: blur(8px);
}

.provision-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(2,6,23,0.10);
  border-color: rgba(37,99,235,0.18);
}

.provision-tile:hover::before {
  transform: translateX(0) scaleX(1);
}

.tile-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e0e7ff 0%, #e0f2fe 60%, #ffffff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06), 0 10px 22px rgba(2,6,23,.06);
  transition: transform .45s cubic-bezier(0.22,1,0.36,1), color .45s ease, box-shadow .45s ease;
}

.provision-tile:hover .tile-icon {
  transform: rotate(-6deg) scale(1.03);
  color: #2563eb;
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.25), 0 16px 30px rgba(2,6,23,.10);
}

.tile-copy {
  grid-area: title / title / text / text;
  display: grid;
  gap: 6px;
}

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

.tile-text {
  margin: 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.65;
  color: #334155;
}

.tile-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: #0f172a;
  background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
  box-shadow: 0 8px 20px rgba(2,6,23,0.06);
  border: 1px solid rgba(15,23,42,0.08);
  transition: transform .35s ease, box-shadow .35s ease, color .35s ease, border-color .35s ease, background .35s ease;
}

.tile-cta:hover {
  transform: translateY(-2px);
  color: #0b1020;
  border-color: rgba(37,99,235,0.25);
  background: linear-gradient(180deg, #ffffff 0%, #e7efff 100%);
  box-shadow: 0 12px 26px rgba(2,6,23,0.10);
}

.tile-cta svg {
  transition: transform .35s ease;
}

.tile-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .provision-tile {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "icon title"
      "icon text"
      "icon cta";
  }
  .tile-cta {
    justify-self: start;
    margin-top: 4px;
  }
}

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

@keyframes solUnderline {
  to { transform: scaleX(1); }
}

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

.verity-pledge-section {
  position: relative;
  padding: clamp(72px, 14vh, 140px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 60%, #eef2ff 100%);
  overflow: hidden;
}

.verity-pledge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(28% 28% at 15% 10%, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0) 70%),
    radial-gradient(24% 24% at 85% 12%, rgba(14,165,233,0.10) 0%, rgba(14,165,233,0) 70%),
    linear-gradient(to right, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
  background-repeat: no-repeat, no-repeat, repeat;
  pointer-events: none;
}

.verity-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(20px, 3vw, 28px);
  align-items: start;
}

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

.verity-head {
  grid-column: 1 / -1;
  text-align: left;
  transform: translateY(18px);
  opacity: 0;
  animation: verityFadeUp .8s cubic-bezier(0.22,1,0.36,1) .1s forwards;
}

.verity-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: linear-gradient(90deg, #e0e7ff 0%, #e0f2fe 100%);
  padding: 6px 10px;
  border-radius: 999px;
}

.verity-title {
  margin: 12px 0 0 0;
  font-size: clamp(28px, 5.6vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: #0f172a;
  position: relative;
}

.verity-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin-top: 14px;
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
  border-radius: 4px;
  transform: scaleX(.6);
  transform-origin: left;
  animation: verityUnderline .9s ease .35s forwards;
}

.verity-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(2,6,23,0.06);
  padding: clamp(22px, 3vw, 28px);
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-areas:
    "icon text"
    "icon list";
  gap: 14px 16px;
  transform: translateY(18px);
  opacity: 0;
  animation: verityFadeUp .8s cubic-bezier(0.22,1,0.36,1) .25s forwards;
  overflow: hidden;
}

.verity-card::before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
  transform: translateX(-20%) scaleX(.4);
  transition: transform .5s ease;
}

.verity-card:hover::before {
  transform: translateX(0) scaleX(1);
}

.verity-icon {
  grid-area: icon;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e0e7ff 0%, #e0f2fe 60%, #ffffff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06), 0 12px 26px rgba(2,6,23,.06);
  transition: transform .45s cubic-bezier(0.22,1,0.36,1), color .45s ease, box-shadow .45s ease;
}

.verity-card:hover .verity-icon {
  transform: rotate(-6deg) scale(1.03);
  color: #2563eb;
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.25), 0 18px 34px rgba(2,6,23,.10);
}

.verity-text {
  grid-area: text;
  margin: 0;
  font-size: clamp(16px, 2.1vw, 18px);
  line-height: 1.8;
  color: #334155;
}

.verity-mark {
  font-style: normal;
  font-weight: 800;
  color: #1e3a8a;
  background: linear-gradient(180deg, rgba(37,99,235,0.12) 0%, rgba(14,165,233,0.12) 100%);
  padding: 2px 8px;
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(15,23,42,0.06) inset;
  transition: box-shadow .35s ease, transform .35s ease;
}

.verity-mark:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.35) inset, 0 6px 16px rgba(2,6,23,0.08);
}

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

.verity-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #0f172a;
}

.verity-point svg { display: block; }

.verity-badge {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 16px);
}

.badge-ring {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(29,78,216,.25), rgba(14,165,233,.25), rgba(29,78,216,.25));
  display: grid;
  place-items: center;
  animation: veritySpin 18s linear infinite;
  box-shadow: 0 8px 24px rgba(2,6,23,.06);
}

.badge-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
  border: 1px solid rgba(15,23,42,0.08);
}

.badge-title,
.badge-sub {
  position: relative;
  z-index: 1;
  text-align: center;
}

.badge-title {
  display: block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1e3a8a;
}

.badge-sub {
  display: block;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}

@media (max-width: 992px) {
  .verity-badge {
    order: 3;
    padding-top: 6px;
  }
  .badge-ring {
    width: 120px;
    height: 120px;
  }
  .badge-sub { font-size: 20px; }
}

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

@keyframes verityUnderline {
  to { transform: scaleX(1); }
}

@keyframes veritySpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


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




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

.executive-onboard-deck {
  position: relative;
  padding: clamp(76px, 14vh, 160px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 60%, #eef2ff 100%);
  overflow: hidden;
}

.executive-onboard-deck::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(28% 28% at 15% 10%, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0) 70%),
    radial-gradient(22% 22% at 85% 12%, rgba(14,165,233,0.10) 0%, rgba(14,165,233,0) 70%),
    linear-gradient(to right, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
  background-repeat: no-repeat, no-repeat, repeat;
  pointer-events: none;
}

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

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

.executive-intro {
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  transform: translateY(18px);
  opacity: 0;
  animation: elevateIn .8s cubic-bezier(0.22,1,0.36,1) .1s forwards;
}

.executive-head { display: grid; gap: 10px; }

.head-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: linear-gradient(90deg, #e0e7ff 0%, #e0f2fe 100%);
  padding: 6px 10px;
  border-radius: 999px;
}

.head-title {
  margin: 0;
  font-size: clamp(28px, 5.6vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  position: relative;
}

.head-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 4px;
  margin-top: 12px;
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
  border-radius: 4px;
  transform: scaleX(.6);
  transform-origin: left;
  animation: underlineGrow .9s ease .35s forwards;
}

.head-lead {
  margin: 0;
  font-size: clamp(16px, 2.1vw, 18px);
  line-height: 1.75;
  color: #334155;
}

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

.chip {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 22px rgba(2,6,23,0.06);
  transform: translateY(12px);
  opacity: 0;
  animation: elevateIn .7s cubic-bezier(0.22,1,0.36,1) .25s forwards;
}

.chip:nth-child(2){animation-delay:.38s}
.chip:nth-child(3){animation-delay:.51s}

.chip-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  background: radial-gradient(circle at 35% 35%, #e0e7ff 0%, #e0f2fe 60%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px rgba(15,23,42,0.06);
  transition: transform .4s cubic-bezier(0.22,1,0.36,1), color .4s ease;
}

.chip:hover .chip-ico {
  transform: rotate(-6deg) scale(1.05);
  color: #2563eb;
}

.chip-copy { display: grid; gap: 4px; }

.chip-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.chip-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #334155;
}

.chip-link {
  color: #1e3a8a;
  text-decoration: none;
  border-bottom: 1px dashed rgba(30, 58, 138, 0.35);
  transition: color .3s ease, border-color .3s ease;
}

.chip-link:hover {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.6);
}

.compliance-deck {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 28px rgba(2,6,23,0.06);
  transform: translateY(16px);
  opacity: 0;
  animation: elevateIn .7s cubic-bezier(0.22,1,0.36,1) .62s forwards;
}

.deck-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.deck-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #334155;
}

.deck-link {
  color: #1e3a8a;
  text-decoration: none;
  border-bottom: 1px dashed rgba(30, 58, 138, 0.35);
  transition: color .3s ease, border-color .3s ease;
}

.deck-link:hover {
  color: #2563eb;
  border-color: rgba(37, 99, 235, 0.6);
}

.executive-form-wrap {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
  padding: clamp(22px, 3.2vw, 28px);
  transform: translateY(18px);
  opacity: 0;
  animation: elevateIn .8s cubic-bezier(0.22,1,0.36,1) .2s forwards;
  overflow: hidden;
}

.executive-form-wrap::before {
  content: "";
  position: absolute;
  left: -30%;
  top: 0;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
  transform: translateX(-20%) scaleX(.4);
  transition: transform .5s ease;
}

.executive-form-wrap:hover::before {
  transform: translateX(0) scaleX(1);
}

.join__form {
  display: grid;
  gap: clamp(16px, 2.6vw, 22px);
}

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

.field-label {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(2,6,23,0.04) inset;
  transition: border-color .3s ease, box-shadow .3s ease, transform .25s ease;
}

.field-input::placeholder,
.field-textarea::placeholder { color: #64748b; }

.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
  transform: translateY(-1px);
}

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

.form-legal {
  margin: 4px 0 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  text-align: center;
}

.legal-link {
  color: #1e3a8a;
  text-decoration: none;
  border-bottom: 1px dashed rgba(30,58,138,0.35);
  transition: color .3s ease, border-color .3s ease;
}

.legal-link:hover {
  color: #2563eb;
  border-color: rgba(37,99,235,0.6);
}

.submit-cta {
  justify-self: center;
  margin-top: 2px;
  padding: 12px 22px;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 14px;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(37,99,235,0.22);
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}

.submit-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(37,99,235,0.28);
  filter: brightness(1.03);
}

@media (max-width: 768px) {
  .head-title { font-size: clamp(26px, 7vw, 36px); text-align: center; }
  .head-lead { text-align: center; }
  .executive-form-wrap { padding: 20px; }
}

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

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}


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

.orion-footer-wrap {
  position: relative;
  padding: clamp(60px, 12vh, 120px) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 60%, #eef2ff 100%);
  overflow: hidden;
}

.orion-footer-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(28% 28% at 15% 10%, rgba(37,99,235,0.12) 0%, rgba(37,99,235,0) 70%),
    radial-gradient(22% 22% at 85% 12%, rgba(14,165,233,0.10) 0%, rgba(14,165,233,0) 70%),
    linear-gradient(to right, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
  background-repeat: no-repeat, no-repeat, repeat;
  pointer-events: none;
}

.orion-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr;
  gap: clamp(20px, 3.6vw, 36px);
  align-items: start;
}

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

.orion-legal-card {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 16px 36px rgba(2,6,23,0.06);
  padding: clamp(18px, 2.8vw, 26px);
  transform: translateY(18px);
  opacity: 0;
  animation: orionFadeUp .8s cubic-bezier(0.22,1,0.36,1) .1s forwards;
  overflow: hidden;
}

.orion-legal-card::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: 220px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(37,99,235,.12), rgba(37,99,235,0));
  border-radius: 50%;
  filter: blur(8px);
}

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

.orion-pill {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: linear-gradient(90deg, #e0e7ff 0%, #e0f2fe 100%);
  padding: 6px 10px;
  border-radius: 999px;
}

.orion-legal-title {
  margin: 0;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  position: relative;
}

.orion-legal-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin-top: 10px;
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
  border-radius: 4px;
  transform: scaleX(.6);
  transform-origin: left;
  animation: orionUnderline .9s ease .35s forwards;
}

.orion-legal-text p {
  margin: 10px 0 0 0;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.8;
  color: #334155;
  transition: color .35s ease, transform .35s ease;
}

.orion-legal-text p:hover {
  color: #0f172a;
  transform: translateY(-2px);
}

.orion-legal-text p strong {
  color: #0f172a;
  font-weight: 800;
}

.orion-legal-text a {
  color: #1e3a8a;
  text-decoration: none;
  border-bottom: 1px dashed rgba(30,58,138,0.35);
  transition: color .3s ease, border-color .3s ease;
}

.orion-legal-text a:hover {
  color: #2563eb;
  border-color: rgba(37,99,235,0.6);
}

.orion-quicklinks {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 14px 32px rgba(2,6,23,0.06);
  padding: clamp(16px, 2.4vw, 22px);
  transform: translateY(18px);
  opacity: 0;
  animation: orionFadeUp .8s cubic-bezier(0.22,1,0.36,1) .2s forwards;
}

.orion-links-title {
  margin: 0 0 8px 0;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1e3a8a;
}

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

.orion-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  line-height: 1.5;
  background-image: linear-gradient(#1d4ed8, #1d4ed8);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size .3s ease, color .3s ease, transform .3s ease;
}

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

.orion-bottom-bar {
  display: grid;
  place-items: center;
  margin-top: clamp(22px, 3vw, 28px);
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,0.08);
  transform: translateY(18px);
  opacity: 0;
  animation: orionFadeUp .8s cubic-bezier(0.22,1,0.36,1) .35s forwards;
}

.orion-copy {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

@media (max-width: 768px) {
  .orion-legal-title { font-size: clamp(18px, 5.4vw, 22px); }
  .orion-copy { text-align: center; }
}

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

@keyframes orionUnderline {
  to { transform: scaleX(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;
}