/* =========================================================================
   Investor Landing Page — 2026
   Scoped under .landing-investors. Tokens: Montserrat · brand #4739C2 ·
   dark #0F0E0C · light #FCFCFC/#F6F5F4 · card #EEEDEB · ink #1a1a1a · body #4a4a4a
   ========================================================================= */

.landing-investors {
  --brand: #4739C2;
  --brand-hover: #3a2ea6;
  --dark: #0F0E0C;
  --dark-2: #17161a;
  --ink: #1a1a1a;
  --body: #4a4a4a;
  --muted: #7b7b7b;
  --light: #FCFCFC;
  --cream: #F6F5F4;
  --card: #EEEDEB;
  --line: #e4e3e1;
  --sans: 'Montserrat', sans-serif;

  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
.landing-investors *,
.landing-investors *::before,
.landing-investors *::after { box-sizing: border-box; }
.landing-investors img { max-width: 100%; display: block; }
.landing-investors h1, .landing-investors h2, .landing-investors h3, .landing-investors p { margin: 0; }

.landing-investors .inv-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.landing-investors .desktop-only { display: inline-flex; }
.landing-investors .mobile-only { display: none; }

/* ---- Eyebrow ---- */
.landing-investors .inv-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
}
.landing-investors .inv-eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.landing-investors .inv-eyebrow-light { color: #fff; }
.landing-investors .inv-eyebrow-center { justify-content: center; }
/* Any eyebrow inside a dark section renders white (label was invisible on black). */
.landing-investors .inv-dark .inv-eyebrow { color: #fff; }

/* ---- Headings / body ---- */
.landing-investors .inv-h2 {
  font-size: 2.5rem; font-weight: 600; line-height: 1.12; letter-spacing: -0.015em;
  color: var(--ink); margin-top: 1rem; text-wrap: balance;
}
.landing-investors .inv-h2-light { color: #fff; }
.landing-investors .inv-center { text-align: center; }
.landing-investors .inv-body { font-size: 1.0625rem; line-height: 1.7; color: var(--body); margin-top: 1.25rem; max-width: 42ch; }
.landing-investors .inv-body-light { color: rgba(255,255,255,0.72); }

/* ---- Buttons ---- */
.landing-investors .inv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap; cursor: pointer;
  border: none; border-radius: 999px; padding: 15px 32px; line-height: 1;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.landing-investors .inv-btn-white { background: #fff; color: var(--ink); }
.landing-investors .inv-btn-white:hover { background: #ececec; }
.landing-investors .inv-btn-purple { background: var(--brand); color: #fff; }
.landing-investors .inv-btn-purple:hover { background: var(--brand-hover); }
.landing-investors .inv-btn-dark { background: #303030; color: #fff; padding: 11px 26px; }
.landing-investors .inv-btn-dark:hover { background: var(--brand); }

/* ---- Section base ---- */
.landing-investors .inv-sec { padding: 110px 0; }
.landing-investors .inv-light { background: var(--light); color: var(--ink); }
.landing-investors .inv-dark { background: var(--dark); color: #fff; }

/* =========================== HEADER =========================== */
.landing-investors .inv-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.admin-bar .landing-investors .inv-header { top: 32px; }
.landing-investors .inv-header.is-scrolled { background: rgba(15,14,12,0.92); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.landing-investors .inv-header-inner { max-width: 1280px; margin: 0 auto; padding: 18px 40px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.landing-investors .inv-logo img { height: 30px; width: auto; }
.landing-investors .inv-nav { gap: 2rem; }
.landing-investors .inv-nav a {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; text-decoration: none; text-shadow: 0 1px 2px rgba(0,0,0,.3); transition: color .2s ease;
}
.landing-investors .inv-nav a:hover { color: #c8c3ff; }
.landing-investors .inv-header-actions { display: flex; align-items: center; gap: 1rem; }

/* Burger */
.landing-investors .inv-burger { background: none; border: none; cursor: pointer; width: 30px; height: 22px; position: relative; padding: 0; }
.landing-investors .inv-burger span { position: absolute; left: 0; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.landing-investors .inv-burger span:nth-child(1) { top: 0; }
.landing-investors .inv-burger span:nth-child(2) { top: 10px; }
.landing-investors .inv-burger span:nth-child(3) { top: 20px; }
.landing-investors .inv-header.menu-open .inv-burger span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.landing-investors .inv-header.menu-open .inv-burger span:nth-child(2) { opacity: 0; }
.landing-investors .inv-header.menu-open .inv-burger span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.landing-investors .inv-mobile-menu {
  display: none; flex-direction: column; gap: 0.5rem; padding: 1rem 40px 2rem;
  background: rgba(15,14,12,0.98); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.landing-investors .inv-header.menu-open .inv-mobile-menu { display: flex; }
.landing-investors .inv-mm-link { color: #fff; text-decoration: none; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.landing-investors .inv-mm-cta { margin-top: 1rem; align-self: flex-start; }

/* Trust badges. This header is dark in both states — transparent over the hero,
   rgba(15,14,12,0.92) scrolled — so no invert rule is needed. Left-aligned to
   match .inv-mm-cta; this menu is a dropdown panel, not a full-screen overlay,
   and has no stagger animation, so the strip simply appears with the panel. */
.landing-investors .inv-mm-badges { margin-top: 20px; }
.landing-investors .inv-mm-badges .trust-badges--mobile { justify-content: flex-start; }

/* =========================== HERO =========================== */
/* Constrained hero (not full viewport). Full-bleed background media — video-ready,
   image fallback for the mockup. The "assistant card" lives inside the video. */
.landing-investors .inv-hero { position: relative; background: var(--dark); color: #fff; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.landing-investors .inv-hero-media { position: absolute; inset: 0; overflow: hidden; }
.landing-investors .inv-hero-fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.landing-investors .inv-hero-img { background-size: cover; background-position: center right; }
.landing-investors .inv-hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(15,14,12,0.95) 0%, rgba(15,14,12,0.72) 30%, rgba(15,14,12,0.25) 62%, rgba(15,14,12,0.12) 100%); }
.landing-investors .inv-hero-inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 120px 40px 90px; width: 100%; }
.landing-investors .inv-hero-text { max-width: 620px; }
.landing-investors .inv-hero-title { font-size: 3.25rem; font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; margin: 1.5rem 0 0; text-wrap: balance; }
.landing-investors .inv-hero-body { font-size: 1.125rem; line-height: 1.6; color: rgba(255,255,255,0.8); margin: 1.75rem 0 0; max-width: 40ch; }
.landing-investors .inv-hero-ctas { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

/* =========================== PROBLEM =========================== */
.landing-investors .inv-problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.landing-investors .inv-problem-cards { display: flex; flex-direction: column; gap: 1rem; }
.landing-investors .inv-pcard { display: flex; align-items: center; gap: 1.25rem; background: var(--card); border-radius: 18px; padding: 1.5rem 1.75rem; }
.landing-investors .inv-pcard-icon { flex: none; width: 56px; height: 56px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.landing-investors .inv-pcard-icon img { width: 26px; height: 26px; object-fit: contain; }
.landing-investors .inv-pcard-text h3 { font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.landing-investors .inv-pcard-text p { font-size: 0.95rem; color: var(--muted); margin-top: 0.25rem; }

/* =========================== CTA BAND =========================== */
.landing-investors .inv-ctaband { position: relative; background-size: cover; background-position: center; padding: 120px 40px; text-align: center; }
.landing-investors .inv-ctaband::before { content: ""; position: absolute; inset: 0; background: rgba(30,35,40,0.35); }
.landing-investors .inv-ctaband-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.landing-investors .inv-ctaband-title { color: #fff; font-size: 2rem; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; text-wrap: balance; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.landing-investors .inv-ctaband .inv-btn { margin-top: 2rem; }

/* =========================== TIMING =========================== */
.landing-investors .inv-timing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.landing-investors .inv-tcard { border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 1.75rem; background: rgba(255,255,255,0.02); }
.landing-investors .inv-tcard-num { font-size: 0.8rem; font-weight: 700; color: var(--brand); letter-spacing: 0.05em; }
.landing-investors .inv-tcard h3 { font-size: 1.4rem; font-weight: 600; color: #fff; margin-top: 0.75rem; }
.landing-investors .inv-tcard p { font-size: 0.95rem; line-height: 1.5; color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
.landing-investors .inv-equation { margin-top: 2rem; background: var(--cream); border-radius: 20px; padding: 2.5rem 2rem; text-align: center; }
.landing-investors .inv-eq-line { font-size: 1.75rem; font-weight: 700; color: var(--ink); display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.6rem; }
.landing-investors .inv-eq-line em { color: var(--brand); font-style: normal; }
.landing-investors .inv-eq-sub { font-size: 1rem; color: var(--muted); margin-top: 0.9rem; }

/* =========================== ROI (stats + video) =========================== */
.landing-investors .inv-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 2.5rem; }
.landing-investors .inv-stat { padding: 0.5rem 1.5rem; border-left: 1px solid var(--line); }
.landing-investors .inv-stat:first-child { border-left: none; padding-left: 0; }
.landing-investors .inv-stat-num { font-size: 2.75rem; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.landing-investors .inv-stat-label { font-size: 1rem; font-weight: 500; color: var(--ink); margin-top: 0.6rem; }
.landing-investors .inv-video { margin: 3rem 0 0; text-align: center; }
.landing-investors .inv-video-play { position: relative; display: block; width: 100%; border: none; padding: 0; background: none; cursor: pointer; border-radius: 20px; overflow: hidden; }
.landing-investors .inv-video-poster { width: 100%; height: auto; display: block; border-radius: 20px; }
.landing-investors .inv-video-btn { position: absolute; inset: 0; margin: auto; width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; }
.landing-investors .inv-video-btn img { width: 84px; height: 84px; }
.landing-investors .inv-video figcaption { font-size: 1rem; color: var(--body); margin-top: 1.25rem; }
.landing-investors .inv-video-yt { position: relative; }
.landing-investors .inv-video-el, .landing-investors .inv-video-frame { width: 100%; aspect-ratio: 16 / 9; border: none; border-radius: 20px; display: block; background: #000; }
.landing-investors .inv-hubspot { margin-top: 2.5rem; text-align: left; }

/* =========================== GTM =========================== */
.landing-investors .inv-gtm-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center; }
.landing-investors .inv-gtm-media img { width: 100%; border-radius: 14px; }
.landing-investors .inv-gtm-media figcaption { display: none; }
.landing-investors .inv-rule { border: none; border-top: 1px solid rgba(255,255,255,0.14); margin: 2rem 0; }
.landing-investors .inv-gtm-logos { display: grid; grid-template-columns: repeat(4, auto); gap: 2.5rem; align-items: center; justify-content: start; }
.landing-investors .inv-gtm-logo img { max-height: 34px; width: auto; opacity: 0.92; }

/* =========================== INVESTORS =========================== */
.landing-investors .inv-investors-grid { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 3.5rem; align-items: start; }
.landing-investors .inv-investors-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.landing-investors .inv-people-col, .landing-investors .inv-firms-col { display: flex; flex-direction: column; gap: 1rem; }
.landing-investors .inv-person { display: flex; align-items: center; gap: 1rem; background: var(--card); border-radius: 16px; padding: 1.1rem 1.25rem; }
.landing-investors .inv-person-pic img { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; }
/* Company rows (UST) carry a logo, not a headshot. object-fit:cover would crop a
   square mark to the edges, so contain it on a white chip with breathing room.
   background is set explicitly rather than inherited — .inv-person uses var(--card),
   which is not guaranteed to be white. */
.landing-investors .inv-person-pic-logo img { object-fit: contain; background: #fff; padding: 9px; }
.landing-investors .inv-person-text h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.landing-investors .inv-person-text p { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }
.landing-investors .inv-firm { background: var(--card); border-radius: 16px; display: flex; align-items: center; justify-content: center; padding: 1.5rem; min-height: 96px; }
.landing-investors .inv-firm img { max-height: 42px; width: auto; }

/* Honeypot: off-screen rather than display:none — some bots skip hidden fields,
   and screen readers are handled by aria-hidden + tabindex="-1" on the wrapper. */
.landing-investors .inv-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Submit error. Colour/size/weight set explicitly: landing pages still load
   main.css/styles.css, whose bare `p` rule would otherwise win over inheritance. */
.landing-investors .inv-form-error {
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 500; line-height: 1.5;
  color: #ffd7d7; background: rgba(179, 45, 46, 0.28); border: 1px solid rgba(255, 145, 145, 0.5);
  border-radius: 10px; padding: 0.7rem 1rem; margin: 0 auto 1rem; max-width: 640px; text-align: center;
}

/* =========================== FOOT CTA =========================== */
.landing-investors .inv-footcta { background-size: cover; background-position: center; text-align: center; }
.landing-investors .inv-footcta-inner { max-width: 900px; }
.landing-investors .inv-footcta .inv-h2 { margin-top: 1rem; }
.landing-investors .inv-footcta .inv-body { margin-left: auto; margin-right: auto; max-width: 58ch; }
.landing-investors .inv-form { display: flex; gap: 1rem; margin: 2.5rem 0 0; align-items: stretch; }
.landing-investors .inv-form input {
  flex: 1; min-width: 0; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 0 1.5rem; height: 56px; color: #fff; font-family: var(--sans); font-size: 0.95rem;
}
.landing-investors .inv-form input::placeholder { color: rgba(255,255,255,0.45); }
.landing-investors .inv-form input:focus { outline: none; border-color: var(--brand); }
.landing-investors .inv-form .inv-btn { flex: none; height: 56px; }
.landing-investors .inv-download { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.75rem; color: #fff; font-size: 0.95rem; text-decoration: underline; text-underline-offset: 3px; }
.landing-investors .inv-download:hover { color: #c8c3ff; }

/* =========================== FOOTER =========================== */
.landing-investors .inv-footer { background: var(--dark); color: #fff; padding: 3.5rem 0 2.5rem; }
.landing-investors .inv-footer-top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.landing-investors .inv-footer-logo img { height: 30px; width: auto; }
.landing-investors .inv-partners { display: flex; align-items: center; gap: 1.5rem; }
.landing-investors .inv-partners-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.landing-investors .inv-partner-logo { max-height: 26px; width: auto; opacity: 0.85; }
.landing-investors .inv-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.landing-investors .inv-copy { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.landing-investors .inv-socials { display: flex; gap: 1.25rem; }
.landing-investors .inv-socials img { height: 20px; width: auto; opacity: 0.8; transition: opacity .2s ease; }
.landing-investors .inv-socials a:hover img { opacity: 1; }

/* =========================== RESPONSIVE =========================== */
@media (max-width: 980px) {
  .landing-investors .inv-sec { padding: 72px 0; }
  .landing-investors .inv-inner { padding: 0 24px; }
  .landing-investors .inv-h2 { font-size: 2rem; }
  .landing-investors .inv-hero-title { font-size: 2.25rem; }

  .landing-investors .desktop-only { display: none !important; }
  .landing-investors .mobile-only { display: inline-flex !important; }
  .landing-investors .inv-header-inner { padding: 14px 24px; }

  /* Hero → stacked, media as full background */
  .landing-investors .inv-hero { min-height: 560px; }
  .landing-investors .inv-hero-img { background-position: center top; }
  .landing-investors .inv-hero-media::before { background: linear-gradient(180deg, rgba(15,14,12,0.2) 0%, rgba(15,14,12,0.55) 45%, var(--dark) 88%); }
  .landing-investors .inv-hero-inner { padding: 110px 24px 56px; }
  .landing-investors .inv-hero-text { max-width: 100%; }
  .landing-investors .inv-hero-ctas { flex-direction: column; align-items: stretch; }
  .landing-investors .inv-hero-ctas .inv-btn-purple { order: -1; }

  .landing-investors .inv-problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .landing-investors .inv-pcard { flex-direction: column; text-align: center; }

  .landing-investors .inv-ctaband-title { font-size: 1.5rem; }

  .landing-investors .inv-timing-cards { grid-template-columns: 1fr; }
  .landing-investors .inv-eq-line { flex-direction: column; font-size: 1.4rem; gap: 0.25rem; }

  .landing-investors .inv-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .landing-investors .inv-stat { border-left: 3px solid var(--brand); padding-left: 1rem; }
  .landing-investors .inv-stat:first-child { border-left: 3px solid var(--brand); padding-left: 1rem; }

  .landing-investors .inv-gtm-grid { grid-template-columns: 1fr; gap: 2rem; }
  .landing-investors .inv-gtm-media { order: 2; }
  .landing-investors .inv-gtm-logos { grid-template-columns: 1fr 1fr; gap: 1.5rem; justify-items: center; }

  .landing-investors .inv-investors-grid { grid-template-columns: 1fr; gap: 2rem; }
  .landing-investors .inv-investors-cards { grid-template-columns: 1fr; }

  .landing-investors .inv-form { flex-direction: column; }
  .landing-investors .inv-form .inv-btn { width: 100%; }

  .landing-investors .inv-footer-top, .landing-investors .inv-footer-bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
