/* ============================================================
   Everyday People Financial — design system
   Brand: navy #111c4e · coral #fb634f / #e55643 · teal #287f6e · peach #ffbc7d
   Type: Poppins (display) · Manrope (body) · Share Tech Mono (ticker)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&family=Share+Tech+Mono&display=swap');

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

:root {
  --navy: #111c4e;
  --navy-deep: #0a1236;
  --navy-mid: #1a2a6b;
  --coral: #fb634f;
  --coral-deep: #e55643;
  --teal: #287f6e;
  --teal-soft: #35a08b;
  --peach: #ffbc7d;
  --paper: #ffffff;
  --mist: #f4f6fb;
  --mist-2: #e9edf6;
  --ink: #111c4e;
  --ink-dim: #59618a;
  --line: rgba(17, 28, 78, 0.1);
  --accent: var(--coral);           /* live accent — driven by active deck card */
  --radius: 18px;
  --shadow-soft: 0 18px 50px -18px rgba(17, 28, 78, 0.25);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
  --nav-h: 76px;
}

html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

::selection { background: var(--coral); color: #fff; }

/* ---------- shared layout ---------- */
.wrap { width: min(1160px, calc(100% - 3rem)); margin: 0 auto; }
.section { padding: 5.5rem 0; position: relative; }
.section.alt { background: var(--mist); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; font-weight: 800; letter-spacing: 2.6px; text-transform: uppercase;
  color: var(--coral-deep); margin-bottom: 1rem; font-family: var(--font-body);
}
.eyebrow.teal { color: var(--teal); }
.eyebrow.peach { color: #e08a35; }

.section-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; color: var(--navy); }
.section-lede { max-width: 46rem; margin-top: 1.1rem; font-size: 1.08rem; color: var(--ink-dim); }
.center { text-align: center; }
.center .section-lede { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; text-decoration: none;
  padding: 0.9rem 1.65rem; border-radius: 12px; border: 0; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.2s;
  position: relative; overflow: hidden;
}
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(4px); }
.btn.primary { background: var(--coral); color: #fff; box-shadow: 0 10px 30px -10px rgba(251, 99, 79, 0.65); }
.btn.primary:hover { transform: translateY(-2px); background: var(--coral-deep); }
.btn.navy { background: var(--navy); color: #fff; box-shadow: 0 10px 30px -12px rgba(17, 28, 78, 0.55); }
.btn.navy:hover { transform: translateY(-2px); background: var(--navy-mid); }
.btn.ghost { background: transparent; color: var(--navy); border: 1.5px solid rgba(17, 28, 78, 0.25); }
.btn.ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn.ghost.on-dark { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn.ghost.on-dark:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav-inner {
  width: min(1240px, calc(100% - 2.4rem)); margin: 0 auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav .brand { display: flex; align-items: center; text-decoration: none; }
.nav .brand img { height: 44px; width: auto; transition: opacity 0.3s; }
.nav .brand .logo-light { display: none; }

/* dark variant sits over navy hero */
.nav.on-dark .brand .logo-dark { display: none; }
.nav.on-dark .brand .logo-light { display: block; }

.nav-links { display: flex; align-items: center; gap: 0.4rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.55rem 0.85rem; border-radius: 9px;
  font-size: 0.9rem; font-weight: 700; color: var(--navy); text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { background: rgba(17, 28, 78, 0.07); }
.nav.on-dark .nav-links > li > a { color: rgba(255, 255, 255, 0.85); }
.nav.on-dark .nav-links > li > a:hover, .nav.on-dark .nav-links > li > a.active { background: rgba(255, 255, 255, 0.1); color: #fff; }
.nav-links .caret { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: 0.55; transition: transform 0.2s; }
.nav-links li:hover .caret { transform: rotate(225deg) translateY(-1px); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; padding: 0.5rem;
  background: #fff; border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 24px 60px -20px rgba(17, 28, 78, 0.35);
  opacity: 0; visibility: hidden; transition: all 0.22s ease;
  list-style: none;
}
.dropdown::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-links li:hover .dropdown, .nav-links li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block; padding: 0.6rem 0.9rem; border-radius: 9px;
  font-size: 0.88rem; font-weight: 600; color: var(--navy); text-decoration: none;
  transition: background 0.13s, color 0.13s;
}
.dropdown a:hover { background: var(--mist); color: var(--coral-deep); }

.nav .nav-cta { flex-shrink: 0; }
.nav .nav-cta .btn { padding: 0.62rem 1.2rem; font-size: 0.86rem; }

.nav.scrolled { background: rgba(255, 255, 255, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 10px 40px -18px rgba(17, 28, 78, 0.3); }
.nav.scrolled.on-dark .brand .logo-dark { display: block; }
.nav.scrolled.on-dark .brand .logo-light { display: none; }
.nav.scrolled.on-dark .nav-links > li > a { color: var(--navy); }
.nav.scrolled.on-dark .nav-links > li > a:hover, .nav.scrolled.on-dark .nav-links > li > a.active { background: rgba(17, 28, 78, 0.07); }

/* burger */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: 0; cursor: pointer; padding: 10px; border-radius: 10px;
}
.burger span { width: 24px; height: 2.5px; border-radius: 2px; background: var(--navy); transition: transform 0.25s, opacity 0.2s; }
.nav.on-dark:not(.scrolled) .burger span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile panel */
.mobile-panel {
  position: fixed; inset: 0; z-index: 99; padding: calc(var(--nav-h) + 1rem) 1.6rem 2rem;
  background: rgba(255, 255, 255, 0.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  transform: translateY(-102%); transition: transform 0.38s cubic-bezier(.22,.61,.36,1);
  overflow-y: auto;
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel ul { list-style: none; }
.mobile-panel > ul > li { border-bottom: 1px solid var(--line); }
.mobile-panel a, .mobile-panel .m-group {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1rem 0.2rem; font-size: 1.05rem; font-weight: 700; color: var(--navy);
  text-decoration: none; background: none; border: 0; cursor: pointer; font-family: var(--font-body); text-align: left;
}
.mobile-panel .m-sub { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.mobile-panel .m-sub.open { max-height: 420px; }
.mobile-panel .m-sub a { padding: 0.65rem 1.2rem; font-size: 0.95rem; font-weight: 600; color: var(--ink-dim); }
.mobile-panel .m-group .caret { width: 10px; height: 10px; border-right: 2.5px solid var(--coral); border-bottom: 2.5px solid var(--coral); transform: rotate(45deg); transition: transform 0.25s; margin-right: 6px; }
.mobile-panel .m-group.open .caret { transform: rotate(225deg); }
.mobile-panel .m-cta { margin-top: 1.5rem; display: flex; }
.mobile-panel .m-cta .btn { width: 100%; justify-content: center; }

/* ---------- dark hero (home) ---------- */
.hero-dark {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 800px at 80% 0%, #1b2b6e 0%, transparent 55%),
    radial-gradient(800px 700px at 8% 110%, #16245c 0%, transparent 55%),
    linear-gradient(180deg, #0e1740 0%, var(--navy-deep) 100%);
  color: #fff;
}
.hero-dark .glow {
  position: absolute; top: -12%; right: 4%;
  width: 44vw; height: 44vw; max-width: 720px; max-height: 720px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(140px); opacity: 0.26;
  transition: background 0.6s ease;
  pointer-events: none;
}
.hero-dark .grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 70% 30%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 30%, #000 0%, transparent 78%);
}
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-home {
  min-height: 100svh;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 2rem;
  width: min(1240px, calc(100% - 3rem)); margin: 0 auto;
  padding: calc(var(--nav-h) + 3.5rem) 0 4.5rem;
  position: relative; z-index: 4;
}
.hero-home .copy { max-width: 34rem; }
.hero-home h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.3rem);
  font-weight: 700; color: #fff; letter-spacing: -0.025em;
}
.hero-home h1 .w { display: inline-block; opacity: 0; transform: translateY(0.55em) rotate(2deg); animation: word-in 0.7s cubic-bezier(.22,.61,.36,1) forwards; }
@keyframes word-in { to { opacity: 1; transform: translateY(0) rotate(0); } }

.ticker-chip {
  display: inline-flex; align-items: center; gap: 0.8rem;
  margin-bottom: 1.6rem; padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 100px;
  background: rgba(255, 255, 255, 0.06); backdrop-filter: blur(8px);
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 1px;
  color: rgba(230, 238, 255, 0.92); text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.ticker-chip:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.1); }
.ticker-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-soft); box-shadow: 0 0 10px var(--teal-soft); animation: blink 2.2s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-home .sub {
  margin-top: 1.5rem; font-size: 1.12rem; line-height: 1.7;
  color: #aeb8dd; max-width: 30rem;
}
.hero-home .cta-row { margin-top: 2.2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* deck */
.deck-zone { position: relative; height: 100%; min-height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.deck { position: relative; width: 360px; height: 226px; transform-style: preserve-3d; perspective: 1300px; cursor: pointer; }
.deck-hint {
  margin-top: 5.2rem; font-size: 0.8rem; color: #8f9cc7; letter-spacing: 0.4px;
  animation: pulse 2.4s ease-in-out infinite; text-align: center;
}
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

.pcard {
  position: absolute; top: 50%; left: 50%;
  width: 360px; height: 226px; margin: -113px 0 0 -180px;
  border-radius: 20px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(.22,.61,.36,1), opacity 0.6s ease;
  will-change: transform, opacity;
  overflow: hidden;
  box-shadow:
    inset 0 1.5px 1px rgba(255,255,255,0.4),
    inset 0 -2px 3px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(190,210,255,0.14),
    0 30px 60px -15px rgba(0,0,0,0.7);
}
.pc-metal { position: absolute; inset: 0; background-color: #0e1733; background-size: cover; background-position: center; }
.pc-tint { position: absolute; inset: 0; background: radial-gradient(120% 130% at 82% 8%, var(--ac), transparent 58%); opacity: 0.5; mix-blend-mode: screen; }
.pc-sheen {
  position: absolute; inset: -30%;
  background: linear-gradient(100deg, transparent 43%, rgba(255,255,255,0.05) 47%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.05) 53%, transparent 57%);
  transform: translateX(-120%); transition: transform 0.9s ease;
}
.pcard.front .pc-sheen { transform: translateX(120%); }
.pc-brand { position: absolute; top: 24px; right: 26px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: rgba(220,232,255,0.7); text-align: right; }
.pc-chip { position: absolute; top: 48px; left: 28px; width: 46px; height: 35px; border-radius: 6px; background: linear-gradient(135deg, #b8901f, #fbe7a0, #c9a431, #fff0bd, #a87d12); box-shadow: 0 2px 5px rgba(0,0,0,0.45), inset 0 1px 2px rgba(255,255,255,0.7); }
.pc-chip::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(60,40,0,0.35); }
.pc-chip::after { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(60,40,0,0.35); }
.pc-name { position: absolute; left: 28px; top: 102px; right: 28px; font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.01em; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.4); line-height: 1.2; }
.pc-name small { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ac); margin-top: 4px; filter: brightness(1.35); }
.pc-region { position: absolute; left: 28px; bottom: 20px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 1.5px; color: rgba(200,216,245,0.65); text-transform: uppercase; }
.pc-mark { position: absolute; right: 26px; bottom: 18px; display: flex; }
.pc-mark i { width: 28px; height: 28px; border-radius: 50%; opacity: 0.92; box-shadow: inset 0 1px 3px rgba(255,255,255,0.4); }
.pc-mark i:first-child { background: radial-gradient(circle at 35% 30%, #3ba38c, var(--teal)); margin-right: -9px; z-index: 1; }
.pc-mark i:last-child { background: radial-gradient(circle at 35% 30%, #ff8a70, var(--coral-deep)); }

.deck-tabs { margin-top: 2.6rem; display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 5; }
.deck-tab {
  font-size: 0.78rem; font-weight: 700; color: #97a2cb;
  padding: 0.48rem 0.95rem; border-radius: 100px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.12); background: transparent;
  transition: all 0.2s; font-family: var(--font-body);
}
.deck-tab:hover { color: #fff; border-color: rgba(255,255,255,0.3); }
.deck-tab.active { color: #fff; border-color: var(--accent); background: color-mix(in srgb, var(--accent) 20%, transparent); }

.deck-dots { position: absolute; top: 50%; right: -2.2rem; transform: translateY(-50%); display: flex; flex-direction: column; gap: 0.85rem; }
.deck-dots button { width: 9px; height: 9px; border-radius: 50%; padding: 0; cursor: pointer; border: 1.5px solid rgba(255,255,255,0.3); background: transparent; transition: all 0.3s; }
.deck-dots button.on { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 12px var(--accent); transform: scale(1.3); }

/* marquee ticker strip */
.marquee {
  position: relative; z-index: 4; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 0.8rem 0;
}
.marquee .track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .track { animation-play-state: paused; }
.marquee span { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 1.6px; color: #8f9cc7; white-space: nowrap; text-transform: uppercase; }
.marquee b { color: var(--peach); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- subpage hero ---------- */
.hero-page {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 500px at 85% -10%, #1b2b6e 0%, transparent 60%),
    linear-gradient(180deg, #101b4a 0%, var(--navy-deep) 100%);
  min-height: 360px;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 1.6rem) 0 1.6rem;
}
.hero-page .wrap { width: min(1160px, calc(100% - 3rem)); }
@media (max-width: 640px) {
  .hero-page { min-height: 320px; }
}
.hero-page .crumb { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--peach); margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
.hero-page .crumb a { color: #9aa6d4; text-decoration: none; transition: color 0.15s; }
.hero-page .crumb a:hover { color: #fff; }
.hero-page h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 700; }
.hero-page .sub { margin-top: 1rem; max-width: 44rem; color: #aeb8dd; font-size: 1.08rem; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-home h1 .w { animation: none; opacity: 1; transform: none; }
  .marquee .track { animation: none; }
}

/* ---------- cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }

.value-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem 1.7rem; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  will-change: transform;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--vc, var(--coral)); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: transparent; }
.value-card:hover::before { transform: scaleX(1); }
.value-card .vc-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--vc, var(--coral)) 12%, #fff);
  color: var(--vc, var(--coral)); margin-bottom: 1.1rem;
  transition: transform 0.3s;
}
.value-card:hover .vc-icon { transform: scale(1.08) rotate(-4deg); }
.value-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.94rem; color: var(--ink-dim); }

/* people */
.person-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; text-align: left; padding: 0; width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.person-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.person-card .ph { position: relative; aspect-ratio: 1 / 1.04; overflow: hidden; background: linear-gradient(160deg, var(--mist), var(--mist-2)); }
.person-card .ph img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s ease; }
.person-card:hover .ph img { transform: scale(1.05); }
.person-card .ph::after {
  content: 'Read bio +'; position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.2rem 0.9rem; font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #fff;
  background: linear-gradient(transparent, rgba(17,28,78,0.85));
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s;
}
.person-card:hover .ph::after { opacity: 1; transform: none; }
.person-card .pd { padding: 1.15rem 1.3rem 1.3rem; }
.person-card h3 { font-size: 1.08rem; color: var(--navy); }
.person-card .role { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; color: var(--coral-deep); margin-top: 0.3rem; }

/* modal */
.modal-veil {
  position: fixed; inset: 0; z-index: 200; background: rgba(10, 18, 54, 0.65);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.modal-veil.open { opacity: 1; visibility: visible; }
.modal {
  width: min(760px, 100%); max-height: 86vh; overflow-y: auto;
  background: #fff; border-radius: 22px; padding: 0;
  transform: translateY(24px) scale(0.98); transition: transform 0.35s cubic-bezier(.22,.61,.36,1);
  position: relative;
}
.modal-veil.open .modal { transform: none; }
.modal .m-head { display: flex; gap: 1.4rem; align-items: center; padding: 1.8rem 2rem 1.2rem; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; border-radius: 22px 22px 0 0; }
.modal .m-head img { width: 84px; height: 84px; border-radius: 18px; object-fit: cover; object-position: top center; }
.modal .m-head h3 { font-size: 1.4rem; color: var(--navy); }
.modal .m-head .role { color: var(--coral-deep); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 0.2rem; }
.modal .m-body { padding: 1.5rem 2rem 2rem; color: var(--ink-dim); font-size: 0.98rem; }
.modal .m-body p + p { margin-top: 0.9rem; }
.modal .m-close {
  position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; cursor: pointer; font-size: 1.1rem; color: var(--navy);
  display: grid; place-items: center; transition: background 0.15s, transform 0.15s; z-index: 2;
}
.modal .m-close:hover { background: var(--mist); transform: rotate(90deg); }

/* stat counters */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.3rem; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; transition: transform 0.3s, box-shadow 0.3s;
}
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.stat .num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--navy); line-height: 1.1; }
.stat .num b { color: var(--coral); font-weight: 700; }
.stat .lbl { margin-top: 0.4rem; font-size: 0.88rem; font-weight: 600; color: var(--ink-dim); }

/* office chips */
.office-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.7rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.office-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.office-card .flag { font-size: 1.9rem; }
.office-card h3 { margin-top: 0.7rem; font-size: 1.2rem; color: var(--navy); }
.office-card p { font-size: 0.92rem; color: var(--ink-dim); margin-top: 0.3rem; }
.city-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.city-chips span {
  font-size: 0.8rem; font-weight: 700; padding: 0.38rem 0.85rem; border-radius: 100px;
  background: var(--mist); color: var(--navy); border: 1px solid var(--line);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.city-chips span:hover { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); }

/* ---------- stepper (Bridge to Own) ---------- */
.stepper { position: relative; margin-top: 3rem; }
.stepper .progress { position: absolute; top: 44px; left: 4%; right: 4%; height: 3px; background: var(--mist-2); border-radius: 3px; z-index: 0; }
.stepper .progress i { display: block; height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--teal), var(--coral)); transition: width 0.6s cubic-bezier(.22,.61,.36,1); }
.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; }
.step { text-align: center; cursor: pointer; background: none; border: 0; padding: 0.4rem; border-radius: 14px; transition: background 0.2s; }
.step:hover { background: rgba(17,28,78,0.04); }
.step .bubble {
  width: 88px; height: 88px; margin: 0 auto; border-radius: 50%;
  background: #fff; border: 3px solid var(--mist-2); display: grid; place-items: center;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
}
.step .bubble img { width: 52px; height: 52px; object-fit: contain; }
.step.active .bubble { border-color: var(--coral); transform: scale(1.1); box-shadow: 0 14px 30px -12px rgba(251,99,79,0.5); }
.step .s-num { display: block; margin-top: 0.7rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 1.5px; color: var(--ink-dim); text-transform: uppercase; }
.step .s-name { display: block; margin-top: 0.2rem; font-size: 0.86rem; font-weight: 800; color: var(--navy); font-family: var(--font-body); line-height: 1.3; }
.step-detail {
  margin-top: 2.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 2.2rem; box-shadow: var(--shadow-soft);
  display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: center; min-height: 128px;
}
.step-detail .sd-num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: var(--coral); line-height: 1; min-width: 70px; }
.step-detail h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 0.35rem; }
.step-detail p { color: var(--ink-dim); font-size: 0.97rem; }
.step-detail .sd-body { animation: sd-in 0.45s ease; }
@keyframes sd-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* testimonial */
.quote-card {
  position: relative; background: var(--navy); color: #fff; border-radius: 26px;
  padding: 3.2rem 3rem 2.6rem; overflow: hidden;
}
.quote-card::before {
  content: '“'; position: absolute; top: -1.2rem; left: 1.4rem;
  font-family: var(--font-display); font-size: 11rem; font-weight: 800; color: rgba(251, 99, 79, 0.35); line-height: 1;
}
.quote-card .q-glow { position: absolute; bottom: -40%; right: -10%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: var(--coral); filter: blur(120px); opacity: 0.25; }
.quote-card blockquote { position: relative; font-size: 1.18rem; line-height: 1.75; color: #dde3f7; max-width: 52rem; }
.quote-card cite { position: relative; display: block; margin-top: 1.6rem; font-style: normal; font-weight: 800; color: var(--peach); }

/* doc lists (financials, governance, factsheet) */
.doc-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0 1.6rem; }
.doc-tab {
  font-size: 0.85rem; font-weight: 700; color: var(--ink-dim);
  padding: 0.5rem 1.1rem; border-radius: 100px; cursor: pointer;
  border: 1.5px solid var(--line); background: #fff; transition: all 0.2s;
}
.doc-tab:hover { border-color: var(--navy); color: var(--navy); }
.doc-tab.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.doc-list { display: grid; gap: 0.7rem; }
.doc-item {
  display: flex; align-items: center; gap: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.3rem; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.25s;
}
.doc-item:hover { transform: translateX(6px); box-shadow: var(--shadow-soft); border-color: rgba(251,99,79,0.4); }
.doc-item .d-icon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--coral) 10%, #fff); color: var(--coral-deep);
}
.doc-item .d-name { font-weight: 700; color: var(--navy); font-size: 0.95rem; line-height: 1.4; }
.doc-item .d-meta { font-size: 0.78rem; color: var(--ink-dim); margin-top: 0.15rem; }
.doc-item .d-arr { margin-left: auto; color: var(--coral); font-weight: 800; transition: transform 0.2s; }
.doc-item:hover .d-arr { transform: translateX(4px); }

/* news cards */
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.news-card .n-img { aspect-ratio: 16/9; overflow: hidden; background: var(--mist-2); }
.news-card .n-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .n-img img { transform: scale(1.06); }
.news-card .n-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.news-card .n-date { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--coral-deep); }
.news-card h3 { font-size: 1.02rem; color: var(--navy); line-height: 1.45; }
.news-card p { font-size: 0.88rem; color: var(--ink-dim); }
.news-card .n-more { margin-top: auto; padding-top: 0.6rem; font-size: 0.84rem; font-weight: 800; color: var(--coral); }

/* company feature rows */
.co-row {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center;
  padding: 3.2rem 0;
}
.co-row + .co-row { border-top: 1px solid var(--line); }
.co-row.flip .co-visual { order: 2; }
.co-visual {
  position: relative; border-radius: 22px; overflow: hidden;
  background: linear-gradient(150deg, color-mix(in srgb, var(--co, var(--coral)) 14%, #fff), var(--mist));
  border: 1px solid var(--line);
  min-height: 240px; display: grid; place-items: center; padding: 2.5rem;
}
.co-visual img { max-height: 110px; width: auto; max-width: 78%; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(17,28,78,0.18)); transition: transform 0.4s ease; }
.co-row:hover .co-visual img { transform: scale(1.05); }
.co-visual .co-orb { position: absolute; width: 220px; height: 220px; border-radius: 50%; background: var(--co, var(--coral)); opacity: 0.16; filter: blur(60px); top: -15%; right: -10%; }
.co-copy h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 0.8rem; }
.co-copy .co-tag { display: inline-block; font-size: 0.75rem; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--co, var(--coral-deep)); margin-bottom: 0.7rem; }
.co-copy p { color: var(--ink-dim); font-size: 0.99rem; }
.co-copy p + p { margin-top: 0.8rem; }
.co-copy .btn { margin-top: 1.4rem; }

/* generic prose */
.prose { max-width: 50rem; }
.prose p + p { margin-top: 1rem; }
.prose p { color: var(--ink-dim); font-size: 1.02rem; }
.prose strong { color: var(--navy); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.7rem; transition: transform 0.25s, box-shadow 0.3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.contact-card h3 { font-size: 1.05rem; color: var(--navy); display: flex; align-items: center; gap: 0.6rem; }
.contact-card p { font-size: 0.92rem; color: var(--ink-dim); margin-top: 0.5rem; }
.contact-card a { color: var(--coral-deep); font-weight: 700; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

/* CTA band */
.cta-band {
  position: relative; overflow: hidden; border-radius: 26px;
  background: linear-gradient(120deg, var(--navy) 0%, #1c2c70 100%);
  color: #fff; padding: 3.6rem 3rem; text-align: center;
}
.cta-band .glow-a { position: absolute; top: -60%; left: -10%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: var(--coral); filter: blur(110px); opacity: 0.4; }
.cta-band .glow-b { position: absolute; bottom: -60%; right: -10%; width: 50%; aspect-ratio: 1; border-radius: 50%; background: var(--teal); filter: blur(110px); opacity: 0.35; }
.cta-band.has-photo {
  background:
    linear-gradient(120deg, rgba(9, 16, 50, 0.92) 0%, rgba(13, 22, 63, 0.8) 50%, rgba(17, 28, 78, 0.62) 100%),
    var(--band-img) center / cover no-repeat;
}
.cta-band.has-photo .glow-a { opacity: 0.28; }
.cta-band.has-photo .glow-b { opacity: 0.24; }
.cta-band h2 { position: relative; font-size: clamp(1.7rem, 3.2vw, 2.4rem); max-width: 40rem; margin: 0 auto; }
.cta-band p { position: relative; margin: 1rem auto 0; max-width: 38rem; color: #c3cbe9; }
.cta-band .btn { position: relative; margin-top: 2rem; }

/* ---------- footer ---------- */
footer {
  background: var(--navy-deep); color: #aab3d8; position: relative; overflow: hidden;
  padding: 4.2rem 0 2.2rem; margin-top: 5.5rem;
}
footer .f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; position: relative; }
footer .f-brand img { height: 52px; width: auto; margin-bottom: 1.1rem; }
footer .f-brand p { font-size: 0.9rem; max-width: 20rem; }
footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 800; }
footer ul { list-style: none; display: grid; gap: 0.55rem; }
footer ul a { color: #aab3d8; text-decoration: none; font-size: 0.92rem; transition: color 0.15s, padding-left 0.2s; }
footer ul a:hover { color: var(--peach); padding-left: 4px; }
footer .socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
footer .socials a {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,0.07); color: #dbe1f5; transition: background 0.2s, transform 0.2s, color 0.2s;
}
footer .socials a:hover { background: var(--coral); color: #fff; transform: translateY(-3px); }
footer .f-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,0.09);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: #7f89b5;
}
footer .f-bottom .tick { font-family: var(--font-mono); letter-spacing: 1px; }

/* back to top */
.to-top {
  position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--navy); color: #fff; font-size: 1.1rem;
  box-shadow: 0 12px 30px -8px rgba(17,28,78,0.5);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.3s; display: grid; place-items: center;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--coral); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav .nav-cta { display: none; }
  .burger { display: flex; }
  .hero-home { grid-template-columns: 1fr; padding-top: calc(var(--nav-h) + 2.5rem); gap: 3rem; min-height: 0; }
  .deck-zone { min-height: 430px; }
  .deck-dots { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 1.6rem; }
  .stepper .progress { display: none; }
  .co-row { grid-template-columns: 1fr; gap: 1.8rem; }
  .co-row.flip .co-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  footer .f-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 3.8rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .deck, .pcard { width: 315px; height: 198px; }
  .pcard { margin: -99px 0 0 -157.5px; }
  .pc-name { top: 88px; font-size: 18px; }
  .step-detail { grid-template-columns: 1fr; gap: 0.6rem; padding: 1.6rem; }
  .quote-card { padding: 2.6rem 1.6rem 2rem; }
  .cta-band { padding: 2.8rem 1.5rem; }
  footer .f-grid { grid-template-columns: 1fr; }
  .hero-home .cta-row .btn { width: 100%; justify-content: center; }
}

/* ---------- photo hero variant (original Banner-Home photo) ---------- */
.hero-photo {
  position: relative; overflow: hidden;
  background: #fff;
}
.hero-photo-img {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 124%; height: auto; max-width: none;
  z-index: 0; pointer-events: none; user-select: none;
}
.hero-photo::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(90deg, #ffffff 30%, rgba(255,255,255,0.42) 41%, rgba(255,255,255,0) 52%);
}
.hero-photo .marquee { position: relative; z-index: 2; }
.hero-photo .hero-home { grid-template-columns: 1fr; min-height: 0; padding: calc(var(--nav-h) + 3rem) 0 3.4rem; }
.hero-photo .hero-home .copy { max-width: 36rem; }
.hero-photo .hero-home h1 { color: var(--navy); }
.hero-photo .hero-home .sub { color: var(--teal); }
.hero-photo .ticker-chip {
  border-color: rgba(17, 28, 78, 0.18); background: rgba(255, 255, 255, 0.6);
  color: var(--navy);
}
.hero-photo .ticker-chip:hover { border-color: rgba(17, 28, 78, 0.4); background: #fff; }
.hero-photo .btn.ghost.on-dark { color: var(--navy); border-color: rgba(17, 28, 78, 0.25); }
.hero-photo .btn.ghost.on-dark:hover { border-color: var(--navy); background: rgba(17, 28, 78, 0.05); }
.hero-photo .social-chip {
  background: rgba(17, 28, 78, 0.06) !important;
  border-color: rgba(17, 28, 78, 0.15) !important;
  color: var(--navy) !important;
}
.hero-photo .social-chip:hover { background: rgba(17, 28, 78, 0.12) !important; }
.hero-photo .marquee { background: var(--navy-deep); border-top: 0; }
@media (max-width: 1080px) {
  .hero-photo { background: #fff url('../assets/banner-home.png') 74% center / cover no-repeat; }
  .hero-photo-img { display: none; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.86) 55%, rgba(255,255,255,0.6) 100%); }
}

/* ---------- news article pages ---------- */
.article-wrap { max-width: 50rem; margin: 0 auto; }
.article-hero-date { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--peach); margin-bottom: 0.9rem; }
.hero-page .article-title { font-size: clamp(1.5rem, 2.9vw, 2.3rem); line-height: 1.3; max-width: 56rem; }
.article-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.article-body { color: #3d4569; font-size: 1.02rem; line-height: 1.75; }
.article-body p { margin: 0 0 1.05rem; }
.article-body strong, .article-body b { color: var(--navy); }
.article-body h2, .article-body h3, .article-body h4 { color: var(--navy); margin: 1.8rem 0 0.8rem; line-height: 1.35; }
.article-body ul, .article-body ol { margin: 0 0 1.05rem 1.5rem; }
.article-body li { margin-bottom: 0.4rem; }
.article-body a { color: var(--coral-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--coral); }
.article-body img { margin: 1.4rem auto; border-radius: 12px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: 0.9rem; }
.article-body td, .article-body th { border: 1px solid var(--line); padding: 0.5rem 0.75rem; vertical-align: top; }
.article-body th { background: var(--mist); color: var(--navy); }
.table-scroll { overflow-x: auto; }

/* ---------- footprint city strip (hover photo pops) ---------- */
.fp-strip { display: flex; justify-content: center; align-items: center; gap: 2.8rem; flex-wrap: wrap; margin-top: 2.6rem; }
.fp-group { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; justify-content: center; }
.fp-flag { font-size: 1.3rem; }
.fp-country { font-weight: 800; color: var(--navy); font-size: 0.9rem; margin-right: 0.35rem; }
.fp-chip {
  position: relative; display: inline-block;
  font-size: 0.85rem; font-weight: 700; padding: 0.45rem 0.95rem; border-radius: 100px;
  background: var(--mist); color: var(--navy); border: 1px solid var(--line); cursor: default;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.fp-chip:hover, .fp-chip:focus-visible { background: var(--navy); color: #fff; border-color: var(--navy); transform: translateY(-2px); z-index: 6; outline: none; }
.fp-pop {
  position: absolute; bottom: calc(100% + 13px); left: 50%;
  width: 224px; transform: translateX(-50%) translateY(10px) scale(0.92);
  background: #fff; border-radius: 15px; padding: 6px;
  border: 1px solid var(--line); box-shadow: 0 26px 55px -18px rgba(17, 28, 78, 0.5);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.22,.61,.36,1), transform 0.28s cubic-bezier(.22,.61,.36,1), visibility 0.28s;
}
.fp-pop img { width: 100%; height: 132px; object-fit: cover; border-radius: 11px; display: block; }
.fp-pop span { display: block; text-align: center; font-size: 0.72rem; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--navy); padding: 0.55rem 0 0.35rem; }
.fp-pop::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 7px solid transparent; border-top-color: #fff; }
.fp-chip:hover .fp-pop, .fp-chip:focus-visible .fp-pop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0) scale(1); }
.fp-divider { width: 1px; height: 26px; background: var(--line); }
@media (hover: none) { .fp-pop { display: none; } }
@media (max-width: 720px) { .fp-strip { gap: 1.1rem; } .fp-divider { display: none; } }

/* ---------- subpage hero with photo + navy tint ---------- */
.hero-page.has-img {
  background:
    linear-gradient(90deg, rgba(13, 21, 64, 0.8) 0%, rgba(13, 21, 64, 0.62) 45%, rgba(16, 27, 74, 0.38) 100%),
    var(--hero-img) center / cover no-repeat,
    var(--navy-deep);
}
