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

.prestige-banner {
  background: linear-gradient(to right, #0f172a, #1e293b);
  padding: clamp(12px, 2.8vw, 18px) 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.prestige-banner:hover {
  background: linear-gradient(to right, #1e293b, #0f172a);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.elite-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(25px, 5vw, 45px);
  animation: elegantFadeIn 1.2s ease-in-out forwards;
}

.brand-identity-anchor {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.brand-identity-anchor:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.symbol-graphic {
  height: clamp(45px, 5.5vw, 55px);
  width: auto;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.brand-identity-anchor:hover .symbol-graphic {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  transform: rotate(5deg);
}

.enterprise-title {
  color: #e2e8f0;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

.brand-identity-anchor:hover .enterprise-title {
  color: #93c5fd;
  text-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.nav-activator {
  display: none;
}

@media screen and (max-width: 1200px) {
  .nav-activator {
    display: flex;
    align-items: center;
  }
}

.principal-routing .routing-catalog {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1200px) {
  .principal-routing .routing-catalog {
    display: flex;
    align-items: center;
    gap: clamp(30px, 4vw, 40px);
  }
}

.routing-component {
  position: relative;
  overflow: hidden;
}

.routing-connector {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(16px, 1.9vw, 19px);
  padding: 8px 12px;
  transition: color 0.4s ease, background 0.4s ease;
  position: relative;
  border-radius: 4px;
}

.routing-connector::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(59, 130, 246, 0.1);
  transition: left 0.4s ease;
  z-index: -1;
}

.routing-connector:hover {
  color: #93c5fd;
}

.routing-connector:hover::before {
  left: 0;
}

.burger {
  width: 32px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.burger:hover {
  opacity: 0.8;
}

.burger::before,
.burger::after,
.burger span {
  width: 100%;
  height: 3px;
  background: #cbd5e1;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.burger.is-open::before {
  transform: rotate(135deg) translate(0, 0);
}

.burger.is-open::after {
  transform: rotate(-135deg) translate(0, 0);
}

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

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

.elite-mobile-menu {
  display: none;
  position: fixed;
  top: clamp(60px, 8vw, 80px);
  left: 0;
  width: 100%;
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
  z-index: 99;
}

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

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

.portable-routing-component {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
  max-width: 300px;
}

.elite-mobile-menu.is-open .portable-routing-component {
  opacity: 1;
  transform: scale(1);
}

.elite-mobile-menu.is-open .portable-routing-component:nth-child(1) {
  transition-delay: 0.15s;
}

.elite-mobile-menu.is-open .portable-routing-component:nth-child(2) {
  transition-delay: 0.3s;
}

.elite-mobile-menu.is-open .portable-routing-component:nth-child(3) {
  transition-delay: 0.45s;
}

.mobile-nav-connection {
  color: #cbd5e1;
  text-decoration: none;
  font-size: clamp(22px, 4.5vw, 26px);
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  transition: background 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
  display: block;
  text-align: center;
}

.mobile-nav-connection:hover {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

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

@media (max-width: 768px) {
  .elite-nav-wrapper {
    gap: 15px;
  }
  .symbol-graphic {
    height: 45px;
  }
  .enterprise-title {
    font-size: 20px;
  }
  .mobile-nav-connection {
    font-size: 22px;
  }
}

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

/* ===== Hero — Executive / Premium Look ===== */
.summit-forefront {
  background: linear-gradient(to bottom, #0f172a, #1e40af);
  color: #f1f5f9;
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.zenith-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zenith-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.2;
  transform: translateZ(0);
}

.zenith-glow-alpha {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 40% 40%, #60a5fa 0%, transparent 70%);
  top: -150px;
  left: -200px;
  animation: driftGlow 20s ease-in-out infinite;
}

.zenith-glow-beta {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 60% 60%, #3b82f6 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  animation: driftGlow 24s ease-in-out infinite reverse;
}

.apex-framework {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .apex-framework {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(48px, 7vw, 96px);
  }
}

.discourse-segment {
  order: 2;
}

.imagery-realm {
  order: 1;
}

@media (min-width: 992px) {
  .discourse-segment {
    order: 1;
  }
  .imagery-realm {
    order: 2;
  }
}

.intro-descriptor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 9999px;
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(96, 165, 250, 0.3);
  animation: fadeInUp 1s ease-out forwards;
}

.paramount-declaration {
  margin: 16px 0;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.02em;
  animation: fadeInUp 1.2s ease-out forwards;
}

.signature-emphasis {
  background: linear-gradient(90deg, #60a5fa 0%, #93c5fd 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.narrative-synopsis {
  margin: 12px 0 28px;
  color: #94a3b8;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  max-width: 65ch;
  animation: fadeInUp 1.4s ease-out forwards;
}

.engagement-hub {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease-out forwards;
}

.core-initiative {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(180deg, #93c5fd, #60a5fa) padding-box,
              linear-gradient(90deg, #fff, rgba(255,255,255,0)) border-box;
  border: 1px solid transparent;
  border-radius: 14px;
  box-shadow: 0 12px 20px -8px rgba(96, 165, 250, 0.5),
              inset 0 -1px 0 rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-initiative::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0) 80%);
  transform: translateX(-150%);
  transition: transform 0.7s ease;
}

.core-initiative:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -12px rgba(96, 165, 250, 0.6),
              inset 0 -1px 0 rgba(0,0,0,0.2);
}

.core-initiative:hover::before {
  transform: translateX(150%);
}

.core-initiative:active {
  transform: translateY(0);
}

.auxiliary-probe {
  color: #f1f5f9;
  opacity: 0.75;
  text-decoration: none;
  border-bottom: 1px dotted rgba(241,245,249,0.4);
  padding-bottom: 3px;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}

.auxiliary-probe:hover {
  opacity: 1;
  border-color: #f1f5f9;
}

.integrity-spectrum {
  display: flex;
  gap: 20px 32px;
  flex-wrap: wrap;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: #94a3b8;
  font-size: clamp(14px, 1.5vw, 16px);
  animation: fadeInUp 1.8s ease-out forwards;
}

.integrity-spectrum li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s ease, background 0.3s ease;
}

.integrity-spectrum li:hover {
  transform: scale(1.05);
  background: rgba(96, 165, 250, 0.1);
}

.panoramic-exhibit {
  position: relative;
  border-radius: 20px;
  padding: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)) padding-box,
              conic-gradient(from 180deg, rgba(96,165,250,0.9), rgba(96,165,250,0) 25%, rgba(59,130,246,0.7) 50%, rgba(96,165,250,0) 75%, rgba(96,165,250,0.9)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 28px 70px -28px rgba(0,0,0,0.7),
              0 6px 28px -8px rgba(59,130,246,0.3);
  overflow: hidden;
  transform: translateZ(0);
  animation: slideInRight 1.5s ease-out forwards;
}

.exhibit-canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.panoramic-exhibit:hover .exhibit-canvas {
  transform: scale(1.03);
}

.exhibit-annotation {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 13px;
  color: #e0f2fe;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 9999px;
  backdrop-filter: blur(3px);
}

@keyframes driftGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -20px, 0) scale(1.03);
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .zenith-glow-alpha,
  .zenith-glow-beta,
  .core-initiative::before,
  .intro-descriptor,
  .paramount-declaration,
  .narrative-synopsis,
  .engagement-hub,
  .integrity-spectrum,
  .panoramic-exhibit {
    animation: none;
    transition: none;
  }
}

@media (max-width: 768px) {
  .paramount-declaration {
    font-size: clamp(28px, 8vw, 38px);
  }
  .narrative-synopsis {
    font-size: clamp(15px, 3vw, 17px);
  }
  .exhibit-annotation {
    font-size: 12px;
  }
}

.core-initiative:focus-visible,
.auxiliary-probe:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
  border-radius: 14px;
}


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

/* ===== Premium Stats Section (business look) ===== */
.apex-insight-hub {
  background: linear-gradient(to top, #172554, #0f172a);
  color: #e0e7ff;
  padding: clamp(40px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.luminous-veil {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.luminous-pulse {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.15;
  transform: translateZ(0);
}

.luminous-pulse-omega {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 50% 50%, #3b82f6 0%, transparent 60%);
  top: -100px;
  right: -120px;
  animation: pulseDrift 18s ease-in-out infinite;
}

.luminous-pulse-zeta {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle at 50% 50%, #1d4ed8 0%, transparent 60%);
  bottom: -120px;
  left: -100px;
  animation: pulseDrift 22s ease-in-out infinite reverse;
}

.core-metric-overview {
  text-align: center;
  margin-bottom: clamp(20px, 3vw, 40px);
}

.metric-highlight {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 9999px;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: subtleGlow 2s ease-in-out infinite alternate;
}

.metric-proclamation {
  margin: 12px 0 6px;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.metric-elaboration {
  margin: 0 auto;
  color: #a5b4fc;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.65;
  max-width: 68ch;
}

.key-indicator-array {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 24vw, 240px), 1fr));
  gap: clamp(16px, 2.5vw, 24px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.indicator-module {
  position: relative;
  background: linear-gradient(to bottom, #1e3a8a, #1e40af);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  padding: clamp(18px, 2.8vw, 24px) clamp(14px, 2.2vw, 20px);
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.65), 0 3px 18px -6px rgba(59, 130, 246, 0.25);
  overflow: hidden;
  transform: translateY(10px) scale(0.97);
  opacity: 0;
  animation: elevateReveal 1s ease-out forwards;
}

.indicator-module:nth-child(1) { animation-delay: 0.15s; }
.indicator-module:nth-child(2) { animation-delay: 0.3s; }
.indicator-module:nth-child(3) { animation-delay: 0.45s; }
.indicator-module:nth-child(4) { animation-delay: 0.6s; }

.indicator-module::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.25) 55%, rgba(255,255,255,0) 70%);
  transform: translateX(-130%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.indicator-module:hover::before {
  transform: translateX(130%);
}

.symbol-marker {
  width: 38px;
  height: 38px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #0f172a;
  background: linear-gradient(180deg, #93c5fd, #60a5fa);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.2), 0 6px 14px -4px rgba(59, 130, 246, 0.5);
}

.value-assertion {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin: 4px 0 6px;
  background: linear-gradient(90deg, #93c5fd, #3b82f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.1);
  font-variant-numeric: tabular-nums;
}

.descriptor-note {
  margin: 0;
  color: #a5b4fc;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.03em;
  line-height: 1.55;
}

.indicator-module:hover {
  transform: translateY(0) scale(1.02);
  box-shadow: 0 26px 58px -24px rgba(0,0,0,0.7), 0 5px 22px -7px rgba(59, 130, 246, 0.3);
}

@keyframes pulseDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-15px, 15px, 0) scale(1.04);
  }
}

@keyframes subtleGlow {
  from {
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.2);
  }
  to {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .luminous-pulse-omega,
  .luminous-pulse-zeta,
  .metric-highlight,
  .indicator-module::before {
    animation: none;
    transition: none;
  }
  .indicator-module {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .metric-proclamation {
    font-size: clamp(20px, 5vw, 28px);
  }
  .metric-elaboration {
    font-size: clamp(12px, 2.5vw, 15px);
  }
  .value-assertion {
    font-size: clamp(28px, 8vw, 40px);
  }
}

.indicator-module:focus-within {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 18px;
}


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

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

/* ===== Premium About Section (business look) ===== */
.pinnacle-narrative-domain {
  background: linear-gradient(to bottom, #1e3a8a, #0f172a);
  color: #dbeafe;
  padding: clamp(50px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ethereal-shroud {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ethereal-aura {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  opacity: 0.18;
  transform: translateZ(0);
}

.ethereal-aura-delta {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 50% 50%, #1d4ed8 0%, transparent 65%);
  bottom: -140px;
  left: -160px;
  animation: auraSway 20s ease-in-out infinite;
}

.ethereal-aura-epsilon {
  width: 440px;
  height: 440px;
  background: radial-gradient(circle at 50% 50%, #2563eb 0%, transparent 65%);
  top: -120px;
  right: -140px;
  animation: auraSway 24s ease-in-out infinite reverse;
}

.essence-configuration {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

@media (min-width: 992px) {
  .essence-configuration {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(36px, 5.5vw, 72px);
  }
}

.principal-discourse {
  order: 1;
}

.ancillary-panel {
  order: 2;
}

@media (min-width: 992px) {
  .principal-discourse {
    order: 2;
  }
  .ancillary-panel {
    order: 1;
  }
}

.prelude-assertion {
  margin-bottom: 8px;
}

.assertion-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  background: rgba(37, 99, 235, 0.1);
  color: #3b82f6;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.doctrine-manifesto {
  margin: 10px 0 0;
  font-size: clamp(26px, 3.8vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.emblem-distinction {
  background: linear-gradient(90deg, #60a5fa 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.emblem-distinction::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, #93c5fd, #3b82f6);
  transition: width 0.6s ease;
}

.doctrine-manifesto:hover .emblem-distinction::before {
  width: 100%;
}

.doctrine-exposition {
  margin: 12px 0 16px;
  color: #a0b3f7;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.75;
  max-width: 68ch;
}

.exposition-emphasis {
  font-weight: 800;
  color: #93c5fd;
}

.virtue-enumeration {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(10px, 2.5vw, 16px);
}

.virtue-element {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #bfdbfe;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.45;
  overflow: hidden;
}

.virtue-element::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.25) 60%, rgba(255,255,255,0) 80%);
  transform: translateX(-140%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.virtue-element:hover::before {
  transform: translateX(140%);
}

.element-emblem {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0f172a;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.25), 0 5px 12px -3px rgba(37, 99, 235, 0.5);
}

.ancillary-panel {
  position: relative;
  border-radius: 16px;
  padding: 20px;
  background: #1e40af;
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6), 0 5px 20px -7px rgba(37, 99, 235, 0.3);
  overflow: hidden;
  transform: translateY(12px) scale(0.99);
  opacity: 0;
  animation: panelAscend 1s ease-out forwards;
}

.panel-crest {
  margin-bottom: 12px;
}

.crest-insignia {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #0f172a;
  background: linear-gradient(180deg, #93c5fd, #60a5fa);
  padding: 5px 8px;
  border-radius: 9999px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.2), 0 7px 16px -5px rgba(59, 130, 246, 0.5);
}

.crest-proclamation {
  margin: 10px 0 5px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.2;
}

.crest-narration {
  margin: 0;
  color: #bfdbfe;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.65;
}

.panel-foundation {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.foundation-tier {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dbeafe;
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 8px;
}

.principal-discourse {
  opacity: 0;
  transform: translateY(16px) scale(0.99);
  animation: panelAscend 1s ease-out 0.15s forwards;
}

@keyframes auraSway {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(15px, -15px, 0) scale(1.05);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .ethereal-aura-delta,
  .ethereal-aura-epsilon,
  .virtue-element::before {
    animation: none;
    transition: none;
  }
  .ancillary-panel,
  .principal-discourse {
    transform: none;
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  .doctrine-manifesto {
    font-size: clamp(22px, 5.5vw, 30px);
  }
  .doctrine-exposition {
    font-size: clamp(13px, 2.5vw, 15px);
  }
}


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

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

/* ===== Premium Services Section (business look) ===== */
.prestige-offering-realm {
  background: linear-gradient(to top, #1e40af, #172554);
  color: #eff6ff;
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.radiant-mantle {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.radiant-flux {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.25;
  transform: translateZ(0);
}

.radiant-flux-gamma {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle at 55% 55%, #1e40af 0%, transparent 70%);
  top: -130px;
  left: -150px;
  animation: fluxOscillate 19s ease-in-out infinite;
}

.radiant-flux-iota {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 45% 45%, #1d4ed8 0%, transparent 70%);
  bottom: -150px;
  right: -130px;
  animation: fluxOscillate 23s ease-in-out infinite reverse;
}

.offering-preamble {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 1;
}

.preamble-marker {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(29, 78, 216, 0.45);
  border-radius: 9999px;
  background: rgba(29, 78, 216, 0.12);
  color: #3b82f6;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.preamble-decree {
  margin: 16px 0 10px;
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.decree-highlight {
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.decree-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #60a5fa, #1e40af);
  transition: width 0.4s ease;
}

.preamble-decree:hover .decree-highlight::after {
  width: 100%;
}

.preamble-clarification {
  margin: 0 auto;
  color: #93c5fd;
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.65;
  max-width: 68ch;
}

.beneficiary-spectrum {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 28vw, 280px), 1fr));
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.spectrum-facet {
  position: relative;
  border-radius: 20px;
  padding: clamp(20px, 3.2vw, 28px) clamp(16px, 2.5vw, 24px);
  text-align: left;
  background: linear-gradient(to bottom, #1e3a8a, #172554);
  box-shadow: 0 24px 55px -22px rgba(0,0,0,0.6), 0 5px 20px -7px rgba(29, 78, 216, 0.3);
  overflow: hidden;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: facetEmerge 0.8s ease-out forwards;
}

.spectrum-facet:nth-child(1) { animation-delay: 0.12s; }
.spectrum-facet:nth-child(2) { animation-delay: 0.24s; }
.spectrum-facet:nth-child(3) { animation-delay: 0.36s; }

.facet-insignia {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #0f172a;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.22), 0 7px 16px -5px rgba(29, 78, 216, 0.5);
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.facet-proposition {
  margin: 6px 0 8px;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #eff6ff;
}

.facet-elucidation {
  margin: 0;
  color: #93c5fd;
  font-size: clamp(14px, 1.7vw, 17px);
  line-height: 1.65;
  max-width: 45ch;
}

.facet-luster {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.25) 55%, rgba(255,255,255,0) 70%);
  transform: translateX(-130%);
  transition: transform 0.75s ease;
  pointer-events: none;
}

.spectrum-facet:hover,
.spectrum-facet:focus-within {
  transform: translateY(0) scale(1.015);
  box-shadow: 0 30px 65px -26px rgba(0,0,0,0.65), 0 7px 24px -8px rgba(29, 78, 216, 0.35);
}

.spectrum-facet:hover .facet-insignia {
  transform: translateY(-3px) scale(1.05);
}

.spectrum-facet:hover .facet-luster {
  transform: translateX(130%);
}

@keyframes fluxOscillate {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-10px, 10px, 0) scale(1.03);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .radiant-flux-gamma,
  .radiant-flux-iota,
  .facet-luster {
    animation: none;
    transition: none;
  }
  .spectrum-facet {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .preamble-decree {
    font-size: clamp(24px, 5.8vw, 34px);
  }
  .preamble-clarification {
    font-size: clamp(14px, 2.6vw, 17px);
  }
  .beneficiary-spectrum {
    grid-template-columns: 1fr;
  }
}


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

/* ===== Premium Offer Section (business look) ===== */
.elite-provision-sphere {
  background: linear-gradient(to bottom, #172554, #1e3a8a);
  color: #dbeafe;
  padding: clamp(50px, 7vw, 100px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.luminous-essence {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.luminous-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.2;
  transform: translateZ(0);
}

.luminous-sphere-kappa {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 65% 65%, #1e40af 0%, transparent 75%);
  bottom: -160px;
  right: -150px;
  animation: spherePulse 21s ease-in-out infinite;
}

.luminous-sphere-lambda {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 35% 35%, #2563eb 0%, transparent 75%);
  top: -140px;
  left: -160px;
  animation: spherePulse 25s ease-in-out infinite reverse;
}

.provision-overture {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(20px, 3.5vw, 40px);
}

.overture-indicator {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid rgba(37, 99, 235, 0.5);
  border-radius: 9999px;
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.overture-manifest {
  margin: 12px 0 6px;
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.manifest-accent {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.manifest-accent::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #3b82f6, #93c5fd);
  transition: width 0.45s ease;
}

.overture-manifest:hover .manifest-accent::before {
  width: 100%;
}

.overture-explication {
  margin: 0 auto;
  max-width: 68ch;
  color: #a5b4fc;
  font-size: clamp(13px, 1.5vw, 17px);
  line-height: 1.65;
}

.offering-panorama {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(clamp(240px, 32vw, 480px), 1fr));
  gap: clamp(16px, 2.8vw, 24px);
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.panorama-segment {
  position: relative;
  border-radius: 16px;
  padding: clamp(20px, 3.2vw, 28px) clamp(16px, 2.5vw, 24px);
  background: linear-gradient(to top, #1e3a8a, #172554);
  box-shadow: 0 22px 50px -20px rgba(0,0,0,0.55), 0 4px 18px -6px rgba(37, 99, 235, 0.25);
  overflow: hidden;
  transform: translateY(12px) scale(0.99);
  opacity: 0;
  animation: segmentRise 0.85s ease-out forwards;
}

.panorama-segment:nth-child(1) { animation-delay: 0.15s; }
.panorama-segment:nth-child(2) { animation-delay: 0.3s; }
.panorama-segment:nth-child(3) { animation-delay: 0.45s; }
.panorama-segment:nth-child(4) { animation-delay: 0.6s; }

.segment-crest {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #0f172a;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.2), 0 7px 16px -5px rgba(59, 130, 246, 0.5);
  transition: transform 0.3s ease;
}

.segment-declaration {
  margin: 2px 0 4px;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.015em;
  color: #dbeafe;
}

.segment-illumination {
  margin: 0 0 12px;
  color: #a5b4fc;
  font-size: clamp(12px, 1.5vw, 15px);
  line-height: 1.65;
  max-width: 55ch;
}

.segment-invitation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #0f172a;
  background: linear-gradient(180deg, #60a5fa, #3b82f6) padding-box,
              linear-gradient(90deg, #ffffff, rgba(255,255,255,0)) border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.5), inset 0 -1px 0 rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.segment-invitation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.4) 55%, rgba(255,255,255,0) 75%);
  transform: translateX(-110%);
  transition: transform 0.6s ease;
}

.segment-invitation:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px -8px rgba(59, 130, 246, 0.6), inset 0 -1px 0 rgba(0,0,0,0.18);
}

.segment-invitation:hover::before {
  transform: translateX(110%);
}

.segment-radiance {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0) 60%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}

.panorama-segment:hover,
.panorama-segment:focus-within {
  transform: translateY(0) scale(1.01);
  box-shadow: 0 28px 60px -24px rgba(0,0,0,0.65), 0 6px 22px -7px rgba(37, 99, 235, 0.3);
}

.panorama-segment:hover .segment-crest {
  transform: translateY(-1px) scale(1.03);
}

.panorama-segment:hover .segment-radiance {
  transform: translateX(120%);
}

@keyframes spherePulse {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -12px, 0) scale(1.04);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .luminous-sphere-kappa,
  .luminous-sphere-lambda,
  .segment-invitation::before,
  .segment-radiance {
    animation: none;
    transition: none;
  }
  .panorama-segment {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .overture-manifest {
    font-size: clamp(22px, 5.5vw, 30px);
  }
  .overture-explication {
    font-size: clamp(12px, 2.5vw, 15px);
  }
  .offering-panorama {
    grid-template-columns: 1fr;
  }
}

.segment-invitation:focus-visible,
.panorama-segment:focus-within {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
  border-radius: 12px;
}




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

/* ===== Premium Contact / Join Section ===== */
.sovereign-engagement-nexus {
  background: linear-gradient(to top, #1e3a8a, #0f172a);
  color: #e0e7ff;
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.celestial-veil {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.celestial-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.22;
  transform: translateZ(0);
}

.celestial-orb-mu {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 70% 70%, #1e40af 0%, transparent 80%);
  bottom: -170px;
  left: -180px;
  animation: orbResonance 23s ease-in-out infinite;
}

.celestial-orb-nu {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 30% 30%, #2563eb 0%, transparent 80%);
  top: -150px;
  right: -160px;
  animation: orbResonance 27s ease-in-out infinite reverse;
}

.nexus-alliance {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3.5vw, 40px);
  align-items: start;
}

@media (min-width: 992px) {
  .nexus-alliance {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
  }
}

.alliance-insight {
  opacity: 1;
}

.insight-prologue {
  margin-bottom: 6px;
}

.prologue-beacon {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid rgba(29, 78, 216, 0.45);
  border-radius: 9999px;
  background: rgba(29, 78, 216, 0.12);
  color: #3b82f6;
  font-size: 13px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.prologue-edict {
  margin: 10px 0 6px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  animation: edictManifest 1s ease-out forwards;
}

.prologue-revelation {
  margin: 0;
  color: #93c5fd;
  font-size: clamp(13px, 1.5vw, 17px);
  line-height: 1.75;
  max-width: 65ch;
  opacity: 0;
  transform: translateY(8px);
  animation: edictManifest 1s ease-out 0.15s forwards;
}

.revelation-emblem {
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.insight-conduits {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
}

.conduit-pathway {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #bfdbfe;
  transform: translateY(10px);
  opacity: 0;
  animation: edictManifest 0.75s ease-out forwards;
}

.conduit-pathway:nth-child(1) { animation-delay: 0.2s; }
.conduit-pathway:nth-child(2) { animation-delay: 0.3s; }
.conduit-pathway:nth-child(3) { animation-delay: 0.4s; }

.pathway-sigil {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0f172a;
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.2), 0 6px 14px -4px rgba(37, 99, 235, 0.5);
  transition: transform 0.25s ease;
}

.pathway-decree {
  margin: 0;
  color: #dbeafe;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.25;
}

.pathway-narrative {
  margin: 2px 0 0;
  color: #a5b4fc;
  font-size: 13px;
  line-height: 1.55;
}

.conduit-pathway:hover .pathway-sigil {
  transform: translateY(-1px) scale(1.04);
}

.insight-covenant {
  margin-top: 16px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(to bottom, #1e40af, #172554);
  border: 1px solid rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6), 0 5px 20px -7px rgba(37, 99, 235, 0.3);
  transform: translateY(8px);
  opacity: 0;
  animation: edictManifest 1s ease-out 0.5s forwards;
}

.covenant-precept {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 800;
  color: #dbeafe;
}

.covenant-doctrine {
  margin: 0;
  color: #a5b4fc;
  font-size: 13px;
  line-height: 1.65;
}

.narrative-conduit {
  color: #60a5fa;
  text-decoration: none;
  border-bottom: 1px dotted rgba(59, 130, 246, 0.5);
}

.narrative-conduit:hover {
  color: #93c5fd;
  border-color: #93c5fd;
}

.alliance-portal {
  position: relative;
  border-radius: 16px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)) padding-box,
              conic-gradient(from 180deg, rgba(59,130,246,0.85), rgba(59,130,246,0) 25%, rgba(29,78,216,0.55) 55%, rgba(59,130,246,0.85)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 24px 55px -22px rgba(0,0,0,0.65), 0 5px 20px -7px rgba(29, 78, 216, 0.3);
  overflow: hidden;
  transform: translateY(14px) scale(0.98);
  opacity: 0;
  animation: edictManifest 1s ease-out 0.2s forwards;
}

.portal-convergence {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.8vw, 16px);
  padding: clamp(14px, 2vw, 20px);
  background: rgba(23, 37, 84, 0.7);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.convergence-domain {
  display: grid;
  gap: 4px;
}

.domain-herald {
  font-size: 13px;
  color: #dbeafe;
}

.domain-gateway {
  width: 100%;
  padding: 10px 12px;
  background: #172554;
  border: 1px solid #1e40af;
  color: #dbeafe;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.domain-gateway::placeholder {
  color: #93c5fd;
}

.domain-gateway:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
  background: #0f172a;
}

.domain-scroll {
  min-height: 100px;
  resize: vertical;
}

.convergence-accord {
  margin: 0;
  color: #a5b4fc;
  font-size: 11px;
  line-height: 1.55;
  text-align: left;
}

.accord-pact {
  color: #60a5fa;
  text-decoration: none;
  border-bottom: 1px dotted rgba(59, 130, 246, 0.5);
}

.accord-pact:hover {
  color: #93c5fd;
  border-color: #93c5fd;
}

.convergence-summons {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0f172a;
  background: linear-gradient(180deg, #93c5fd, #60a5fa) padding-box,
              linear-gradient(90deg, #ffffff, rgba(255,255,255,0)) border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.55), inset 0 -1px 0 rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.convergence-summons::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0) 35%, rgba(255,255,255,0.4) 55%, rgba(255,255,255,0) 75%);
  transform: translateX(-110%);
  transition: transform 0.6s ease;
}

.convergence-summons:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px -8px rgba(59, 130, 246, 0.6), inset 0 -1px 0 rgba(0,0,0,0.18);
}

.convergence-summons:hover::before {
  transform: translateX(110%);
}

@keyframes orbResonance {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-8px, 8px, 0) scale(1.02);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .celestial-orb-mu,
  .celestial-orb-nu,
  .convergence-summons::before {
    animation: none;
    transition: none;
  }
  .prologue-edict,
  .prologue-revelation,
  .conduit-pathway,
  .alliance-portal {
    transform: none;
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  .prologue-edict {
    font-size: clamp(22px, 5.5vw, 30px);
  }
  .prologue-revelation {
    font-size: clamp(12px, 2.5vw, 15px);
  }
  .portal-convergence {
    padding: 14px;
  }
  .convergence-summons {
    justify-self: stretch;
    text-align: center;
    width: 100%;
  }
}

.narrative-conduit:focus-visible,
.accord-pact:focus-visible,
.convergence-summons:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 10px;
}


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

/* ===== Premium Footer (business look) ===== */
.svx-fleet-footer {
  position: relative;
  padding: clamp(64px, 8.8vw, 120px) 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, #1a2740 0%, rgba(26,39,64,0) 60%),
    linear-gradient(180deg, #0b1220 0%, #0e1627 100%);
  color: #e8ecf4;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Background decorations */
.svx-bg { position: absolute; pointer-events: none; z-index: 0; }
.svx-bg--mesh {
  inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  opacity: 0.35;
  animation: svx-mesh-pan 28s linear infinite;
}
.svx-bg--orb-a {
  width: 560px; height: 560px; left: -190px; bottom: -210px; border-radius: 50%;
  background: radial-gradient(circle at 60% 60%, #d9c48e 0%, rgba(217,196,142,0) 62%);
  filter: blur(40px); opacity: 0.22; animation: svx-float 22s ease-in-out infinite;
}
.svx-bg--orb-b {
  width: 520px; height: 520px; right: -180px; top: -170px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #8ec5ff 0%, rgba(142,197,255,0) 60%);
  filter: blur(40px); opacity: 0.20; animation: svx-float 20s ease-in-out infinite reverse;
}
/* thin top glow line */
.svx-top-glow {
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, rgba(231,213,164,0), rgba(231,213,164,0.7), rgba(231,213,164,0));
  opacity: .8;
}

/* Wrap */
.svx-wrap { position: relative; z-index: 1; display: grid; gap: clamp(26px, 4.2vw, 40px); }

/* Legal block with conic border */
.svx-legal {
  position: relative;
  border-radius: 18px;
  padding: clamp(18px, 2.8vw, 26px);
  background:#000;
  border: 1px solid transparent;
  box-shadow:
    0 24px 60px -24px rgba(0,0,0,0.58),
    0 6px 24px -8px rgba(142,197,255,0.25);
  transform: translate3d(0,12px,0) scale(0.985);
  opacity: 0;
  animation: svx-reveal 0.9s ease-out forwards;
}
.svx-legal__head { margin-bottom: 6px; }
.svx-legal__title {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: .02em;
  color: #f1e4b0;
  text-transform: none;
}
.svx-legal__content {
  display: grid;
  gap: 12px;
}
.svx-legal__p {
  margin: 0;
  font-size: clamp(13px, 1.55vw, 15px);
  line-height: 1.7;
  color: #c3ccda;
  transition: color .25s ease;
}
.svx-legal__p strong { color: #e8ecf4; font-weight: 700; }
.svx-legal__p a {
  color: #d9c48e; text-decoration: none; border-bottom: 1px dashed rgba(231,213,164,0.45);
  transition: color .2s ease, border-color .2s ease;
}
.svx-legal__p a:hover { color: #f0dfb0; border-color: currentColor; }
.svx-legal__p:hover { color: #d3d9e6; }

/* Bottom row */
.svx-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(14px, 3vw, 28px);
  transform: translate3d(0,10px,0) scale(0.99);
  opacity: 0;
  animation: svx-reveal .9s ease-out .15s forwards;
}
@media (max-width: 768px) {
  .svx-bottom { flex-direction: column; align-items: flex-start; }
}

.svx-copy {
  margin: 0;
  color: #aeb8c8;
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.6;
  transition: color .25s ease;
}
.svx-copy:hover { color: #d7deea; }

/* Nav */
.svx-nav { position: relative; }
.svx-nav__list {
  display: flex; flex-wrap: wrap; gap: clamp(10px, 2.2vw, 20px);
  list-style: none; margin: 0; padding: 0;
}
.svx-nav__item {
  transform: translateX(-8px);
  opacity: 0;
  animation: svx-slide-in .6s ease-out forwards;
}
.svx-nav__item:nth-child(1){ animation-delay: .25s; }
.svx-nav__item:nth-child(2){ animation-delay: .32s; }
.svx-nav__item:nth-child(3){ animation-delay: .39s; }
.svx-nav__item:nth-child(4){ animation-delay: .46s; }

.svx-nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  color: #e8ecf4;
  font-size: clamp(12px, 1.55vw, 14px);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 10px;
  transition: color .2s ease, transform .25s ease, background .25s ease;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}
.svx-nav__link:hover {
  color: #0f1524;
  background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  border-color: transparent;
  transform: translateY(-1px);
}
.svx-nav__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(180deg, #e7d5a4, #c5a56b);
  box-shadow: 0 0 0 2px rgba(231,213,164,0.25);
}

/* Animations */
@keyframes svx-mesh-pan { 0% { transform: translateY(0); } 100% { transform: translateY(46px); } }
@keyframes svx-float { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(0,-10px,0) scale(1.02); } }
@keyframes svx-reveal { to { opacity: 1; transform: translate3d(0,0,0) scale(1); } }
@keyframes svx-slide-in { to { opacity: 1; transform: translateX(0); } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .svx-bg--mesh, .svx-bg--orb-a, .svx-bg--orb-b { animation: none !important; }
  .svx-legal, .svx-bottom, .svx-nav__item { transform: none !important; opacity: 1 !important; }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .svx-fleet-footer { padding: clamp(40px, 7.2vw, 70px) 0; }
  .svx-legal__title { font-size: clamp(15px, 2.8vw, 17px); }
  .svx-legal__p { font-size: clamp(12px, 2.6vw, 14px); }
  .svx-nav__list { gap: 10px; }
  .svx-nav__link { padding: 6px 10px; }
}


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