/* ============================================================
   SWISS BRIGHT ADVISORS — Premium Design System v4
   Baunfire / Clay level — independent advisory group
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

/* ── Fontshare: Switzer ── */
@import url('https://api.fontshare.com/v2/css?f[]=switzer@300,400,500,600&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Color */
  --navy:          #1B2A6B;
  --navy-deep:     #0C1526;
  --navy-mid:      #152047;
  --navy-light:    #243580;
  --stone:         #F5F4F1;
  --stone-dark:    #E8E6E1;
  --ink:           #0D0D0D;
  --white:         #FFFFFF;
  --mist:          #F0EEE9;
  --silver:        #9EA3AF;
  --line:          rgba(255,255,255,0.10);
  --line-dark:     rgba(27,42,107,0.12);

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Switzer', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type Scale */
  --text-xs:       0.75rem;
  --text-sm:       0.875rem;
  --text-base:     1rem;
  --text-md:       1.125rem;
  --text-lg:       1.375rem;
  --text-xl:       1.75rem;
  --text-2xl:      2.25rem;
  --text-3xl:      3rem;
  --text-4xl:      4rem;
  --text-5xl:      5.5rem;
  --text-hero:     clamp(3.5rem, 8vw, 7.5rem);
  --text-mega:     clamp(5rem, 12vw, 11rem);
  --text-stat:     clamp(3rem, 7vw, 6.5rem);

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;
  --space-32:  8rem;
  --space-40:  10rem;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      180ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-med:       300ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-slow:      500ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(12,21,38,0.08);
  --shadow-md:   0 4px 20px rgba(12,21,38,0.12);
  --shadow-lg:   0 12px 48px rgba(12,21,38,0.18);
  --shadow-xl:   0 24px 80px rgba(12,21,38,0.22);

  /* Layout */
  --container:   1440px;
  --col-gap:     clamp(1rem, 3vw, 2.5rem);
  --section-pad: clamp(5rem, 10vw, 9rem);
  --header-h:    76px;
}

/* ============================================================
   VIEW TRANSITIONS — Page curtain
   ============================================================ */
@view-transition { navigation: auto; }

::view-transition-old(root) {
  animation: vt-out 0.22s var(--ease-in) both;
}
::view-transition-new(root) {
  animation: vt-in 0.32s var(--ease-out) both;
}

@keyframes vt-out {
  to { opacity: 0; transform: scale(0.98); }
}
@keyframes vt-in {
  from { opacity: 0; transform: scale(1.01); }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--stone);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none; /* custom cursor active */
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--navy);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width var(--t-med), height var(--t-med),
              background var(--t-med), opacity var(--t-fast);
  will-change: transform;
  mix-blend-mode: multiply;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out),
              height 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out),
              opacity 0.35s var(--ease-out);
  will-change: transform;
  opacity: 0.55;
}

.cursor.is-hover   { width: 16px; height: 16px; background: var(--navy-light); }
.cursor-ring.is-hover { width: 60px; height: 60px; opacity: 0.3; }
.cursor.is-text    { width: 3px; height: 28px; border-radius: 2px; background: var(--navy); }
.cursor-ring.is-text { opacity: 0; }

@media (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
}

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-in), visibility 0.6s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-line {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: loader-slide 0.9s var(--ease-out) forwards;
}

@keyframes loader-slide {
  to { left: 100%; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t-slow), border-color var(--t-slow),
              backdrop-filter var(--t-slow);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(12, 21, 38, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}

.header.light-header {
  background: rgba(245, 244, 241, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line-dark);
}

.header.light-header.scrolled {
  background: rgba(245, 244, 241, 0.97);
}

.header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.logo__img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
  opacity: 0.95;
  transition: opacity var(--t-fast);
  filter: none;
}

.logo:hover .logo__img { opacity: 1; }

/* Light header (internal pages): navy PNG — no filter needed */
.light-header .logo__img {
  mix-blend-mode: normal;
  opacity: 1;
  filter: none;
}

/* Scrolled on dark hero: white logo still fine on dark bg */
.scrolled .logo__img {
  mix-blend-mode: normal;
  opacity: 1;
  filter: none;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo__name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--t-fast);
}

.logo__sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1;
  transition: color var(--t-fast);
}

.light-header .logo__name { color: var(--navy-deep); }
.light-header .logo__sub  { color: var(--silver); }

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 3px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width var(--t-med);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.light-header .nav__link { color: rgba(12,21,38,0.5); }
.light-header .nav__link::after { background: var(--navy); }
.light-header .nav__link:hover,
.light-header .nav__link.active { color: var(--navy); }

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 4px 8px;
  border-radius: 2px;
  transition: color var(--t-fast), background var(--t-fast);
  cursor: none;
}

.lang-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.7); }

.light-header .lang-btn { color: rgba(12,21,38,0.35); }
.light-header .lang-btn.active { color: var(--navy); background: rgba(27,42,107,0.08); }
.light-header .lang-btn:hover:not(.active) { color: var(--navy-mid); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
  cursor: pointer;
  background: none;
  border: none;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--t-med), opacity var(--t-fast), width var(--t-med);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.light-header .hamburger span { background: var(--navy-deep); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 5vw, 4rem) 2.5rem;
  flex-direction: column;
  gap: var(--space-5);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu .nav__link {
  font-size: 2rem;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.6);
  padding-bottom: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: var(--space-6);
}

.mobile-menu .nav__link::after { display: none; }
.mobile-menu .nav__link:hover { color: var(--white); }

.mobile-menu .lang-switcher {
  display: flex !important;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-bottom: var(--space-4);
}

.mobile-menu .lang-btn {
  font-size: 13px;
  padding: 6px 12px;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.mobile-menu .lang-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

/* ============================================================
   HERO — Full viewport, deep navy, cinematic
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}

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

.hero__bg img {
  object-position: center 30%;
  filter: brightness(0.35) saturate(0.8);
}

/* Gradient overlay — cinematic bottom fade */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(12,21,38,0.3) 0%,
    rgba(12,21,38,0.1) 30%,
    rgba(12,21,38,0.5) 65%,
    rgba(12,21,38,0.92) 100%
  );
}

/* Geometric SVG texture */
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vh, 7rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.3s forwards;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.hero__eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 14ch;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 48ch;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.75s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.95s forwards;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(2rem, 4vh, 3.5rem);
  right: clamp(1.5rem, 5vw, 4rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0.4;
  transition: opacity var(--t-fast);
}

.hero__scroll:hover { opacity: 0.7; }

.hero__scroll-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); transform-origin: top; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 1px;
  cursor: none;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
  white-space: nowrap;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--white);
  color: var(--navy-deep);
  border: 1px solid var(--white);
}

.btn--primary:hover {
  background: transparent;
  color: var(--white);
  box-shadow: 0 0 0 1px var(--white);
}

.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}

.btn--outline-white:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-md);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--t-fast);
}

.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============================================================
   STAT BAND — Giant numbers, navy background
   ============================================================ */
.stat-band {
  background: var(--navy-deep);
  padding: var(--space-20) clamp(1.5rem, 5vw, 4rem);
  overflow: hidden;
}

.stat-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: var(--space-10) clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  opacity: 1;
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }

.stat-item__number {
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
}

.stat-item__suffix {
  font-family: var(--font-display);
  font-size: var(--text-stat);
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}

.stat-item__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: var(--space-2);
}

/* ============================================================
   SECTIONS — Light stone backgrounds
   ============================================================ */
.section {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 4rem);
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section--dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--mist {
  background: var(--mist);
}

/* Section header */
.section__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__header--centered {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.section__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--navy);
  flex-shrink: 0;
}

.section--dark .section__eyebrow-line,
.section--navy .section__eyebrow-line { background: rgba(255,255,255,0.35); }

.section__eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.section--dark .section__eyebrow-text,
.section--navy .section__eyebrow-text { color: rgba(255,255,255,0.5); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
}

.section--dark .section__title,
.section--navy .section__title { color: var(--white); }

.section__title em { font-style: italic; }

.section__body {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: var(--silver);
  max-width: 42ch;
}

.section--dark .section__body { color: rgba(255,255,255,0.45); }

/* ============================================================
   PLATFORM CARDS — Premium hover invert
   ============================================================ */
.platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.platform-card {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
  transition: background var(--t-med), color var(--t-med);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  cursor: none;
}

.platform-card:last-child { border-right: none; }

.platform-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 0;
  background: var(--navy);
  transition: height 0.45s var(--ease-out);
  z-index: 0;
}

.platform-card:hover::before { height: 100%; }

.platform-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
}

.platform-card__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--silver);
  transition: color var(--t-med);
}

.platform-card:hover .platform-card__num { color: rgba(255,255,255,0.4); }

.platform-card__icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t-med), background var(--t-med);
  flex-shrink: 0;
}

.platform-card:hover .platform-card__icon {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.platform-card__icon svg {
  width: 18px; height: 18px;
  stroke: var(--navy);
  fill: none;
  transition: stroke var(--t-med);
}

.platform-card:hover .platform-card__icon svg { stroke: var(--white); }

.platform-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  transition: color var(--t-med);
}

.platform-card:hover .platform-card__title { color: var(--white); }

.platform-card__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--silver);
  flex: 1;
  transition: color var(--t-med);
}

.platform-card:hover .platform-card__desc { color: rgba(255,255,255,0.55); }

.platform-card__link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-dark);
  transition: color var(--t-med), border-color var(--t-med),
              gap var(--t-fast);
}

.platform-card:hover .platform-card__link {
  color: var(--white);
  border-top-color: rgba(255,255,255,0.15);
  gap: var(--space-4);
}

/* ============================================================
   CONVICTION QUOTE — Magazine cover style
   ============================================================ */
.conviction {
  background: var(--navy-deep);
  padding: clamp(6rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.conviction__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.conviction__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.conviction__mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.6;
  color: rgba(255,255,255,0.12);
  display: block;
  margin-bottom: var(--space-6);
}

.conviction__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: var(--space-8);
}

.conviction__source {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.conviction__source::before,
.conviction__source::after {
  content: '';
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* ============================================================
   INSIGHT CARDS — Editorial premium
   ============================================================ */
.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.insight-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  cursor: none;
  transition: box-shadow var(--t-med), transform var(--t-med);
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.insight-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.insight-card__image img {
  transition: transform 0.7s var(--ease-inout);
}

.insight-card:hover .insight-card__image img {
  transform: scale(1.06);
}

.insight-card__body {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.insight-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}

.insight-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.insight-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--silver);
}

.insight-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--stone-dark);
}

.insight-card__date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--silver);
}

.insight-card__arrow {
  font-size: 18px;
  color: var(--navy);
  transition: transform var(--t-fast), color var(--t-fast);
}

.insight-card:hover .insight-card__arrow {
  transform: translateX(4px);
  color: var(--navy-light);
}

/* ============================================================
   GEOGRAPHY — Image with overlay
   ============================================================ */
.geo-strip {
  position: relative;
  height: clamp(360px, 50vw, 520px);
  overflow: hidden;
}

.geo-strip__image {
  position: absolute;
  inset: 0;
}

.geo-strip__image img { filter: brightness(0.5) saturate(0.7); }

.geo-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(12,21,38,0.85) 0%,
    rgba(27,42,107,0.4) 50%,
    rgba(12,21,38,0.2) 100%
  );
}

.geo-strip__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem);
  max-width: 700px;
}

.geo-strip__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-6);
}

.geo-offices {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
}

.geo-office {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.geo-office__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.geo-office__role {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

/* ============================================================
   PARTNERS MARQUEE
   ============================================================ */
.partners {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  contain: layout paint;
}

.partners--dark {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
}

.partners__track {
  display: flex;
  gap: clamp(2rem, 5vw, 4rem);
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

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

.partners__item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 var(--space-4);
  transition: color var(--t-fast);
}

.partners--dark .partners__item { color: rgba(255,255,255,0.25); }

.partners__item:hover { color: var(--navy); }
.partners--dark .partners__item:hover { color: rgba(255,255,255,0.6); }

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--col-gap);
  align-items: end;
}

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.page-hero__eyebrow-line {
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.3);
}

.page-hero__eyebrow-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
}

.page-hero__title em { font-style: italic; }

.page-hero__body {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 44ch;
  align-self: center;
}

/* 2-col content layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.content-grid--reverse { grid-template-columns: 2fr 1fr; }

.content-sidebar__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: var(--space-4);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.team-card {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: box-shadow var(--t-med);
}

.team-card:hover { box-shadow: var(--shadow-md); }

/* ── Team photo ── */
.team-card__photo {
  width: calc(100% + 2 * clamp(1.5rem, 3vw, 2.5rem));
  margin-left: calc(-1 * clamp(1.5rem, 3vw, 2.5rem));
  margin-right: calc(-1 * clamp(1.5rem, 3vw, 2.5rem));
  margin-top: calc(-1 * clamp(1.5rem, 3vw, 2.5rem));
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: var(--space-5);
  background: var(--stone-dark);
  max-width: calc(100% + 2 * clamp(1.5rem, 3vw, 2.5rem));
  flex-shrink: 0;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  transition: transform var(--t-slow);
  filter: grayscale(10%);
}

.team-card:hover .team-card__photo img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.team-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

.team-card__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}

.team-card__bio {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--silver);
}

.team-card__email {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--navy);
  letter-spacing: 0.02em;
  text-decoration: none;
  border-bottom: 1px solid rgba(27,42,107,0.2);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.team-card__email:hover {
  color: var(--navy-light);
  border-color: var(--navy);
}

/* Track record table */
.track-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.track-table thead {
  border-bottom: 2px solid var(--line-dark);
}

.track-table th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  padding: var(--space-3) var(--space-4);
  text-align: left;
}

.track-table td {
  padding: var(--space-4);
  border-bottom: 1px solid var(--stone-dark);
  color: var(--ink);
  line-height: 1.5;
  vertical-align: top;
}

.track-table tr:last-child td { border-bottom: none; }

.track-table td:first-child {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--navy-deep);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  border-bottom: 1px solid var(--line-dark);
}

.service-block:nth-child(even) .service-block__content { order: 1; }
.service-block:nth-child(even) .service-block__image  { order: 2; }

.service-block__image {
  overflow: hidden;
  position: relative;
}

.service-block__image img {
  transition: transform 0.8s var(--ease-inout);
}

.service-block:hover .service-block__image img { transform: scale(1.04); }

.service-block__content {
  background: var(--navy-deep);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}

.service-block__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
}

.service-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.service-block__title em { font-style: italic; }

.service-block__desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 42ch;
}

.service-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45);
  border-radius: 2px;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.service-block:hover .tag {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   NEWS PAGE
   ============================================================ */
.news-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
  cursor: none;
  transition: box-shadow var(--t-med);
}

.news-hero-card:hover { box-shadow: var(--shadow-xl); }

.news-hero-card__image {
  overflow: hidden;
}

.news-hero-card__image img { transition: transform 0.7s var(--ease-inout); }
.news-hero-card:hover .news-hero-card__image img { transform: scale(1.05); }

.news-hero-card__content {
  padding: clamp(3rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-5);
}

.news-hero-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}

.news-hero-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

.news-hero-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--silver);
}

.news-hero-card__meta {
  font-size: 11px;
  color: var(--silver);
  letter-spacing: 0.06em;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-10); }

.office-block { display: flex; flex-direction: column; gap: var(--space-3); }

.office-block__city {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: var(--space-3);
}

.office-block__hq { color: var(--navy); }

.office-block__detail {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--silver);
}

.office-block__detail strong { color: var(--ink); font-weight: 500; }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}

.form-input,
.form-textarea,
.form-select {
  background: var(--white);
  border: 1px solid var(--stone-dark);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,107,0.08);
}

.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.footer__logo:hover .footer__logo-img { opacity: 1; }

.footer__logo-text .logo__name { font-size: 11px; }
.footer__logo-text .logo__sub  { font-size: 8px; }

.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: 32ch;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-fast);
  line-height: 1.4;
}

.footer__link:hover { color: var(--white); }

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: var(--space-3);
}

.footer__legal-link {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer__legal-link:hover { color: rgba(255,255,255,0.7); }

.footer__bottom-sep {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__legal {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.footer__attribution {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  transition: color var(--t-fast);
}

.footer__attribution:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   SCROLL REVEALS
   ============================================================ */
.reveal {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .reveal {
    opacity: 0;
    clip-path: inset(8% 0 0 0);
    animation: reveal-clip linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 75%;
  }
}

@keyframes reveal-clip {
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

.reveal-fade {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .reveal-fade {
    opacity: 0;
    animation: reveal-fade-anim linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 70%;
  }
}

@keyframes reveal-fade-anim {
  to { opacity: 1; }
}

/* Hero entry animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1100px) {
  .platforms {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-card:nth-child(2) { border-right: none; }
  .platform-card:nth-child(3) { border-top: 1px solid var(--line-dark); }

  .stat-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--line); }

  .section__header { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .service-block { grid-template-columns: 1fr; min-height: auto; }
  .service-block:nth-child(even) .service-block__content { order: 2; }
  .service-block:nth-child(even) .service-block__image  { order: 1; }
  .service-block__image { aspect-ratio: 16/7; }
  .content-grid, .content-grid--reverse { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .insights { grid-template-columns: repeat(2, 1fr); }
  .page-hero__inner { grid-template-columns: 1fr; }
  .news-hero-card { grid-template-columns: 1fr; }
  .news-hero-card__image { aspect-ratio: 16/7; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 720px) {
  :root { --header-h: 64px; }

  .nav, .lang-switcher { display: none; }
  .hamburger { display: flex; }

  .hero__title { font-size: clamp(2.8rem, 11vw, 4.5rem); }

  .stat-band__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .platforms { grid-template-columns: 1fr; }
  .platform-card { border-right: none; }

  .insights { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .conviction__quote { font-size: clamp(1.4rem, 5vw, 2rem); }

  .logo__sub { display: none; }
  .logo__name { font-size: 11px; }

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .stat-band__inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: var(--space-6) var(--space-4); }
  .stat-item__number { font-size: clamp(2rem, 9vw, 3rem); }
}

/* ============================================================
   ARTICLE FULL TEXT — Editorial long-form
   ============================================================ */
.news-hero-card__author-line {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.news-hero-card__author {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
}

.article-full .article-body {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.85;
  color: var(--silver);
  margin-bottom: var(--space-8);
}

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

/* Article cards in grid — expanded excerpt */
.insight-card__excerpt-long {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--silver);
  margin-top: var(--space-3);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card__author {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin-top: var(--space-4);
}

/* Section divider for articles */
.article-divider {
  width: 48px;
  height: 2px;
  background: var(--navy);
  margin: var(--space-8) 0;
}
