@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;
}


/* 1 */
.alert-notice-strip {
  background: #1e1e1e;
  border-bottom: 1px solid rgba(55, 65, 81, 0.6);
  padding: 22px 0;
  display: flex;
  align-items: center;
}

.notice-frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.notice-body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
}

.warning-icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.alert-main-copy {
  color: #f0f6fc;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.4px;
  margin: 0;
  padding: 0 15px;
}

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

  .alert-main-copy {
    font-size: clamp(14px, 1.8vw, 16px);
    padding: 0 12px;
  }

  .warning-icon-svg {
    width: 18px;
    height: 18px;
  }

  .notice-body {
    gap: 10px;
  }
}

/* header */

.elite-header-nav {
  background: #000000;
  border-bottom: 1px solid #374151;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.layout-core {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mark {
  display: block;
  max-width: 50px;
  width: 100%;
}

.logo-image {
  width: 100%;
  height: auto;
}

.action-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.call-to-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #059669;
  color: #f9fafb;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.2);
}

.call-to-action-btn:hover {
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.menu-list {
  display: none;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1200px) {
  .menu-list {
    display: flex;
  }
}

.menu-item {
  display: flex;
  align-items: center;
}

.menu-link {
  color: #d1d5db;
  text-decoration: none;
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 400;
  white-space: nowrap;
  position: relative;
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #f9fafb;
}

.menu-link:hover {
  color: #f9fafb;
}

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

.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle-btn .toggle-line {
  width: 100%;
  height: 2px;
  background: #d1d5db;
}

.mobile-close-btn {
  display: none;
  background: none;
  border: none;
  color: #d1d5db;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1002;
}

@media (min-width: 1200px) {
  .menu-toggle-btn {
    display: none;
  }

  .call-to-action-btn {
    display: inline-flex;
  }
}

@media (max-width: 1199px) {
  .call-to-action-btn.engagement-portal {
    display: none;
  }

  .menu-list.mobile-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    gap: 25px;
    background: #111827;
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
  }

  .mobile-close-btn {
    display: block;
  }

  .menu-toggle-btn.mobile-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
  }

  .menu-toggle-btn.mobile-toggle .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle-btn.mobile-toggle .toggle-line:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle-btn.mobile-toggle .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .menu-link {
    font-size: clamp(18px, 3vw, 22px);
  }
}

@media (max-width: 768px) {
  .layout-core {
    gap: 15px;
  }

  .brand-mark {
    max-width: 40px;
  }

  .menu-list.mobile-overlay {
    gap: 20px;
    padding: 15px;
  }
}

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

.premier-landing-zone {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 70px 0;
}

.backdrop-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.backdrop-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tint-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.75);
}

.narrative-centerpiece {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  max-width: 750px;
  margin: 0 auto;
}

.headline-crest {
  font-size: clamp(44px, 5.5vw, 58px);
  font-weight: 700;
  line-height: 1.12;
  color: #f9fafb;
  margin: 0;
  letter-spacing: -0.4px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.narrative-subline {
  font-size: clamp(17px, 2.2vw, 19px);
  font-weight: 400;
  line-height: 1.55;
  color: #d1d5db;
  margin: 0;
  max-width: 550px;
}

.engagement-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: transparent;
  color: #f9fafb;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #10b981;
  border-radius: 50px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.engagement-portal::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #10b981;
  z-index: -1;
  transition: left 0.3s ease;
}

.engagement-portal:hover::before {
  left: 0;
}

.engagement-portal:hover {
  color: #f9fafb;
}

.cautionary-footnote {
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 400;
  line-height: 1.45;
  color: #9ca3af;
  margin: 0;
  max-width: 850px;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .premier-landing-zone {
    padding: 60px 0;
    min-height: 65vh;
  }

  .narrative-centerpiece {
    gap: 18px;
  }

  .headline-crest {
    font-size: clamp(36px, 8vw, 50px);
    letter-spacing: -0.2px;
  }

  .narrative-subline {
    font-size: clamp(16px, 3vw, 18px);
    padding: 0 10px;
  }

  .engagement-portal {
    padding: 12px 28px;
    font-size: 15px;
  }

  .cautionary-footnote {
    font-size: clamp(12px, 1.8vw, 14px);
    padding: 0 6px;
  }
}

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

.executive-trust-gallery {
  background: #1f2937;
  padding: 20px 0;
}

.trust-composition {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ratings-cluster {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.cluster-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.module-crest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.module-crest img {
  width: 40px;
  height: auto;
}

.module-crest.fff img {
  width: 120px;
  height: auto;
}


.module-crest figcaption {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 400;
}

.module-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.score-value {
  font-size: 20px;
  font-weight: 600;
  color: #f9fafb;
}

.score-symbols {
  display: flex;
  gap: 3px;
}

.symbol-star {
  color: #fbbf24;
}

.badges-alignment {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.alignment-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-illustration img {
  width: 35px;
  height: auto;
}

.badge-label {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 500;
}

.disclaimer-note {
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.corporate-virtue-arena {
  background: #111827;
  padding: 60px 0;
}

.arena-header {
  text-align: center;
  margin-bottom: 40px;
}

.header-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.virtue-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.panel-unit {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 1 300px;
  max-width: 350px;
}

.unit-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.unit-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-heading {
  font-size: 18px;
  font-weight: 500;
  color: #f9fafb;
  margin: 0;
}

.content-description {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
  margin: 0;
}

@media (max-width: 768px) {
  .executive-trust-gallery {
    padding: 20px 0;
  }

  .ratings-cluster {
    flex-direction: column;
    gap: 15px;
  }

  .cluster-module {
    flex-direction: row;
    gap: 15px;
  }

  .module-crest {
    flex-direction: row;
    align-items: center;
  }

  .module-crest img {
    width: 30px;
  }

    .module-crest.fff img {
    width: 120px;
  }

  .module-crest figcaption {
    font-size: 11px;
  }

  .score-value {
    font-size: 18px;
  }

  .badges-alignment {
    flex-direction: column;
    gap: 20px;
  }

  .disclaimer-note {
    font-size: 13px;
    padding: 0 10px;
  }

  .corporate-virtue-arena {
    padding: 50px 0;
  }

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

  .header-title {
    font-size: clamp(24px, 5vw, 30px);
  }

  .virtue-panels {
    gap: 25px;
  }

  .panel-unit {
    flex: 1 1 100%;
    max-width: none;
  }

  .unit-image img {
    height: 180px;
  }

  .content-heading {
    font-size: 17px;
  }

  .content-description {
    font-size: 14px;
  }
}

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

.summit-value-sanctum {
  background: #1f2937;
  padding: 80px 0;
  border-top: 1px solid #374151;
}

.sanctum-pinnacle {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.pinnacle-inscription {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: #f9fafb;
  margin: 0;
  text-align: center;
  letter-spacing: -0.3px;
}

.value-constellation {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.constellation-orb {
  flex: 0 1 calc(33.333% - 27px);
  max-width: 400px;
}

.orb-chassis {
  display: flex;
  flex-direction: row;
  gap: 15px;
  background: #111827;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(249, 250, 251, 0.05);
  border: 1px solid #374151;
  height: 100%;
}

.chassis-visor {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  margin: 0;
  overflow: hidden;
}

.chassis-visor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chassis-nexus {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  gap: 15px;
  flex: 1;
}

.nexus-crest {
  font-size: 20px;
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
  line-height: 1.3;
}

.nexus-scroll {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d5db;
  margin: 0;
}

@media (max-width: 1199px) and (min-width: 769px) {
  .value-constellation {
    gap: 35px;
  }

  .constellation-orb {
    flex: 0 1 calc(50% - 18px);
    max-width: 500px;
  }

  .chassis-visor {
    width: 160px;
    height: 160px;
  }

  .chassis-nexus {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .summit-value-sanctum {
    padding: 60px 0;
  }

  .sanctum-pinnacle {
    margin-bottom: 50px;
  }

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

  .value-constellation {
    gap: 30px;
  }

  .constellation-orb {
    flex: 0 1 100%;
    max-width: none;
  }

  .orb-chassis {
    flex-direction: column;
    gap: 15px;
  }

  .chassis-visor {
    width: 100%;
    height: 200px;
  }

  .chassis-nexus {
    padding: 15px;
    gap: 12px;
  }

  .nexus-crest {
    font-size: 19px;
  }

  .nexus-scroll {
    font-size: 14px;
  }
}


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

.elite-capability-vault {
  background: #1f2937;
  padding: 90px 0;
  border-top: 1px solid #374151;
}

.vault-overview {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.overview-summit {
  font-size: clamp(34px, 5.5vw, 44px);
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 14px 0;
  text-align: center;
  letter-spacing: -0.4px;
}

.overview-brief {
  font-size: clamp(16px, 2.3vw, 18px);
  font-weight: 400;
  color: #d1d5db;
  margin: 0;
  text-align: center;
  max-width: 550px;
  line-height: 1.6;
}

.capability-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
  justify-content: center;
  margin-bottom: 80px;
}

.matrix-element {
  flex: 1 1 calc(50% - 23px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #111827;
  border-radius: 18px;
  padding: 35px 28px;
  min-height: 260px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid #374151;
}

.element-symbol {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.element-symbol svg {
  color: #10b981;
  width: 52px;
  height: 52px;
}

.element-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  justify-content: center;
}

.core-title {
  font-size: clamp(19px, 2.4vw, 21px);
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.core-note {
  font-size: clamp(14px, 1.8vw, 16px);
  color: #9ca3af;
  line-height: 1.55;
  margin: 0;
  max-width: 300px;
}

.highlight-panel {
  display: flex;
  align-items: center;
  gap: 50px;
}

.panel-illustration {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.panel-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.panel-texture {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.texture-lead {
  font-size: clamp(30px, 4.5vw, 38px);
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 18px 0;
  line-height: 1.25;
}

.lead-emphasis {
  color: #10b981;
  font-weight: 800;
}

.texture-caption {
  font-size: clamp(15px, 2vw, 17px);
  color: #d1d5db;
  line-height: 1.6;
  margin: 0;
  max-width: 350px;
}

@media (max-width: 1199px) and (min-width: 769px) {
  .capability-matrix {
    gap: 40px;
  }

  .matrix-element {
    flex: 1 1 calc(50% - 20px);
    padding: 30px 24px;
    min-height: 240px;
  }

  .highlight-panel {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .elite-capability-vault {
    padding: 70px 0;
  }

  .vault-overview {
    margin-bottom: 60px;
  }

  .overview-summit {
    font-size: clamp(30px, 6vw, 38px);
  }

  .overview-brief {
    font-size: clamp(15px, 3vw, 17px);
    padding: 0 12px;
  }

  .capability-matrix {
    gap: 35px;
    flex-direction: column;
  }

  .matrix-element {
    flex: none;
    min-height: 220px;
    padding: 28px 22px;
  }

  .element-symbol {
    margin-bottom: 18px;
  }

  .element-symbol svg {
    width: 46px;
    height: 46px;
  }

  .core-title {
    font-size: clamp(18px, 3vw, 20px);
  }

  .core-note {
    font-size: clamp(13px, 2.5vw, 15px);
  }

  .highlight-panel {
    flex-direction: column;
    gap: 30px;
  }

  .texture-lead {
    font-size: clamp(26px, 5.5vw, 32px);
  }

  .texture-caption {
    font-size: clamp(14px, 3vw, 16px);
    padding: 0 8px;
  }
}



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

.prestige-enrollment-hall {
  background: #1f2937;
  padding: 75px 0;
  border-top: 1px solid #374151;
}

.hall-prologue {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 55px;
}

.prologue-mandate {
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 12px 0;
  text-align: center;
  letter-spacing: -0.3px;
}

.prologue-note {
  font-size: clamp(15px, 2.2vw, 17px);
  font-weight: 400;
  color: #d1d5db;
  margin: 0;
  text-align: center;
  max-width: 520px;
  line-height: 1.55;
}

.enrollment-matrix {
  background: #111827;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid #374151;
}

.matrix-group {
  display: flex;
  flex-direction: column;
  gap: 25px;
  border: none;
  padding: 0;
  margin: 0;
}

.group-legend {
  font-size: 18px;
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 20px 0;
  padding: 0;
  border-bottom: none;
}

.group-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.group-field label {
  font-size: 14px;
  font-weight: 500;
  color: #f9fafb;
}

.field-input,
.field-area {
  padding: 15px 18px;
  background: #1f2937;
  border: 1px solid #4b5563;
  border-radius: 12px;
  font-size: 15px;
  color: #f9fafb;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-input:focus,
.field-area:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.field-input::placeholder,
.field-area::placeholder {
  color: #9ca3af;
}

.field-area {
  resize: vertical;
  min-height: 120px;
}

.field-hint {
  font-size: 13px;
  color: #ef4444;
  min-height: 18px;
}

.matrix-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-disclosure {
  font-size: 13px;
  color: #9ca3af;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
}

.footer-disclosure a {
  color: #10b981;
  text-decoration: none;
  font-weight: 500;
}

.footer-disclosure a:hover {
  color: #059669;
}

.footer-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: transparent;
  color: #f9fafb;
  border: 2px solid #10b981;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.footer-trigger:hover {
  background: #10b981;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.2);
}

.success-notice {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111827;
  border-radius: 24px;
  padding: 45px;
  margin-top: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid #10b981;
}

.success-notice p {
  font-size: 18px;
  color: #10b981;
  margin: 0;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .prestige-enrollment-hall {
    padding: 60px 0;
  }

  .hall-prologue {
    margin-bottom: 45px;
  }

  .prologue-mandate {
    font-size: clamp(26px, 6vw, 34px);
  }

  .prologue-note {
    font-size: clamp(14px, 3vw, 16px);
    padding: 0 10px;
  }

  .enrollment-matrix {
    padding: 30px;
    gap: 30px;
  }

  .matrix-group {
    gap: 22px;
  }

  .group-legend {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .group-field {
    gap: 8px;
  }

  .group-field label {
    font-size: 13px;
  }

  .field-input,
  .field-area {
    padding: 13px 16px;
    font-size: 14px;
  }

  .field-area {
    min-height: 110px;
  }

  .field-hint {
    font-size: 12px;
  }

  .matrix-footer {
    gap: 12px;
  }

  .footer-disclosure {
    font-size: 12px;
    padding: 0 8px;
  }

  .footer-trigger {
    padding: 14px 28px;
    font-size: 15px;
  }

  .success-notice {
    padding: 35px;
    margin-top: 20px;
  }

  .success-notice p {
    font-size: 17px;
  }
}


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

.legacy-closure-chamber {
  background: #000000;
  padding: 50px 0 30px 0;
  border-top: 1px solid #374151;
}

.closure-manifest {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 40px;
}

.manifest-warnings {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.warning-paragraph {
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.6;
  color: #d1d5db;
  margin: 0;
}

.warning-paragraph strong {
  color: #f9fafb;
  font-weight: 600;
}

.manifest-credentials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: #111827;
  border-radius: 16px;
  border: 1px solid #4b5563;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.credential-statement {
  font-size: clamp(14px, 1.7vw, 16px);
  color: #d1d5db;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  max-width: 1000px;
}

.credential-access {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: #f9fafb;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid #10b981;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.credential-access:hover {
  background: #10b981;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.closure-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.base-copyright {
  font-size: clamp(12px, 1.4vw, 14px);
  color: #9ca3af;
  margin: 0;
  flex: 1;
}

.base-navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
  justify-content: flex-end;
}

.navigation-link {
  font-size: clamp(12px, 1.4vw, 14px);
  color: #d1d5db;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

.navigation-link:hover {
  color: #f9fafb;
}

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

@media (max-width: 768px) {
  .legacy-closure-chamber {
    padding: 40px 0 25px 0;
  }

  .closure-manifest {
    gap: 30px;
    margin-bottom: 35px;
  }

  .manifest-warnings {
    gap: 16px;
  }

  .warning-paragraph {
    font-size: clamp(12px, 2vw, 14px);
    padding: 0 5px;
  }

  .manifest-credentials {
    padding: 20px;
    gap: 12px;
  }

  .credential-statement {
    font-size: clamp(13px, 2vw, 15px);
  }

  .credential-access {
    padding: 10px 20px;
    font-size: 13px;
  }

  .closure-base {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }

  .base-navigation {
    justify-content: center;
    gap: 20px;
  }

  .navigation-link {
    font-size: clamp(11px, 2.5vw, 13px);
  }
}

@media (max-width: 480px) {
  .closure-manifest {
    gap: 25px;
    margin-bottom: 30px;
  }

  .manifest-credentials {
    padding: 18px;
  }

  .base-navigation {
    gap: 15px;
    flex-wrap: wrap;
  }
}

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

.preference-overlay {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #1f2937;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  max-width: 450px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  border: 1px solid #374151;
}

.overlay-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.overlay-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content-heading {
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.content-description {
  font-size: clamp(13px, 1.7vw, 15px);
  color: #d1d5db;
  margin: 0;
  line-height: 1.5;
}

.overlay-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.action-primary {
  padding: 12px 20px;
  background: #10b981;
  color: #f9fafb;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.action-primary:hover {
  background: #059669;
}

.action-secondary {
  padding: 12px 20px;
  background: transparent;
  color: #d1d5db;
  border: 1px solid #4b5563;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.action-secondary:hover {
  background: #111827;
  color: #f9fafb;
  border-color: #6b7280;
}

@media (max-width: 768px) {
  .preference-overlay {
    max-width: 85%;
    bottom: 15px;
    right: 15px;
    padding: 20px;
    gap: 15px;
  }

  .overlay-icon {
    width: 35px;
    height: 35px;
  }

  .content-heading {
    font-size: clamp(15px, 2.5vw, 17px);
  }

  .content-description {
    font-size: clamp(12px, 2vw, 14px);
  }

  .overlay-actions {
    gap: 8px;
  }

  .action-primary,
  .action-secondary {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .preference-overlay {
    max-width: 90%;
    bottom: 10px;
    right: 10px;
    padding: 18px;
    gap: 12px;
  }

  .overlay-icon {
    width: 30px;
    height: 30px;
  }

  .overlay-actions {
    flex-direction: row;
    gap: 10px;
  }
}

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

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

.executive-portrait-gallery {
  background: #1f2937;
  padding: 80px 0;
  border-top: 1px solid #374151;
}

.gallery-foreword {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 60px;
}

.foreword-legacy {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 700;
  color: #f9fafb;
  margin: 0;
  letter-spacing: -0.3px;
}

.foreword-narrative {
  font-size: clamp(16px, 2.2vw, 18px);
  color: #d1d5db;
  margin: 0;
  max-width: 700px;
  line-height: 1.6;
}

.gallery-credentials {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
  margin-bottom: 60px;
  padding: 40px;
  background: #111827;
  border-radius: 20px;
  border: 1px solid #4b5563;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.credentials-emblem {
  font-size: clamp(24px, 3.5vw, 28px);
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.credentials-decree {
  font-size: clamp(15px, 2vw, 17px);
  color: #d1d5db;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.credentials-access {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.access-certificate,
.access-verifier {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: #f9fafb;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.access-certificate {
  background: transparent;
  border: 2px solid #10b981;
}

.access-certificate:hover {
  background: #10b981;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.access-verifier {
  background: #10b981;
}

.access-verifier:hover {
  background: #059669;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
}

.gallery-vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin-bottom: 60px;
}

.vision-mantra {
  font-size: clamp(24px, 3.5vw, 28px);
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.vision-pledge {
  font-size: clamp(16px, 2.2vw, 18px);
  color: #d1d5db;
  margin: 0;
  max-width: 650px;
  line-height: 1.6;
}

.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 550px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pillar-tenet {
  font-size: 15px;
  color: #d1d5db;
  margin: 0;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.pillar-tenet::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.gallery-reach {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.reach-coordinates {
  font-size: clamp(24px, 3.5vw, 28px);
  font-weight: 600;
  color: #f9fafb;
  margin: 0;
}

.reach-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 500px;
}

.detail-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.entry-label {
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
  font-weight: 500;
}

.entry-value {
  font-size: 15px;
  color: #f9fafb;
  margin: 0;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-value:hover {
  color: #10b981;
}

@media (max-width: 768px) {
  .executive-portrait-gallery {
    padding: 60px 0;
  }

  .gallery-foreword {
    margin-bottom: 50px;
    gap: 18px;
  }

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

  .foreword-narrative {
    font-size: clamp(15px, 3vw, 17px);
    padding: 0 10px;
  }

  .gallery-credentials {
    padding: 30px;
    margin-bottom: 50px;
    gap: 20px;
  }

  .credentials-emblem {
    font-size: clamp(22px, 4vw, 26px);
  }

  .credentials-decree {
    font-size: clamp(14px, 2.5vw, 16px);
  }

  .credentials-access {
    gap: 12px;
  }

  .access-certificate,
  .access-verifier {
    padding: 10px 20px;
    font-size: 13px;
  }

  .gallery-vision {
    margin-bottom: 50px;
    gap: 18px;
  }

  .vision-mantra {
    font-size: clamp(22px, 4vw, 26px);
  }

  .vision-pledge {
    font-size: clamp(15px, 3vw, 17px);
    padding: 0 10px;
  }

  .pillar-tenet {
    font-size: 14px;
    padding-left: 18px;
  }

  .gallery-reach {
    gap: 18px;
  }

  .reach-coordinates {
    font-size: clamp(22px, 4vw, 26px);
  }

  .reach-details {
    gap: 16px;
  }

  .entry-label {
    font-size: 13px;
  }

  .entry-value {
    font-size: 14px;
  }
}