/* ===================================================================
   Archived Blueprint — Design System (Bootstrap 5 + brand theme)
   Palette sourced from the Archived Blueprint logo: deep royal navy,
   metallic gold, warm parchment. Light, airy base with navy + gold
   used as accent/ink colors. Bootstrap 5 supplies the grid, navbar
   collapse, and form/button base; this file layers the brand's
   glassy, premium look on top.
   =================================================================== */

:root {
  --navy-deep: #0d1736;
  --navy: #15275c;
  --navy-bright: #2451a8;

  --gold: #b5872f;
  --gold-2: #e7c373;
  --gold-deep: #8c6420;

  --bg: #ffffff;
  --bg-alt: #f4f5f9;

  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(13, 23, 54, 0.10);
  --border-strong: rgba(140, 100, 32, 0.35);

  --ink: #10183a;
  --ink-soft: #3c4566;
  --muted: #6b7290;

  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 55%, #fff3d8 100%);
  --gradient-text-gold: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 55%, var(--gold-2) 100%);
  --gradient-glow:
    radial-gradient(circle at 8% 4%, rgba(201, 160, 80, 0.18), transparent 42%),
    radial-gradient(circle at 92% 0%, rgba(36, 70, 150, 0.10), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(201, 160, 80, 0.12), transparent 46%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);

  --shadow: 0 30px 90px rgba(20, 30, 60, 0.12);
  --shadow-soft: 0 18px 50px rgba(20, 30, 60, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --font-display: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Bootstrap variable overrides */
  --bs-body-bg: var(--bg);
  --bs-body-color: var(--ink-soft);
  --bs-link-color: var(--gold-deep);
  --bs-link-hover-color: var(--navy-bright);
  --bs-border-color: var(--border);
}

* { box-sizing: border-box; }
/* overflow-x lives on html, not body: setting only overflow-x on an element forces the
   browser to compute its overflow-y as auto, turning that element into a scroll container.
   On body that silently breaks position:sticky for anything nested inside main (sticky's
   containing scrollport becomes body's box instead of the viewport). html's overflow-x
   controls the viewport directly without creating that scroll-container side effect. */
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--gradient-glow);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(13, 23, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 23, 54, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
  mask-image: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.9), transparent 70%);
}

a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--navy-bright); }
img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }
p { color: var(--ink-soft); }

.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
::selection { background: var(--gold); color: #fff8ec; }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: -999px; top: 1rem; z-index: 100;
  background: var(--gold); color: #14110a;
  padding: 0.75rem 1.1rem; border-radius: 999px; font-weight: 600;
}
.skip-link:focus { left: 1rem; }

/* ---------- Navbar (Bootstrap navbar, brand glass styling) ---------- */
.site-header { position: sticky; top: 0; z-index: 60; padding: 1rem clamp(1rem, 3vw, 2rem); }

.navbar {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0.5rem 0.9rem;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled .navbar {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.navbar-brand {
  display: inline-flex; align-items: center; gap: 0.65rem; padding: 0.2rem 0.2rem;
  flex: 1 1 auto; min-width: 0; overflow: hidden;
}
.brand-mark-badge {
  width: 2.6rem; height: 2.6rem; flex-shrink: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  padding: 0.3rem;
  box-shadow: 0 6px 18px rgba(20, 30, 60, 0.12);
}
.brand-mark-badge img { width: 100%; height: 100%; object-fit: contain; }
.navbar-brand > span:last-child { min-width: 0; overflow: hidden; }
.navbar-brand strong {
  display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.navbar-brand small {
  display: block; color: var(--gold-deep); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .navbar-brand small { display: none; }
}

.navbar-toggler {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  flex-shrink: 0;
  padding: 0.45rem 0.65rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(181, 135, 47, 0.3); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2310183a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 0.6rem 0.9rem !important;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--surface-strong);
  color: var(--ink);
}
.nav-cta.nav-link {
  background: var(--gradient-gold) !important;
  color: #14110a !important;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .navbar-collapse { margin-top: 0.6rem; }
}

/* ---------- Buttons ---------- */
.button {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.85rem; border-radius: 999px;
  font-weight: 700; font-size: 0.96rem;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--gradient-gold); color: #14110a;
  box-shadow: 0 18px 40px rgba(181, 135, 47, 0.28), 0 0 0 1px rgba(255,255,255,0.4) inset;
  position: relative; overflow: hidden;
}
.button-primary:hover { color: #14110a; box-shadow: 0 22px 50px rgba(181, 135, 47, 0.4), 0 0 0 1px rgba(255,255,255,0.5) inset; }
.button-primary::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-20deg); transition: left 0.6s ease;
}
.button-primary:hover::after { left: 125%; }
.button-secondary { background: var(--surface); border-color: var(--border-strong); color: var(--ink); }
.button-secondary:hover { color: var(--ink); background: var(--surface-strong); }
.button-ghost { background: transparent; border-color: var(--border); color: var(--ink-soft); }
.button-ghost:hover { color: var(--ink); border-color: var(--border-strong); }

/* ---------- Page hero ---------- */
.page-hero { padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 3rem); text-align: center; }
.page-hero .container { max-width: 760px; }

/* ---------- Page hero banner (dark photo header, per-page background image) ---------- */
.page-hero-banner {
  position: relative; overflow: hidden; background-size: cover; background-position: center;
  padding: clamp(4.5rem, 11vw, 7.5rem) 0 clamp(4rem, 9vw, 6rem);
}
.page-hero-banner::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(13, 23, 54, 0.88) 0%, rgba(13, 23, 54, 0.8) 55%, rgba(13, 23, 54, 0.92) 100%);
}
.page-hero-banner .container { position: relative; z-index: 1; }
.page-hero-banner .page-hero-watermark { display: none; }
.page-hero-banner .eyebrow { background: rgba(255, 255, 255, 0.1); border-color: rgba(231, 195, 115, 0.35); color: var(--gold-2); }
.page-hero-banner h1 { color: #fff; }
.page-hero-banner h1 .highlight-sweep { color: var(--gold-2); }
.page-hero-banner h1 .highlight-sweep::after { display: none; }
.page-hero-banner .lede { color: rgba(255, 255, 255, 0.82); }

.page-hero-articles { background-image: url("../img/5.jpg"); }
.page-hero-events { background-image: url("../img/6.jpg"); }
.page-hero-resources { background-image: url("../img/7.jpg"); }
.page-hero-library { background-image: url("../img/4.jpg"); }
.page-hero-guest { background-image: url("../img/8.jpg"); }
.page-hero-about { background-image: url("../img/3.jpg"); }
.page-hero-conversations { background-image: url("../img/11.jpg"); }
.page-hero-newsletter { background-image: url("../img/hero-newsletter.jpg"); }
.page-hero-partner { background-image: url("../img/hero-partner.jpg"); }
.page-hero-pillar-career { background-image: url("../img/pillar-career.jpg"); background-position: center 20%; }
.page-hero-pillar-business { background-image: url("../img/pillar-business.jpg"); }
.page-hero-pillar-wealth { background-image: url("../img/pillar-wealth.jpg"); }
.page-hero-pillar-migration { background-image: url("../img/pillar-migration.jpg"); }
.page-hero-pillar-identity { background-image: url("../img/pillar-identity.jpg"); }
.page-hero-pillar-legacy { background-image: url("../img/pillar-legacy.jpg"); }

/* ---------- Page hero flat (pre-composed image with its own baked-in text) ---------- */
.page-hero-flat { padding: 0; background: var(--navy-deep); }
.page-hero-flat-img { width: 100%; height: auto; display: block; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface-strong); border: 1px solid var(--border-strong);
  border-radius: 999px; padding: 0.5rem 1.1rem;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-deep); margin-bottom: 1.4rem; box-shadow: var(--shadow-soft);
}
.page-hero .lede { max-width: 720px; font-size: 1.05rem; margin-inline: auto; }
.highlight-sweep { position: relative; display: inline-block; color: var(--ink); white-space: nowrap; }
.highlight-sweep::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: 0.08em; height: 0.34em;
  background: var(--gradient-gold); z-index: -1; opacity: 0.85; border-radius: 2px;
}

/* ---------- Cinematic hero carousel (split: text left, contained photo right) ---------- */
.hero-cinema { position: relative; background: var(--navy-deep); overflow: hidden; }
.hero-cinema-swiper { width: 100%; }
.hero-cinema-slide { position: relative; padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3.5rem, 7vw, 5rem); }
.hero-cinema-inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 40%);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero-cinema-content { position: relative; z-index: 2; max-width: 560px; }
.hero-cinema-content .eyebrow { background: rgba(255, 255, 255, 0.08); border-color: rgba(231, 195, 115, 0.35); color: var(--gold-2); }
.hero-cinema-content h1, .hero-cinema-content h2 { color: #fff; }
.hero-cinema-content h2 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); line-height: 1.04; }
.hero-cinema-content .highlight-sweep { color: var(--gold-2); }
.hero-cinema-content .highlight-sweep::after { display: none; }
.hero-cinema-lede { color: rgba(255, 255, 255, 0.82); font-size: 1.05rem; max-width: 480px; margin-bottom: 1.8rem; }
.hero-cinema-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-cinema-photo { position: relative; aspect-ratio: 3 / 4; }
.hero-cinema-photo-frame {
  position: absolute; inset: 0; isolation: isolate;
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at center, #000 50%, transparent 100%);
  mask-image: radial-gradient(ellipse 65% 65% at center, #000 50%, transparent 100%);
}
.hero-cinema-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-cinema-photo-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(13, 23, 54, 0.55) 0%, transparent 32%);
}

/* Real cutout (transparent background) — no mask needed, alpha already blends into the page */
.hero-cinema-photo-frame.is-cutout {
  -webkit-mask-image: none; mask-image: none;
}
.hero-cinema-photo-frame.is-cutout img { object-fit: contain; object-position: center bottom; }
.hero-cinema-photo-frame.is-cutout::after { display: none; }

.hero-cinema-badge {
  position: absolute; right: 0.4rem; top: 0.4rem; z-index: 2;
  background: var(--gradient-gold); color: #14110a; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm);
  transform: rotate(-2deg); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  font-family: var(--font-display); font-weight: 700; font-size: 0.68rem; line-height: 1.15;
  display: flex; flex-direction: column; gap: 0.1rem;
}
.hero-cinema-badge em {
  font-style: normal; font-weight: 600; font-size: 0.52rem; letter-spacing: 0.03em;
  text-transform: uppercase; opacity: 0.75;
}

.hero-cinema-controls {
  display: flex; align-items: center; justify-content: flex-end; gap: 1rem;
  padding-top: clamp(1.5rem, 4vw, 2.5rem);
}
.hero-cinema-pagination.swiper-pagination { position: static; display: flex; gap: 0.4rem; width: auto; }
.hero-cinema-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px; background: rgba(255, 255, 255, 0.4); opacity: 1; border-radius: 999px; margin: 0 !important;
  transition: background 0.2s ease, width 0.2s ease;
}
.hero-cinema-pagination .swiper-pagination-bullet-active { background: var(--gold-2); width: 22px; }
.hero-cinema-arrows { display: flex; gap: 0.6rem; }
.hero-cinema-arrow {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06); color: #fff; display: grid; place-items: center; cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease; flex-shrink: 0;
}
.hero-cinema-arrow:hover { background: rgba(255, 255, 255, 0.18); transform: scale(1.06); }
.hero-cinema-arrow svg { width: 15px; height: 15px; }

.button-outline-light { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.55); color: #fff; }
.button-outline-light:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; color: #fff; }

@media (max-width: 991.98px) {
  .hero-cinema-inner { grid-template-columns: 1fr; }
  .hero-cinema-photo { width: 100%; max-width: 360px; margin: 0 auto; order: -1; }
  .hero-cinema-content { max-width: none; text-align: center; margin: 0 auto; }
  .hero-cinema-actions { justify-content: center; }
  .hero-cinema-lede { margin-inline: auto; }
}
@media (max-width: 767.98px) {
  .hero-cinema-badge { display: none; }
  .hero-cinema-photo { aspect-ratio: 1 / 1; }
  .hero-cinema-controls { justify-content: center; }
}

/* ---------- Glass surfaces with gold sheen ---------- */
.glass-card, .hero-card, .founder-card, .promise-card,
.blueprint-card, .feature-card, .form-card, .signup-card,
.cta-panel, .empty-state, .contact-card, .band-item {
  position: relative;
  isolation: isolate;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}
.glass-card::before, .hero-card::before, .founder-card::before, .promise-card::before,
.blueprint-card::before, .feature-card::before, .form-card::before, .signup-card::before,
.cta-panel::before, .empty-state::before, .contact-card::before, .band-item::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(201, 160, 80, 0.10) 40%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
}
.hero-card, .glass-card, .founder-card, .promise-card, .form-card, .signup-card, .contact-card, .cta-panel {
  padding: clamp(1.8rem, 3vw, 2.4rem);
}
.blueprint-card, .feature-card, .band-item { padding: 1.8rem; transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.blueprint-card:hover, .feature-card:hover {
  border-color: var(--border-strong); transform: translateY(-6px) scale(1.015);
  box-shadow: 0 24px 60px rgba(181, 135, 47, 0.18);
}
.text-gradient-gold {
  background: var(--gradient-text-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-watermark {
  position: absolute; top: -8%; right: -6%; width: clamp(320px, 38vw, 560px);
  opacity: 0.16; pointer-events: none; z-index: -1;
}
.pull-quote { max-width: 700px; margin: 0 auto; text-align: center; }
.pull-quote blockquote {
  font-family: var(--font-display); font-weight: 700; line-height: 1.4;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: var(--ink); margin: 0 0 0.8rem;
}
.page-hero { position: relative; overflow: hidden; }
.page-hero-watermark {
  position: absolute; top: -15%; right: -8%; width: clamp(220px, 26vw, 360px);
  opacity: 0.12; pointer-events: none; z-index: -1;
}
@media (max-width: 767.98px) {
  .hero-watermark, .page-hero-watermark { display: none; }
}
.blueprint-card span, .feature-card span.tag {
  display: inline-block; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 0.6rem;
}

.card-glow {
  position: absolute; width: 240px; height: 240px;
  background: var(--gradient-gold); filter: blur(80px); opacity: 0.35;
  top: -60px; right: -60px; border-radius: 50%; pointer-events: none;
}
.quote-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.8rem; }
.hero-card blockquote { margin: 0 0 1.4rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.metric-row { display: flex; gap: 1.2rem; flex-wrap: wrap; font-size: 0.82rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1rem; }
.metric-row strong { color: var(--ink); display: block; font-family: var(--font-display); font-size: 1rem; }

.band-item span { font-family: var(--font-display); color: var(--gold-deep); font-size: 0.85rem; }

.section-heading { max-width: 680px; margin-bottom: 2.5rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-kicker { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.8rem; }

.promise-card { background: var(--surface-strong); }
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.check-list li { position: relative; padding-left: 1.6rem; color: var(--ink-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45rem;
  width: 10px; height: 10px; border-radius: 50%; background: var(--gradient-gold);
}

.dark-panel { background: linear-gradient(135deg, rgba(36, 70, 150, 0.05), rgba(201, 160, 80, 0.06)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.timeline-item { border-left: 2px solid var(--border-strong); padding-left: 1.2rem; }
.timeline-item span { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-deep); }

.audience-grid, .tag-grid { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.audience-grid span, .tag-grid span {
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 0.6rem 1.1rem; font-size: 0.85rem; color: var(--ink-soft);
}

.empty-state { text-align: center; border-style: dashed; border-color: var(--border-strong); padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem); }
.icon-ring {
  width: 56px; height: 56px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--gradient-gold); color: #14110a;
  font-family: var(--font-display); font-weight: 700;
}
.icon-ring img { width: 34px; height: 34px; object-fit: contain; }
.measure-sm { max-width: 560px; }

.cta-panel {
  background: var(--gradient-gold); border: none; box-shadow: var(--shadow);
}
.cta-panel h2 { color: #14110a; }
.cta-panel p { color: #3a2c0c; }
.cta-panel .eyebrow { background: rgba(255,255,255,0.7); border-color: rgba(20,17,10,0.18); }
.cta-panel .button-primary { background: #14110a; color: var(--gold-2); box-shadow: 0 18px 40px rgba(20,17,10,0.3); }
.cta-panel .button-primary:hover { color: var(--gold-2); }
.cta-panel .button-primary::after { background: linear-gradient(120deg, transparent, rgba(255,255,255,0.18), transparent); }
.cta-panel .button-secondary { background: rgba(255,255,255,0.55); border-color: rgba(20,17,10,0.25); color: #14110a; }
.cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Stat strip (diagonal navy band) ---------- */
.stat-strip {
  background: var(--navy-deep);
  clip-path: polygon(0 0, 100% 4%, 100% 96%, 0 100%);
  padding: clamp(2.6rem, 6vw, 4rem) 0;
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
}
.stat-strip .stat-item { text-align: center; color: #f3f1ea; }
.stat-strip .stat-item strong {
  display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-2);
}
.stat-strip .stat-item span { font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; color: #aab2cc; }

/* ---------- Block grid (color-blocked pillar showcase) ---------- */
.block-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.block-card {
  padding: 2.2rem 1.8rem; min-height: 230px;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 0.2s ease;
}
.block-card:hover { transform: translateY(-4px); }
.block-card.navy { background: var(--navy-deep); color: #f3f1ea; }
.block-card.cream { background: var(--bg-alt); color: var(--ink); }
.block-card.gold { background: var(--gradient-gold); color: #14110a; }
.block-card .tag {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; margin-bottom: 0.5rem; display: block;
}
.block-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; color: inherit; }
.block-card.navy h3, .block-card.navy .tag { color: #f3f1ea; }
.block-card.gold h3, .block-card.gold .tag { color: #14110a; }
.block-card p { font-size: 0.9rem; margin-bottom: 0; }
.block-card.navy p { color: #cfd3e2; }
.block-card.gold p { color: #3a2c0c; }
.block-card.cream p { color: var(--ink-soft); }
@media (max-width: 900px) {
  .block-grid { grid-template-columns: 1fr; }
}

/* ---------- Block card photo treatment (Blueprint pillars) ---------- */
.block-card.has-photo {
  position: relative; isolation: isolate; background-size: cover; background-position: center;
  min-height: 280px;
}
.block-card.has-photo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(0deg, rgba(13, 23, 54, 0.94) 0%, rgba(13, 23, 54, 0.6) 58%, rgba(13, 23, 54, 0.22) 100%);
}
.block-card.has-photo, .block-card.has-photo h3, .block-card.has-photo .tag { color: #f3f1ea; }
.block-card.has-photo p { color: #cfd3e2; }
.block-card.has-photo .card-arrow { border-color: rgba(243, 241, 234, 0.7); color: #f3f1ea; }

.pillar-career-card { background-image: url("../img/pillar-career.jpg"); }
.pillar-business-card { background-image: url("../img/pillar-business.jpg"); }
.pillar-wealth-card { background-image: url("../img/pillar-wealth.jpg"); }
.pillar-migration-card { background-image: url("../img/pillar-migration.jpg"); }
.pillar-identity-card { background-image: url("../img/pillar-identity.jpg"); }
.pillar-legacy-card { background-image: url("../img/pillar-legacy.jpg"); }

/* ---------- Founder photo placeholder ---------- */
.founder-photo-placeholder {
  width: 132px; height: 132px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--surface-strong);
  border: 1.5px dashed var(--border-strong); color: var(--ink-soft); font-family: var(--font-display);
}
.founder-photo-placeholder svg { width: 46px; height: 46px; opacity: 0.7; }
.founder-preview-card h3 { margin-bottom: 0.2rem; }
.founder-preview-card .role { display: block; font-size: 0.82rem; color: var(--gold-deep); margin-bottom: 0.8rem; }
.photo-coming-soon { display: block; font-size: 0.7rem; color: var(--muted); margin-top: -0.8rem; margin-bottom: 1rem; }
.quote-heading { font-size: 1.3rem; }
.brand-name-text { font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); }
.swatch-block { height: 64px; border-radius: 14px; margin-bottom: 1rem; }
.swatch-gold { background: #c9a050; }
.swatch-gold-light { background: #f0d282; }
.swatch-royal-blue { background: #1c3c82; }
.swatch-deep-navy { background: #0a1230; border: 1px solid var(--border); }
.logo-asset-icon { width: 120px; }
.logo-asset-lockup { width: 160px; }

/* ---------- Forms ---------- */
label { display: block; font-size: 0.82rem; color: var(--muted); margin: 0 0 0.4rem; }
.form-card input, .form-card textarea, .form-card select,
.signup-card input, .signup-card textarea, .signup-card select {
  width: 100%; background: rgba(13, 23, 54, 0.035); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--ink); padding: 0.8rem 1rem;
  font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 1.1rem;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus,
.signup-card input:focus, .signup-card textarea:focus, .signup-card select:focus {
  border-color: var(--gold-deep); box-shadow: none; background: rgba(255,255,255,0.95); color: var(--ink);
}
.form-card textarea, .signup-card textarea { resize: vertical; min-height: 120px; }
.select-tall { min-height: 120px; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; }
.form-status { display: none; border-radius: var(--radius-sm); padding: 0.85rem 1rem; margin-bottom: 1rem; font-size: 0.88rem; }
.form-status.is-success { display: block; background: rgba(201,160,80,0.14); border: 1px solid rgba(140,100,32,0.4); color: var(--gold-deep); }
.form-status.is-error { display: block; background: rgba(196,46,46,0.08); border: 1px solid rgba(196,46,46,0.3); color: #a3231f; }

.contact-card .email-link { display: inline-block; margin-top: 1rem; color: var(--gold-deep); font-weight: 600; }
.contact-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.9rem; }
.contact-list strong { display: block; color: var(--ink); font-size: 0.85rem; }
.contact-list span { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 2.8rem clamp(1.25rem, 4vw, 2rem) 2.2rem; margin-top: 2rem; }
.footer-brand-mark { width: 2.4rem; height: 2.4rem; border-radius: 50%; background: #ffffff; border: 1px solid var(--border); display: grid; place-items: center; padding: 0.25rem; flex-shrink:0; }
.footer-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.9rem; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 0.6rem; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: 1180px; margin: 2.2rem auto 0; padding-top: 1.4rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; color: var(--muted); font-size: 0.82rem;
}
.social-row { display: flex; gap: 0.7rem; }
.social-row a { width: 2.2rem; height: 2.2rem; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; font-size: 0.78rem; color: var(--ink-soft); }
.social-row a:hover { border-color: var(--border-strong); color: var(--ink); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button:hover { transform: none; }
}

@media (max-width: 767.98px) {
  .globe-rings { display: none; }
}

/* ===================================================================
   INTERACTIVE ENHANCEMENTS — v2
   =================================================================== */

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: var(--gradient-gold);
  transition: width 0.08s linear;
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 400;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: var(--surface-strong); border: 1px solid var(--border-strong);
  color: var(--ink); cursor: pointer; display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
  pointer-events: none;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gradient-gold); color: #14110a; border-color: transparent; }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- WhatsApp widget ---------- */
.wa-widget {
  position: fixed; bottom: 5.4rem; right: 1.8rem; z-index: 400;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem;
}
.wa-fab {
  width: 3.4rem; height: 3.4rem; border-radius: 50%;
  background: #25D366; color: #fff;
  border: none; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,0.55); }
.wa-pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0;
  animation: wa-ring 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.6; }
  80% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-bubble {
  background: var(--surface-strong); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.4rem 1.5rem 1.2rem;
  box-shadow: var(--shadow); max-width: 290px; width: 290px;
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  display: none; position: relative;
}
.wa-bubble.is-open { display: block; animation: fadeSlideUp 0.28s ease; }
.wa-bubble-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.9rem; }
.wa-bubble-icon {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; flex-shrink: 0;
}
.wa-bubble-icon svg { width: 14px; height: 14px; color: #fff; }
.wa-bubble-title { font-family: var(--font-display); font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.wa-bubble-sub { font-size: 0.72rem; color: #25D366; }
.wa-bubble p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.55; }
.wa-bubble .wa-chat-btn {
  font-size: 0.88rem; padding: 0.75rem 1.2rem; width: 100%;
  justify-content: center; background: #25D366; color: #fff; border: none;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.wa-bubble .wa-chat-btn:hover { background: #1ebe5d; color: #fff; }
.wa-close-btn {
  position: absolute; top: 0.65rem; right: 0.75rem;
  background: none; border: none; font-size: 1.05rem; cursor: pointer;
  color: var(--muted); line-height: 1; padding: 0.2rem;
}
.wa-close-btn:hover { color: var(--ink); }

/* ---------- Social dock (desktop left rail) ---------- */
.social-dock {
  position: fixed; left: 1.2rem; top: 50%; transform: translateY(-50%);
  z-index: 300; display: flex; flex-direction: column; gap: 0.55rem;
  opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none;
}
.social-dock.is-visible { opacity: 1; pointer-events: auto; }
.social-dock a {
  width: 2.3rem; height: 2.3rem; border-radius: 50%;
  background: var(--surface-strong); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--ink-soft);
  box-shadow: 0 4px 14px rgba(20,30,60,0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-dock a:hover { background: var(--gradient-gold); color: #14110a; border-color: transparent; transform: scale(1.15); }
.social-dock svg { width: 14px; height: 14px; flex-shrink: 0; display: block; }
.social-dock-line {
  width: 1px; height: 48px; background: var(--border); margin: 0.2rem auto;
}
@media (max-width: 1199.98px) { .social-dock { display: none; } }

/* ---------- Button ripple ---------- */
.button { position: relative; overflow: hidden; }
.ripple-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255,255,255,0.5); transform: scale(0);
  animation: ripple-expand 0.6s ease-out forwards;
}
@keyframes ripple-expand { to { transform: scale(4); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .ripple-ring { display: none; } }

/* ---------- Founder avatar (initials) ---------- */
.founder-avatar-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 1rem; }
.founder-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--gradient-gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: #14110a;
  box-shadow: 0 14px 42px rgba(181,135,47,0.3);
  position: relative; overflow: hidden;
}
.founder-avatar::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 55%);
  pointer-events: none;
}
.founder-avatar-ring {
  width: 134px; height: 134px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: grid; place-items: center; flex-shrink: 0;
  margin-bottom: 0.5rem;
}
.photo-coming-soon { font-size: 0.7rem; color: var(--muted); }

/* ---------- Block card arrow / link ---------- */
.block-card a.block-card-link {
  color: inherit; display: flex; flex-direction: column;
  height: 100%; text-decoration: none;
}
.block-card .card-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  border: 1.5px solid currentColor; margin-top: 1.2rem;
  opacity: 0.28; transition: opacity 0.22s ease, transform 0.22s ease;
  flex-shrink: 0;
}
.block-card:hover .card-arrow { opacity: 0.8; transform: translate(3px, -3px); }
.block-card.navy .card-arrow { border-color: rgba(243,241,234,0.7); color: #f3f1ea; }
.block-card.cream .card-arrow { border-color: var(--ink); color: var(--ink); }
.block-card.gold .card-arrow { border-color: #14110a; color: #14110a; }

/* ---------- Audience tag hover ---------- */
.audience-grid span, .tag-grid span {
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
  cursor: default;
}
.audience-grid span:hover, .tag-grid span:hover {
  background: var(--navy-deep); color: #f3f1ea; border-color: var(--navy-deep);
  transform: translateY(-2px);
}

/* ---------- Footer social SVG icons ---------- */
.social-row a svg { width: 15px; height: 15px; display: block; }
.social-row a:hover { background: var(--gradient-gold); color: #14110a; border-color: transparent; }

/* ---------- Band items (platform promise) enhanced ---------- */
.band-item { padding: 1.6rem; }
.band-item .band-num {
  font-family: var(--font-display); color: var(--gold-deep);
  font-size: 0.85rem; letter-spacing: 0.04em; margin-bottom: 0.6rem; display: block;
}
.band-item strong { font-size: 1.05rem; }

/* ---------- Stagger for grid reveals ---------- */
.block-grid .block-card:nth-child(1) { transition-delay: 0s; }
.block-grid .block-card:nth-child(2) { transition-delay: 0.06s; }
.block-grid .block-card:nth-child(3) { transition-delay: 0.12s; }
.block-grid .block-card:nth-child(4) { transition-delay: 0.18s; }
.block-grid .block-card:nth-child(5) { transition-delay: 0.24s; }
.block-grid .block-card:nth-child(6) { transition-delay: 0.30s; }

/* ---------- Timeline items (episodes section) enhanced ---------- */
.timeline-item { padding: 1.4rem 1.4rem 1.4rem 1.4rem; border-left: 3px solid var(--border-strong); transition: border-color 0.2s ease; }
.timeline-item:hover { border-color: var(--gold); }

/* ---------- Animations ---------- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Announcement / launch bar ---------- */
.launch-bar {
  background: var(--navy-deep); color: #cac5b0;
  font-size: 0.82rem; padding: 0.62rem 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  position: relative; z-index: 499; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.launch-bar-text { flex: 1; text-align: center; }
.launch-bar-text strong { color: var(--gold-2); }
.launch-bar-cta { color: var(--gold-2); font-weight: 600; white-space: nowrap; text-decoration: none; margin-left: 0.5rem; transition: color 0.2s ease; }
.launch-bar-cta:hover { color: #fff; }
.launch-bar-close { background: none; border: none; color: rgba(255,255,255,0.35); cursor: pointer; font-size: 1rem; line-height: 1; padding: 0 0.2rem; flex-shrink: 0; transition: color 0.2s ease; }
.launch-bar-close:hover { color: #fff; }

/* ---------- Founder actual photo ---------- */
.founder-photo {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; object-position: center top; display: block;
  border: 2.5px solid var(--gold); box-shadow: 0 8px 32px rgba(181,135,47,0.25);
}
.founder-photo-lg {
  width: 132px; height: 132px; border-radius: 50%;
  object-fit: cover; object-position: center top; display: block;
  border: 2.5px solid var(--gold); box-shadow: 0 12px 40px rgba(181,135,47,0.3);
}

/* ===================================================================
   PREMIUM EXPERIENCE — v3
   =================================================================== */

/* ---------- Page entrance / exit transition ---------- */
/* Animate header+main, NOT body — preloader lives inside body and must be visible immediately */
/* main uses an opacity-only keyframe (not translateY): a lingering transform on main from a
   `both`-fill animation becomes a new containing block and silently breaks position:sticky
   for any sticky descendant (e.g. the journey scrollytelling panel) even after the animation ends. */
.site-header { animation: page-enter 0.45s ease 0.05s both; }
main { animation: page-enter-fade 0.45s ease 0.05s both; }
@keyframes page-enter { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@keyframes page-enter-fade { from { opacity: 0; } to { opacity: 1; } }
body.page-leaving { animation: page-leave 0.28s ease forwards; pointer-events: none; }
@keyframes page-leave { to { opacity: 0; transform: translateY(-6px); } }

/* ---------- Branded preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.6rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo {
  width: 64px; height: 64px; object-fit: contain;
  animation: pl-pulse 1.4s ease-in-out infinite;
}
@keyframes pl-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.93); }
  50% { opacity: 1; transform: scale(1); }
}
.preloader-track {
  width: 120px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden;
}
.preloader-bar {
  height: 100%; background: var(--gradient-gold); border-radius: 2px;
  animation: pl-fill 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes pl-fill { from { width: 0; } to { width: 100%; } }

/* ---------- Custom cursor (desktop only) ---------- */
.cursor-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-deep);
  position: fixed; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-ring {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(181, 135, 47, 0.5);
  position: fixed; pointer-events: none; z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease, opacity 0.22s ease;
  will-change: left, top;
}
.cursor-ring.on-dark { border-color: rgba(231, 195, 115, 0.6); }
.cursor-ring.is-hovering { width: 56px; height: 56px; border-color: var(--gold); background: rgba(181,135,47,0.06); }
.cursor-ring.is-clicking { width: 28px; height: 28px; opacity: 0.7; }

/* ---------- Card mouse-track glow ---------- */
.glass-card {
  --glow-x: 50%; --glow-y: 50%;
}
.glass-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(201, 160, 80, 0.2) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease; z-index: 0;
}
.glass-card.is-glowing::after { opacity: 1; }

/* ---------- Card 3D tilt ---------- */
.glass-card, .block-card {
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.2s ease;
}

/* ---------- Magnetic button ---------- */
.button-primary, .button-secondary {
  will-change: transform;
}

/* ---------- Staggered hero-cinema animations ---------- */
.hero-cinema-slide.swiper-slide-active .hero-cinema-content .eyebrow { animation: fade-up 0.55s ease 0.15s both; }
.hero-cinema-slide.swiper-slide-active .hero-cinema-content h1,
.hero-cinema-slide.swiper-slide-active .hero-cinema-content h2 { animation: fade-up 0.65s ease 0.27s both; }
.hero-cinema-slide.swiper-slide-active .hero-cinema-lede { animation: fade-up 0.6s ease 0.41s both; }
.hero-cinema-slide.swiper-slide-active .hero-cinema-actions { animation: fade-up 0.6s ease 0.53s both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  body, body.page-leaving,
  .hero-cinema-content .eyebrow, .hero-cinema-content h1, .hero-cinema-content h2, .hero-cinema-lede, .hero-cinema-actions {
    animation: none;
  }
}

/* ---------- Audience tag click ripple ---------- */
.audience-grid span { position: relative; overflow: hidden; }

/* ---------- Story archive placeholder media ---------- */
.story-media-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(181, 135, 47, 0.18);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 160, 80, 0.16), transparent 28rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.story-media-showcase::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(16, 24, 58, 0.07);
  border-radius: calc(var(--radius-xl) - 0.75rem);
  pointer-events: none;
}

.archive-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 0.5rem);
  border: 1px solid rgba(16, 24, 58, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 60px rgba(16, 24, 58, 0.12);
}

.archive-image-frame.dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.archive-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.archive-image-frame figcaption {
  padding: 0.9rem 1rem 1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.media-chip-grid,
.archive-record-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.media-chip-grid span,
.archive-record-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(16, 24, 58, 0.12);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.68rem 0.9rem;
}

.archive-record-list span {
  background: rgba(16, 24, 58, 0.06);
}

/* ---------- Performance: GPU hint for scroll elements ---------- */
.site-header, .back-to-top, .wa-widget, .social-dock, .scroll-progress {
  will-change: transform, opacity;
}

/* ---------- Exit-intent popup ---------- */
.exit-overlay {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(16, 14, 9, 0.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; padding: 1.2rem;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.exit-overlay.is-open { opacity: 1; visibility: visible; }
.exit-modal {
  position: relative; width: 100%; max-width: 420px;
  background: var(--bg, #fffaf2); border-radius: var(--radius-xl, 20px);
  border: 1px solid var(--border-strong); box-shadow: 0 30px 90px rgba(20, 17, 10, 0.35);
  padding: clamp(1.6rem, 4vw, 2.4rem); text-align: center;
  transform: translateY(14px) scale(0.97); transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
}
.exit-overlay.is-open .exit-modal { transform: translateY(0) scale(1); }
.exit-modal-close {
  position: absolute; top: 0.9rem; right: 0.9rem; width: 30px; height: 30px;
  border-radius: 50%; border: 1px solid var(--border-strong); background: transparent;
  color: var(--muted); font-size: 0.85rem; cursor: pointer; transition: background 0.2s ease, color 0.2s ease;
}
.exit-modal-close:hover { background: var(--navy-deep); color: #fff; border-color: var(--navy-deep); }
.exit-modal .eyebrow { justify-content: center; margin: 0 auto 0.8rem; }
.exit-modal h3 { font-family: var(--font-display); font-size: clamp(1.25rem, 3vw, 1.55rem); margin-bottom: 0.6rem; }
.exit-modal p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 1.4rem; }
.exit-modal-form { display: flex; flex-direction: column; gap: 0.7rem; }
.exit-modal-form input[type="email"] {
  width: 100%; padding: 0.75rem 1rem; border-radius: 999px; border: 1px solid var(--border-strong);
  background: #fff; font-size: 0.9rem; color: var(--ink); text-align: center;
}
.exit-modal-form input[type="email"]:focus { outline: none; border-color: var(--gold); }
.exit-modal-form .button { width: 100%; justify-content: center; }
.exit-modal .form-note { font-size: 0.74rem; color: var(--muted); margin-top: 0.6rem; }
.exit-modal .form-status { font-size: 0.82rem; margin-top: 0.5rem; min-height: 0; }
.exit-modal .form-status.is-success { color: #2f7a4f; }
.exit-modal .form-status.is-error { color: #b3492f; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 9400;
  max-width: 560px; margin: 0 auto;
  background: var(--navy-deep); color: #cac5b0;
  border-radius: var(--radius-lg, 16px); box-shadow: 0 20px 60px rgba(16,14,9,0.3);
  padding: 1.1rem 1.3rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  transform: translateY(140%); opacity: 0; transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner p { flex: 1; min-width: 200px; font-size: 0.82rem; margin: 0; line-height: 1.5; }
.cookie-banner p a { color: var(--gold-2); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 0.6rem; flex-shrink: 0; margin-left: auto; }
.cookie-banner-actions button { white-space: nowrap; font-size: 0.82rem; padding: 0.5rem 1.1rem; }
.cookie-banner-decline {
  background: transparent; border: 1px solid rgba(255,255,255,0.25); color: #cac5b0;
  border-radius: 999px; cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease;
}
.cookie-banner-decline:hover { border-color: #fff; color: #fff; }
@media (max-width: 480px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner-actions { margin-left: 0; justify-content: center; }
}

/* ---------- Host spotlight (paired founder photos, replaces icon-ring) ---------- */
.host-spotlight-photos {
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 1.1rem;
}
.host-spotlight-photos img {
  width: 84px; height: 84px; border-radius: 50%; background: var(--navy-deep);
  object-fit: cover; object-position: center top;
  border: 3px solid var(--bg); box-shadow: 0 10px 30px rgba(20,17,10,0.18);
}
.host-spotlight-photos img:first-child { margin-right: -22px; z-index: 2; position: relative; }
.host-spotlight-photos img:last-child { z-index: 1; position: relative; }
.host-spotlight-label {
  font-family: var(--font-display); font-size: 0.76rem; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.5rem;
}

/* ---------- Feature card icon (small line-art badge) ---------- */
.feature-card-icon {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 0.9rem;
  background: var(--gradient-gold); color: #14110a;
}
.feature-card-icon svg { width: 20px; height: 20px; }

/* ===================================================================
   Storytelling upgrade — Blueprint Journey scrollytelling,
   interactive journey map, and featured story spotlight carousel.
   =================================================================== */

/* ---------- Blueprint Journey (pinned scrollytelling) ---------- */
.journey-scroll-section { padding-bottom: 0; }
.journey-scroll { position: relative; height: 380vh; margin-top: 1rem; }
.journey-scroll-sticky {
  position: sticky; top: calc(5.5rem + 1px);
  height: calc(100vh - 5.5rem);
  min-height: 440px; max-height: 720px;
  display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem);
  overflow: hidden;
}
.journey-rail {
  position: relative; flex-shrink: 0;
  width: 4px; height: min(56vh, 400px);
  background: var(--border); border-radius: 999px;
  display: flex; flex-direction: column; justify-content: space-between;
  margin-left: clamp(0.5rem, 3vw, 2rem);
}
.journey-rail-fill {
  position: absolute; left: 0; top: 0; width: 100%;
  background: var(--gradient-gold); border-radius: 999px;
  height: 0%; transition: height 0.5s cubic-bezier(.2,.8,.2,1);
}
.journey-rail-dot {
  position: relative; z-index: 1; width: 34px; height: 34px; margin-left: -15px;
  border-radius: 50%; border: 2px solid var(--border-strong); background: var(--bg);
  color: var(--muted); font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  display: grid; place-items: center; cursor: pointer; padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.journey-rail-dot.is-active {
  background: var(--gradient-gold); border-color: var(--gold); color: #14110a; transform: scale(1.15);
}
.journey-stage-wrap { position: relative; flex: 1; min-height: 260px; }
.journey-stage {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  max-width: 620px;
  opacity: 0; transform: translateY(24px); pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.journey-stage.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.journey-stage-num {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 700;
  line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--border-strong);
  margin-bottom: 0.6rem;
}
.journey-stage h3 { margin-bottom: 0.9rem; }

@media (max-width: 767.98px) {
  .journey-scroll { height: auto; }
  .journey-scroll-sticky { position: static; height: auto; min-height: 0; max-height: none; flex-direction: column; align-items: flex-start; overflow: visible; }
  .journey-rail { display: none; }
  .journey-stage-wrap { position: static; min-height: 0; }
  .journey-stage { position: static; opacity: 1; transform: none; pointer-events: auto; margin-bottom: 2.4rem; max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .journey-stage { transition: none; }
  .journey-rail-fill { transition: none; }
}

/* ---------- Interactive journey map (radial pillar network) ---------- */
.journey-map-section {
  position: relative; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(13, 23, 54, 0.85) 0%, rgba(22, 36, 77, 0.85) 100%),
    url("../img/10.jpg");
  background-size: cover, 600px 600px;
  background-position: center, center;
  border-top: none; border-bottom: none;
}
.journey-map-section .section-kicker { color: var(--gold-2); }
.journey-map-section h2 { color: #f3f1ea; }
.journey-map-section > .container > .section-heading > p { color: rgba(255, 255, 255, 0.68); }
.journey-map-wrap { position: relative; max-width: 620px; margin: 0 auto; }
.journey-map-svg { width: 100%; height: auto; overflow: visible; }

.journey-map-path {
  fill: none; stroke: var(--gold-2); stroke-width: 1.6; stroke-linecap: round;
  stroke-dasharray: 3 9; opacity: 0.55;
  animation: journey-flow 3.6s linear infinite;
}
.journey-map-path:nth-child(2) { animation-delay: -0.6s; }
.journey-map-path:nth-child(3) { animation-delay: -1.2s; }
.journey-map-path:nth-child(4) { animation-delay: -1.8s; }
.journey-map-path:nth-child(5) { animation-delay: -2.4s; }
.journey-map-path:nth-child(6) { animation-delay: -3s; }
@keyframes journey-flow { to { stroke-dashoffset: -120; } }

.journey-map-center-ring { fill: none; stroke: rgba(231, 195, 115, 0.3); stroke-width: 1; }
.journey-map-center-dot { fill: var(--gold); }
.journey-map-center text {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; fill: #14110a;
  text-anchor: middle;
}

.journey-map-node { cursor: pointer; }
.journey-map-node circle.node-dot {
  fill: rgba(255, 255, 255, 0.08); stroke: rgba(231, 195, 115, 0.5); stroke-width: 1.4;
  transition: fill 0.25s ease, stroke 0.25s ease;
}
.journey-map-node text {
  fill: #f3f1ea; font-family: var(--font-display); font-size: 14px; font-weight: 700;
  text-anchor: middle; pointer-events: none;
}
.journey-map-node:hover circle.node-dot,
.journey-map-node:focus-visible circle.node-dot,
.journey-map-node.is-active circle.node-dot {
  fill: var(--gold); stroke: var(--gold-2);
}
.journey-map-node:hover text,
.journey-map-node:focus-visible text,
.journey-map-node.is-active text { fill: #14110a; }
.journey-map-node:focus-visible { outline: none; }

.journey-map-tooltip {
  position: absolute; z-index: 5; width: 216px; padding: 0.85rem 1rem;
  background: var(--navy); border: 1px solid rgba(231, 195, 115, 0.35); border-radius: var(--radius-md);
  color: #f3f1ea; font-size: 0.85rem; line-height: 1.5; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  opacity: 0; visibility: hidden; transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease; pointer-events: none; left: 0; top: 0;
}
.journey-map-tooltip.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, -16px); }
.journey-map-tooltip .tag {
  display: block; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 0.3rem;
}
.journey-map-tooltip p { margin: 0; color: rgba(243, 241, 234, 0.85); }
.journey-map-hint { text-align: center; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); margin-top: 1.3rem; }

@media (prefers-reduced-motion: reduce) {
  .journey-map-path { animation: none; }
}

/* ---------- Featured story spotlight (carousel) ---------- */
.spotlight-swiper { padding: 0.5rem 0.25rem 1rem; overflow: hidden; }
.spotlight-swiper .swiper-slide { height: auto; }
.spotlight-card {
  position: relative; isolation: isolate; height: 100%;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: var(--shadow-soft);
  padding: clamp(1.6rem, 3vw, 2.1rem); display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.spotlight-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(181, 135, 47, 0.18); }
.spotlight-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(201, 160, 80, 0.10) 40%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
}
.spotlight-card-icon {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--gradient-gold); color: #14110a; margin-bottom: 1.1rem; flex-shrink: 0;
}
.spotlight-card-icon svg { width: 24px; height: 24px; }
.spotlight-card-path { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.3rem; line-height: 1.3; }
.spotlight-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.spotlight-card-tags span {
  font-size: 0.68rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 700;
  color: var(--gold-deep); background: rgba(181, 135, 47, 0.1); border-radius: 999px; padding: 0.3rem 0.7rem;
}
.spotlight-card p.spotlight-desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.2rem; flex: 1; }
.spotlight-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-top: auto;
}
.spotlight-preview-badge { font-size: 0.7rem; color: var(--muted); }
.spotlight-card-cta { font-size: 0.85rem; font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.spotlight-card-cta:hover { color: var(--navy-bright); }

.spotlight-controls { display: flex; align-items: center; justify-content: center; gap: 1.1rem; margin-top: 1.2rem; }
.spotlight-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: var(--surface-strong); color: var(--ink); display: grid; place-items: center;
  cursor: pointer; transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease; flex-shrink: 0;
}
.spotlight-arrow:hover { background: var(--gradient-gold); color: #14110a; transform: scale(1.06); }
.spotlight-arrow.swiper-button-disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.spotlight-arrow svg { width: 16px; height: 16px; }
.spotlight-pagination.swiper-pagination { position: static; display: flex; gap: 0.4rem; align-items: center; width: auto; }
.spotlight-pagination .swiper-pagination-bullet {
  width: 8px; height: 8px; background: var(--border-strong); opacity: 1; border-radius: 999px; margin: 0 !important;
  transition: background 0.2s ease, width 0.2s ease;
}
.spotlight-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 22px; }

/* ---------- Host banner (big founder photos, podcast-cover style) ---------- */
.host-banner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.75rem); max-width: 640px; margin-inline: auto; }
.host-banner-photo {
  position: relative; isolation: isolate; overflow: hidden; background: var(--navy-deep);
  border-radius: var(--radius-xl); aspect-ratio: 3 / 4; box-shadow: var(--shadow);
}
.host-banner-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block; transition: transform 0.6s ease; filter: saturate(0.9);
}
.host-banner-photo:hover img { transform: scale(1.045); }
.host-banner-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--navy-deep); opacity: 0.4; mix-blend-mode: multiply;
}
.host-banner-scrim {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: linear-gradient(180deg, transparent 38%, rgba(13, 23, 54, 0.6) 74%, rgba(13, 23, 54, 0.94) 100%);
}
.host-banner-role {
  display: inline-block; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-2); margin-bottom: 0.4rem;
}
.host-banner-scrim h3 { color: #fff; margin-bottom: 0.5rem; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.host-banner-scrim p { color: rgba(255, 255, 255, 0.85); font-style: italic; margin: 0; font-size: 0.95rem; line-height: 1.5; }

@media (max-width: 767.98px) {
  .host-banner { grid-template-columns: 1fr; }
  .host-banner-photo { aspect-ratio: 4 / 5; }
}

/* ---------- Founder profile (big alternating photo/bio, founder.html) ---------- */
.founder-profile { padding: 1.5rem 0; }
.founder-profile + .founder-profile { border-top: 1px solid var(--border); }
.founder-profile-photo {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 5;
  background: var(--navy-deep);
}
.founder-profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
