/* ==========================================================================
   1. Brand Design Tokens & Reset
   ========================================================================== */
:root {
  --c-navy-deep:   #1F3947;
  --c-ink-mute:    #4F6776;
  --c-blue:        #00ADEE;
  --c-gold:        #EFB51C;
  --c-paper:       #EFEAE0;
  --c-paper-light: #F8F5EC;
  --c-border:      rgba(31, 57, 71, 0.15);

  --fs-xs: clamp(0.75rem, 1vw, 0.875rem);
  --fs-base: clamp(1rem, 1.2vw, 1.125rem);
  --fs-lg: clamp(1.25rem, 2vw, 1.5rem);
  --fs-xl: clamp(1.75rem, 3vw, 2.5rem);
  --fs-mega: clamp(4rem, 9vw, 8.5rem);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  font-family: 'IBM Plex Sans', sans-serif;
  background-color: var(--c-paper);
  color: var(--c-navy-deep);
  -webkit-font-smoothing: antialiased;
}

body { min-height: 200vh; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1600px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* Typography Utilities */
.eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: 'IBM Plex Mono', monospace; font-size: var(--fs-xs);
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--c-navy-deep);
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--c-blue); }

.blue { color: var(--c-blue); }
.italic { font-style: italic; font-weight: 300; }
.numeric { font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.05em; }

/* ==========================================================================
   2. Custom Cursor
   ========================================================================== */
@media (pointer: fine) {
  body, a, button { cursor: none; }
  .cursor { position: fixed; top: 0; left: 0; width: 6px; height: 6px; background: var(--c-blue); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }
  .cursor-ring { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border: 1px solid rgba(0, 173, 238, 0.5); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s; }
  .cursor-hover .cursor-ring { width: 60px; height: 60px; background: rgba(0, 173, 238, 0.15); border-color: transparent; backdrop-filter: blur(2px); }
  .cursor-hover .cursor { opacity: 0; }
}

/* ==========================================================================
   3. Navigation (Protected Header)
   ========================================================================== */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 0; z-index: 100;
  transition: padding 0.5s var(--ease-out-expo), background 0.5s var(--ease-out-expo);
  color: var(--c-navy-deep); 
  background: linear-gradient(180deg, rgba(239, 234, 224, 0.9) 0%, rgba(239, 234, 224, 0) 100%);
}
.nav__inner { max-width: 1600px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); display: flex; justify-content: space-between; align-items: center; }
.nav__brand { display: flex; align-items: center; }
.nav__logo { display: block; height: clamp(44px, 5.5vw, 62px); width: auto; }
.nav__links { display: flex; gap: 1.6rem; align-items: center; font-size: 0.875rem; font-weight: 500; }
.nav__link { white-space: nowrap; color: var(--c-navy-deep); display: flex; align-items: center; gap: 0.3rem; transition: color 0.25s ease; }
.nav__link:hover { color: var(--c-blue); }

.nav__item { position: relative; display: flex; align-items: center; }
.nav__item--has-dropdown::after { content: ''; position: absolute; top: 100%; left: -1rem; right: -1rem; height: 1.2rem; }

.nav__caret { display: inline-block; width: 0; height: 0; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 4.5px solid currentColor; transition: transform 0.3s var(--ease-out-expo); flex-shrink: 0; margin-top: 1px; }
.nav__item--has-dropdown:hover .nav__caret { transform: rotate(180deg); }

.nav__dropdown { position: absolute; top: calc(100% + 1rem); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 210px; padding: 0.6rem 0; background: var(--c-paper); border-radius: 12px; box-shadow: 0 20px 56px rgba(31,57,71,0.14), 0 4px 12px rgba(31,57,71,0.07); border: 1px solid rgba(31,57,71,0.08); opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.3s var(--ease-out-expo); z-index: 200; }
.nav__item--has-dropdown:hover .nav__dropdown { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }

.nav__dropdown-link { display: block; padding: 0.6rem 1.4rem; font-size: 0.875rem; font-weight: 500; color: var(--c-navy-deep); white-space: nowrap; transition: color 0.2s ease, padding-left 0.25s var(--ease-out-expo); }
.nav__dropdown-link:hover { color: var(--c-blue); padding-left: 1.85rem; }

.nav__dropdown-divider { height: 1px; background: var(--c-border); margin: 0.4rem 1.2rem; }

.nav__dropdown-cta { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.4rem; font-size: 0.82rem; font-weight: 600; color: var(--c-blue); white-space: nowrap; transition: gap 0.25s ease; }
.nav__dropdown-cta:hover { gap: 0.85rem; }

.nav__actions { display: flex; gap: 1rem; align-items: center; }

.btn { padding: 0.8rem 1.5rem; border-radius: 100px; font-weight: 500; font-size: var(--fs-base); border: none; cursor: pointer; transition: all 0.4s var(--ease-out-expo); }
.btn-outline { background: transparent; border: 1px solid var(--c-border); color: var(--c-navy-deep); }
.btn-outline:hover { border-color: var(--c-blue); color: var(--c-blue); }
.btn-solid { background: var(--c-navy-deep); color: var(--c-paper); }
.btn-solid:hover { background: var(--c-blue); color: #fff; }

.nav.scrolled { padding: 1rem 0; background: rgba(239, 234, 224, 0.95); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(31, 57, 71, 0.1); }

/* ── Hamburger button ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  position: relative;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-navy-deep);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s ease;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile navigation overlay ── */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 198;
  background: var(--c-paper);
  display: flex;
  flex-direction: column;
  padding: 6rem clamp(1.5rem, 7vw, 3rem) 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo), visibility 0.5s;
  visibility: hidden;
}
html[dir="rtl"] .nav__mobile-menu:not(.is-open) { transform: translateX(-100%); }
.nav__mobile-menu.is-open { transform: translateX(0); visibility: visible; }

.nav__mobile-close {
  position: absolute;
  top: 1.25rem;
  inset-inline-end: clamp(1.5rem, 7vw, 3rem);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-navy-deep);
  z-index: 1;
}
.nav__mobile-close svg { width: 24px; height: 24px; }

.nav__mobile-links { display: flex; flex-direction: column; flex: 1; }

.nav__mobile-link {
  display: block;
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  font-weight: 300;
  color: var(--c-navy-deep);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s ease, padding-inline-start 0.2s ease;
  letter-spacing: -0.02em;
}
.nav__mobile-link:hover { color: var(--c-blue); padding-inline-start: 0.5rem; }

.nav__mobile-group { border-bottom: 1px solid var(--c-border); }
.nav__mobile-label {
  display: block;
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  font-weight: 300;
  color: rgba(31,57,71,0.45);
  padding: 0.9rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  padding: 0 0 0.75rem clamp(0.75rem, 3vw, 1.5rem);
}
.nav__mobile-sub-link {
  display: block;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--c-navy-deep);
  padding: 0.5rem 0;
  transition: color 0.2s ease;
  opacity: 0.75;
}
.nav__mobile-sub-link:hover { color: var(--c-blue); opacity: 1; }

.nav__mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
  margin-top: auto;
}
.nav__mobile-footer .btn { text-align: center; display: block; }

body.nav-open { overflow: hidden; }

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__actions { display: flex; }
  .nav__actions .btn-solid { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo { height: clamp(36px, 10vw, 50px); }
}
@media (min-width: 1025px) {
  .nav__mobile-menu { display: none; }
}

/* ==========================================================================
   4. Immersive Hero
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 80px; background-color: #9DB7BF; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-img-reveal { position: absolute; top: -15%; left: 0; width: 100%; height: 130%; object-fit: cover; filter: grayscale(100%) contrast(1.2) brightness(0.9); opacity: 0.7; }
.hero__wash { position: absolute; inset: 0; z-index: 1; background: linear-gradient(-90deg, rgba(157, 183, 191, 0.9) 50%, rgba(157, 183, 191, 0) 100%); }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(31, 57, 71, 0.3) 0%, rgba(31, 57, 71, 0) 50%); }
.hero__patterns { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.pattern-quarter { position: absolute; bottom: 0; right: 0; width: clamp(100px, 15vw, 220px); height: clamp(100px, 15vw, 220px); background-color: var(--c-gold); border-radius: 100% 0 0 0; opacity: 1; transform-origin: bottom right; }
.pattern-stripes { display: flex; gap: 8px; height: 50px; margin-top: 6px; transition: transform 0.4s var(--ease-out-expo); }
.pattern-stripes span { display: block; width: 3px; height: 100%; background-color: var(--c-gold); border-radius: 4px; transition: height 0.4s ease; }

.hero__container { position: relative; z-index: 1; width: 100%; display: flex; justify-content: flex-end; align-items: center; }
.hero__content { display: flex; flex-direction: column; align-items: flex-start; max-width: 1000px; }
.hero__title { font-size: clamp(2.8rem, 5.5vw, 5.8rem); line-height: 0.95; font-weight: 500; letter-spacing: -0.04em; color: var(--c-navy-deep); margin: 1.5rem 0 3rem -0.05em; }
.reveal-text { overflow: hidden; }
.reveal-text span { display: block; transform: translateY(110%); padding-bottom: 0.1em; }
.hero__meta { display: flex; gap: 2.5rem; align-items: flex-start; margin-bottom: 4rem; max-width: 640px; }
.hero__lede-wrap { display: flex; flex-direction: column; gap: 1rem; }
.hero__lede { font-size: var(--fs-base); color: var(--c-navy-deep); opacity: 0.85; line-height: 1.7; }
.hero__scroll { display: flex; align-items: center; gap: 1.5rem; }
.scroll-text { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--c-navy-deep); }
.scroll-line { width: 60px; height: 1px; background: rgba(31, 57, 71, 0.2); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: var(--c-gold); animation: scrollSlide 2s infinite; }
@keyframes scrollSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
.fade-up { opacity: 0; transform: translateY(30px); }

/* === Hero Brand Strip === */
.hero__brands {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(239, 234, 224, 0.35);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
}

.hero__brands-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-navy-deep);
  opacity: 0.45;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__brands-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 0;
}

.hero__brand-wrap { opacity: 0; flex: 1; display: flex; justify-content: center; }

.hero__brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.35s var(--ease-out-expo), background 0.3s ease;
}
.hero__brand-item:hover { transform: translateY(-4px); background: rgba(31,57,71,0.05); }
.hero__brand-item img { height: 46px; width: auto; display: block; }

@media (max-width: 768px) { .hero__brands { display: none; } }

/* ==========================================================================
   5. Immersive Story Section
   ========================================================================== */
.story {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; background-color: #3a5f6b; padding: 12rem 0; color: #FFFFFF; isolation: isolate;
}
.story__bg { position: absolute; inset: 0; z-index: -1; }
.parallax-story-bg { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.1) brightness(0.6); mix-blend-mode: multiply; opacity: 1; }
.story__teal-overlay { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(58, 95, 107, 0.4) 0%, rgba(31, 57, 71, 0.85) 100%); }

.story__container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 1100px; }
.white-text { color: #FFFFFF !important; opacity: 1; margin-bottom: 4rem; font-weight: 500; letter-spacing: 0.1em; }
.story__white-logo { height: clamp(80px, 12vw, 100px); width: auto; filter: brightness(0) invert(1); margin-bottom: 4rem; }
.story__heading { font-size: clamp(2.5rem, 6vw, 4.2rem); line-height: 1.05; font-weight: 600; color: #FFFFFF; margin-bottom: 2.5rem; letter-spacing: -0.02em; text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2); }
.blue-glow { color: var(--c-blue); text-shadow: 0 0 30px rgba(0, 173, 238, 0.3); }
.story__description { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.7; color: #FFFFFF; opacity: 0.95; max-width: 800px; margin-bottom: 5rem; font-weight: 400; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }

.center-stripes { justify-content: center; height: 40px; gap: 12px; cursor: pointer; }
.center-stripes span { width: 4px; background-color: var(--c-gold); border-radius: 2px; }

/* Stripe Interaction */
.center-stripes:hover span:nth-child(even) { transform: translateY(-10px); background-color: var(--c-blue); }
.center-stripes:hover span:nth-child(odd) { transform: translateY(10px); }

.story-fade { opacity: 0; transform: translateY(30px); }

/* Preserve all sections 1 to 6... */

/* ==========================================================================
   7. Premium Editorial Founder Section (REFINED)
   ========================================================================== */
.founder {
  position: relative;
  background-color: var(--c-paper); /* Warm paper transition from Story */
  padding: clamp(8rem, 18vw, 15rem) 0;
  overflow: hidden;
  isolation: isolate;
}

.founder__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr; /* Editorial asymmetrical grid */
  gap: clamp(4rem, 10vw, 12rem);
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .founder__grid { grid-template-columns: 1fr; gap: 4rem; }
}

/* --- Left: Layered Visual --- */
.founder__visual {
  position: relative;
  width: 100%;
}

.founder__visual-mask {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5; /* portrait frame */
  border-radius: 12px;
  overflow: hidden;
  /* CLEANED: Removed Sepia ground */
  background-color: var(--c-paper-light); 
  box-shadow: 0 30px 70px rgba(31, 57, 71, 0.1);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%); /* For GSAP */
}

.founder__img {
  position: absolute;
  /* Start the image 10% higher than the frame */
  top: -10%; 
  left: 0;
  width: 100%;
  /* Make image 20% taller than the frame to provide parallax runway */
  height: 120%; 
  object-fit: cover;
  opacity: 1;
}

/* DELETED: Grid pattern overlay rule */
/* DELETED: U shape pattern overlay rule */

/* Small blue pattern element (Preserved) */
.founder__blue-dot {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 10px;
  height: 10px;
  background-color: var(--c-gold);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(239, 181, 28, 0.4);
}

/* --- Right: Content side --- */
.founder__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Reusing hero typography scale for premium authority */
.founder-title-reveal {
  margin: 1.5rem 0 2rem 0;
}

.navy { color: var(--c-navy-deep); }
.bold { font-weight: 600; }

.founder__name {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--fs-xl); /* Matches stat block value size */
  font-weight: 500;
  margin-bottom: 3.5rem;
}

.arabic-name {
  font-size: var(--fs-base);
  opacity: 0.8;
}

.founder__lede {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--c-ink-mute);
  margin-bottom: 3rem;
  max-width: 650px;
}

/* Refined integrated Fact block */
.founder__fact-border {
  border-left: 2px solid var(--c-gold);
  padding: 1.5rem 2.5rem;
  font-family: 'IBM Plex Serif', serif; /* Editorial serif feel for quote area */
  font-style: italic;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--c-navy-deep);
  background: rgba(248, 245, 236, 0.5); /* Subtle ground wash */
  max-width: 580px;
}

/* --- Integrated Patterns for consistency --- */
.founder-quarter {
  position: absolute;
  /* Push it slightly further down so it doesn't "float" too high into the section above */
  bottom: 0 !important; 
  left: -5%;
  width: clamp(250px, 30vw, 450px);
  height: clamp(250px, 30vw, 450px);
  background-color: var(--c-gold);
  border-radius: 0 100% 0 0;
  opacity: 0.9;
  z-index: 1;
  transform: none !important;
}

/* Gold Stripes Footer for the entire section, grounded on LTR */
.center-stripes-footer {
  justify-content: flex-end; /* Grounded to content side LTR */
  padding-right: clamp(1.5rem, 5vw, 4rem);
  height: 60px;
  margin-top: 5rem;
}

/* Base states for GSAP */
.founder-fade { opacity: 0; transform: translateY(30px); }
.founder-title-reveal .reveal-text span { display: block; transform: translateY(110%); }


/* ==========================================================================
   8. Industry & Associated Brands (Fixed Background Visibility)
   ========================================================================== */
.brands {
  position: relative;
  background-color: var(--c-paper); 
  padding: 12rem 0;
  overflow: hidden;
  isolation: isolate; 
}

.brands__bg {
  position: absolute;
  inset: 0;
  z-index: -1; 
}

.parallax-brands-bg {
  width: 100%;
  height: 130%;
  object-fit: cover;
  /* REDUCED BLUR & INCREASED BRIGHTNESS: This makes the left side much clearer */
  filter: grayscale(100%) contrast(1.1) brightness(0.9) blur(0px);
  mix-blend-mode: multiply; 
  opacity: 0.8; /* Increased from 0.35 to 0.8 for high visibility */
}

.brands__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* REFINED GRADIENT: Moves the "clear" zone further to the left */
  background: linear-gradient(90deg, rgba(239, 234, 224, 0) 0%, rgba(239, 234, 224, 0.55) 30%, rgba(239, 234, 224, 0.97) 58%, rgba(239, 234, 224, 0.99) 100%);
}

.brands__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* --- Brands Header --- */
.brands__header { max-width: 600px; text-align: right; margin-bottom: 4rem; }
.brands__intro-title { font-size: var(--fs-xl); font-weight: 600; color: var(--c-navy-deep); margin-bottom: 1.2rem; }
.brands__intro-text { font-size: var(--fs-base); color: var(--c-navy-deep); opacity: 0.78; line-height: 1.75; }

/* --- Brand Card Grid --- */
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: clamp(640px, 75%, 1060px);
}

.brand-card {
  display: flex; flex-direction: column;
  padding: 2rem 1.75rem 2rem;
  background: var(--c-paper);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  text-decoration: none; color: inherit;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.3s ease;
}
.brand-card:hover { transform: translateY(-5px); box-shadow: 0 20px 56px rgba(31,57,71,0.09); border-color: var(--c-gold); }

.brand-card__logo-link { display: flex; align-items: center; height: 52px; margin-bottom: 1.5rem; }
.brand-card__logo-link img { max-height: 100%; width: auto; transition: opacity 0.3s ease; }
.brand-card:hover .brand-card__logo-link img { opacity: 0.8; }

.brand-card__name { font-size: 1rem; font-weight: 700; color: var(--c-navy-deep); margin-bottom: 0.65rem; letter-spacing: -0.01em; }
.brand-card__desc { font-size: 0.83rem; color: var(--c-navy-deep); opacity: 0.68; line-height: 1.65; }

@media (max-width: 1024px) { .brands__grid { grid-template-columns: repeat(2, 1fr); width: 100%; } }
@media (max-width: 600px)  { .brands__grid { grid-template-columns: 1fr; } }
/* --- Content Styling --- */
.sector-main-title, .portfolio-main-title {
  font-size: var(--fs-xl);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 4rem;
  color: var(--c-navy-deep);
}

.sector-grid {
  display: flex;
  justify-content: flex-end;
  gap: 5rem;
}

.sector-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sector-text .arabic {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--c-navy-deep);
}

.sector-text .english {
  font-size: 0.9rem;
  color: var(--c-navy-deep);
  opacity: 0.8;
}

.sector-marker {
  width: 32px;
  height: 32px;
  background-color: var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sector-marker span {
  width: 2px;
  height: 16px;
  background-color: #fff;
}

/* --- Logo Grid Styling --- */
.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  margin-top: 2rem;
  width: 100%;
}

.brand-logo-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.brand-logo-item img {
  max-height: 70px;
  width: auto;
  margin-bottom: 2rem;
  /* Subtle interaction: brightens on hover */
  transition: transform 0.4s var(--ease-out-expo), filter 0.4s ease;
}

.brand-logo-item:hover img {
  transform: translateY(-5px);
}

.brand-logo-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: var(--c-border);
}

.brand-sub-label {
  font-size: 0.8rem;
  color: var(--c-navy-deep);
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  opacity: 0.7;
}

.brands-fade { opacity: 0; transform: translateY(30px); }

@media (max-width: 900px) {
  .sector-grid { flex-direction: column; gap: 2rem; }
  .brand-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 4rem 0; }
  .brand-logo-item::after { display: none; }
}


/* ==========================================================================
   10. History Sticky Scroll Section (FIXED STICKY)
   ========================================================================== */
.history {
  position: relative;
  background-color: #3a5f6b; 
  padding: 10rem 0 15rem 0;
  color: #FFFFFF;
  
  /* FIX: Using clip-path instead of overflow: hidden so sticky works perfectly */
  clip-path: inset(0); 
  isolation: isolate;
}

/* --- Immersive Background --- */
.history__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* FIX: Move overflow hidden here to contain the parallax image safely */
  overflow: hidden; 
}

.parallax-history-bg {
  /* This locks the image perfectly to the screen */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  
  filter: grayscale(100%) contrast(1.1) brightness(0.6);
  mix-blend-mode: multiply;
  opacity: 0.6; 
  pointer-events: none;
}

.history__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(58, 95, 107, 0.4) 0%, rgba(31, 57, 71, 0.9) 100%);
}

/* --- Typography & Layout --- */
.history__main-title {
  
  margin-bottom: 6rem;
  font-size:5.5rem;
  position: relative;
  z-index: 5;
}

.gold-text {
  color: #F8F5EC !important;
}

/* Ensure the reveal span inside history starts hidden for the animation */
.history__main-title .reveal-text span {
  display: block;
  transform: translateY(110%);
  padding-bottom: 0.1em;
}

.history__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  position: relative;
  z-index: 2;
}

/* --- Left Side (Scrolling Text) --- */
.history__content {
  padding-bottom: 50vh; 
}

.history__item {
  padding: 15vh 0; 
  opacity: 0.3; 
  transition: opacity 0.5s var(--ease-out-expo);
}

.history__item.is-active {
  opacity: 1; 
}

.history__year {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: rgba(255, 255, 255, 0.25); 
  margin-bottom: 1.5rem;
  font-weight: 600;
  transition: all 0.5s var(--ease-out-expo);
}

.history__item.is-active .history__year {
  color: var(--c-blue); 
  text-shadow: 0 0 30px rgba(0, 173, 238, 0.3);
}

.history__event {
  font-size: var(--fs-base);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.5s var(--ease-out-expo);
}
.history__item.is-active .history__event {
  color: rgba(255, 255, 255, 0.95);
}

.history__desc {
  font-size: var(--fs-base);
  line-height: 1.7;
  max-width: 480px;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* --- Right Side (Sticky Visuals) --- */
.history__visuals {
  position: relative;
  /* FIX: Removed 'height: 100%' so CSS grid handles the track naturally */
}

.history__visuals-sticky {
  /* This will now work flawlessly */
  position: sticky;
  top: 25vh; 
  width: 100%;
  aspect-ratio: 1.1 / 1; 
  border-radius: 12px; 
  overflow: hidden;
  background-color: rgba(31, 57, 71, 0.4); 
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.history__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s, transform 1.2s var(--ease-out-expo);
  transform: scale(1.05); 
  object-position: left center; /* Start with left focus for better composition */
}

.history__img.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@media (max-width: 900px) {
  .history__layout { grid-template-columns: 1fr; gap: 4rem; }
  .history__visuals { order: -1; height: 50vh; margin-bottom: 2rem; }
  .history__visuals-sticky { top: 10vh; aspect-ratio: 4 / 3; }
  .history__item { padding: 8vh 0; }
}

/* ==========================================================================
   11. Footer Styling (Light Theme & Fixes)
   ========================================================================== */
.footer--light {
  background-color: var(--c-paper); /* Light Brand Background */
  padding: 8rem 0 4rem 0;
  color: var(--c-navy-deep); /* Dark Brand Text */
  position: relative;
  /* Crucial: No overflow hidden here so the button can float outside */
  isolation: isolate; 
  border-top: 1px solid var(--c-border);
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 5rem; /* Reduced from 8rem */
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 4rem;
}

/* --- Brand Section --- */
.footer__logo {
  height: clamp(40px, 5vw, 50px);
  width: auto;
  margin-bottom: 2rem;
  filter: none; /* Shows original brand colors */
}

.footer__tagline {
  font-size: var(--fs-lg);
  line-height: 1.4;
  color: var(--c-navy-deep);
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.social-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--c-navy-deep);
  opacity: 0.5;
  margin-right: 1.5rem;
  transition: opacity 0.3s, color 0.3s;
}
.social-link:hover { opacity: 1; color: var(--c-blue); }

/* --- Fixed Spacing for Contact & Explore --- */
.footer__contact, .footer__nav {
  display: flex;
  flex-direction: column;
  gap: 1.2rem; /* Reduced gap under "Contact Us" and "Explore" */
}

.detail-item {
  margin-bottom: 1.5rem; /* Space between Address and Inquiries */
}

.detail-item small {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 0.5rem; /* Tightened */
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; /* Tightened link spacing */
}

.footer__links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--c-navy-deep);
}

/* --- Footer Bottom --- */
.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__legal { font-size: 0.8rem; opacity: 0.6; }
.legal-links { display: flex; gap: 1.5rem; margin-top: 0.5rem; }

/* --- Back To Top Button Fix --- */
.back-to-top {
  position: absolute;
  right: clamp(1.5rem, 5vw, 4rem);
  top: -35px; /* Sits exactly on the top border line */
  width: 70px;
  height: 70px;
  background-color: var(--c-gold);
  border: none;
  border-radius: 50%;
  color: var(--c-navy-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100; /* Ensures it stays above all sections */
  box-shadow: 0 10px 30px rgba(0, 173, 238, 0.4);
  transition: transform 0.4s var(--ease-out-expo), background-color 0.3s;
}

.back-to-top:hover {
  background-color: var(--c-navy-deep);
  transform: translateY(-5px);
}

.back-to-top svg { width: 24px; height: 24px; }

@media (max-width: 1024px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .footer__main { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .back-to-top { width: 60px; height: 60px; top: -30px; }
}


/* ==========================================================================
   9. Values Graphic Section (Responsive Re-creation - Fixed Alignment)
   ========================================================================== */
.values {
  position: relative;
  background-color: var(--c-paper);
  padding: 8rem 0 10rem 0;
  overflow: hidden;
  isolation: isolate;
}

/* Background Visibility Fixes */
.values__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.parallax-values-bg {
  width: 100%;
  height: 130%;
  object-fit: cover;
  /* Adjusted filter so the building is actually visible */
  filter: grayscale(40%) sepia(10%) hue-rotate(180deg) brightness(0.95);
  mix-blend-mode: multiply;
  opacity: 0.6; 
}

.values__overlay {
  position: absolute;
  inset: 0;
  /* Lighter overlay to let the background image shine through */
  background: radial-gradient(circle at center, rgba(239, 234, 224, 0.7) 0%, rgba(157, 183, 191, 0.85) 100%);
}

.values__header {
  position: relative;
  z-index: 10;
  width: 100%;
}

.values__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1500px;
  margin: 0 auto;
}

.values__column {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  flex: 1;
  max-width: 400px;
  position: relative;
  z-index: 10;
}

.values__column--left { align-items: flex-end; text-align: right; }
.values__column--right { align-items: flex-start; text-align: left; }

/* Text Cards */
.value-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(31, 57, 71, 0.05);
  width: 100%;
}

.value-card .english {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-navy-deep);
  opacity: 0.9;
  line-height: 1.6;
}

/* Infographic Center Build - Significantly Enlarged */
.values__wheel-wrapper {
  position: relative;
  width: 500px; /* Much larger to fit text naturally */
  height: 500px; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.values__wheel {
  position: absolute;
  width: 500px; 
  height: 500px; 
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #285CC4 0deg 70deg,   transparent 70deg 72deg,
    #36A3F5 72deg 142deg,  transparent 142deg 144deg,
    #5157AE 144deg 214deg, transparent 214deg 216deg,
    #48D1A3 216deg 286deg, transparent 286deg 288deg,
    #A2D52D 288deg 358deg, transparent 358deg 360deg
  );
  /* The hole in the middle (creates the donut) */
  mask-image: radial-gradient(circle, transparent 45%, black 46%);
  -webkit-mask-image: radial-gradient(circle, transparent 45%, black 46%);
}

.values__wheel-labels {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
}

.wedge-label-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  text-align: center;
}

.wedge-label.english {
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* 5 segments × 72°. Midpoints: 35 | 107 | 179 | 251 | 323deg.
   Labels in 90°–270° range get −180° to stay readable. */
.label-1 { left: 354px; top: 102px; transform: translate(-50%, -50%) rotate(35deg);  }
.label-2 { left: 423px; top: 303px; transform: translate(-50%, -50%) rotate(-73deg); }
.label-3 { left: 253px; top: 431px; transform: translate(-50%, -50%) rotate(-1deg);  }
.label-4 { left: 79px;  top: 309px; transform: translate(-50%, -50%) rotate(71deg);  }
.label-5 { left: 141px; top: 105px; transform: translate(-50%, -50%) rotate(-37deg); }

/* Center Hub */
.values__center {
  position: absolute;
  width: 215px; 
  height: 215px; 
  background: #9DB7BF; 
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(31, 57, 71, 0.2);
  z-index: 5;
}

.center-logo-diamond {
  width: 75px;
  height: auto;
  margin-bottom: 8px;
}

.center-text {
  color: var(--c-navy-deep);
  text-align: center;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* Connecting Lines */
.line-connector {
  position: absolute;
  top: 50%;
  width: clamp(20px, 4vw, 50px);
  height: 1px;
  background: var(--line-color, var(--c-blue));
}
.line-connector::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: inherit;
}

.values__column--left .line-connector { right: calc(-1 * clamp(20px, 4vw, 50px)); }
.values__column--left .line-connector::after { right: 0; }
.values__column--right .line-connector { left: calc(-1 * clamp(20px, 4vw, 50px)); }
.values__column--right .line-connector::after { left: 0; }

/* GSAP States */
.value-fade { opacity: 0; transform: translateY(20px); }
.wheel-scale { opacity: 0; transform: scale(0.85); }

/* Responsive Flow */
@media (max-width: 1200px) {
  .values__layout { flex-direction: column; gap: 4rem; }
  .values__column { max-width: 600px; text-align: center; align-items: center; gap: 2rem;}
  .line-connector { display: none; } 
  .values__column--left, .values__column--right { align-items: center; text-align: center; }
  .values__wheel-wrapper { transform: scale(0.8); }
}
@media (max-width: 600px) {
  .values__wheel-wrapper { transform: scale(0.6); }
}

/* ==========================================================================
   12. Section Navigator — Fixed Left Scroll Indicator
   ========================================================================== */
.section-nav {
  position: fixed;
  left: clamp(1rem, 2vw, 2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.6rem 1rem;
  background: rgba(15, 28, 38, 0.28);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-out-expo);
}
.section-nav.sn--visible {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 900px) { .section-nav { display: none; } }

/* Label */
.sn__label { display: flex; align-items: center; justify-content: center; }
.sn__label-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.82);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  transition: opacity 0.32s ease, filter 0.32s ease;
}
.sn__label-text.sn--changing {
  opacity: 0;
  filter: blur(4px);
}

/* Track */
.sn__track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.sn__track-line {
  position: absolute;
  top: 3.5px;
  bottom: 3.5px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  overflow: hidden;
}
.sn__track-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--sn-fill, 0%);
  background: var(--c-gold);
  box-shadow: 0 0 8px rgba(239, 181, 28, 0.8);
  transition: height 0.6s var(--ease-out-expo);
}

/* Dots */
.sn__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.4s ease, background 0.4s ease,
              box-shadow 0.4s ease, transform 0.4s var(--ease-out-expo);
}
.sn__dot:hover {
  border-color: var(--c-blue);
  background: rgba(0, 173, 238, 0.2);
  transform: scale(1.7);
}
.sn__dot.is-active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(239, 181, 28, 0.25),
              0 0 16px rgba(239, 181, 28, 0.6);
}
/* ==========================================================================
   INNER PAGE STYLES
   ========================================================================== */

/* Page Hero */
.page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  background: var(--c-navy-deep);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(31,57,71,0.25) 0%, rgba(31,57,71,0.92) 75%);
}

.page-hero__container {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  color: rgba(239,234,224,0.65) !important;
}

.page-hero__eyebrow::before {
  background: var(--c-gold) !important;
}

.page-hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5.8rem);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--c-paper);
  margin: 1.4rem 0 0 -0.05em;
}

/* Entrance animation initial states */
.page-fade {
  opacity: 0;
  transform: translateY(20px);
}

.section-fade {
  opacity: 0;
  transform: translateY(40px);
}

.stagger-child {
  opacity: 0;
  transform: translateY(30px);
}

/* Content sections */
.inner-section {
  padding: clamp(5rem, 10vw, 10rem) 0;
}

.inner-section--alt {
  background: var(--c-paper-light);
}

.inner-section--dark {
  background: var(--c-navy-deep);
}

.inner-section--dark .eyebrow {
  color: rgba(239,234,224,0.6);
}

.inner-section--dark .eyebrow::before {
  background: var(--c-gold);
}

/* Prose text */
.prose p {
  font-size: var(--fs-lg);
  line-height: 1.8;
  color: var(--c-navy-deep);
  margin-bottom: 1.75rem;
  max-width: 68ch;
}

.prose p:last-child { margin-bottom: 0; }

.inner-section--dark .prose p {
  color: var(--c-paper);
  opacity: 0.82;
}

/* Inner section heading */
.inner-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-navy-deep);
  margin-bottom: 2.5rem;
}

.inner-section--dark .inner-heading {
  color: var(--c-paper);
}

/* Vision / Mission layout */
.vision-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  margin-top: 4rem;
}

.vision-block {
  padding: 3rem;
  border-left: 2px solid var(--c-gold);
  background: var(--c-paper-light);
}

.vision-block__tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

.vision-block__title {
  font-size: var(--fs-xl);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--c-navy-deep);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.vision-block__text {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--c-navy-deep);
  opacity: 0.78;
}

/* Story verse layout */
.story-page__verse {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  line-height: 2;
  color: var(--c-navy-deep);
  opacity: 0.85;
  max-width: 70ch;
}

.story-verse-block {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid var(--c-border);
}

.story-verse-block:last-child { border-bottom: none; }

/* News placeholder */
.news-placeholder {
  text-align: center;
  padding: clamp(6rem, 15vw, 14rem) 0;
}

.news-placeholder__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 2rem;
  opacity: 0.25;
}

.news-placeholder__title {
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--c-navy-deep);
  margin-bottom: 1rem;
}

.news-placeholder__text {
  font-size: var(--fs-base);
  color: var(--c-navy-deep);
  opacity: 0.55;
  max-width: 42ch;
  margin: 0 auto;
  line-height: 1.75;
}

/* Contact page */
.contact-page__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(4rem, 8vw, 10rem);
  align-items: start;
}

.contact-page__detail {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--c-border);
}

.contact-page__detail:first-child { padding-top: 0; }

.contact-page__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: 0.65rem;
}

.contact-page__value {
  font-size: var(--fs-lg);
  color: var(--c-navy-deep);
  line-height: 1.6;
}

.contact-page__value a {
  transition: color 0.25s ease;
}

.contact-page__value a:hover {
  color: var(--c-blue);
}

.contact-map-placeholder {
  background: var(--c-paper-light);
  border: 1px solid var(--c-border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--c-navy-deep);
  opacity: 0.5;
  font-size: var(--fs-base);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .vision-split { grid-template-columns: 1fr; }
  .contact-page__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   NEWS / BLOG STYLES
   ========================================================================== */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.news-card {
  background: #fff;
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(31,57,71,0.12);
}

.news-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}

.news-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.news-card:hover .news-card__img-wrap img {
  transform: scale(1.04);
}

.news-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-card__category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  background: rgba(239,181,28,0.1);
  padding: 0.2rem 0.6rem;
}

.news-card__date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-navy-deep);
  opacity: 0.45;
}

.news-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--c-navy-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  flex: 1;
}

.news-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--c-navy-deep);
  opacity: 0.65;
  margin-bottom: 1.5rem;
}

.news-card__link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.25s ease;
}

.news-card:hover .news-card__link {
  gap: 0.85rem;
}

/* Article page */
.article-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
  background: var(--c-navy-deep);
}

.article-hero__bg {
  position: absolute;
  inset: 0;
}

.article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31,57,71,0.98) 0%, rgba(31,57,71,0.3) 60%);
}

.article-hero__container {
  position: relative;
  z-index: 2;
}

.article-hero__title {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-paper);
  margin-top: 1.2rem;
  max-width: 18ch;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.article-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.article-meta-item small {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-navy-deep);
  opacity: 0.45;
}

.article-meta-item span {
  font-size: 0.875rem;
  color: var(--c-navy-deep);
  font-weight: 500;
}

.article-body {
  max-width: 72ch;
}

.article-body p {
  font-size: var(--fs-lg);
  line-height: 1.85;
  color: var(--c-navy-deep);
  opacity: 0.88;
  margin-bottom: 2rem;
}

.article-body p:last-child { margin-bottom: 0; }

.article-body h2, .article-body h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-navy-deep);
  margin: 3rem 0 1.2rem;
  line-height: 1.2;
}

.article-body h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.article-body h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.article-figure {
  margin: 3.5rem 0;
}

.article-figure img {
  width: 100%;
  display: block;
}

.article-figure figcaption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-navy-deep);
  opacity: 0.45;
  margin-top: 0.75rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 120px;
}

.article-sidebar__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-navy-deep);
  opacity: 0.45;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border);
}

.article-sidebar__fact {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
}

.article-sidebar__fact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.article-sidebar__fact-value {
  font-size: var(--fs-base);
  color: var(--c-navy-deep);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .news-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   STORY PAGE — PREMIUM REDESIGN
   ========================================================================== */

/* Hero */
.story-pg__hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.story-pg__hero-bg {
  position: absolute;
  inset: 0;
}

.story-pg__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

.story-pg__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,17,40,0.97) 0%,
    rgba(10,17,40,0.55) 40%,
    rgba(10,17,40,0.15) 100%);
}

.story-pg__hero-year {
  position: absolute;
  bottom: -0.12em;
  right: -0.04em;
  font-size: clamp(14rem, 26vw, 26rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239,234,224,0.07);
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.story-pg__hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(4rem, 8vw, 9rem);
  width: 100%;
}

.story-pg__hero-title {
  font-size: clamp(5.5rem, 13vw, 12rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--c-paper);
  margin: 1.2rem 0 0;
}

.story-pg__hero-scroll {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  opacity: 0.5;
}

.story-pg__hero-scroll-line {
  width: 48px;
  height: 1px;
  background: var(--c-gold);
}

.story-pg__hero-scroll-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-paper);
}

/* Opening quote */
.story-pg__opening {
  background: var(--c-navy-deep);
  padding: clamp(7rem, 14vw, 15rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.story-pg__opening::before {
  content: '"';
  position: absolute;
  top: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(16rem, 30vw, 28rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239,181,28,0.06);
  pointer-events: none;
  line-height: 1;
}

.story-pg__quote {
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  color: var(--c-paper);
  max-width: 24ch;
  margin: 0 auto;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.story-pg__quote strong {
  color: var(--c-gold);
  font-weight: 400;
  font-style: normal;
}

.story-pg__gold-rule {
  width: 48px;
  height: 2px;
  background: var(--c-gold);
  margin: 2.5rem auto 0;
}

/* Chapter split */
.story-pg__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
}

.story-pg__split-img {
  position: relative;
  overflow: hidden;
}

.story-pg__split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.1s linear;
}

.story-pg__split-content {
  padding: clamp(5rem, 8vw, 10rem) clamp(3rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-pg__split--light .story-pg__split-content {
  background: var(--c-paper-light);
}

.story-pg__split--dark .story-pg__split-content {
  background: var(--c-navy-deep);
}

.story-pg__chapter-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.story-pg__chapter-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}

.story-pg__year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(5rem, 9vw, 9rem);
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--c-gold);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  opacity: 0.55;
}

.story-pg__act-heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.story-pg__split--light .story-pg__act-heading { color: var(--c-navy-deep); }
.story-pg__split--dark .story-pg__act-heading  { color: var(--c-paper); }

.story-pg__act-body {
  font-size: var(--fs-base);
  line-height: 1.85;
  max-width: 48ch;
}

.story-pg__split--light .story-pg__act-body { color: var(--c-navy-deep); opacity: 0.75; }
.story-pg__split--dark .story-pg__act-body  { color: var(--c-paper); opacity: 0.68; }

/* Full-bleed immersive chapter */
.story-pg__immersive {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.story-pg__immersive-bg {
  position: absolute;
  inset: 0;
}

.story-pg__immersive-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-pg__immersive-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,17,40,0.78);
}

.story-pg__immersive-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.story-pg__immersive-rule {
  width: 0;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto 2.5rem;
  transition: width 1.2s var(--ease-out-expo);
}

.story-pg__immersive-rule.is-visible {
  width: 80px;
}

.story-pg__immersive-text {
  font-size: clamp(1.4rem, 2.8vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-paper);
  max-width: 28ch;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.story-pg__immersive-text strong {
  color: var(--c-gold);
  font-style: normal;
  font-weight: 400;
}

/* Manifesto closing */
.story-pg__manifesto {
  padding: clamp(9rem, 16vw, 18rem) 0;
  text-align: center;
  background: var(--c-paper);
  position: relative;
  overflow: hidden;
}

.story-pg__manifesto-bg {
  position: absolute;
  bottom: -0.08em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(11rem, 22vw, 20rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31,57,71,0.05);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
  user-select: none;
  line-height: 1;
}

.story-pg__manifesto-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.story-pg__manifesto-label::before,
.story-pg__manifesto-label::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}

.story-pg__manifesto-text {
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: var(--c-navy-deep);
  max-width: 20ch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story-pg__manifesto-text em {
  color: var(--c-blue);
  font-style: normal;
}

/* Stats bar */
.story-pg__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--c-navy-deep);
}

.story-pg__stat {
  padding: clamp(3.5rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem);
  border-right: 1px solid rgba(239,234,224,0.07);
  text-align: center;
}

.story-pg__stat:last-child { border-right: none; }

.story-pg__stat-number {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.story-pg__stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-paper);
  opacity: 0.45;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
  .story-pg__split {
    grid-template-columns: 1fr;
  }
  .story-pg__split-img {
    aspect-ratio: 4/3;
    position: relative;
  }
  .story-pg__split-img img {
    position: absolute;
  }
  .story-pg__split--reverse > *:first-child { order: 2; }
  .story-pg__split--reverse > *:last-child  { order: 1; }
  .story-pg__stats { grid-template-columns: 1fr; }
  .story-pg__stat { border-right: none; border-bottom: 1px solid rgba(239,234,224,0.07); }
  .story-pg__stat:last-child { border-bottom: none; }
  .story-pg__hero-title { font-size: clamp(4.5rem, 18vw, 9rem); }
}

/* ==========================================================================
   VISION PAGE — PREMIUM REDESIGN
   ========================================================================== */

/* Hero */
.vision-pg__hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.vision-pg__hero-bg {
  position: absolute;
  inset: 0;
}

.vision-pg__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-pg__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,17,40,0.96) 0%,
    rgba(10,17,40,0.55) 60%,
    rgba(10,17,40,0.82) 100%);
}

.vision-pg__hero-wm {
  position: absolute;
  top: 50%;
  right: -0.05em;
  transform: translateY(-50%);
  font-size: clamp(14rem, 28vw, 26rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239,181,28,0.1);
  pointer-events: none;
  letter-spacing: -0.04em;
  user-select: none;
}

.vision-pg__hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(5rem, 9vw, 10rem);
  width: 100%;
}

.vision-pg__hero-title {
  font-size: clamp(5.5rem, 13vw, 12rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.05em;
  color: var(--c-paper);
  margin: 1.2rem 0 0;
}

.vision-pg__hero-sub {
  font-size: var(--fs-lg);
  color: var(--c-paper);
  opacity: 0.55;
  max-width: 46ch;
  margin-top: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Opening statement — editorial */
.vision-pg__statement {
  padding: clamp(7rem, 13vw, 14rem) 0;
  background: var(--c-paper);
}

.vision-pg__statement-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(4rem, 8vw, 10rem);
  align-items: start;
}

.vision-pg__statement-aside {
  position: sticky;
  top: 120px;
}

.vision-pg__statement-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 24px 60px rgba(31,57,71,0.12);
}

.vision-pg__statement-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.vision-pg__statement-img-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(10,17,40,0.75);
  backdrop-filter: blur(8px);
  padding: 0.6rem 1.1rem;
  border-radius: 4px;
}

.vision-pg__statement-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  writing-mode: horizontal-tb;
  transform: none;
  display: inline-block;
  padding-bottom: 0;
  border-bottom: none;
}

.vision-pg__statement-text p {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.85;
  color: var(--c-navy-deep);
  opacity: 0.82;
  margin-bottom: 2rem;
}

.vision-pg__statement-text p:last-child { margin-bottom: 0; }

.vision-pg__statement-text p:first-child {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  opacity: 1;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

/* Vision & Mission declarations */
.vision-pg__declaration {
  position: relative;
  overflow: hidden;
}

.vision-pg__decl--vision {
  background: var(--c-navy-deep);
  padding: clamp(8rem, 14vw, 16rem) 0;
}

.vision-pg__decl--mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}

.vision-pg__decl-wm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239,234,224,0.04);
  pointer-events: none;
  letter-spacing: 0.1em;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.vision-pg__decl-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.vision-pg__decl-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--c-gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.vision-pg__decl-tag::before,
.vision-pg__decl-tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}

.vision-pg__decl-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 2.5rem;
  opacity: 0.7;
}

.vision-pg__decl-statement {
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--c-paper);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.vision-pg__decl-statement em {
  color: var(--c-gold);
  font-style: normal;
}

.vision-pg__decl-body {
  font-size: var(--fs-base);
  line-height: 1.8;
  color: var(--c-paper);
  opacity: 0.58;
  max-width: 52ch;
  margin: 0 auto;
}

/* Mission split */
.vision-pg__mission-img {
  position: relative;
  overflow: hidden;
}

.vision-pg__mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.vision-pg__mission-content {
  background: var(--c-paper-light);
  padding: clamp(5rem, 9vw, 11rem) clamp(3rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-pg__mission-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.vision-pg__mission-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}

.vision-pg__mission-heading {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--c-navy-deep);
  margin-bottom: 1.8rem;
}

.vision-pg__mission-body {
  font-size: var(--fs-base);
  line-height: 1.85;
  color: var(--c-navy-deep);
  opacity: 0.72;
  max-width: 50ch;
}

/* Values preview strip */
.vision-pg__values {
  background: var(--c-navy-deep);
  padding: clamp(6rem, 11vw, 12rem) 0;
}

.vision-pg__values-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.vision-pg__values-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--c-paper);
  line-height: 1.1;
}

.vision-pg__values-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.25s ease;
  white-space: nowrap;
}

.vision-pg__values-link:hover { gap: 1rem; }

.vision-pg__values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(239,234,224,0.1);
}

.vision-pg__value-item {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid rgba(239,234,224,0.1);
  padding-right: 2rem;
}

.vision-pg__value-item:last-child { border-right: none; }

.vision-pg__value-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--c-gold);
  letter-spacing: 0.15em;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.vision-pg__value-name {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 500;
  color: var(--c-paper);
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.vision-pg__value-desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--c-paper);
  opacity: 0.42;
}

@media (max-width: 1000px) {
  .vision-pg__values-list { grid-template-columns: repeat(3, 1fr); }
  .vision-pg__value-item:nth-child(3) { border-right: none; }
  .vision-pg__value-item:nth-child(n+4) { border-top: 1px solid rgba(239,234,224,0.1); }
}

@media (max-width: 768px) {
  .vision-pg__statement-grid { grid-template-columns: 1fr; }
  .vision-pg__statement-aside { position: static; }
  .vision-pg__statement-img { max-height: 55vw; }
  .vision-pg__statement-label { writing-mode: initial; transform: none; padding-bottom: 0; border-bottom: none; }
  .vision-pg__decl--mission { grid-template-columns: 1fr; }
  .vision-pg__mission-img { aspect-ratio: 4/3; position: relative; }
  .vision-pg__mission-img img { position: absolute; }
  .vision-pg__values-list { grid-template-columns: 1fr 1fr; }
  .vision-pg__value-item:nth-child(2n) { border-right: none; }
  .vision-pg__value-item:nth-child(3) { border-right: 1px solid rgba(239,234,224,0.1); }
  .vision-pg__value-item:nth-child(n+3) { border-top: 1px solid rgba(239,234,224,0.1); }
}

@media (max-width: 768px) {
  .vision-pg__hero-content > div[style] {
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}

/* ============================================================
   TEAM PAGE — ORG CHART
   ============================================================ */


/* ---- Org section wrapper ---- */
.org-section {
  background: var(--c-navy-deep);
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(8rem, 14vw, 12rem);
  position: relative;
  overflow: hidden;
}

.org-section__wm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(12rem, 24vw, 22rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239,234,224,0.03);
  pointer-events: none;
  letter-spacing: 0.06em;
  user-select: none;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
}

/* ---- Intro heading ---- */
.org-intro {
  text-align: center;
  margin-bottom: clamp(4rem, 7vw, 6rem);
}

.org-intro__heading {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--c-paper);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-top: 0.75rem;
}

/* ---- Tier wrapper (centers nodes) ---- */
.org-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Leader cards ---- */
.org-card--leader {
  max-width: 560px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(239,234,224,0.05);
  border: 1px solid rgba(239,181,28,0.22);
  border-radius: 16px;
  padding: 1.75rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-out-expo);
  cursor: default;
}

.org-card--leader::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(239,181,28,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.org-card--leader:hover {
  border-color: rgba(239,181,28,0.5);
  background: rgba(239,234,224,0.08);
  transform: translateY(-5px);
}

.org-card--ceo {
  border-color: rgba(239,234,224,0.14);
}

/* ---- Avatars ---- */
.org-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out-expo);
  letter-spacing: 0.04em;
}

.org-card--leader:hover .org-avatar { transform: scale(1.08); }

.org-avatar--gold { background: var(--c-gold); color: var(--c-navy-deep); }

.org-avatar--glass {
  background: rgba(239,234,224,0.09);
  color: var(--c-paper);
  border: 1px solid rgba(239,181,28,0.35);
}

/* ---- Card text ---- */
.org-card-body { flex: 1; min-width: 0; }

.org-card-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin-bottom: 0.55rem;
}

.org-card-name {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 300;
  color: var(--c-paper);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.org-card-dept {
  font-size: 0.82rem;
  color: rgba(239,234,224,0.38);
}

.org-reports-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  background: rgba(239,181,28,0.1);
  border: 1px solid rgba(239,181,28,0.25);
  border-radius: 100px;
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Vertical connector lines ---- */
.org-vline {
  width: 2px;
  height: 56px;
  background: linear-gradient(to bottom, var(--c-gold), rgba(239,181,28,0.45));
  flex-shrink: 0;
}

/* ---- Horizontal branch line ---- */
.org-branch-h {
  height: 2px;
  width: 100%;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(239,181,28,0.35) 4%,
    var(--c-gold) 12%,
    var(--c-gold) 88%,
    rgba(239,181,28,0.35) 96%,
    transparent 100%);
}

/* ---- Team member grid ---- */
.org-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* ---- Member wrapper (tick + card stacked) ---- */
.org-member-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Tick lines (show for first row only) ---- */
.org-member-tick {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--c-gold), rgba(239,181,28,0.2));
  flex-shrink: 0;
}

/* Desktop 4-col: show tick for first 4 only */
.org-member-wrap:nth-child(n+5) .org-member-tick { display: none; }

/* ---- Member card ---- */
.org-member-card {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(239,234,224,0.08);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.35s var(--ease-out-expo), background 0.3s;
  cursor: default;
}

.org-member-card:hover {
  border-color: rgba(239,181,28,0.42);
  background: rgba(255,255,255,0.07);
  transform: translateY(-7px);
}

.org-member-card .org-avatar {
  width: 60px;
  height: 60px;
  font-size: 0.95rem;
  color: rgba(239,234,224,0.92);
  margin: 0 auto 1rem;
}

.org-member-card:hover .org-avatar { transform: scale(1.1) translateY(-2px); }

.org-member-name {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--c-paper);
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
  line-height: 1.35;
}

.org-member-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--c-gold);
  opacity: 0.82;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .org-team-grid { grid-template-columns: repeat(3, 1fr); }
  .org-member-wrap:nth-child(n+5) .org-member-tick { display: flex; }
  .org-member-wrap:nth-child(n+4) .org-member-tick { display: none; }
}

@media (max-width: 768px) {
  .org-card--leader { flex-direction: column; text-align: center; gap: 1.25rem; padding: 1.75rem; }
  .org-reports-badge { margin: 0 auto; }
  .org-team-grid { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .org-member-wrap:nth-child(n+4) .org-member-tick { display: flex; }
  .org-member-wrap:nth-child(n+3) .org-member-tick { display: none; }
  .org-vline { height: 40px; }
}

@media (max-width: 480px) {
  .org-team-grid { grid-template-columns: 1fr 1fr; }
  .org-member-wrap:nth-child(n+3) .org-member-tick { display: flex; }
  .org-member-wrap:nth-child(n+2) .org-member-tick { display: none; }
}

/* ==========================================================================
   Opportunities / Careers Page
   ========================================================================== */

/* ---- Why Join Us ---- */
.opp-why {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-paper-light);
}

.opp-why__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.opp-why__title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-top: 1.2rem;
  color: var(--c-navy-deep);
}

.opp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.opp-why__card {
  background: var(--c-paper);
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: clamp(2rem, 3.5vw, 2.75rem);
  transition: border-color 0.3s, transform 0.4s var(--ease-out-expo), box-shadow 0.3s;
}

.opp-why__card:hover {
  border-color: rgba(0,173,238,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31,57,71,0.08);
}

.opp-why__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--c-blue);
}

.opp-why__icon svg { width: 100%; height: 100%; }

.opp-why__card-title {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--c-navy-deep);
  margin-bottom: 0.85rem;
}

.opp-why__card-text {
  font-size: var(--fs-base);
  color: var(--c-ink-mute);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .opp-why__grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ---- Form Section ---- */
.opp-form-section {
  position: relative;
  background: var(--c-navy-deep);
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(6rem, 12vw, 11rem);
  overflow: hidden;
}

.opp-form-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 90% 20%, rgba(0,173,238,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(239,181,28,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.opp-form-container {
  position: relative;
  z-index: 1;
}

.opp-form__intro {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.opp-form__heading {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--c-paper);
  margin-top: 1.1rem;
  margin-bottom: 1.25rem;
}

.opp-form__subtext {
  font-size: var(--fs-base);
  color: rgba(239,234,224,0.58);
  line-height: 1.7;
  max-width: 52ch;
}

/* ---- Form Layout ---- */
.opp-form { display: flex; flex-direction: column; gap: 2rem; }

.opp-fieldset {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(239,234,224,0.07);
  border-radius: 14px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.opp-fieldset__legend {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(239,234,224,0.55);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  margin-bottom: 0.25rem;
  float: unset;
  width: 100%;
}

.opp-fieldset__num {
  font-size: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--c-gold);
  letter-spacing: 0.05em;
}

.opp-fieldset__legend-note {
  margin-left: 0.5rem;
  color: rgba(239,234,224,0.35);
  font-size: 0.65rem;
}

.opp-form__row {
  display: grid;
  gap: 1.25rem;
}

.opp-form__row--2 { grid-template-columns: 1fr 1fr; }

/* ---- Field ---- */
.opp-field { display: flex; flex-direction: column; gap: 0.5rem; }

.opp-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(239,234,224,0.75);
  letter-spacing: 0.01em;
}

.opp-required { color: var(--c-gold); margin-left: 0.15rem; }
.opp-optional {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(239,234,224,0.35);
  margin-left: 0.5rem;
}

/* ---- Inputs ---- */
.opp-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(239,234,224,0.12);
  border-radius: 8px;
  color: var(--c-paper);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.92rem;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.opp-input::placeholder { color: rgba(239,234,224,0.28); }

.opp-input:focus {
  border-color: rgba(0,173,238,0.6);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(0,173,238,0.1);
}

.has-error .opp-input,
.has-error .opp-dropzone {
  border-color: rgba(239,68,68,0.6) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08) !important;
}

.opp-error {
  font-size: 0.76rem;
  color: rgb(252,165,165);
  font-family: 'IBM Plex Mono', monospace;
  min-height: 1em;
  display: block;
}

/* ---- Select ---- */
.opp-select-wrap { position: relative; }

.opp-select {
  cursor: pointer;
  padding-right: 2.5rem;
}

.opp-select option { background: #1F3947; color: var(--c-paper); }

.opp-select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(239,234,224,0.5);
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
}

.opp-select-arrow svg { width: 100%; height: 100%; }

/* ---- Textarea ---- */
.opp-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

.opp-textarea-wrap { position: relative; }

.opp-char-count {
  position: absolute;
  bottom: 0.65rem;
  right: 0.9rem;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: rgba(239,234,224,0.32);
  pointer-events: none;
}

/* ---- Drop Zone ---- */
.opp-file-input { display: none; }

.opp-dropzone {
  border: 1.5px dashed rgba(239,234,224,0.18);
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3.5rem) 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  background: rgba(255,255,255,0.02);
}

.opp-dropzone:hover,
.opp-dropzone.drag-over {
  border-color: rgba(0,173,238,0.5);
  background: rgba(0,173,238,0.04);
}

.opp-dropzone.has-file {
  border-style: solid;
  border-color: rgba(239,181,28,0.35);
  background: rgba(239,181,28,0.04);
  cursor: default;
}

.opp-dropzone__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  color: rgba(239,234,224,0.35);
}

.opp-dropzone__icon svg { width: 100%; height: 100%; }

.opp-dropzone__label {
  font-size: var(--fs-base);
  color: rgba(239,234,224,0.75);
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.opp-dropzone__sub {
  font-size: 0.85rem;
  color: rgba(239,234,224,0.4);
  margin-bottom: 0.9rem;
}

.opp-dropzone__browse {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.opp-dropzone__rules {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(239,234,224,0.3);
}

/* File preview */
.opp-file-preview {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.opp-file-icon { width: 40px; height: 50px; flex-shrink: 0; }
.opp-file-icon svg { width: 100%; height: 100%; }

.opp-file-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.opp-file-name {
  font-size: 0.88rem;
  color: var(--c-paper);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.opp-file-size {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  color: rgba(239,234,224,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.opp-file-remove {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 6px;
  color: rgb(252,165,165);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.opp-file-remove:hover {
  background: rgba(239,68,68,0.2);
  border-color: rgba(239,68,68,0.5);
}

.opp-file-remove svg { width: 16px; height: 16px; }

/* ---- Consent checkbox ---- */
.opp-consent { display: flex; flex-direction: column; gap: 0.5rem; }

.opp-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
}

.opp-check-input { display: none; }

.opp-check-box {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(239,234,224,0.25);
  border-radius: 5px;
  background: rgba(255,255,255,0.04);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1em;
  transition: border-color 0.2s, background 0.2s;
  outline-offset: 3px;
}

.opp-check-box:focus-visible { outline: 2px solid var(--c-blue); }

.opp-check-box.checked {
  border-color: var(--c-gold);
  background: rgba(239,181,28,0.12);
}

.opp-check-mark {
  width: 12px;
  height: 9px;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--c-gold);
}

.opp-check-box.checked .opp-check-mark { opacity: 1; }

.opp-check-text {
  font-size: 0.85rem;
  color: rgba(239,234,224,0.6);
  line-height: 1.6;
}

/* ---- Submit button ---- */
.opp-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 0.5rem;
}

.opp-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--c-gold);
  color: var(--c-navy-deep);
  border: none;
  border-radius: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1rem 2.25rem;
  cursor: pointer;
  transition: background 0.25s, transform 0.3s var(--ease-out-expo), opacity 0.25s;
  overflow: hidden;
}

.opp-submit-btn:hover { background: #d9a418; transform: translateY(-2px); }
.opp-submit-btn:active { transform: translateY(0); }

.opp-submit-btn__loader { display: none; }
.opp-submit-btn__arrow { font-size: 1.1rem; transition: transform 0.3s; }
.opp-submit-btn:hover .opp-submit-btn__arrow { transform: translateX(4px); }

.opp-submit-btn.loading .opp-submit-btn__text { opacity: 0; }
.opp-submit-btn.loading .opp-submit-btn__loader { display: flex; align-items: center; }
.opp-submit-btn.loading .opp-submit-btn__arrow { display: none; }
.opp-submit-btn.loading { opacity: 0.85; pointer-events: none; }

.opp-spinner {
  width: 20px;
  height: 20px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.opp-submit-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(239,234,224,0.3);
}

/* ---- Success state ---- */
.opp-success {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) 1rem;
}

.opp-success__inner {
  text-align: center;
  max-width: 480px;
  opacity: 0;
}

.opp-success__icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2.25rem;
}

.opp-success__circle { width: 80px; height: 80px; }

.opp-success__check {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
}

.opp-success__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--c-paper);
  margin-bottom: 1rem;
}

.opp-success__text {
  font-size: var(--fs-base);
  color: rgba(239,234,224,0.6);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.opp-success__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-gold);
  color: var(--c-navy-deep);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 7px;
  transition: background 0.25s, transform 0.3s var(--ease-out-expo);
}

.opp-success__btn:hover { background: #d9a418; transform: translateY(-2px); }

/* ---- Responsive form ---- */
@media (max-width: 768px) {
  .opp-form__row--2 { grid-template-columns: 1fr; }
  .opp-fieldset { padding: 1.5rem; }
}

/* ==========================================================================
   Arabic / RTL Overrides
   ========================================================================== */

html[lang="ar"] {
  font-family: 'Tajawal', 'IBM Plex Sans', sans-serif;
}

html[lang="ar"] * {
  letter-spacing: 0 !important;
}

/* Keep phone numbers and emails LTR */
html[lang="ar"] .numeric,
html[lang="ar"] a[href^="tel"],
html[lang="ar"] a[href^="mailto"] {
  direction: ltr;
  unicode-bidi: embed;
  display: inline-block;
}

/* Eyebrow: line appears naturally on the "start" side in both LTR and RTL via flex */
html[lang="ar"] .eyebrow {
  font-family: 'Tajawal', 'IBM Plex Sans', sans-serif;
  letter-spacing: 0 !important;
}

/* Hero brands strip — keep logos in correct order */
html[lang="ar"] .hero__brands-logos {
  flex-direction: row-reverse;
}

/* Values wheel label font */
html[lang="ar"] .wedge-label,
html[lang="ar"] .center-text,
html[lang="ar"] .org-member-role,
html[lang="ar"] .history__year,
html[lang="ar"] .story-pg__year,
html[lang="ar"] .story-pg__stat-number {
  font-family: 'Tajawal', 'IBM Plex Sans', sans-serif;
  letter-spacing: 0;
}

/* Pattern stripes — keep physical positioning, just look decorative */
html[lang="ar"] .pattern-stripes span {
  direction: ltr;
}

/* Nav dropdown arrow direction */
html[lang="ar"] .nav__caret {
  transform: scaleX(1);
}

/* Footer nav links alignment */
html[lang="ar"] .footer__links {
  text-align: right;
}

/* Section splits on story page — maintain visual balance */
html[lang="ar"] .story-pg__split--light {
  flex-direction: row-reverse;
}
html[lang="ar"] .story-pg__split--dark.story-pg__split--reverse {
  flex-direction: row;
}

/* History layout — keep sticky visual on the correct side */
html[lang="ar"] .history__layout {
  flex-direction: row-reverse;
}

/* Org chart keep LTR branch structure */
html[lang="ar"] .org-section,
html[lang="ar"] .org-tier,
html[lang="ar"] .org-team-grid {
  direction: ltr;
}
html[lang="ar"] .org-card--leader,
html[lang="ar"] .org-member-card {
  direction: rtl;
  text-align: right;
}

/* Vision page mission split */
html[lang="ar"] .vision-pg__decl--mission {
  flex-direction: row-reverse;
}

/* Reveal-text clip fix — Arabic diacritics extend above cap height, need extra room */
html[lang="ar"] .reveal-text {
  padding-top: 0.2em;
  margin-top: -0.2em;
}

/* Loosen line-height for Arabic headings — Arabic has taller ascenders */
html[lang="ar"] .hero__title,
html[lang="ar"] .page-hero__title,
html[lang="ar"] .history__main-title {
  line-height: 1.2;
}

/* Values wheel connectors — swap sides because flex-row reverses in RTL */
html[lang="ar"] .values__column--left {
  align-items: flex-start;
  text-align: left;
}
html[lang="ar"] .values__column--right {
  align-items: flex-end;
  text-align: right;
}
html[lang="ar"] .values__column--left .line-connector {
  right: auto;
  left: calc(-1 * clamp(20px, 4vw, 50px));
}
html[lang="ar"] .values__column--left .line-connector::after {
  right: auto;
  left: 0;
}
html[lang="ar"] .values__column--right .line-connector {
  left: auto;
  right: calc(-1 * clamp(20px, 4vw, 50px));
}
html[lang="ar"] .values__column--right .line-connector::after {
  left: auto;
  right: 0;
}

/* Quarter-circle shapes — mirror to opposite corner in RTL */
html[lang="ar"] .hero__patterns .pattern-quarter:not(.founder-quarter) {
  right: auto;
  left: 0;
  border-radius: 0 100% 0 0;
  transform-origin: bottom left;
}

html[lang="ar"] .founder-quarter {
  left: auto !important;
  right: -5% !important;
  border-radius: 100% 0 0 0 !important;
}

/* Stripes footer — mirror to the left in RTL */
html[lang="ar"] .center-stripes-footer {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: clamp(1.5rem, 5vw, 4rem);
}

/* Opportunities form */
html[lang="ar"] .opp-form__row--2 {
  direction: rtl;
}
html[lang="ar"] .opp-label,
html[lang="ar"] .opp-fieldset__legend {
  text-align: right;
}
html[lang="ar"] .opp-submit-row {
  align-items: flex-end;
}
html[lang="ar"] .opp-char-count {
  right: auto;
  left: 0.9rem;
}

/* Background image/video horizontal flip for RTL — applied to parent containers so GSAP
   parallax transforms on child elements are unaffected */
/* .history__bg excluded — its child uses position:fixed which breaks under transform */
html[lang="ar"] .hero__bg,
html[lang="ar"] .page-hero__bg,
html[lang="ar"] .brands__bg,
html[lang="ar"] .story__bg,
html[lang="ar"] .values__bg,
html[lang="ar"] .story-pg__hero-bg,
html[lang="ar"] .story-pg__immersive-bg,
html[lang="ar"] .story-pg__split-img,
html[lang="ar"] .vision-pg__hero-bg,
html[lang="ar"] .vision-pg__mission-img {
  transform: scaleX(-1);
}
