/* ═══════════════════ QUANTUM 1 — Hyperstar Developers ═══════════════════ */

:root {
  --bg: #04060e;
  --bg-soft: #090d1c;
  --ink: #eef1fb;
  --muted: #8b93ad;
  --gold: #e8a25c;
  --gold-bright: #ffc98a;
  --blue: #6f8dff;
  --serif: "Cormorant Garamond", serif;
  --sans: "Manrope", sans-serif;
  --display: "Archivo Black", "Arial Black", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(232, 162, 92, 0.35); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
}
.preloader__star {
  font-size: 34px; color: var(--gold-bright);
  animation: starPulse 1.2s ease-in-out infinite;
  text-shadow: 0 0 30px var(--gold);
}
@keyframes starPulse {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: .7; }
  50% { transform: scale(1.35) rotate(90deg); opacity: 1; }
}
.preloader__text { letter-spacing: .55em; font-size: 12px; color: var(--muted); padding-left: .55em; }
.preloader__bar {
  width: 180px; height: 1px; background: rgba(255,255,255,.12); overflow: hidden;
}
.preloader__bar span {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: barSlide 1.1s linear infinite;
}
@keyframes barSlide { from { transform: translateX(-100%);} to { transform: translateX(450%);} }

/* ═══════════ STARFIELD ═══════════ */
#starfield {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(4,6,14,.75), rgba(4,6,14,0));
}
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 42px; width: auto; display: block; object-fit: contain; }
.nav__logo-star { color: var(--gold-bright); font-size: 14px; }
.nav__logo-text {
  font-size: 17px; letter-spacing: .28em; font-weight: 400; text-transform: lowercase;
}
.star-t { color: var(--gold-bright); font-size: .75em; vertical-align: 8%; margin: 0 -1px; }
.nav__links { display: flex; gap: clamp(16px, 3vw, 38px); align-items: center; }
.nav__links a {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
  transition: color .3s ease;
}
.nav__links a:hover { color: var(--gold-bright); }
.nav__cta {
  border: 1px solid rgba(232,162,92,.5); padding: 9px 20px; border-radius: 100px;
  color: var(--gold-bright) !important;
}
.nav__cta:hover { background: rgba(232,162,92,.12); }
.nav__wordmark {
  font-family: var(--display);
  font-size: 15px; letter-spacing: .12em;
  color: var(--ink);
  white-space: nowrap;
  transition: opacity .3s ease;
}
.nav__wordmark span { color: var(--gold-bright); }
.nav__wordmark:hover { opacity: .75; }

/* ═══════════ SECTION SHARED ═══════════ */
.section {
  position: relative; z-index: 2;
  padding: clamp(90px, 14vh, 160px) clamp(20px, 7vw, 110px);
  max-width: 1400px; margin: 0 auto;
}
.section__label {
  font-size: 11px; letter-spacing: .45em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 28px;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; z-index: 2;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__glow {
  position: absolute; left: 50%; bottom: -35vh; transform: translateX(-50%);
  width: 130vw; height: 70vh; border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(255,190,120,.28) 0%, rgba(140,110,255,.10) 40%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}
.hero__content { position: relative; padding: 0 20px; }
.hero__eyebrow {
  font-size: clamp(10px, 1.2vw, 13px); letter-spacing: .6em; color: var(--muted);
  margin-bottom: 34px; padding-left: .6em;
}
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(44px, 9.5vw, 138px);
  line-height: .95; letter-spacing: .01em; text-transform: uppercase;
  display: flex; align-items: baseline; justify-content: center; gap: .14em;
}
.hero__word {
  background: linear-gradient(180deg, #ffffff 30%, #aab4d4 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__one {
  color: var(--gold-bright);
  text-shadow: 0 0 45px rgba(232,162,92,.65), 0 0 120px rgba(232,162,92,.35);
}
.hero__tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px, 2.4vw, 27px); color: var(--muted);
  margin-top: 26px;
}
.hero__actions {
  margin-top: 48px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.btn {
  display: inline-block; padding: 15px 36px; border-radius: 100px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  font-family: var(--sans); border: none; cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.btn--gold {
  background: linear-gradient(120deg, #d98f45, #ffc98a);
  color: #1a0f04;
  box-shadow: 0 0 34px rgba(232,162,92,.35);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 8px 50px rgba(232,162,92,.55); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,.22); color: var(--ink);
}
.btn--ghost:hover { background: rgba(255,255,255,.07); transform: translateY(-3px); }

.hero__scrollcue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: .5em; color: var(--muted); padding-left: .5em;
}
.hero__scrollcue-line {
  width: 1px; height: 52px; overflow: hidden; position: relative;
  background: rgba(255,255,255,.12);
}
.hero__scrollcue-line::after {
  content: ""; position: absolute; left: 0; top: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold-bright));
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0% { top: -100%; } 60%, 100% { top: 100%; } }

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  position: relative; z-index: 2; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 20px 0;
  background: rgba(9,13,28,.5);
}
.marquee__track {
  display: flex; white-space: nowrap; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-size: 13px; letter-spacing: .5em; color: var(--muted);
  text-transform: uppercase;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══════════ VISION ═══════════ */
.vision__statement {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(24px, 3.8vw, 50px);
  line-height: 1.18; max-width: 1050px; letter-spacing: .01em;
}
.vision__statement em { color: var(--gold-bright); font-style: normal; }
.vision__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(28px, 5vw, 70px); margin-top: 64px; max-width: 1000px;
}
.vision__cols p { color: var(--muted); line-height: 1.9; font-size: 15.5px; }

.vision__cta,
.features__cta,
.residences__cta,
.about__cta {
  margin-top: clamp(32px, 4.5vh, 52px);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ═══════════ SHOWCASE ═══════════ */
.showcase { position: relative; z-index: 2; }
.showcase__pin {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 60px 20px;
}
.showcase__frame {
  position: relative; width: min(520px, 88vw);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.75), 0 0 80px rgba(110,90,255,.12);
  outline: 1px solid rgba(255,255,255,.1);
}
.showcase__img { width: 100%; transform-origin: center; }
.showcase__caption {
  position: absolute; inset: auto 0 0 0;
  padding: 42px 34px 34px;
  background: linear-gradient(180deg, transparent, rgba(4,6,14,.94) 62%);
}
.showcase__caption h3 {
  font-family: var(--display); font-size: clamp(19px, 2.4vw, 27px); font-weight: 400;
  text-transform: uppercase; letter-spacing: .02em;
  margin-bottom: 10px;
}
.showcase__caption p { color: var(--muted); font-size: 14px; line-height: 1.75; max-width: 400px; }
.showcase__caption .section__label { margin-bottom: 12px; }

/* ═══════════ DUO ═══════════ */
.duo {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 6vw, 90px); align-items: center;
}
.duo__media {
  border-radius: 18px; overflow: hidden;
  outline: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
}
.duo__media img { width: 100%; scale: 1.15; }
.duo__copy h3 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 42px); line-height: 1.1; margin-bottom: 24px;
  letter-spacing: .01em;
}
.duo__copy p { color: var(--muted); line-height: 1.9; font-size: 15.5px; margin-bottom: 36px; max-width: 480px; }

/* ═══════════ BROCHURE GALLERY ═══════════ */
.brochure { position: relative; z-index: 2; overflow: hidden; }
.brochure__pin {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 90px 0 60px;
}
.brochure__head {
  padding: 0 clamp(20px, 7vw, 110px);
  max-width: 1400px; margin: 0 auto 48px; width: 100%; box-sizing: border-box;
}
.brochure__heading {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 4vw, 50px); letter-spacing: .01em;
}
.brochure__sub { margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 560px; }
.brochure__track {
  display: flex; gap: clamp(18px, 2.5vw, 30px);
  padding: 0 clamp(20px, 7vw, 110px);
  width: max-content;
  will-change: transform;
}
.brochure__card {
  position: relative; flex: 0 0 auto;
  width: clamp(230px, 26vw, 330px);
  border-radius: 14px; overflow: hidden;
  outline: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
  background: var(--bg-soft);
}
.brochure__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brochure__card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(4,6,14,.9));
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-bright);
}
.brochure__card--cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 34px 26px;
  background: linear-gradient(160deg, rgba(232,162,92,.12), rgba(9,13,28,.9));
  outline: 1px solid rgba(232,162,92,.35);
}
.brochure__cta-count {
  font-family: var(--display); font-size: 84px; line-height: 1;
  color: var(--gold-bright); text-shadow: 0 0 45px rgba(232,162,92,.5);
}
.brochure__cta-text { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 220px; }

/* ═══════════ PARTNERS (BUILT WITH THE BEST) ═══════════ */
.partners {
  position: relative; 
  z-index: 2; 
  text-align: center;
  padding: clamp(45px, 6vh, 70px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 6, 14, 0.5);
  overflow: hidden;
}

.partners .section__label { 
  text-align: center; 
  color: var(--gold-bright, #e8a25c);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: 0.28em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.partners__ticker-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners__track {
  display: flex;
  width: max-content;
  animation: partnersTicker 40s linear infinite;
}

.partners__track:hover {
  animation-play-state: paused;
}

@keyframes partnersTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners__list {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5vw, 85px);
  padding: 12px clamp(20px, 2.5vw, 40px);
}

.partner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  gap: 5px;
}

.partner__cat {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 162, 92, 0.8);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.partner__brand {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: clamp(13px, 1.35vw, 16px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(225, 235, 255, 0.85);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.partner__item:hover .partner__brand {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(232, 162, 92, 0.7);
}

.partner__item:hover .partner__cat {
  color: var(--gold-bright, #e8a25c);
  text-shadow: 0 0 10px rgba(232, 162, 92, 0.4);
}

/* ═══════════ MODAL ═══════════ */
.modal {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(2,3,8,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal__dialog {
  position: relative; width: min(480px, 94vw);
  max-height: 88vh; overflow-y: auto;
  background: linear-gradient(165deg, #0c1122, #060912);
  border-radius: 20px;
  outline: 1px solid rgba(232,162,92,.28);
  box-shadow: 0 40px 120px rgba(0,0,0,.8), 0 0 90px rgba(232,162,92,.1);
  padding: 40px 36px 34px;
  transform: translateY(26px) scale(.97);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: none; border: 1px solid rgba(255,255,255,.15);
  color: var(--muted); font-size: 13px; cursor: pointer;
  transition: color .3s ease, border-color .3s ease, transform .3s ease;
}
.modal__close:hover { color: var(--ink); border-color: rgba(255,255,255,.4); transform: rotate(90deg); }
.modal__title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(20px, 2.6vw, 26px); letter-spacing: .01em; margin-bottom: 12px;
}
.modal__sub { color: var(--muted); font-size: 13.5px; line-height: 1.75; margin-bottom: 26px; }
.modal__form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; text-align: left; }
.field label { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--ink); font-family: var(--sans); font-size: 14px;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
  appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238b93ad' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input::placeholder { color: rgba(139,147,173,.55); }
.field input:focus, .field select:focus {
  border-color: rgba(232,162,92,.6);
  box-shadow: 0 0 0 3px rgba(232,162,92,.14);
  background: rgba(255,255,255,.07);
}
.field input.is-invalid { border-color: rgba(255,110,110,.65); }
.modal__error { color: #ff8d8d; font-size: 12.5px; min-height: 16px; margin: -4px 0 0; }
.modal__submit { margin-top: 4px; width: 100%; cursor: pointer; border: none; font-family: var(--sans); }
.modal__fine { font-size: 10.5px; color: rgba(139,147,173,.55); line-height: 1.6; letter-spacing: .04em; }
.modal__step--success { text-align: center; padding: 16px 0 8px; }
.modal__star {
  font-size: 40px; color: var(--gold-bright);
  text-shadow: 0 0 34px var(--gold);
  margin-bottom: 18px;
  animation: starPulse 1.6s ease-in-out infinite;
}
.modal__viewlink {
  display: block; margin-top: 18px; font-size: 13px;
  color: var(--muted); text-decoration: underline; text-underline-offset: 4px;
}
.modal__viewlink:hover { color: var(--gold-bright); }

body.modal-open { overflow: hidden; }

/* ═══════════ FEATURES ═══════════ */
.features__heading {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 4vw, 50px); margin-bottom: 64px; letter-spacing: .01em;
}
.features__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  position: relative;
  padding: 38px 32px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  outline: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(8px);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), outline-color .45s ease, background .45s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%),
    rgba(232,162,92,.14), transparent 45%);
  opacity: 0; transition: opacity .4s ease;
}
.card:hover { transform: translateY(-8px); outline-color: rgba(232,162,92,.4); }
.card:hover::before { opacity: 1; }
.card__icon {
  font-size: 26px; color: var(--gold-bright); margin-bottom: 22px;
  text-shadow: 0 0 22px rgba(232,162,92,.6);
}
.card h4 { font-size: 17px; font-weight: 600; letter-spacing: .04em; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ═══════════ RESIDENCES ═══════════ */
.residences__heading {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 4vw, 50px); letter-spacing: .01em;
}
.residences__sub { margin-top: 18px; color: var(--muted); font-size: 15px; line-height: 1.8; max-width: 560px; }
.residences__filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip {
  background: none; cursor: pointer;
  border: 1px solid rgba(255,255,255,.16);
  color: var(--muted);
  padding: 9px 20px; border-radius: 100px;
  font-family: var(--sans); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}
.chip:hover { color: var(--ink); border-color: rgba(255,255,255,.35); }
.chip.is-active {
  color: #1a0f04; background: linear-gradient(120deg, #d98f45, #ffc98a);
  border-color: transparent;
}
.residences__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-auto-flow: dense;
  gap: 18px; margin-top: 44px;
}
.rcard {
  position: relative; margin: 0; overflow: hidden; border-radius: 14px;
  outline: 1px solid rgba(255,255,255,.1);
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
}
.rcard--wide { grid-column: span 2; aspect-ratio: 16 / 8.4; }
.rcard img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}
.rcard:hover img { transform: scale(1.06); }
.rcard figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(4,6,14,.88));
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-bright);
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
}
.rcard:hover figcaption { opacity: 1; transform: translateY(0); }
.rcard.is-hidden { display: none; }
@media (max-width: 640px) {
  .rcard--wide { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ═══════════ ABOUT US ═══════════ */
.about__heading {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 4vw, 50px); letter-spacing: .01em;
}
.about__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(24px, 4vw, 60px); margin-top: 34px; max-width: 1000px;
}
.about__cols p { color: var(--muted); font-size: 15px; line-height: 1.9; }
.about__pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 56px;
}
.about__pillar {
  border: 1px solid rgba(255,255,255,.1); border-radius: 14px;
  padding: 28px 26px;
  background: linear-gradient(160deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.about__pillar-star { color: var(--gold-bright); font-size: 15px; }
.about__pillar h4 {
  margin-top: 14px;
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
}
.about__pillar p { margin-top: 10px; color: var(--muted); font-size: 13.5px; line-height: 1.75; }

/* ═══════════ FLOATING BROCHURE PILL ═══════════ */
.float-brochure {
  position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 40;
  display: flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 100px;
  border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: #1a0f04;
  background: linear-gradient(120deg, #d98f45, #ffc98a);
  box-shadow: 0 8px 40px rgba(217,143,69,.45), 0 2px 10px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.float-brochure.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-brochure:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(217,143,69,.6), 0 2px 10px rgba(0,0,0,.5); }
.float-brochure__icon { font-size: 15px; }
body.modal-open .float-brochure { opacity: 0; pointer-events: none; }

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 95;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(2,3,8,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox__stage {
  position: relative; margin: 0; max-width: min(1080px, 86vw);
  transform: scale(.96);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__stage img {
  max-width: 100%; max-height: 78vh;
  border-radius: 14px;
  outline: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 120px rgba(0,0,0,.85);
}
.lightbox__stage figcaption {
  margin-top: 14px; text-align: center;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-bright);
}
.lightbox__btn {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.06); cursor: pointer;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.lightbox__btn:hover { background: rgba(232,162,92,.18); border-color: rgba(232,162,92,.5); color: var(--gold-bright); }
.lightbox__close { position: absolute; top: 22px; right: 22px; width: 42px; height: 42px; font-size: 14px; }
.lightbox__nav { width: 52px; height: 52px; font-size: 30px; line-height: 1; flex: 0 0 auto; }
@media (max-width: 640px) {
  .lightbox { gap: 8px; padding: 12px; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 22px; }
}

/* ═══════════ STATS ═══════════ */
.stats { text-align: center; }
.stats__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 70px 0;
}
.stat__num {
  font-family: var(--display); font-size: clamp(42px, 5vw, 72px); font-weight: 400;
  color: var(--gold-bright);
  text-shadow: 0 0 40px rgba(232,162,92,.4);
}
.stat__suffix { font-family: var(--display); font-size: clamp(18px, 2vw, 28px); color: var(--gold); margin-left: 6px; }
.stat p { margin-top: 10px; color: var(--muted); font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase; }

/* ═══════════ CONTACT ═══════════ */
.contact { text-align: center; overflow: hidden; }
.contact__glow {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -40%);
  width: 900px; height: 500px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232,162,92,.14), transparent 65%);
  pointer-events: none;
}
.contact__heading {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 4.2vw, 54px); max-width: 900px; margin: 0 auto;
  letter-spacing: .01em; line-height: 1.15;
}
.contact .section__label { text-align: center; }
.contact__sub {
  margin: 18px auto 0; max-width: 520px;
  color: var(--muted); font-size: 15px; line-height: 1.8;
}
.contact__layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  text-align: left;
  margin: 52px auto 0;
  max-width: 980px;
}
.contact__aside h3 {
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 18px;
}
.contact__mail {
  display: inline-block; font-size: clamp(14px, 1.6vw, 17px); letter-spacing: .06em;
  color: var(--gold-bright); border-bottom: 1px solid rgba(232,162,92,.45);
  padding-bottom: 4px; transition: letter-spacing .4s ease;
}
.contact__mail:hover { letter-spacing: .12em; }
.contact__phone {
  display: block; margin-top: 14px;
  font-size: 15px; color: var(--ink); letter-spacing: .04em;
  transition: color .3s ease;
}
.contact__phone:hover { color: var(--gold-bright); }
.contact__aside-note {
  margin-top: 28px; color: var(--muted); font-size: 13.5px; line-height: 1.7;
}
.contact__inline-link {
  background: none; border: none; padding: 0; cursor: pointer;
  font: inherit; color: var(--gold-bright);
  border-bottom: 1px solid rgba(232,162,92,.4);
}
.contact__inline-link:hover { border-bottom-color: var(--gold-bright); }
.contact__form {
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
  display: flex; flex-direction: column; gap: 16px;
}
.contact__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field textarea {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font-family: var(--sans); font-size: 14px; line-height: 1.55;
  resize: vertical; min-height: 110px;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.field textarea::placeholder { color: rgba(139,147,173,.55); }
.field textarea:focus {
  border-color: rgba(232,162,92,.6);
  box-shadow: 0 0 0 3px rgba(232,162,92,.14);
  background: rgba(255,255,255,.07);
}
.contact__error { color: #ff8d8d; font-size: 12.5px; min-height: 16px; margin: -4px 0 0; }
.contact__submit { width: 100%; margin-top: 4px; }
.contact__fine { font-size: 10.5px; color: rgba(139,147,173,.55); line-height: 1.6; letter-spacing: .04em; }
.contact__success {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-content: center; gap: 10px;
  text-align: center; padding: 28px;
  border-radius: 18px;
  background: rgba(4,6,14,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.contact__success[hidden] { display: none; }
.contact__success-star { color: var(--gold-bright); font-size: 28px; }
.contact__success h4 {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: 22px; letter-spacing: .04em;
}
.contact__success p { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 320px; margin: 0 auto; }
@media (max-width: 800px) {
  .contact__layout { grid-template-columns: 1fr; }
  .contact__aside { text-align: center; }
  .contact__form-grid { grid-template-columns: 1fr; }
}

/* ═══════════ FOOTER (minimal centered) ═══════════ */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(9,13,28,.35), rgba(4,6,14,.9));
  text-align: center;
}
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  padding: clamp(64px, 9vh, 100px) clamp(20px, 5vw, 48px) 0;
  display: flex; flex-direction: column; align-items: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer__logo { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: .3em; font-weight: 300; padding-left: .3em; }
.footer__logo-sub { font-size: 10px; letter-spacing: .8em; color: var(--muted); padding-left: .8em; }
.footer__desc {
  margin-top: 16px; max-width: 460px;
  color: var(--muted); font-size: 14px; line-height: 1.8;
}
.footer__address {
  margin-top: 18px; font-style: normal;
  font-size: 13px; line-height: 2; color: var(--muted); letter-spacing: .04em;
}
.footer__address a { color: var(--gold-bright); transition: color .3s ease; }
.footer__address a:hover { color: var(--ink); }
.footer__address-dot { margin: 0 8px; color: rgba(139,147,173,.5); }

.footer__socials {
  display: flex; gap: 14px; margin-top: 34px;
}
.footer__social {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--muted);
  transition: transform .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.footer__social:hover {
  transform: scale(1.15);
  color: var(--gold-bright);
  border-color: rgba(232,162,92,.5);
  box-shadow: 0 0 24px rgba(232,162,92,.25);
}
.footer__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(28px, 5vw, 64px);
  margin-top: 56px; width: 100%; max-width: 820px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h5 {
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 6px;
}
.footer__col a {
  font-size: 13.5px; color: var(--muted);
  transition: color .3s ease;
}
.footer__col a:hover { color: var(--ink); }
.footer__bar {
  width: 100%; margin-top: 64px; padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bar p { font-size: 11.5px; color: rgba(139,147,173,.6); letter-spacing: .12em; }

/* ═══════════ ANIM PRIMITIVES ═══════════ */
.fade-up { opacity: 0; transform: translateY(46px); }
.split-lines .line { display: block; overflow: hidden; }
.split-lines .line > span { display: block; transform: translateY(110%); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1360px) {
  .nav__wordmark { display: none; }
}
@media (max-width: 1100px) {
  .nav__links { gap: clamp(10px, 1.8vw, 20px); }
  .nav__links a { font-size: 11px; letter-spacing: .12em; }
}
@media (max-width: 720px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__wordmark { display: none; }
  .hero__title { flex-direction: row; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ═══════════ ABOUT PAGE SPECIFIC STYLES ═══════════ */
.breadcrumb-bar {
  position: relative;
  z-index: 5;
  padding-top: 110px;
  padding-bottom: 10px;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: clamp(20px, 7vw, 110px);
  padding-right: clamp(20px, 7vw, 110px);
}
.breadcrumb-inner {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-inner a {
  color: var(--gold-bright);
  transition: color 0.3s ease;
}
.breadcrumb-inner a:hover {
  color: #ffffff;
}
.breadcrumb-current {
  color: rgba(255,255,255,0.7);
}

.about-hero {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 5vh, 60px) clamp(20px, 7vw, 110px) clamp(60px, 8vh, 100px);
  max-width: 1400px;
  margin: 0 auto;
}
.about-hero__title {
  font-family: var(--display);
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.12;
  text-transform: uppercase;
  margin-top: 14px;
  max-width: 1100px;
}
.about-hero__subtitle {
  margin-top: 24px;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.8;
  max-width: 920px;
}

.about-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-stat__val {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--gold-bright);
}
.about-stat__lbl {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Story section */
.about-story__heading {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 44px);
  text-transform: uppercase;
  margin-top: 10px;
  max-width: 900px;
}
.about-story__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.about-story__card {
  background: linear-gradient(165deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-story__icon {
  font-size: 24px;
  color: var(--gold-bright);
}
.about-story__card h3 {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.about-story__card p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 14.5px;
}
.about-link {
  color: var(--gold-bright);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.about-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.seo-link {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Corridor Section */
.about-corridor__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 960px) {
  .about-corridor__inner { grid-template-columns: 1fr; }
}
.about-corridor__title {
  font-family: var(--display);
  font-size: clamp(24px, 3.2vw, 42px);
  text-transform: uppercase;
  margin-top: 10px;
}
.about-corridor__copy p {
  color: var(--muted);
  line-height: 1.85;
  margin-top: 20px;
  font-size: 15px;
}
.about-corridor__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
  list-style: none;
}
.about-corridor__list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}
.about-corridor__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-bright);
  font-size: 11px;
}
.about-corridor__citation {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.external-tag {
  color: var(--gold-bright);
  background: rgba(232, 162, 92, 0.1);
  border: 1px solid rgba(232, 162, 92, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.external-tag:hover {
  background: rgba(232, 162, 92, 0.25);
  border-color: rgba(232, 162, 92, 0.6);
  color: #ffffff;
}

.about-media-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
}
.about-media-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.about-media-frame figcaption {
  padding: 14px 20px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(12, 17, 34, 0.9);
  text-align: center;
}

/* Alliance Cards Grid */
.about-alliance__title {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 46px);
  text-transform: uppercase;
  margin-top: 10px;
}
.about-alliance__sub {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16px;
  max-width: 720px;
  line-height: 1.8;
}
.about-alliance__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.alliance-card {
  background: rgba(12, 17, 34, 0.6);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.alliance-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 162, 92, 0.4);
}
.alliance-card__tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.alliance-card h3 {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
}
.alliance-card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.75;
}
.alliance-card__link {
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: auto;
}

/* Pillars */
.about-pillars__title {
  font-family: var(--display);
  font-size: clamp(26px, 3.5vw, 46px);
  text-transform: uppercase;
  margin-top: 10px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pillar-box {
  background: linear-gradient(170deg, rgba(255,255,255,0.03), transparent);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pillar-box__num {
  font-family: var(--display);
  font-size: 28px;
  color: rgba(232, 162, 92, 0.4);
}
.pillar-box h4 {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.pillar-box p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
}

/* FAQ accordion */
.about-faq__title {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 44px);
  text-transform: uppercase;
  margin-top: 10px;
}
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}
.faq-item {
  background: rgba(12, 17, 34, 0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.faq-question {
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  font-size: 20px;
  color: var(--gold-bright);
  transition: transform 0.3s ease;
}
details[open] .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 26px 22px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14.5px;
}

/* About CTA Card */
.about-cta__card {
  position: relative;
  background: linear-gradient(160deg, #0e152a, #060912);
  border: 1px solid rgba(232, 162, 92, 0.3);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 80px rgba(232, 162, 92, 0.12);
}
.about-cta__card h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3.6vw, 44px);
  text-transform: uppercase;
  margin-top: 10px;
}
.about-cta__card p {
  color: var(--muted);
  margin: 18px auto 36px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.8;
}
.about-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
