/* ── Custom Properties ── */
:root {
  --blue:       #2A62F1;
  --blue-dark:  #1E3FAA;
  --blue-light: #EEF2FE;
  --blue-mid:   #7EA0FF;
  --dark:       #0A0E1A;
  --dark-2:     #141826;
  --text:       #1C1C2E;
  --text-mid:   #4A4A6A;
  --text-light: #9090B0;
  --white:      #FFFFFF;
  --off-white:  #F8F9FF;
  --border:     #E0E6FF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 24px;
  --nav-h:     64px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(42, 98, 241, 0.08); }
.nav-brand { display: flex; align-items: center; }
.nav-logo  { height: 34px; width: auto; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }

/* ── HERO ── */
.hero {
  background: var(--white);
  padding: calc(var(--nav-h) + 80px) 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-tag { margin-bottom: 28px; }
.tag-pill {
  display: inline-block;
  background: rgba(42, 98, 241, 0.15);
  color: var(--blue-light);
  border: 1px solid rgba(42, 98, 241, 0.25);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 4px 12px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 500;
  line-height: 1.09;
  letter-spacing: -2.11px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline-line2 {
  display: block;
  min-height: 1.09em;
  position: relative;
}
.cycling-word-wrapper {
  display: inline-block;
  position: relative;
  overflow: hidden;
  height: 1.09em;
  vertical-align: top;
}
.cycling-word {
  display: block;
  color: #2A62F1;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.19,1,0.22,1), opacity 0.4s ease;
}
.cycling-word.exit {
  transform: translateY(-100%);
  opacity: 0;
}
.cycling-word.enter {
  transform: translateY(100%);
  opacity: 0;
  transition: none;
}
.hero-sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-mid);
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  border-radius: 32px;
  padding: 12px 24px;
}
.btn-primary {
  background: var(--blue);
  color: #ffffff;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.15); }

/* Floating keyword pills */
.hero-keywords {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.kw-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.kw-pill:nth-child(1) { top: 15%; left: 6%; --rot: -2deg; animation-delay: 0s; }
.kw-pill:nth-child(2) { top: 22%; right: 8%; --rot: 3deg; animation-delay: 0.8s; }
.kw-pill:nth-child(3) { bottom: 25%; left: 4%; --rot: 2deg; animation-delay: 1.6s; }
.kw-pill:nth-child(4) { bottom: 20%; right: 6%; --rot: -3deg; animation-delay: 2.4s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 0deg)); }
}

/* Fade-up scroll animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ── CHALLENGE SECTION ── */
.challenge-section {
  background: var(--off-white);
  padding: 110px 0;
}
.challenge-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Phone */
.phone-wrap { display: flex; justify-content: center; }
.phone-frame {
  width: 224px;
  background: #18192A;
  border-radius: 38px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #2E2F44,
    0 40px 100px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 76px;
  height: 22px;
  background: #18192A;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.phone-screen-wrap {
  background: var(--white);
  border-radius: 27px;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.phone-home-bar {
  width: 72px;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* Screens */
.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.screen.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.screen.exit {
  opacity: 0;
  transform: translateX(-18px);
}

/* S1 — Home */
.s1 .app-header {
  padding: 28px 16px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.s1 .app-bank-name {
  font-weight: 700;
  color: var(--blue);
  font-size: 0.8rem;
}
.s1 .app-time {
  font-size: 0.65rem;
  color: var(--text-light);
}
.app-balance-label {
  padding: 10px 16px 2px;
  font-size: 0.6rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.app-balance {
  padding: 2px 16px 14px;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.app-actions-row {
  display: flex;
  gap: 7px;
  padding: 0 16px 14px;
}
.app-action {
  flex: 1;
  padding: 9px 4px;
  border-radius: 9px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--text-mid);
  font-size: 0.62rem;
  font-weight: 600;
  cursor: default;
  font-family: var(--font-sans);
}
.app-action.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.app-recent-label {
  padding: 0 16px 6px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.app-tx {
  display: flex;
  justify-content: space-between;
  padding: 8px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
}
.tx-name { color: var(--text-mid); font-weight: 500; }
.tx-amt  { color: var(--text); font-weight: 600; }

/* S2 — Camera */
.s2 .app-header, .s3 .app-header { padding: 22px 16px 12px; font-size: 0.75rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); }
.s2-header { color: var(--blue) !important; }
.camera-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0A0A10;
  gap: 18px;
  padding: 24px;
}
.camera-frame {
  width: 148px;
  height: 84px;
  position: relative;
}
.corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--blue);
  border-style: solid;
}
.corner.tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.corner.tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.corner.bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.corner.br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: scan 2s ease-in-out infinite;
  top: 0;
}
@keyframes scan {
  0%   { top: 0%;   opacity: 1; }
  90%  { top: 100%; opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.camera-hint {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 1.5;
}

/* S3 — Processing */
.processing-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.spinner-ring {
  width: 44px;
  height: 44px;
  border: 3px solid var(--blue-light);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.processing-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-mid);
}
.processing-sub {
  font-size: 0.6rem;
  color: var(--text-light);
}

/* S4 — Success */
.success-header {
  padding: 22px 16px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  border-bottom: 1px solid #dcfce7;
}
.success-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}
.success-icon {
  width: 52px;
  height: 52px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.success-amount {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.success-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-mid);
}
.success-sub {
  font-size: 0.6rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}
.success-ref {
  margin-top: 8px;
  font-size: 0.58rem;
  color: var(--text-light);
  background: var(--off-white);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* Challenge text */
.challenge-text { display: flex; flex-direction: column; gap: 20px; }
.challenge-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--blue);
  font-style: italic;
  line-height: 1.1;
}
.challenge-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ── STATS ── */
.stats-section {
  background: var(--off-white);
  padding: 90px 0;
}
.section-label {
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  text-align: center;
  text-transform: uppercase;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  text-align: center;
}
.stat-number {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 500;
  letter-spacing: -2.11px;
  line-height: 1.09;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0 auto 28px;
  margin-left: auto;
  margin-right: auto;
  max-width: 220px;
}
.stat-viz {
  margin-top: 24px;
}
.figures-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.stick-figure {
  height: 36px;
  width: 22px;
}
.bar-chart { text-align: left; }
.bar-row {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.bar-row-label {
  color: var(--text-light);
  flex-shrink: 0;
  font-size: 0.72rem;
  width: 88px;
}
.bar-track {
  background: var(--border);
  border-radius: 4px;
  flex: 1;
  height: 8px;
  overflow: hidden;
}
.bar-fill {
  background: var(--blue-light);
  border-radius: 4px;
  height: 100%;
  transition: width 1.2s ease;
  width: 0;
}
.bar-fill.is-primary {
  background: var(--blue);
}
.arcs-wrap {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
}
.arc-item { text-align: center; }
.arc-caption-text {
  color: var(--text-light);
  font-size: 0.72rem;
  margin-top: 6px;
}
.arc-divider {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 300;
  margin-top: -20px;
}
.arc-note {
  color: var(--text-light);
  font-size: 0.78rem;
  font-style: italic;
  margin-top: 16px;
}

/* ── SCREEN READERS ── */
.screen-readers {
  padding: 120px 0;
}
.sr-grid {
  align-items: start;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
}
.heading-lg {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -1.14px;
  line-height: 1.09;
}
.sr-app-icons {
  align-items: flex-end;
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
.app-icon-item { text-align: center; }
.app-icon-placeholder {
  align-items: center;
  background: var(--off-white);
  border-radius: 14px;
  color: var(--text-light);
  display: flex;
  height: 52px;
  justify-content: center;
  margin: 0 auto 6px;
  width: 52px;
}
.app-icon-label {
  color: var(--text-light);
  font-size: 0.72rem;
  letter-spacing: -0.1px;
}
.sr-headline {
  color: var(--text);
}
.sr-answer {
  color: var(--blue);
  margin-bottom: 32px;
}
.sr-stat-boxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.sr-stat-box {
  background: var(--off-white);
  border-radius: 10px;
  padding: 20px 24px;
}
.sr-stat-num {
  color: var(--text);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.44px;
  margin-bottom: 4px;
}
.sr-stat-text {
  color: var(--text-mid);
  font-size: 0.88rem;
  letter-spacing: -0.18px;
  line-height: 1.5;
}
.sr-quote {
  border-left: 3px solid var(--blue);
  padding-left: 20px;
}
.sr-quote-text {
  color: var(--text-mid);
  font-size: 0.94rem;
  font-style: italic;
  letter-spacing: -0.2px;
  line-height: 1.47;
  margin-bottom: 8px;
}
.sr-quote-attr {
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: -0.14px;
}

/* ── MEET FINSIGHT ── */
.meet-finsight {
  background: var(--white);
  overflow: hidden;
  padding: 120px 0;
  position: relative;
  text-align: center;
}
.display-heading {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 500;
  letter-spacing: -2.11px;
  line-height: 1.09;
}
.body-lg {
  color: var(--text-light);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.22px;
  line-height: 1.47;
}
.meet-finsight .display-heading { color: var(--text); }
.meet-finsight .body-lg {
  color: var(--text-light);
  margin-bottom: 60px;
  margin-top: 16px;
}
.phone-rings-wrap {
  align-items: center;
  display: inline-flex;
  height: 600px;
  justify-content: center;
  position: relative;
  width: 600px;
}
.ring {
  border: 1px solid var(--border);
  border-radius: 50%;
  position: absolute;
}
.ring-1 { height: 350px; width: 350px; }
.ring-2 { height: 450px; width: 450px; }
.ring-3 { height: 540px; width: 540px; }
.ring-4 { height: 630px; width: 630px; }
.phone-portrait {
  align-items: center;
  background: #1c1c1c;
  border-radius: 38px;
  box-shadow: rgba(0, 0, 0, 0.5) 0 32px 64px;
  display: flex;
  flex-direction: column;
  height: 540px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 284px;
  z-index: 2;
}
.phone-portrait-screen {
  align-items: center;
  background: #2a2a2a;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 12px);
  justify-content: center;
  overflow: hidden;
  width: calc(100% - 12px);
}
.phone-demo-video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.meet-phone-notch {
  background: #333;
  border-radius: 3px;
  height: 6px;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 60px;
  z-index: 3;
}

/* ── BRIDGE ── */
.bridge-section { padding: 90px 0; text-align: center; }
.bridge-text {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--text);
  font-weight: 500;
  opacity: 0.6;
  letter-spacing: -0.01em;
}

/* ── GUIDELINES ── */
.guidelines-section { padding: 0 0 140px; }
.guidelines-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.guidelines-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 48px);
  align-self: start;
  height: fit-content;
  padding: 72px 48px 0 0;
}
.gl-heading {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 36px;
  font-style: italic;
}
.gl-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gl-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s, background 0.25s;
}
.gl-nav-item:hover { color: var(--text-mid); background: var(--off-white); }
.gl-nav-item.active { color: var(--blue); }
.gl-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.gl-nav-item.active .gl-num {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Guideline Cards */
.guidelines-scroll { padding-top: 72px; }
.gl-card {
  padding: 56px 0 56px 64px;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.gl-card.visible { opacity: 1; transform: translateY(0); }
.gl-card:last-child { border-bottom: none; }
.gl-card-media {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 28px;
  max-width: 560px;
  overflow: hidden;
}
.gl-card-media img {
  display: block;
  height: auto;
  width: 100%;
}
.gl-card-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.gl-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.gl-card-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 500px;
}

/* ── PROTOTYPE ── */
.prototype-section {
  background: var(--off-white);
  padding: 110px 0;
  text-align: center;
}
.proto-heading {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 12px;
}
.proto-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.proto-embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}
.proto-placeholder {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── TEAM ── */
.team-section {
  background: var(--off-white);
  padding: 110px 0 0;
  text-align: center;
}
.team-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 52px;
}

.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.team-member-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 12px 18px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(42, 98, 241, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-member-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 12px;
  object-fit: cover;
}
.team-member-photo-placeholder {
  align-items: center;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  font-size: 1.25rem;
  font-weight: 700;
  justify-content: center;
}
.member-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.member-linkedin {
  font-size: 0.74rem;
  color: var(--blue);
  text-decoration: none;
  transition: opacity 0.2s;
  margin-top: auto;
}
.member-linkedin:hover { opacity: 0.7; }

/* ── PHOTOS MARQUEE ── */
.photos-marquee-wrap {
  margin-top: 72px;
  background: var(--dark);
  padding: 60px 0;
}
.marquee-section-heading {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.marquee-overflow {
  overflow: hidden;
  width: 100%;
}
.marquee-scroll-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: teamMarquee 35s linear infinite;
}
.marquee-scroll-track:hover { animation-play-state: paused; }
@keyframes teamMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-scroll-photo {
  width: 220px;
  height: 180px;
  border-radius: var(--radius);
  flex-shrink: 0;
  object-fit: contain;
  background: var(--dark-2);
  cursor: pointer;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}
.marquee-scroll-photo:hover { filter: brightness(1); }

@media (max-width: 768px) {
  .container { padding: 0 24px; }

  .stats-section { padding: 72px 0; }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .stat-number {
    font-size: clamp(3.75rem, 18vw, 5.5rem);
    letter-spacing: -0.04em;
  }
  .screen-readers { padding: 88px 0; }
  .sr-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .heading-lg {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
  .hero-headline {
    font-size: 40px;
    letter-spacing: -1.2px;
  }
  .meet-finsight { padding: 96px 0; }
  .display-heading {
    font-size: 48px;
    letter-spacing: -1.5px;
  }
  .phone-rings-wrap {
    height: 430px;
    width: min(430px, 100%);
  }
  .ring-1 { height: 250px; width: 250px; }
  .ring-2 { height: 320px; width: 320px; }
  .ring-3 { height: 390px; width: 390px; }
  .ring-4 { height: 450px; width: 450px; }
  .phone-portrait {
    border-radius: 32px;
    height: 410px;
    width: 216px;
  }
  .team-cards-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .team-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
