/* =========================================================
   ROLLEN INVESTMENTS — Institutional Stylesheet v2
   Refinement: Minimal · Exclusive · Editorial
   Palette: Deep Navy / Black · White · Subtle Gold
   Typography: Playfair Display (display) + Montserrat (body)
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --navy-950: #060818;
  --navy-900: #0a0e24;
  --navy-850: #0d1230;
  --navy-800: #0f1733;
  --navy-700: #152046;
  --navy-600: #1d2a5c;
  --navy-500: #273470;

  --ink-900: #0a0d1f;
  --ink-800: #121631;
  --ink-700: #1a1f3a;

  --gold-600: #b88d3e;
  --gold-500: #c9a45c;
  --gold-400: #d9b676;
  --gold-300: #e6c890;
  --gold-200: #efd9a9;
  --gold-100: #f5e8c8;

  --white: #ffffff;
  --off-white: #f6f4ee;
  --cream: #faf8f3;
  --paper: #f3f1ea;
  --grey-50:  #f5f6f9;
  --grey-100: #eaebf0;
  --grey-200: #d9dae2;
  --grey-300: #c0c2cd;
  --grey-400: #a0a3b2;
  --grey-500: #7c8094;
  --grey-600: #565a72;
  --grey-700: #3d4159;
  --grey-800: #242842;
  --grey-900: #14172a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --radius-sm: 1px;
  --radius-md: 2px;

  --shadow-xs: 0 2px 12px rgba(7, 9, 26, 0.03);
  --shadow-sm: 0 6px 22px rgba(7, 9, 26, 0.05);
  --shadow-md: 0 18px 52px rgba(7, 9, 26, 0.08);
  --shadow-lg: 0 32px 80px rgba(7, 9, 26, 0.12);

  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-smooth: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1, 'ss01' 1;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .4s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 400;
  font-family: var(--font-display);
}
strong { font-weight: 600; color: var(--ink-900); }
p { margin: 0 0 1rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 44px;
}
@media (max-width: 768px) {
  .container { padding: 0 22px; }
}

.section { padding: 9rem 0; position: relative; }
.section-xl { padding: 11rem 0; }
.section-light { background: var(--white); color: var(--ink-900); }
.section-off-white { background: var(--cream); color: var(--ink-900); }
.section-dark {
  background: var(--navy-950);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 12% 0%, rgba(201, 164, 92, 0.045), transparent 65%),
    radial-gradient(ellipse 800px 450px at 88% 100%, rgba(201, 164, 92, 0.03), transparent 65%);
  pointer-events: none;
}
.section-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink-900);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  margin-bottom: 1.75rem;
  max-width: 860px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-title.light { color: var(--white); }
.section-title em {
  font-family: var(--font-display);
  color: var(--gold-500);
}
.section-title.light em { color: var(--gold-400); }

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--gold-500);
  margin-bottom: 1.75rem;
}
.section-subtitle.light { color: var(--gold-400); }
.subtitle-mark {
  display: inline-block;
  width: 42px;
  height: 1px;
  background: var(--gold-500);
}
.section-subtitle.light .subtitle-mark { background: var(--gold-400); }

.section-intro {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--grey-600);
  max-width: 740px;
  margin: 0 0 2rem;
  font-weight: 400;
}
.section-intro.light { color: rgba(255,255,255,0.72); }
.section-intro strong { color: var(--ink-900); font-weight: 600; }
.section-intro.light strong { color: var(--gold-300); font-weight: 500; }

.section-header { margin-bottom: 5.5rem; max-width: 860px; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.centered .section-subtitle { justify-content: center; }
.section-header.centered .section-intro { margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 4.5rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all .55s var(--ease);
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn i { font-size: 0.68rem; transition: transform .55s var(--ease); opacity: 0.9; }
.btn:hover i { transform: translateX(6px); }

.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold-400);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy-950);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}

.btn-large { padding: 21px 44px; font-size: 0.78rem; }
.btn-nav {
  padding: 11px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
}
.btn-nav:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: transparent;
  transition: all .55s var(--ease);
}
.navbar.scrolled {
  background: rgba(6, 8, 24, 0.92);
  backdrop-filter: blur(26px) saturate(140%);
  -webkit-backdrop-filter: blur(26px) saturate(140%);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 164, 92, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: flex; align-items: center; }
.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: all .55s var(--ease);
  filter: brightness(0) invert(1);
  opacity: 0.94;
}
.navbar.scrolled .brand-logo { height: 36px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-menu li a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  position: relative;
  padding: 8px 0;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--gold-400);
}
.nav-menu li a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width .55s var(--ease);
}
.nav-menu li a:not(.btn-nav):hover::after,
.nav-menu li a.active:not(.btn-nav)::after { width: 100%; }

.mobile-menu-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  z-index: 1001;
}
.mobile-menu-toggle span {
  display: block;
  width: 28px; height: 1px;
  background: var(--white);
  transition: all .4s var(--ease);
  margin-left: auto;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .mobile-menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 85%; max-width: 420px;
    height: 100vh;
    background: var(--navy-950);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 48px;
    gap: 2.2rem;
    transition: right .55s var(--ease);
    border-left: 1px solid rgba(201, 164, 92, 0.1);
  }
  .nav-menu.active { right: 0; }
  .nav-menu li a { font-size: 0.92rem; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 160px 0 120px;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 28s var(--ease-smooth) infinite alternate;
  will-change: transform;
  filter: saturate(0.9) contrast(1.03);
}
@keyframes heroZoom {
  0%   { transform: scale(1.02) translateY(0); }
  100% { transform: scale(1.09) translateY(-1.4%); }
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,24,0.78) 0%, rgba(6,8,24,0.5) 45%, rgba(6,8,24,0.94) 100%),
    linear-gradient(90deg, rgba(6,8,24,0.9) 0%, rgba(6,8,24,0.22) 70%, rgba(6,8,24,0.6) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(6,8,24,0.55) 100%);
}

.hero-grid-lines { display: none; }

.hero-container { position: relative; z-index: 2; }
.hero-content {
  max-width: 880px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 2.5rem;
}
.eyebrow-line {
  display: inline-block;
  width: 64px;
  height: 1px;
  background: var(--gold-400);
}
.eyebrow-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--white);
  margin-bottom: 2.2rem;
}
.gold-accent {
  color: var(--gold-400);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  margin-bottom: 3.5rem;
  max-width: 680px;
  letter-spacing: 0.005em;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5.5rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.09);
  max-width: 820px;
}
.meta-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 3rem;
}
.meta-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin-right: 3rem;
}
.meta-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
}
.meta-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.005em;
}
@media (max-width: 640px) {
  .hero-meta { gap: 1.5rem 0; }
  .meta-item { padding-right: 1.5rem; flex-basis: 45%; }
  .meta-divider { display: none; }
}

.scroll-indicator {
  position: absolute;
  bottom: 42px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0.7;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold-400));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--white));
  animation: scrollDown 2.5s var(--ease) infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}
.scroll-indicator p {
  margin: 0;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease-smooth), transform 1.1s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .14s; }
.reveal-delay-2 { transition-delay: .28s; }
.reveal-delay-3 { transition-delay: .42s; }
.reveal-delay-4 { transition-delay: .56s; }

/* ========== STATS ========== */
.stats-section {
  background: var(--navy-950);
  padding: 6rem 0;
  border-top: 1px solid rgba(201, 164, 92, 0.08);
  border-bottom: 1px solid rgba(201, 164, 92, 0.08);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 300px at 50% 50%, rgba(201, 164, 92, 0.04), transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 1rem 1.5rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.028em;
}
.stat-suffix {
  font-size: 0.48em;
  margin-left: 4px;
  color: var(--gold-500);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
}
.stat-em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(201, 164, 92, 0.62);
  margin-top: 8px;
}
.stat-stripe {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(201, 164, 92, 0.22), transparent);
}
@media (max-width: 900px) {
  .stats-grid { flex-wrap: wrap; gap: 3rem 0; }
  .stat-item { flex: 1 1 40%; }
  .stat-stripe { display: none; }
}

/* ========== BRAND SHOWCASE BAND ========== */
.brand-showcase-band {
  background: var(--navy-950);
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 164, 92, 0.1);
}
.brand-showcase-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  transform: translateX(-50%);
}
.brand-showcase-content {
  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  gap: 3.5rem;
  align-items: center;
}
.brand-showcase-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.brand-showcase-divider {
  width: 1px; height: 72px;
  background: rgba(201, 164, 92, 0.24);
}
.brand-showcase-kicker {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-400);
  margin: 0 0 0.5rem;
  letter-spacing: 0.015em;
}
.brand-showcase-text h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .brand-showcase-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .brand-showcase-divider { display: none; }
  .brand-showcase-logo img { margin: 0 auto; height: 52px; }
}

/* ========== FEATURE IMAGE SECTION ========== */
.feature-image-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.feature-image-section.reverse .feature-image,
.feature-image-section.reverse .trust-visual { order: 2; }

.feature-image {
  position: relative;
}
.feature-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
.feature-image-frame {
  position: absolute;
  top: 28px; left: 28px;
  width: 100%; height: 100%;
  border: 1px solid rgba(201, 164, 92, 0.4);
  z-index: -1;
}

.feature-kicker {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 1.5rem;
}
.feature-content h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  margin-bottom: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.018em;
}
.feature-content p {
  color: var(--grey-600);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.88;
}
.feature-list {
  margin: 2.25rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-800);
  font-weight: 500;
  letter-spacing: 0.005em;
}
.feature-list li i {
  color: var(--gold-500);
  font-size: 0.68rem;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .feature-image-section { grid-template-columns: 1fr; gap: 3.5rem; }
  .feature-image-section.reverse .feature-image,
  .feature-image-section.reverse .trust-visual { order: 0; }
  .feature-list { grid-template-columns: 1fr; }
}

/* ========== CARDS / GRIDS ========== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  padding: 2.75rem 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: all .6s var(--ease);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width .75s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 164, 92, 0.25);
}
.card:hover::before { width: 100%; }

.card-dark {
  background: rgba(13, 18, 48, 0.42);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--white);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card-dark:hover {
  background: rgba(21, 32, 70, 0.56);
  border-color: rgba(201, 164, 92, 0.26);
}
.card-dark h3 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.66); }
.card-dark strong { color: var(--gold-300); }

.card-glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201, 164, 92, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
}
.card-glass:hover {
  border-color: var(--gold-500);
  background: rgba(255,255,255,0.06);
}
.card-glass h3 { color: var(--white); }
.card-glass p { color: rgba(255,255,255,0.74); }

.card-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--gold-500);
  font-size: 1.1rem;
  transition: all .5s var(--ease);
}
.card:hover .card-icon-wrap,
.process-step-card:hover .card-icon-wrap {
  background: var(--gold-500);
  color: var(--navy-950);
}
.card-icon-wrap.gold { border-color: var(--gold-400); color: var(--gold-400); }

.card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.008em;
  line-height: 1.3;
}
.card p {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--grey-600);
  margin: 0;
}
.card-number {
  position: absolute;
  top: 1.75rem; right: 1.75rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  color: rgba(201, 164, 92, 0.4);
  letter-spacing: 0.14em;
  font-weight: 500;
}

/* ========== GOLD SHOWCASE ========== */
.gold-showcase {
  position: relative;
  padding: 11rem 0;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
}
.gold-showcase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  filter: brightness(0.62) saturate(1.05);
}
.gold-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,24,0.92) 0%, rgba(10,14,36,0.86) 50%, rgba(6,8,24,0.95) 100%);
}
.gold-content { position: relative; z-index: 2; text-align: center; }
.gold-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold-500);
  color: var(--gold-400);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.gold-badge i { font-size: 0.62rem; }

.gold-showcase .section-intro { margin-left: auto; margin-right: auto; text-align: center; }
.gold-showcase .section-intro strong { color: var(--gold-300); }

.gold-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 3.5rem auto 4rem;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  border-bottom: 1px solid rgba(201, 164, 92, 0.2);
  padding: 2.5rem 0;
}
.gold-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 1rem;
  position: relative;
}
.gold-highlight:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 48px;
  background: rgba(201, 164, 92, 0.2);
}
.gh-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.03em;
}
.gh-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
@media (max-width: 640px) {
  .gold-highlights { grid-template-columns: 1fr; padding: 1.5rem 0; gap: 2rem; }
  .gold-highlight:not(:last-child)::after {
    right: auto; top: auto; bottom: -1rem; left: 50%; transform: translateX(-50%);
    width: 40px; height: 1px;
  }
}

.gold-showcase .grid-3 { margin-top: 3.5rem; }

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  counter-reset: process;
}
@media (max-width: 768px) { .process-grid { grid-template-columns: 1fr; } }

.process-step-card {
  position: relative;
  padding: 2.75rem 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: all .6s var(--ease);
  overflow: hidden;
}
.process-step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-500);
  transition: width .75s var(--ease);
}
.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 164, 92, 0.25);
}
.process-step-card:hover::before { width: 100%; }
.step-number-large {
  position: absolute;
  top: 1.75rem; right: 2rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(201, 164, 92, 0.14);
  line-height: 1;
  letter-spacing: -0.03em;
}
.process-step-card h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.9rem;
}
.process-step-card p {
  color: var(--grey-600);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
}

/* ========== INFRA BAND ========== */
.infra-band {
  position: relative;
  padding: 10rem 0;
  color: var(--white);
  overflow: hidden;
}
.infra-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9) brightness(0.82);
}
.infra-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,8,24,0.95) 0%, rgba(6,8,24,0.5) 72%, rgba(6,8,24,0.78) 100%);
}
.infra-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.infra-stats {
  display: flex;
  gap: 0;
  margin-top: 2.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.infra-stat {
  padding-right: 2.5rem;
  margin-right: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.infra-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.infra-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.02em;
}
.infra-stat-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.infra-cta { margin-top: 2.75rem; }

@media (max-width: 640px) {
  .infra-stats { flex-direction: column; gap: 1.25rem; }
  .infra-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 0 0 1.25rem; margin: 0; }
  .infra-stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ========== TRUST ========== */
.trust-points { display: grid; gap: 2rem; margin-top: 1.75rem; }
.trust-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.4rem;
  align-items: start;
}
.trust-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1rem;
  transition: all .5s var(--ease);
}
.trust-point:hover .trust-icon {
  background: var(--gold-500);
  color: var(--navy-950);
}
.trust-point h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  color: var(--ink-900);
}
.trust-point p {
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--grey-600);
  margin: 0;
}

.trust-visual {
  position: relative;
}
.trust-visual-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05) brightness(0.8);
}
.trust-visual-overlay-panel {
  position: absolute;
  left: -36px; bottom: 36px;
  width: calc(100% - 32px);
  max-width: 380px;
  background: var(--navy-950);
  padding: 2.2rem 2.3rem;
  color: var(--white);
  border-left: 2px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
}
.trust-visual-badge img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
  opacity: 0.95;
}
.trust-visual-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
  margin: 0 0 0.9rem;
  color: var(--white);
  letter-spacing: -0.005em;
}
.trust-visual-caption {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0;
}
@media (max-width: 600px) {
  .trust-visual-overlay-panel { left: 0; width: 100%; }
}

/* ========== PARTNERS / FRAMEWORKS ========== */
.partners-section {
  background: var(--navy-950);
  padding: 8rem 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 164, 92, 0.08);
  border-bottom: 1px solid rgba(201, 164, 92, 0.08);
}
.partners-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 20% 0%, rgba(201, 164, 92, 0.05), transparent 70%),
    radial-gradient(ellipse 500px 300px at 80% 100%, rgba(201, 164, 92, 0.035), transparent 70%);
}
.partners-header { text-align: center; margin-bottom: 5rem; position: relative; z-index: 1; max-width: 860px; margin-left: auto; margin-right: auto; }
.partners-header .section-subtitle { justify-content: center; }
.partners-header .section-intro { margin-left: auto; margin-right: auto; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 960px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }

.partner-logo {
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .6s var(--ease);
  opacity: 0.6;
  min-height: 168px;
  position: relative;
}
.partner-logo:nth-child(6n) { border-right: none; }
@media (max-width: 960px) {
  .partner-logo:nth-child(6n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .partner-logo:nth-child(3n) { border-right: none; }
}
@media (max-width: 560px) {
  .partner-logo:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
  .partner-logo:nth-child(2n) { border-right: none; }
}

.partner-logo:hover {
  opacity: 1;
  background: rgba(201, 164, 92, 0.035);
}
.partner-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  transition: all .6s var(--ease);
  width: 100%;
}
.partner-logo-inner i {
  font-size: 1.7rem;
  color: rgba(255,255,255,0.6);
  transition: color .6s var(--ease);
  line-height: 1;
}
.partner-logo:hover .partner-logo-inner i { color: var(--gold-400); }
.partner-logo-inner span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  display: block;
}
.partner-logo-inner em {
  display: block;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: rgba(201, 164, 92, 0.58);
  font-style: normal;
  margin-top: 6px;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.partners-disclaimer {
  text-align: center;
  margin: 3.5rem auto 0;
  max-width: 680px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
}

/* ========== MARKET MOMENTUM ========== */
.market-momentum-section {
  padding: 10rem 0;
  background: var(--cream);
}
.momentum-header { text-align: center; margin: 0 auto 5rem; max-width: 860px; }
.momentum-header .section-subtitle { justify-content: center; }
.momentum-header h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 1.25rem; }
.momentum-header .section-intro { margin-left: auto; margin-right: auto; }

.momentum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 1024px) { .momentum-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .momentum-grid { grid-template-columns: 1fr; } }

.momentum-card {
  background: var(--white);
  padding: 2.5rem 2rem 2.3rem;
  border: 1px solid var(--grey-100);
  border-top: 2px solid var(--gold-500);
  transition: all .6s var(--ease);
  position: relative;
}
.momentum-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 164, 92, 0.28);
  border-top-color: var(--gold-500);
}
.momentum-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  background: rgba(201, 164, 92, 0.08);
}
.momentum-metric {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.028em;
  margin-bottom: 0.6rem;
}
.momentum-metric small {
  font-size: 0.55em;
  color: var(--gold-600);
  font-weight: 500;
  margin-left: 3px;
  letter-spacing: -0.01em;
}
.momentum-card h3 {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
}
.momentum-card p {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--grey-600);
  margin: 0;
}
.momentum-card strong {
  color: var(--navy-900);
  font-weight: 600;
}

.charts-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .charts-container { grid-template-columns: 1fr; } }

.chart-wrapper {
  background: var(--white);
  padding: 2.3rem 2rem;
  border: 1px solid var(--grey-100);
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.75rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--grey-100);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chart-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.008em;
}
.chart-unit {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.chart-canvas {
  width: 100% !important;
  height: 260px !important;
}
.data-source {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-500);
  font-style: italic;
  margin-top: 2.25rem;
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-display);
}
.data-source i { margin-right: 8px; color: var(--gold-500); font-style: normal; }

/* ========== CTA ========== */
.cta-section {
  position: relative;
  padding: 10rem 0;
  color: var(--white);
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05) brightness(0.92);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,24,0.94) 0%, rgba(10,14,36,0.9) 100%);
}
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 960px; margin: 0 auto; }
.cta-content .section-subtitle { justify-content: center; }
.cta-content .section-intro { margin-left: auto; margin-right: auto; }

.cta-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 2.5rem;
  max-width: 960px;
  margin: 4.5rem auto;
}
@media (max-width: 768px) {
  .cta-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-step-line { display: none; }
}
.cta-step {
  text-align: center;
}
.cta-step-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold-400);
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: -0.028em;
}
.cta-step h3 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  color: var(--white);
}
.cta-step p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.75;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.cta-step-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.4), transparent);
  margin-top: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.68);
  padding: 6.5rem 0 2rem;
  border-top: 1px solid rgba(201, 164, 92, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
  opacity: 0.94;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-400);
  margin: 0 0 1rem;
  letter-spacing: 0.015em;
}
.footer-desc {
  font-size: 0.86rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.48);
  margin: 0;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.75rem;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 0.85rem;
  font-size: 0.86rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.footer-contact li { align-items: center; }
.footer-links li a {
  color: rgba(255,255,255,0.62);
  transition: color .4s var(--ease);
}
.footer-links li a:hover { color: var(--gold-400); }
.footer-contact li i {
  color: var(--gold-500);
  margin-right: 14px;
  width: 16px;
  font-size: 0.82rem;
}
.footer-contact li a {
  color: rgba(255,255,255,0.68);
  word-break: break-word;
}
.footer-contact li a:hover { color: var(--gold-400); }
.footer-mandate {
  font-size: 0.8rem;
  line-height: 1.82;
  color: rgba(255,255,255,0.48);
  font-style: italic;
  margin: 0;
  font-family: var(--font-display);
}

.footer-bottom {
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}
.footer-rights {
  letter-spacing: 0.3em !important;
  text-transform: uppercase;
  color: var(--gold-500) !important;
  font-size: 0.62rem !important;
  font-weight: 600;
}

/* ========== UTILITIES ========== */
@media (max-width: 768px) {
  .section, .section-xl { padding: 6rem 0; }
  .gold-showcase, .infra-band, .cta-section, .partners-section, .market-momentum-section { padding: 6rem 0; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }
  .hero { min-height: auto; padding: 130px 0 90px; }
  .section-header { margin-bottom: 3.5rem; }
  .feature-image-section { gap: 3rem; }
  .stats-section { padding: 4rem 0; }
  .brand-showcase-band { padding: 3.5rem 0; }
}

/* Accessibility / reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-image { animation: none !important; }
}

::selection { background: var(--gold-500); color: var(--navy-950); }

/* =========================================================
   ROLLEN — REFINEMENT LAYER v3
   Objective: heightened minimalism, editorial hierarchy,
   tighter luxury. No structural changes.
   ========================================================= */

/* Body: marginally refined rhythm */
body { font-size: 15.5px; line-height: 1.72; letter-spacing: 0.003em; }
p { color: var(--grey-700); }
.section-dark p, .section-dark .section-intro { color: rgba(255,255,255,0.74); }

/* Display text — slightly reduced weight for exclusivity */
h1, h2, h3, h4 { font-weight: 500; letter-spacing: -0.02em; }
.section-title { font-weight: 500; }

/* Section spacing — more breathing room, smoother transitions */
.section { padding: 8rem 0; }
.section-xl { padding: 10rem 0; }
@media (min-width: 1280px) {
  .section { padding: 9rem 0; }
  .section-xl { padding: 11rem 0; }
}

/* Subtle top/bottom fades for smoother section transitions on dark bands */
.gold-showcase::after,
.infra-band::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 96px;
  background: linear-gradient(to bottom, transparent, rgba(6,8,24,0.55));
  pointer-events: none;
  z-index: 1;
}

/* ---- HERO refinements: cinematic depth ---- */
.hero-image { filter: saturate(0.82) contrast(1.04) brightness(0.92); }
.hero-gradient {
  background:
    linear-gradient(180deg, rgba(6,8,24,0.82) 0%, rgba(6,8,24,0.52) 42%, rgba(6,8,24,0.96) 100%),
    linear-gradient(90deg, rgba(6,8,24,0.92) 0%, rgba(6,8,24,0.18) 68%, rgba(6,8,24,0.72) 100%);
}
.hero-vignette {
  background:
    radial-gradient(ellipse 80% 70% at 50% 55%, transparent 0%, rgba(6,8,24,0.6) 100%),
    radial-gradient(circle at 20% 80%, rgba(201,164,92,0.06), transparent 50%);
}

/* Hero title — more restrained, more editorial */
.hero-title {
  font-size: clamp(2.4rem, 5.6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.gold-accent { font-weight: 400; letter-spacing: -0.01em; }

.hero-subtitle {
  color: rgba(255,255,255,0.74);
  font-weight: 300;
  max-width: 640px;
  letter-spacing: 0.003em;
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
}

.eyebrow-text { font-size: 0.64rem; letter-spacing: 0.42em; }
.eyebrow-line { width: 72px; }

/* Hero meta — cleaner data ribbon */
.hero-meta {
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.meta-label {
  font-size: 0.56rem;
  letter-spacing: 0.36em;
  color: rgba(201,164,92,0.85);
}
.meta-value {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.meta-divider { height: 36px; background: rgba(255,255,255,0.08); }

/* ---- STATS: more minimal, editorial ---- */
.stats-section { padding: 5.5rem 0; }
.stat-number {
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.9rem;
  color: var(--gold-400);
}
.stat-suffix { font-size: 0.44em; color: var(--gold-500); }
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.5);
}
.stat-em {
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: rgba(201, 164, 92, 0.58);
  margin-top: 6px;
}
.stat-stripe {
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(201,164,92,0.18), transparent);
}

/* ---- BRAND SHOWCASE BAND ---- */
.brand-showcase-band { padding: 4.5rem 0; }
.brand-showcase-logo img { height: 54px; opacity: 0.95; }
.brand-showcase-kicker { font-size: 0.92rem; }
.brand-showcase-text h3 {
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.38;
}

/* ---- SECTION HEADERS: stronger hierarchy ---- */
.section-subtitle {
  font-size: 0.62rem !important;
  letter-spacing: 0.38em !important;
}
.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-500);
  letter-spacing: -0.005em;
}
.section-intro {
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.8;
  font-weight: 300;
  color: var(--grey-600);
  letter-spacing: 0.003em;
}
.section-dark .section-intro,
.section-intro.light { color: rgba(255,255,255,0.74); }

/* ---- CARDS: quieter, more exclusive ---- */
.card {
  border-radius: 0;
  border: 1px solid var(--grey-100);
  box-shadow: none;
  transition: all .6s var(--ease);
}
.card:hover {
  border-color: rgba(201,164,92,0.35);
  box-shadow: 0 22px 60px rgba(7,9,26,0.08);
  transform: translateY(-3px);
}
.card-dark {
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.015);
}
.card-dark:hover { border-color: rgba(201,164,92,0.32); background: rgba(201,164,92,0.03); }
.card-icon-wrap {
  border-radius: 0;
  border: 1px solid rgba(201,164,92,0.35);
  color: var(--gold-500);
}
.card h3 { font-size: 1.18rem; font-weight: 500; letter-spacing: -0.008em; }

/* ---- GOLD HIGHLIGHTS: refined key figures ---- */
.gold-highlights {
  border-top: 1px solid rgba(201,164,92,0.22);
  border-bottom: 1px solid rgba(201,164,92,0.22);
  padding: 2.4rem 0;
}
.gold-highlight .gh-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--gold-400);
  letter-spacing: -0.028em;
  font-weight: 500;
}
.gold-highlight .gh-label {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: rgba(255,255,255,0.62);
}

/* ---- INFRA STATS: stronger infographic presence ---- */
.infra-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--gold-400);
  letter-spacing: -0.02em;
  font-weight: 500;
}
.infra-stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: rgba(255,255,255,0.66);
}

/* ---- PARTNER LOGOS: perfect alignment, ultra-minimal ---- */
.partners-section { padding: 7rem 0; }
.partners-header { margin-bottom: 4rem; }
.partners-grid {
  border: 1px solid rgba(255,255,255,0.05);
  max-width: 1080px;
}
.partner-logo {
  min-height: 150px;
  padding: 2rem 1rem;
  opacity: 0.52;
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all .7s var(--ease);
}
.partner-logo:hover {
  opacity: 1;
  background: rgba(201,164,92,0.025);
}
.partner-logo-inner { gap: 12px; }
.partner-logo-inner i {
  font-size: 1.45rem;
  color: rgba(255,255,255,0.55);
  transition: color .7s var(--ease), transform .7s var(--ease);
}
.partner-logo:hover .partner-logo-inner i {
  color: var(--gold-400);
  transform: translateY(-2px);
}
.partner-logo-inner span {
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
}
.partner-logo-inner em {
  font-size: 0.52rem;
  letter-spacing: 0.26em;
  color: rgba(201,164,92,0.52);
  margin-top: 5px;
}
.partners-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.36);
  max-width: 620px;
  margin-top: 3rem;
}

/* ---- MOMENTUM CARDS: editorial ---- */
.momentum-card {
  padding: 2.4rem 1.9rem;
  border-radius: 0;
  border: 1px solid var(--grey-100);
  border-top: 1px solid var(--gold-500);
  transition: all .6s var(--ease);
}
.momentum-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,164,92,0.28);
  border-top-color: var(--gold-500);
  box-shadow: 0 22px 60px rgba(7,9,26,0.08);
}
.momentum-metric {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
  margin: 0.7rem 0 1rem;
}
.momentum-card h3 { font-size: 1.02rem; font-weight: 500; letter-spacing: -0.005em; margin-bottom: 0.7rem; }
.momentum-card p { font-size: 0.92rem; line-height: 1.72; color: var(--grey-600); }

/* ---- BUTTONS: crisper, more exclusive ---- */
.btn {
  padding: 17px 36px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all .55s var(--ease);
}
.btn-primary {
  background: var(--navy-900);
  color: var(--white);
  border: 1px solid var(--navy-900);
}
.btn-primary:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
}
.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
  border: 1px solid var(--gold-500);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold-400);
  border-color: var(--gold-400);
}
.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold-400); color: var(--gold-400); }
.btn-outline {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
}
.btn-outline:hover { color: var(--gold-400); border-color: var(--gold-400); }
.btn-large { padding: 20px 44px; font-size: 0.72rem; }

/* ---- FOOTER refinements ---- */
.footer { padding: 5.5rem 0 2.5rem; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.4rem;
}
.footer-desc, .footer-mandate {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.58);
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-400);
  font-size: 1rem;
  margin: 1rem 0 1.2rem;
}

/* ---- CTA STEPS: clearer rhythm ---- */
.cta-step h3 {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.cta-step-number {
  font-family: var(--font-display);
  color: var(--gold-400);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ---- NAVBAR: more minimal ---- */
.navbar { transition: all .55s var(--ease); }
.nav-menu a {
  font-size: 0.66rem !important;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color .5s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold-400); }
.btn-nav {
  border: 1px solid rgba(255,255,255,0.28);
  padding: 11px 22px;
  border-radius: 0;
}
.btn-nav:hover { background: var(--gold-500); color: var(--navy-950) !important; border-color: var(--gold-500); }
