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


/* 1 */
.risk-alert-panel {
  background: linear-gradient(145deg, #111111 0%, #222222 100%);
  border-bottom: 1px solid #444444;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5), 0 2px 15px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.risk-alert-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 30%, rgba(192, 192, 192, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.alert-message-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.95) translateY(15px);
  animation: revealScaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}

.alert-primary-text {
  color: #f5f5f5;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  text-align: center;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.emphasis-highlight {
  color: #c0c0c0;
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.emphasis-highlight::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c0c0c0 50%, transparent 100%);
  transition: width 0.4s ease;
}

.alert-primary-text:hover .emphasis-highlight::after {
  width: 100%;
}

.disclosure-link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid transparent;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 2px;
}

.disclosure-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #c0c0c0;
  transition: width 0.3s ease;
}

.disclosure-link:hover {
  color: #c0c0c0;
  border-bottom-color: transparent;
}

.disclosure-link:hover::before {
  width: 100%;
}

.risk-alert-panel:hover {
  background: linear-gradient(145deg, #121212 0%, #232323 100%);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.6), 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .risk-alert-panel {
    padding: 20px 0;
  }

  .alert-primary-text {
    font-size: clamp(12px, 1.8vw, 14px);
    padding: 0 5%;
  }
}

/* header */

@media screen and (max-width:1200px){
  .elite-invite-btn{
    display: none !important;
  }
}

.executive-nav-frame {
background: linear-gradient(135deg, #000000 0%, #090909 100%);
  border-bottom: 1px solid #333333;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.executive-nav-frame:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.nav-assembly {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 35px);
  position: relative;
  opacity: 0;
  transform: translateY(-25px);
  animation: descendReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

.prestige-crest {
  display: block;
  max-width: 60px;
  width: 100%;
  transition: all 0.3s ease;
}

.prestige-crest:hover {
  transform: scale(1.08) rotate(2deg);
}

.crest-visual {
  width: 100%;
  height: auto;
  filter: brightness(1.1) contrast(1.05);
  transition: filter 0.3s ease;
}

.prestige-crest:hover .crest-visual {
  filter: brightness(1.2) contrast(1.1);
}

.nav-essentials {
  display: flex;
  align-items: center;
  gap: clamp(25px, 5vw, 40px);
}

.elite-invite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(90deg, #2d2d2d 0%, #404040 100%);
  color: #f0f0f0;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(15px, 2vw, 17px);
  border: 1px solid #555555;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.elite-invite-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.elite-invite-btn:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #353535 0%, #4d4d4d 100%);
  border-color: #666666;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.elite-invite-btn:hover::before {
  left: 100%;
}

.menu__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.menu__list.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  gap: 30px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  z-index: 999;
  animation: overlayExpansion 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
  padding-top: 80px;
}

.menu__link {
  color: #e8e8e8;
  text-decoration: none;
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.4s ease;
  padding: 10px 0;
}

.menu__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #c0c0c0;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.menu__link:hover {
  color: #c0c0c0;
  transform: translateY(-2px);
}

.menu__link:hover::after {
  width: 80%;
}

.burger {
  flex-shrink: 0;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  padding: 0;
}

.burger::before,
.burger::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #c0c0c0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #c0c0c0;
  transition: all 0.5s ease;
  transform: scaleX(1);
}

.burger.is-open {
  z-index: 1001;
}

.burger.is-open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg) scaleX(1.1);
}

.burger.is-open::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg) scaleX(1.1);
}

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

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

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

@keyframes overlayExpansion {
  from {
    opacity: 0;
    transform: scale(0.95) translateX(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

@media (max-width: 768px) {
  .nav-assembly {
    gap: 15px;
  }
  .elite-invite-btn {
    padding: 10px 20px;
    font-size: clamp(14px, 1.8vw, 16px);
  }
  .prestige-crest {
    max-width: 45px;
  }
  .menu__list.is-open {
    gap: 25px;
    padding-top: 100px;
  }
}

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

.apex-vanguard-zone {
  padding: clamp(50px, 20vh, 70px) 0;
  background: linear-gradient(135deg, #0b0b0b 0%, #1b1b1b 100%);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 4px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.apex-vanguard-zone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(192, 192, 192, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.vanguard-composition {
  display: flex;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: ascendManifest 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.visual-pinnacle {
  flex: 1;
  position: relative;
  opacity: 0;
  transform: scale(0.9) translateX(-30px);
  animation: emergeVista 1s ease-out 0.5s forwards;
}

.pinnacle-render {
  width: 100%;
  height: clamp(400px, 50vh, 600px);
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pinnacle-render::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.7) 0%, rgba(27, 27, 27, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.visual-pinnacle:hover .pinnacle-render {
  transform: scale(1.02);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6);
}

.visual-pinnacle:hover .pinnacle-render::after {
  opacity: 1;
}

.discourse-enclave {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  opacity: 0;
  transform: translateX(30px);
  animation: ingressDiscourse 1s ease-out 0.7s forwards;
}

.apex-declaration {
  color: #ffffff;
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.apex-declaration::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #c0c0c0 50%, transparent 100%);
  transition: width 0.4s ease;
}

.vanguard-composition:hover .apex-declaration::before {
  width: 120px;
}

.enclave-narrative {
  color: #e0e0e0;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
  max-width: 500px;
}

.vanguard-summon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: linear-gradient(90deg, #1e1e1e 0%, #303030 100%);
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  border: 1px solid #444444;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  align-self: flex-start;
  max-width: 200px;
}

.vanguard-summon-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 192, 192, 0.1) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.vanguard-summon-btn:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #262626 0%, #3d3d3d 100%);
  border-color: #555555;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.vanguard-summon-btn:hover::before {
  left: 100%;
}

.apex-vanguard-zone:hover {
  box-shadow: inset 0 4px 40px rgba(0, 0, 0, 0.7), 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

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

@media (max-width: 768px) {
  .vanguard-composition {
    flex-direction: column;
    gap: clamp(30px, 5vw, 50px);
    text-align: center;
  }

  .visual-pinnacle {
    order: 2;
    animation: emergeVista 1s ease-out 0.9s forwards;
  }

  .discourse-enclave {
    order: 1;
    gap: 20px;
    animation: ingressDiscourse 1s ease-out 0.3s forwards;
    transform: translateY(30px);
  }

  .apex-declaration {
    font-size: clamp(32px, 9vw, 48px);
  }

  .enclave-narrative {
    font-size: clamp(15px, 3vw, 17px);
    max-width: 100%;
  }

  .vanguard-summon-btn {
    padding: 14px 30px;
    font-size: clamp(15px, 2.5vw, 17px);
    align-self: center;
    max-width: none;
  }

  .pinnacle-render {
    height: clamp(250px, 40vh, 350px);
  }
}

/* ------------rating----------------------- */

.prestige-endorsement-vault {
  background: linear-gradient(145deg, #0f0f0f 0%, #202020 100%);
  padding: 25px 0;
  border: 1px solid #2a2a2a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.prestige-endorsement-vault::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(192, 192, 192, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.prestige-endorsement-vault:hover {
  border-color: #3a3a3a;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.endorsement-constellation {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.endorsement-orb {
  background: linear-gradient(145deg, #414141 0%, #545454 100%);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.95) translateY(15px);
  animation: coalesceOrb 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.endorsement-orb:nth-child(1) {
  animation-delay: 0.1s;
}

.endorsement-orb:nth-child(2) {
  animation-delay: 0.2s;
}

.endorsement-orb:nth-child(3) {
  animation-delay: 0.3s;
}

.endorsement-orb:nth-child(4) {
  animation-delay: 0.4s;
}

.endorsement-orb:hover {
  transform: scale(1.02) translateY(-3px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, #1f1f1f 0%, #303030 100%);
}

.orb-crest-panel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  justify-content: center;
}

.crest-emblem {
  height: 20px;
  width: auto;
  transition: transform 0.3s ease;
  filter: brightness(1.1);
}

.endorsement-orb:hover .crest-emblem {
  transform: scale(1.05);
}

.panel-subtext {
  color: #d0d0d0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.orb-core {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.core-metric {
  color: #f0f0f0;
  font-size: 18px;
  font-weight: 500;
  margin-right: 6px;
  letter-spacing: 0.2px;
}

.stellar-glyph {
  color: #c0c0c0;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.outline-stellar {
  color: #808080;
}

.orb-core:hover .stellar-glyph {
  color: #e0e0e0;
  transform: scale(1.1);
}

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

@media (max-width: 768px) {
  .endorsement-constellation {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .endorsement-orb {
    display: flex;
    flex-direction: row;
    min-height: 60px;
    padding: 12px;
gap: 20px;
    width: 100%;
  }

  .orb-crest-panel {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .orb-core {
    flex: 1;
    justify-content: flex-start;
  }

  .core-metric {
    font-size: 16px;
  }

  .panel-subtext {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .endorsement-constellation {
    gap: 12px;
  }

  .endorsement-orb {
    padding: 10px;
    min-height: 50px;
  }

  .crest-emblem {
    height: 18px;
  }

  .stellar-glyph {
    width: 16px;
    height: 16px;
  }
}

/* ------------------------about------------------------------ */

.executive-merit-hall {
  padding: clamp(60px, 12vh, 90px) 0;
  background: linear-gradient(180deg, #121212 0%, #1e1e1e 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2d2d2d;
  border-bottom: 1px solid #2d2d2d;
  box-shadow: inset 0 2px 15px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.executive-merit-hall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 10%, rgba(192, 192, 192, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.executive-merit-hall:hover {
  box-shadow: inset 0 2px 15px rgba(0, 0, 0, 0.5), 0 6px 25px rgba(0, 0, 0, 0.4);
}

.merit-proclamation {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-30px);
  animation: descendEdict 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.proclamation-edict {
  color: #f8f8f8;
  font-size: clamp(32px, 5.5vw, 44px);
  font-weight: 300;
  text-align: center;
  margin: 0;
  letter-spacing: -0.3px;
  position: relative;
  line-height: 1.15;
}

.proclamation-edict::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c0c0c0 50%, transparent 100%);
  transform: translateX(-50%);
  transition: width 0.5s ease;
}

.merit-proclamation:hover .proclamation-edict::after {
  width: 160px;
}

.merit-exposition {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.virtue-capsule {
  flex: 0 1 calc(33.333% - 25px);
  background: linear-gradient(145deg, #171717 0%, #242424 100%);
  border: 1px solid #333333;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: ascendCapsule 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 380px;
}

.virtue-capsule:nth-child(1) { animation-delay: 0.3s; }
.virtue-capsule:nth-child(2) { animation-delay: 0.4s; }
.virtue-capsule:nth-child(3) { animation-delay: 0.5s; }
.virtue-capsule:nth-child(4) { animation-delay: 0.6s; }
.virtue-capsule:nth-child(5) { animation-delay: 0.7s; }
.virtue-capsule:nth-child(6) { animation-delay: 0.8s; }

.virtue-capsule:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: #444444;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: linear-gradient(145deg, #1c1c1c 0%, #292929 100%);
}

.capsule-vignette {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: clamp(180px, 25vw, 220px);
  position: relative;
}

.vignette-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(0.3) contrast(1.1);
}

.virtue-capsule:hover .vignette-portrait {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.15);
}

.capsule-tenet {
  color: #f0f0f0;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 400;
  margin: 0 0 15px 0;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.virtue-capsule:hover .capsule-tenet {
  color: #c0c0c0;
}

.tenet-exegesis {
  color: #d0d0d0;
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.merit-invocation {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: ascendInvocation 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
}

.invocation-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: linear-gradient(90deg, #222222 0%, #353535 100%);
  color: #e8e8e8;
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(15px, 2vw, 16px);
  border: 1px solid #3d3d3d;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.invocation-scroll::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 192, 192, 0.08) 50%, transparent 100%);
  transition: left 0.7s ease;
}

.invocation-scroll:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #2a2a2a 0%, #404040 100%);
  border-color: #4d4d4d;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.5);
}

.invocation-scroll:hover::before {
  left: 100%;
}

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

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

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

@media (max-width: 1024px) {
  .virtue-capsule {
    flex: 0 1 calc(50% - 25px);
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .executive-merit-hall {
    padding: 50px 0;
  }

  .merit-proclamation {
    margin-bottom: 40px;
  }

  .proclamation-edict {
    font-size: clamp(28px, 6vw, 36px);
  }

  .merit-exposition {
    gap: 20px;
    margin-bottom: 40px;
  }

  .virtue-capsule {
    flex: 1 1 100%;
    min-height: 320px;
    padding: 20px;
  }

  .capsule-vignette {
    height: clamp(160px, 30vw, 180px);
  }

  .capsule-tenet {
    font-size: clamp(17px, 3vw, 19px);
  }

  .tenet-exegesis {
    font-size: clamp(13px, 2.5vw, 14px);
  }

  .invocation-scroll {
    padding: 12px 28px;
    font-size: clamp(14px, 2.5vw, 15px);
  }
}

@media (max-width: 480px) {
  .executive-merit-hall {
    padding: 40px 0;
  }

  .merit-proclamation {
    margin-bottom: 30px;
  }

  .proclamation-edict {
    font-size: clamp(24px, 7vw, 30px);
  }

  .merit-exposition {
    gap: 15px;
    margin-bottom: 30px;
  }

  .virtue-capsule {
    min-height: 280px;
    padding: 18px;
  }

  .capsule-vignette {
    height: clamp(140px, 35vw, 160px);
  }

  .capsule-tenet {
    font-size: 16px;
  }

  .tenet-exegesis {
    font-size: 13px;
  }

  .invocation-scroll {
    padding: 10px 24px;
    font-size: 14px;
  }
}


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

.strategic-forge-sanctum {
  padding: clamp(70px, 14vh, 100px) 0;
  background: linear-gradient(145deg, #080808 0%, #181818 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #282828;
  box-shadow: inset 0 3px 25px rgba(0, 0, 0, 0.7), 0 5px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.strategic-forge-sanctum::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 80%, rgba(192, 192, 192, 0.025) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.strategic-forge-sanctum:hover {
  box-shadow: inset 0 3px 25px rgba(0, 0, 0, 0.8), 0 7px 35px rgba(0, 0, 0, 0.5);
}

.sanctum-overture {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-35px);
  animation: unveilOverture 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
  text-align: center;
}

.overture-manifest {
  color: #ffffff;
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 300;
  margin: 0 0 15px 0;
  letter-spacing: -0.4px;
  line-height: 1.1;
  position: relative;
}

.manifest-codex {
  color: #d8d8d8;
  font-size: clamp(16px, 2.3vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
}

.forge-constellation {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.alloy-ingot {
  flex: 1 1 calc(25% - 30px);
  background: linear-gradient(145deg, #0e0e0e 0%, #1f1f1f 100%);
  border: 1px solid #323232;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(50px) rotateX(10deg);
  animation: forgeIngot 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  justify-content: space-between;
}

.alloy-ingot:nth-child(1) { animation-delay: 0.4s; }
.alloy-ingot:nth-child(2) { animation-delay: 0.6s; }
.alloy-ingot:nth-child(3) { animation-delay: 0.8s; }
.alloy-ingot:nth-child(4) { animation-delay: 1s; }

.alloy-ingot:hover {
  transform: translateY(-8px) rotateX(0deg);
  border-color: #424242;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  background: linear-gradient(145deg, #131313 0%, #242424 100%);
}

.ingot-emblem {
  margin-bottom: 20px;
}

.ingot-emblem svg {
  color: #c0c0c0;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.alloy-ingot:hover .ingot-emblem svg {
  color: #e0e0e0;
  transform: rotateY(360deg) scale(1.15);
}

.ingot-creed {
  color: #f4f4f4;
  font-size: clamp(18px, 2.4vw, 20px);
  font-weight: 400;
  margin: 0 0 12px 0;
  letter-spacing: 0.1px;
  transition: color 0.3s ease;
}

.alloy-ingot:hover .ingot-creed {
  color: #c0c0c0;
}

.creed-scroll {
  color: #b8b8b8;
  font-size: clamp(13px, 1.7vw, 14px);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}

.sanctum-apex {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 60px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(40px);
  animation: convergeApex 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}

.apex-vista {
  flex: 1;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

.vista-panorama {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: contrast(1.05) brightness(1.1);
}

.sanctum-apex:hover .vista-panorama {
  transform: scale(1.03);
  filter: contrast(1.1) brightness(1.15);
}

.apex-lexicon {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lexicon-edict {
  color: #ffffff;
  font-size: clamp(30px, 4.5vw, 40px);
  font-weight: 300;
  margin: 0 0 20px 0;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.edict-accent {
  color: #c0c0c0;
  display: block;
  font-weight: 400;
  transition: color 0.4s ease;
}

.sanctum-apex:hover .edict-accent {
  color: #e0e0e0;
}

.lexicon-tome {
  color: #d0d0d0;
  font-size: clamp(15px, 2.1vw, 17px);
  line-height: 1.7;
  margin: 0;
  max-width: 450px;
}

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

@keyframes forgeIngot {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

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

@media (max-width: 1024px) {
  .alloy-ingot {
    flex: 1 1 calc(50% - 30px);
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .strategic-forge-sanctum {
    padding: 55px 0;
  }

  .sanctum-overture {
    margin-bottom: 45px;
  }

  .overture-manifest {
    font-size: clamp(28px, 7vw, 36px);
    margin-bottom: 12px;
  }

  .manifest-codex {
    font-size: clamp(15px, 3vw, 17px);
  }

  .forge-constellation {
    gap: 25px;
    margin-bottom: 45px;
  }

  .alloy-ingot {
    flex: 1 1 100%;
    min-height: 240px;
    padding: 25px 18px;
  }

  .ingot-creed {
    font-size: clamp(17px, 3.5vw, 19px);
  }

  .creed-scroll {
    font-size: clamp(13px, 2.8vw, 14px);
  }

  .sanctum-apex {
    flex-direction: column;
    gap: 30px;
    transform: translateY(40px);
    animation: convergeApex 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
  }

  .lexicon-edict {
    font-size: clamp(26px, 6vw, 32px);
    text-align: center;
  }

  .lexicon-tome {
    font-size: clamp(14px, 3vw, 16px);
    text-align: center;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .strategic-forge-sanctum {
    padding: 45px 0;
  }

  .sanctum-overture {
    margin-bottom: 35px;
  }

  .overture-manifest {
    font-size: clamp(24px, 8vw, 30px);
  }

  .manifest-codex {
    font-size: 14px;
    padding: 0 10px;
  }

  .forge-constellation {
    gap: 20px;
    margin-bottom: 35px;
  }

  .alloy-ingot {
    min-height: 220px;
    padding: 22px 16px;
  }

  .ingot-emblem {
    margin-bottom: 16px;
  }

  .ingot-emblem svg {
    width: 32px;
    height: 32px;
  }

  .ingot-creed {
    font-size: 16px;
  }

  .creed-scroll {
    font-size: 13px;
  }

  .sanctum-apex {
    gap: 25px;
  }

  .lexicon-edict {
    font-size: 24px;
  }

  .lexicon-tome {
    font-size: 14px;
    padding: 0 5px;
  }
}

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

.nexus-guidance-arena {
  padding: clamp(30px, 12vh, 60px) 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #161616 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2b2b2b;
  box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.6), 0 4px 25px rgba(0, 0, 0, 0.35);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}



.nexus-guidance-arena:hover {
  box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.7), 0 6px 30px rgba(0, 0, 0, 0.45);
}

.arena-prelude {
  margin-bottom: 55px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-25px);
  animation: preludeUnfold 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
  text-align: center;
}

.prelude-charter {
  color: #f9f9f9;
  font-size: clamp(32px, 5.5vw, 42px);
  font-weight: 300;
  margin: 0 0 18px 0;
  letter-spacing: -0.3px;
  line-height: 1.12;
  position: relative;
}

.prelude-charter::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c0c0c0 50%, transparent 100%);
  transform: translateX(-50%);
  transition: width 0.5s ease;
}

.arena-prelude:hover .prelude-charter::after {
  width: 140px;
}

.charter-scroll {
  color: #d4d4d4;
  font-size: clamp(15px, 2.1vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 650px;
}

.guidance-phalanx {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(25px, 4vw, 35px);
  margin-bottom: 55px;
  position: relative;
  z-index: 1;
}

.phalanx-bastion {
  flex: 0 1 calc(50% - 25px);
  background: linear-gradient(145deg, #0f0f0f 0%, #202020 100%);
  border: 1px solid #303030;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: scale(0.96) translateY(35px);
  animation: bastionEmerge 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phalanx-bastion:nth-child(1),
.phalanx-bastion:nth-child(2) {
  flex: 1 1 100%;
}

.phalanx-bastion:nth-child(3),
.phalanx-bastion:nth-child(4),
.phalanx-bastion:nth-child(5) {
  flex: 0 1 calc(33.333% - 25px);
}

.phalanx-bastion:nth-child(1) { animation-delay: 0.3s; }
.phalanx-bastion:nth-child(2) { animation-delay: 0.5s; }
.phalanx-bastion:nth-child(3) { animation-delay: 0.7s; }
.phalanx-bastion:nth-child(4) { animation-delay: 0.9s; }
.phalanx-bastion:nth-child(5) { animation-delay: 1.1s; }

.phalanx-bastion:hover {
  transform: scale(1.01) translateY(-5px);
  border-color: #404040;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  background: linear-gradient(145deg, #141414 0%, #252525 100%);
}

.bastion-pinnacle {
  color: #f2f2f2;
  font-size: clamp(18px, 2.3vw, 20px);
  font-weight: 400;
  margin: 0 0 14px 0;
  letter-spacing: 0.15px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.phalanx-bastion:hover .bastion-pinnacle {
  color: #c0c0c0;
}

.pinnacle-lore {
  color: #c8c8c8;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.65;
  margin: 0 0 16px 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.bastion-conduit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 26px;
  background: linear-gradient(90deg, #1b1b1b 0%, #2c2c2c 100%);
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(14px, 1.9vw, 15px);
  border: 1px solid #3b3b3b;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  align-self: flex-start;
  max-width: 180px;
}

.bastion-conduit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 192, 192, 0.07) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.bastion-conduit:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #232323 0%, #3d3d3d 100%);
  border-color: #4c4c4c;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.5);
}

.bastion-conduit:hover::before {
  left: 100%;
}

.bastion-conduit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s ease;
}

.bastion-conduit:hover svg {
  transform: translateX(4px);
}

.arena-convergence {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  animation: convergenceRise 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}

.convergence-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  background: linear-gradient(90deg, #202020 0%, #313131 100%);
  color: #ececec;
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(15px, 2.1vw, 16px);
  border: 1px solid #404040;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.convergence-portal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 192, 192, 0.1) 50%, transparent 100%);
  transition: left 0.8s ease;
}

.convergence-portal:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #282828 0%, #424242 100%);
  border-color: #555555;
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.convergence-portal:hover::before {
  left: 100%;
}

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

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

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

@media (max-width: 1024px) {
  .phalanx-bastion:nth-child(3),
  .phalanx-bastion:nth-child(4),
  .phalanx-bastion:nth-child(5) {
    flex: 0 1 calc(50% - 25px);
  }
}

@media (max-width: 768px) {
  .nexus-guidance-arena {
    padding: 50px 0;
  }

  .arena-prelude {
    margin-bottom: 40px;
  }

  .prelude-charter {
    font-size: clamp(28px, 6.5vw, 36px);
    margin-bottom: 14px;
  }

  .charter-scroll {
    font-size: clamp(14px, 2.8vw, 16px);
    padding: 0 8px;
  }

  .guidance-phalanx {
    gap: 20px;
    margin-bottom: 40px;
  }

  .phalanx-bastion {
    flex: 1 1 100%;
    min-height: 240px;
    padding: 10px;
  }



  .bastion-pinnacle {
    font-size: clamp(17px, 3.2vw, 19px);
  }

  .pinnacle-lore {
    font-size: clamp(13px, 2.5vw, 14px);
  }

  .bastion-conduit {
    padding: 11px 22px;
    font-size: clamp(13px, 2.4vw, 14px);
    max-width: 160px;
  }

  .arena-convergence {
    margin-top: 10px;
  }

  .convergence-portal {
    padding: 13px 30px;
    font-size: clamp(14px, 2.6vw, 15px);
  }
}

@media (max-width: 480px) {
  .nexus-guidance-arena {
    padding: 40px 0;
  }

  .arena-prelude {
    margin-bottom: 30px;
  }

  .prelude-charter {
    font-size: clamp(24px, 7.5vw, 30px);
  }

  .charter-scroll {
    font-size: 13px;
    padding: 0 5px;
  }

  .guidance-phalanx {
    gap: 18px;
    margin-bottom: 30px;
  }

  .phalanx-bastion {
    padding: 10px;
  }



  .bastion-pinnacle {
    font-size: 16px;
  }

  .pinnacle-lore {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .bastion-conduit {
    padding: 10px 20px;
    font-size: 13px;
    max-width: 150px;
  }

  .bastion-conduit svg {
    width: 16px;
    height: 16px;
  }

  .convergence-portal {
    padding: 12px 26px;
    font-size: 14px;
  }
}

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

.sovereign-enlistment-chamber {
  padding: clamp(30px, 7vh, 50px) 0;
  background: linear-gradient(145deg, #050505 0%, #151515 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid #262626;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.015);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}


.sovereign-enlistment-chamber:hover {
  border-color: #363636;
  box-shadow: 0 7px 45px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transform: translateY(-1px);
}

.enlistment-prologue {
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(-30px);
  animation: prologueAscent 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
  text-align: center;
}

.prologue-decree {
  color: #fdfdfd;
  font-size: clamp(30px, 5vw, 38px);
  font-weight: 300;
  margin: 0 0 14px 0;
  letter-spacing: -0.25px;
  line-height: 1.1;
  position: relative;
}

.prologue-decree::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #c0c0c0 50%, transparent 100%);
  transform: translateX(-50%);
  transition: width 0.4s ease;
}

.enlistment-prologue:hover .prologue-decree::after {
  width: 180px;
}

.decree-manifest {
  color: #d2d2d2;
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 600px;
}

.enlistment-vault {
  background: linear-gradient(145deg, #0d0d0d 0%, #1d1d1d 100%);
  border: 1px solid #2e2e2e;
  border-radius: 18px;
  padding: clamp(25px, 4vw, 35px);
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 4vw, 35px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: scale(0.98) translateY(25px);
  animation: vaultManifest 1.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.vault-compartment {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(-20px);
  animation: compartmentReveal 0.9s ease-out forwards;
}

.vault-compartment:nth-child(1) { animation-delay: 0.4s; }
.vault-compartment:nth-child(2) { animation-delay: 0.5s; }
.vault-compartment:nth-child(3) { animation-delay: 0.6s; }
.vault-compartment:nth-child(4) { animation-delay: 0.7s; }
.vault-compartment:nth-child(5) { animation-delay: 0.8s; }

.compartment-visor {
  color: #e8e8e8;
  font-size: clamp(13px, 1.7vw, 14px);
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}

.visor-portal,
.visor-expanse {
  padding: 14px 18px;
  background: linear-gradient(145deg, #181818 0%, #242424 100%);
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  color: #f0f0f0;
  font-size: clamp(14px, 1.9vw, 15px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.visor-portal:focus,
.visor-expanse:focus {
  border-color: #c0c0c0;
  box-shadow: 0 0 0 2px rgba(192, 192, 192, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.visor-expanse {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.compartment-covenant {
  color: #a8a8a8;
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.5;
  margin: 0 0 16px 0;
  text-align: center;
}

.covenant-link {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.covenant-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c0c0c0;
  transition: width 0.3s ease;
}

.covenant-link:hover {
  color: #e0e0e0;
}

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

.expanse-summon {
  align-self: center;
  padding: 16px 40px;
  background: linear-gradient(90deg, #1f1f1f 0%, #303030 100%);
  color: #f5f5f5;
  text-decoration: none;
  border: 1px solid #454545;
  border-radius: 14px;
  font-weight: 400;
  font-size: clamp(15px, 2vw, 16px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.expanse-summon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 192, 192, 0.09) 50%, transparent 100%);
  transition: left 0.7s ease;
}

.expanse-summon:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #272727 0%, #3f3f3f 100%);
  border-color: #565656;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 7px 28px rgba(0, 0, 0, 0.6);
}

.expanse-summon:hover::before {
  left: 100%;
}

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

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

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

@media (max-width: 768px) {
  .sovereign-enlistment-chamber {
    padding: 25px 0;
  }

  .enlistment-prologue {
    margin-bottom: 35px;
  }

  .prologue-decree {
    font-size: clamp(26px, 6vw, 32px);
    margin-bottom: 12px;
  }

  .decree-manifest {
    font-size: clamp(14px, 2.7vw, 16px);
    padding: 0 6px;
  }

  .enlistment-vault {
    padding: 22px;
    gap: 25px;
  }

  .vault-compartment {
    gap: 8px;
  }

  .compartment-visor {
    font-size: 13px;
  }

  .visor-portal,
  .visor-expanse {
    padding: 12px 16px;
    font-size: 14px;
  }

  .visor-expanse {
    min-height: 100px;
  }

  .compartment-covenant {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .expanse-summon {
    padding: 14px 32px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .sovereign-enlistment-chamber {
    padding: 20px 0;
    margin: 0 10px;
  }

  .enlistment-prologue {
    margin-bottom: 28px;
  }

  .prologue-decree {
    font-size: clamp(24px, 7vw, 28px);
  }

  .decree-manifest {
    font-size: 13px;
    padding: 0 4px;
  }

  .enlistment-vault {
    padding: 18px;
    gap: 22px;
  }

  .vault-compartment {
    gap: 6px;
  }

  .visor-portal,
  .visor-expanse {
    padding: 11px 14px;
    font-size: 13px;
  }

  .visor-expanse {
    min-height: 90px;
  }

  .compartment-covenant {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .expanse-summon {
    padding: 12px 28px;
    font-size: 13px;
  }
}

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

.imperial-legacy-vault {
  padding: clamp(35px, 6vh, 45px) 0;
  background: linear-gradient(135deg, #000000 0%, #090909 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.01);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.imperial-legacy-vault::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 10%, rgba(192, 192, 192, 0.01) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.imperial-legacy-vault:hover {
  box-shadow: 0 -7px 40px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.legacy-enclave {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  animation: enclaveDescent 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

.enclave-anchors {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(25px, 5vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.enclave-anchors .anchor-crest:nth-child(1) {
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.enclave-anchors .anchor-crest:nth-child(1):hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

.anchor-crest {
  opacity: 0;
  transform: translateY(20px);
  animation: anchorRise 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

.crest-vanguard {
  display: block;
  color: #e2e2e2;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 15px);
  transition: color 0.3s ease;
}

.crest-vanguard:hover {
  color: #c0c0c0;
}

.vanguard-emblem {
  width: 55px;
  height: auto;
  filter: brightness(1.15);
  transition: filter 0.3s ease;
}

.anchor-crest:hover .vanguard-emblem {
  filter: brightness(1.25);
}

.legacy-codex {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  animation: codexUnveil 1.2s ease-out 0.5s forwards;
  color: #b0b0b0;
  font-size: clamp(13px, 1.7vw, 14px);
  line-height: 1.65;
}

.legacy-codex .codex-scroll {
  margin: 0;
  transition: color 0.3s ease;
}

.legacy-codex:hover .codex-scroll {
  color: #d0d0d0;
}

.scroll-emphasis {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.legacy-codex:hover .scroll-emphasis {
  color: #c0c0c0;
}

.codex-arc {
  color: #c0c0c0;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.codex-arc::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c0c0c0;
  transition: width 0.3s ease;
}

.codex-arc:hover {
  color: #e0e0e0;
}

.codex-arc:hover::after {
  width: 100%;
}

.codex-archives {
  padding: 28px;
  background: linear-gradient(145deg, #050505 0%, #101010 100%);
  border: 1px solid #272727;
  border-radius: 16px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.01);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}

.codex-archives:hover {
  transform: translateY(-3px);
  border-color: #373737;
  box-shadow: 0 7px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.archives-tome {
  margin: 0;
  color: #c8c8c8;
  transition: color 0.3s ease;
}

.codex-archives:hover .archives-tome {
  color: #e0e0e0;
}

.archives-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(90deg, #1a1a1a 0%, #2b2b2b 100%);
  color: #f8f8f8;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(13px, 1.7vw, 14px);
  border: 1px solid #3c3c3c;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.archives-seal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 192, 192, 0.08) 50%, transparent 100%);
  transition: left 0.6s ease;
}

.archives-seal:hover {
  color: #ffffff;
  background: linear-gradient(90deg, #222222 0%, #333333 100%);
  border-color: #4d4d4d;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

.archives-seal:hover::before {
  left: 100%;
}

.legacy-pinnacle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(30px, 5vw, 50px);
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  animation: pinnacleForge 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
  padding-top: 25px;
  border-top: 1px solid #1f1f1f;
}

@media (max-width: 768px) {
  .legacy-pinnacle {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.pinnacle-inscription {
  color: #a0a0a0;
  font-size: clamp(12px, 1.5vw, 13px);
  margin: 0;
  transition: color 0.3s ease;
}

.legacy-pinnacle:hover .pinnacle-inscription {
  color: #c0c0c0;
}

.pinnacle-arcade {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .pinnacle-arcade {
    justify-content: center;
  }
}

.arcade-portals {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 480px) {
  .arcade-portals {
    flex-direction: column;
    gap: 15px;
  }
}

.portal-nexus {
  opacity: 0;
  transform: translateY(20px);
  animation: nexusBloom 0.8s ease-out forwards;
}

.portal-nexus:nth-child(1) { animation-delay: 0.8s; }
.portal-nexus:nth-child(2) { animation-delay: 0.9s; }
.portal-nexus:nth-child(3) { animation-delay: 1s; }
.portal-nexus:nth-child(4) { animation-delay: 1.1s; }

.nexus-vault {
  color: #d0d0d0;
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(12px, 1.5vw, 13px);
  position: relative;
  transition: color 0.3s ease;
  padding-bottom: 4px;
}

.nexus-vault::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #c0c0c0;
  transition: width 0.3s ease;
}

.nexus-vault:hover {
  color: #c0c0c0;
}

.nexus-vault:hover::after {
  width: 100%;
}

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

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

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

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

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

@media (max-width: 768px) {
  .imperial-legacy-vault {
    padding: 30px 0;
  }

  .legacy-enclave {
    margin-bottom: 30px;
  }

  .enclave-anchors {
    gap: 20px;
    flex-wrap: wrap;
  }

  .legacy-codex {
    margin-bottom: 35px;
    gap: 20px;
    font-size: 13px;
  }

  .codex-archives {
    padding: 22px;
  }

  .archives-tome {
    font-size: 13px;
  }

  .archives-seal {
    padding: 10px 22px;
    font-size: 13px;
  }

  .legacy-pinnacle {
    gap: 15px;
    padding-top: 20px;
  }

  .pinnacle-inscription {
    font-size: 12px;
  }

  .arcade-portals {
    gap: 20px;
  }

  .nexus-vault {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .imperial-legacy-vault {
    padding: 25px 0;
    margin: 0 8px;
  }

  .legacy-enclave {
    margin-bottom: 25px;
  }

  .enclave-anchors {
    gap: 15px;
  }

  .legacy-codex {
    margin-bottom: 25px;
    gap: 15px;
    font-size: 12px;
  }

  .codex-archives {
    padding: 18px;
  }

  .archives-tome {
    font-size: 12px;
  }

  .archives-seal {
    padding: 8px 18px;
    font-size: 12px;
  }

  .legacy-pinnacle {
    gap: 12px;
    padding-top: 15px;
  }

  .pinnacle-inscription {
    font-size: 11px;
  }

  .arcade-portals {
    gap: 12px;
  }

  .nexus-vault {
    font-size: 11px;
  }
}

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

.cookie-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(20px, 3vw, 30px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.5s ease-out forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie-section:hover {
    transform: translateY(45px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

#cookieSvg {
    width: clamp(40px, 6vw, 50px);
    margin-bottom: 15px;
}

#cookieSvg g path {
    fill: #4da8ff;
    transition: fill 0.3s ease;
}

.cookie-section:hover #cookieSvg g path {
    fill: #2a2a4e;
}

.cookie-title {
    font-size: clamp(1.1em, 2vw, 1.2em);
    font-weight: 700;
    text-align: center;
    color: #2a2a4e;
    margin-bottom: 10px;
}

.cookie-text {
    text-align: center;
    font-size: clamp(0.65em, 1.5vw, 0.7em);
    font-weight: 500;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    flex-direction: row;
}

.cookie-accept {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background: linear-gradient(90deg, #2a2a4e 0%, #4da8ff 100%);
    transition-duration: 0.3s;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.4s ease;
}

.cookie-accept:hover {
    background: linear-gradient(90deg, #4da8ff 0%, #2a2a4e 100%);
}

.cookie-accept:hover::before {
    left: 100%;
}

.cookie-reject {
    width: clamp(70px, 10vw, 80px);
    height: clamp(25px, 4vw, 30px);
    background-color: #e0e0e0;
    transition-duration: 0.3s;
    color: #2a2a4e;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8em, 1.5vw, 0.9em);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.cookie-reject::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
}

.cookie-reject:hover {
    background-color: #c0c0c0;
}

.cookie-reject:hover::before {
    left: 100%;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-section {
        max-width: 90%;
        bottom: 10px;
        right: 5%;
        padding: 15px;
    }
    .cookie-title {
        font-size: 1em;
    }
    .cookie-text {
        font-size: 0.65em;
    }
    .cookie-buttons {
        gap: 15px;
    }
    .cookie-accept, .cookie-reject {
        width: 70px;
        height: 25px;
        font-size: 0.8em;
    }
}

@media (min-width: 320px) and (max-width: 360px) {
    .cookie-section {
        max-width: 95%;
        padding: 10px;
        bottom: 5px;
        right: 2.5%;
    }
    #cookieSvg {
        width: 35px;
    }
    .cookie-title {
        font-size: 0.9em;
    }
    .cookie-text {
        font-size: 0.6em;
    }
    .cookie-buttons {
        gap: 10px;
    }
    .cookie-accept, .cookie-reject {
        width: 60px;
        height: 22px;
        font-size: 0.7em;
        border-radius: 15px;
    }
}

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