/* ==================================================================
   BEVERON — INVESTORS & PARTNERS
   Modern, animation-rich page styles. Scoped to #inv2 so it never
   touches the shared nav header or master_footer. The wrapper also
   carries .bv-page, so TYPOGRAPHY (font family, sizes, weights) is
   inherited from beveron-common.css; layout/animation lives here.
   Brand theme preserved: cyan #0084c8, navy #0b1a2b / #212f3c.
   ================================================================== */

/* smooth in-page anchor scrolling (Request Investor Deck, etc.) */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

#inv2 {
  --brand: #0084c8;
  --brand-dark: #006b9f;
  --brand-light: #e0f2fe;
  --ice: #6ec6ee;
  --navy: #0b1a2b;
  --navy-2: #122a44;
  --ink: #0f172a;
  --ink-2: #475569;
  --ink-3: #64748b;
  --bg: #ffffff;
  --bg-soft: #f6f9fc;
  --bg-alt: #eef4fb;
  --line: #e2e8f0;
  --warm: #fae251;
  --on-dark: #e2e8f0;
  --on-dark-mute: #94a3b8;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --shadow-sm: 0 2px 10px rgba(11, 26, 43, 0.06);
  --shadow-md: 0 14px 40px -16px rgba(11, 26, 43, 0.18);
  --shadow-lg: 0 30px 70px -24px rgba(11, 26, 43, 0.28);
  --glow: 0 18px 50px -12px rgba(0, 132, 200, 0.45);

  /* Typography comes from beveron-common.css (.bv-page provides --font-sans / --font-mono) */
  --font: var(
    --font-sans,
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif
  );
  --font-display: var(
    --font-sans,
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif
  );
  --mono: var(--font-mono, "JetBrains Mono", "Roboto Mono", monospace);

  --maxw: 1200px;

  font-family: var(--font);
  color: var(--ink);
  line-height: 1.65;
  background: var(--bg);
  /* clip (not hidden) — hidden makes #inv2 a scroll container and breaks the
     position:sticky horizontal portfolio scroller. clip clips without that. */
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
#inv2 *,
#inv2 *::before,
#inv2 *::after {
  box-sizing: border-box;
}
#inv2 img {
  max-width: 100%;
  height: auto;
  display: block;
}
#inv2 a {
  text-decoration: none;
  color: inherit;
}
/* All in-page headings use ONE font (from beveron-common.css) — overrides legacy style.css h1–h4 so card titles stay consistent */
#inv2 h1,
#inv2 h2,
#inv2 h3,
#inv2 h4,
#inv2 h5,
#inv2 h6 {
  font-family: var(--font-display);
}

/* ---------- SCROLL PROGRESS BAR ---------- */
#inv2-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 9999;
  background: linear-gradient(90deg, var(--brand), var(--ice));
  box-shadow: 0 0 12px rgba(0, 132, 200, 0.6);
  transition: width 0.08s linear;
}

/* ---------- LAYOUT ---------- */
#inv2 .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
#inv2 .wrap-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
#inv2 .sec {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

#inv2 .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--brand-light);
  color: var(--brand-dark);
  border: 1px solid rgba(0, 132, 200, 0.18);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#inv2 .eyebrow i {
  color: var(--brand);
}
#inv2 .eyebrow.on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--on-dark);
}
#inv2 .eyebrow.on-dark i {
  color: var(--ice);
}

#inv2 .h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 18px;
}
#inv2 .lead {
  font-size: 1.06rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
}
#inv2 .lead a,
#inv2 .faq-a a {
  color: var(--brand);
  font-weight: 600;
}
#inv2 .dark .lead a {
  color: var(--ice);
}
#inv2 .sec-head {
  max-width: 760px;
}
#inv2 .sec-head.center {
  margin: 0 auto;
  text-align: center;
}
#inv2 .grad-text {
  background: linear-gradient(
    100deg,
    var(--brand) 0%,
    var(--ice) 60%,
    var(--brand) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: inv-shine 6s linear infinite;
}
@keyframes inv-shine {
  to {
    background-position: 200% center;
  }
}

/* ---------- BUTTONS ---------- */
#inv2 .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.6px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.2s ease;
  font-family: var(--font);
  width: auto; /* neutralize common .bv-page .btn-primary width:100% */
  margin-top: 0;
}
#inv2 .btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--glow);
}
#inv2 .btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -12px rgba(0, 132, 200, 0.55);
}
#inv2 .btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
#inv2 .btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-3px);
}
#inv2 .btn-light {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}
#inv2 .btn-light:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -10px rgba(0, 132, 200, 0.5);
}
#inv2 .btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(110, 198, 238, 0.5);
}
#inv2 .btn-outline-light:hover {
  border-color: var(--ice);
  color: var(--ice);
  background: rgba(110, 198, 238, 0.1);
  transform: translateY(-3px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
#inv2 .rv {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
#inv2 .rv-l {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
#inv2 .rv-r {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
#inv2 .rv-sc {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
#inv2 .is-in {
  opacity: 1;
  transform: none;
}
#inv2 [data-d="1"] {
  transition-delay: 0.1s;
}
#inv2 [data-d="2"] {
  transition-delay: 0.2s;
}
#inv2 [data-d="3"] {
  transition-delay: 0.3s;
}
#inv2 [data-d="4"] {
  transition-delay: 0.4s;
}
#inv2 [data-d="5"] {
  transition-delay: 0.5s;
}

/* ==================================================================
   HERO — aurora gradient + floating blobs + staggered entrance
   LCP element is the H1 text (no image dependency).
   ================================================================== */
#inv2 .hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 88px 0 36px;
  overflow: hidden;
  /* matches the Secure On-Premise AI hero background exactly */
  background:
    radial-gradient(
      1200px 600px at 80% -10%,
      rgba(0, 132, 200, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 30%,
      rgba(0, 132, 200, 0.07),
      transparent 60%
    ),
    linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}
#inv2 .hero-aurora {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 140%;
  background:
    radial-gradient(
      40% 40% at 20% 30%,
      rgba(0, 132, 200, 0.1),
      transparent 70%
    ),
    radial-gradient(
      36% 36% at 80% 20%,
      rgba(0, 132, 200, 0.08),
      transparent 70%
    ),
    radial-gradient(
      40% 40% at 60% 80%,
      rgba(0, 132, 200, 0.07),
      transparent 70%
    );
  filter: blur(16px);
  animation: inv-aurora 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes inv-aurora {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-3%, 2%, 0) scale(1.06);
  }
  100% {
    transform: translate3d(3%, -2%, 0) scale(1.02);
  }
}
#inv2 .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: inv-float 9s ease-in-out infinite;
}
#inv2 .hero-blob.b1 {
  width: 16px;
  height: 16px;
  background: var(--brand);
  top: 26%;
  left: 12%;
}
#inv2 .hero-blob.b2 {
  width: 10px;
  height: 10px;
  background: var(--ice);
  top: 64%;
  left: 22%;
  animation-delay: 1.5s;
}
#inv2 .hero-blob.b3 {
  width: 22px;
  height: 22px;
  background: var(--brand-light);
  top: 30%;
  right: 16%;
  animation-delay: 0.8s;
}
#inv2 .hero-blob.b4 {
  width: 12px;
  height: 12px;
  background: var(--warm);
  bottom: 22%;
  right: 26%;
  animation-delay: 2.2s;
}
@keyframes inv-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}
#inv2 .hero .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
}
#inv2 .hero-inner {
  max-width: 940px;
}
#inv2 .hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--ink);
}
#inv2 .hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 0 26px;
}
#inv2 .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  justify-content: flex-start;
}

/* entrance stagger (plays on load) */
#inv2 .hero .anim {
  opacity: 0;
  transform: translateY(26px);
  animation: inv-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
#inv2 .hero .anim.a1 {
  animation-delay: 0.05s;
}
#inv2 .hero .anim.a2 {
  animation-delay: 0.18s;
}
#inv2 .hero .anim.a3 {
  animation-delay: 0.31s;
}
#inv2 .hero .anim.a4 {
  animation-delay: 0.44s;
}
#inv2 .hero .anim.a5 {
  animation-delay: 0.57s;
}
@keyframes inv-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

/* hero KPI strip */
#inv2 .hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---------- HERO SPLIT LAYOUT + VISUALS ---------- */
#inv2 .hero-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 3vh, 34px);
  width: 100%;
}
#inv2 .hero-grid {
  display: block;
}
#inv2 .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
#inv2 .hero-illust {
  position: relative;
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 30px 50px rgba(0, 132, 200, 0.18));
}
#inv2 .hero-illust svg {
  width: 100%;
  height: auto;
  display: block;
}
#inv2 .hero-pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 14px 8px 8px;
  box-shadow: var(--shadow-md);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  animation: inv-float 7s ease-in-out infinite;
}
#inv2 .hero-pill i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.74rem;
}
#inv2 .hero-pill.hp1 {
  top: 4%;
  left: 0;
}
#inv2 .hero-pill.hp2 {
  top: 28%;
  right: -2%;
  animation-delay: 1s;
}
#inv2 .hero-pill.hp3 {
  bottom: 20%;
  left: -2%;
  animation-delay: 2s;
}
#inv2 .hero-pill.hp4 {
  bottom: 2%;
  right: 6%;
  animation-delay: 1.5s;
}

/* ---------- THE OPPORTUNITY (image + cards) ---------- */
#inv2 .opp-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  align-items: stretch;
  margin-top: 50px;
}
#inv2 .opp-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  /* the cards (right column) set the height; the image is absolutely positioned so it
     fills this column WITHOUT its own intrinsic size dictating the row height */
  background: linear-gradient(160deg, var(--brand-light), var(--bg-soft));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
#inv2 .opp-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#inv2 .opp-grid .prob-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
}

/* ---------- VISION (split + points) ---------- */
#inv2 .vision-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
#inv2 .vision-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
}
#inv2 .vision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#inv2 .vision-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#inv2 .vision-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
#inv2 .vision-points li i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
#inv2 .vision-points strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.98rem;
}
#inv2 .vision-points span {
  display: block;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.55;
}
#inv2 .kpi {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
#inv2 .kpi:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
#inv2 .kpi i {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  flex-shrink: 0;
}
#inv2 .kpi strong {
  display: block;
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.2;
}
#inv2 .kpi span {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-3);
}
#inv2 .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--ink-3);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: inv-float 2.4s ease-in-out infinite;
}
#inv2 .scroll-cue i {
  color: var(--brand);
}

/* ---------- MARQUEE ---------- */
#inv2 .marquee {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#inv2 .marquee-track {
  display: inline-flex;
  gap: 48px;
  padding-left: 48px;
  animation: inv-marquee 26s linear infinite;
}
#inv2 .marquee:hover .marquee-track {
  animation-play-state: paused;
}
#inv2 .marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--on-dark);
}
#inv2 .marquee-item i {
  color: var(--ice);
}
@keyframes inv-marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- SECTION BG RHYTHM ---------- */
#inv2 .bg-soft {
  background: var(--bg-soft);
}
#inv2 .bg-alt {
  background: var(--bg-alt);
}

/* ---------- TWO-COLUMN CARDS (Why Now) ---------- */
#inv2 .duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 50px;
}
#inv2 .duo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 42px 38px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
#inv2 .duo-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
#inv2 .duo-ico {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 20px;
}
#inv2 .duo-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
#inv2 .duo-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ---------- FOUNDER ---------- */
#inv2 .founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
  align-items: center;
}
#inv2 .founder-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
#inv2 .founder-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
#inv2 .founder-photo-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, var(--brand-light), var(--bg-soft));
  overflow: hidden;
}
#inv2 .founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(11, 26, 43, 0.32));
}
#inv2 .founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#inv2 .founder-badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-dark);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
#inv2 .founder-badge i {
  color: var(--brand);
}
#inv2 .founder-meta {
  padding: 22px 26px 26px;
}
#inv2 .founder-meta h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--ink);
}
#inv2 .founder-org {
  color: var(--ink-3);
  font-size: 0.9rem;
  margin: 0 0 16px;
}
#inv2 .founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  transition:
    gap 0.3s ease,
    color 0.2s ease;
}
#inv2 .founder-card:hover .founder-link {
  gap: 12px;
  color: var(--brand-dark);
}
#inv2 .founder-quote {
  position: relative;
  border-left: 3px solid var(--brand);
  padding: 2px 0 2px 28px;
  font-family: var(--font);
  font-style: italic;
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  margin: 24px 0 28px;
}
#inv2 .founder-quote cite {
  display: block;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  font-style: normal;
  color: var(--ink-3);
  font-family: var(--font);
}

/* ==================================================================
   HORIZONTAL PINNED SCROLL — vertical scroll drives sideways travel
   ================================================================== */
#inv2 .hscroll {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
}
#inv2 .hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#inv2 .hscroll-bg::before,
#inv2 .hscroll-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#inv2 .hscroll-bg::before {
  width: 540px;
  height: 540px;
  background: var(--brand);
  opacity: 0.1;
  top: -160px;
  right: -120px;
}
#inv2 .hscroll-bg::after {
  width: 420px;
  height: 420px;
  background: var(--ice);
  opacity: 0.07;
  bottom: -160px;
  left: -100px;
}
#inv2 .hscroll-track {
  display: flex;
  gap: 32px;
  /* Left pad aligns the intro with the page container; right pad is just a
     small end gutter so the LAST panel finishes flush — a large right pad here
     was inflating scrollWidth and creating empty "invisible" scroll space. */
  padding-left: max(24px, calc((100vw - var(--maxw)) / 2 + 24px));
  /* generous trailing gutter so the LAST card has breathing room before the
     section unpins (otherwise the page drops to the next section too abruptly) */
  padding-right: max(40px, 16vw);
  will-change: transform;
}
#inv2 .h-intro {
  flex: 0 0 min(78vw, 560px);
  align-self: center;
  color: #fff;
}
#inv2 .h-intro .h2 {
  color: #fff;
}
#inv2 .h-intro .lead {
  color: var(--on-dark-mute);
}
#inv2 .h-step {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--ice);
  margin-bottom: 14px;
  display: inline-block;
}
#inv2 .h-panel {
  flex: 0 0 min(80vw, 460px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-lg);
  padding: 44px 38px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
#inv2 .h-panel:hover {
  border-color: var(--brand);
  transform: translateY(-6px);
}
#inv2 .h-panel-num {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--ice);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
#inv2 .h-panel-ico {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(0, 132, 200, 0.35),
    rgba(110, 198, 238, 0.18)
  );
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
#inv2 .h-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
#inv2 .h-panel p {
  color: var(--on-dark-mute);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 22px;
}
#inv2 .h-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#inv2 .h-panel li {
  display: flex;
  gap: 10px;
  color: var(--on-dark);
  font-size: 0.92rem;
}
#inv2 .h-panel li i {
  color: var(--ice);
  margin-top: 4px;
  font-size: 0.82rem;
  flex-shrink: 0;
}
#inv2 .h-panel .h-tag {
  margin-top: auto;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
}
#inv2 .h-panel .h-explore {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}
#inv2 .h-panel:hover .h-explore {
  gap: 12px;
  color: var(--ice);
}
/* progress rail */
#inv2 .hscroll-rail {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
#inv2 .hscroll-rail span {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  transition:
    background 0.25s ease,
    width 0.25s ease;
}
#inv2 .hscroll-rail span.on {
  background: var(--ice);
  width: 44px;
}
#inv2 .hscroll-hint {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--on-dark-mute);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
#inv2 .hscroll-hint i {
  color: var(--ice);
}

/* ---------- PROBLEM (dark) ---------- */
#inv2 .dark {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
#inv2 .dark::before,
#inv2 .dark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#inv2 .dark::before {
  width: 500px;
  height: 500px;
  background: var(--brand);
  opacity: 0.09;
  top: -180px;
  left: -130px;
}
#inv2 .dark::after {
  width: 380px;
  height: 380px;
  background: var(--ice);
  opacity: 0.06;
  bottom: -160px;
  right: -110px;
}
#inv2 .dark .wrap {
  position: relative;
  z-index: 1;
}
#inv2 .dark .h2 {
  color: #fff;
}
#inv2 .dark .lead {
  color: var(--on-dark-mute);
}
#inv2 .prob-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
#inv2 .prob {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
#inv2 .prob:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
#inv2 .prob i {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}
#inv2 .prob h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
}
#inv2 .prob p {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* Dark-section card variants for the L/M/D rhythm (Traction + Invest sit on .dark) */
#inv2 .dark .trac,
#inv2 .dark .way {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(8px);
}
#inv2 .dark .trac:hover,
#inv2 .dark .way:hover {
  background: rgba(0, 132, 200, 0.08);
  border-color: var(--brand);
  transform: translateY(-4px);
}
#inv2 .dark .trac span {
  color: var(--on-dark);
}
#inv2 .dark .way h4 {
  color: #fff;
}
#inv2 .dark .way p {
  color: var(--on-dark-mute);
}
/* icon chips on dark sections use translucent cyan + ice (matches the system) */
#inv2 .dark .trac i,
#inv2 .dark .way-ico {
  background: rgba(0, 132, 200, 0.16);
  color: var(--ice);
}

/* Glassmorphism lead form on the dark Invest section */
#inv2 .dark .form-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.55);
}
#inv2 .dark .form-card h3 {
  color: #fff;
}
#inv2 .dark .f-field input,
#inv2 .dark .f-field select,
#inv2 .dark .f-field textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
#inv2 .dark .f-field input::placeholder,
#inv2 .dark .f-field textarea::placeholder {
  color: var(--on-dark-mute);
}
#inv2 .dark .f-field input:focus,
#inv2 .dark .f-field select:focus,
#inv2 .dark .f-field textarea:focus {
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(110, 198, 238, 0.18);
}
#inv2 .dark .f-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236ec6ee' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}
#inv2 .dark .f-field select option {
  background: var(--navy-2);
  color: #fff;
}

/* bk-dd custom dropdown (investor type + country) on the dark Invest form —
   the toggle matches the translucent glass inputs; the panel stays light + styled */
#inv2 .dark .bk-dd-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  min-height: 48px;
}
#inv2 .dark .bk-dd-toggle .bk-dd-placeholder {
  color: var(--on-dark-mute);
}
#inv2 .dark .bk-dd-toggle:hover {
  border-color: var(--ice);
}
#inv2 .dark .bk-dd-toggle.bk-dd-open {
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(110, 198, 238, 0.18);
}
#inv2 .dark .bk-dd-toggle .bk-dd-chev {
  color: var(--on-dark-mute);
}

/* The form's `.f-field input` rules (and the dark-form input override) also catch the
   country dropdown's search box — collapsing its left padding onto the magnifier icon
   and forcing dark/translucent styling onto its light panel. Restore the search box. */
#inv2 .f-field .bk-dd-search input,
#inv2 .dark .f-field .bk-dd-search input {
  padding: 9px 12px 9px 34px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}
#inv2 .dark .f-field .bk-dd-search input::placeholder {
  color: var(--ink-3);
}

/* ---------- WHY BEVERON ---------- */
#inv2 .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
#inv2 .why {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
#inv2 .why:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
#inv2 .why-ico {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
#inv2 .why h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}
#inv2 .why p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* ---------- INFO CARDS (Market opportunity, GCC landscape) ---------- */
#inv2 .grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}
#inv2 .info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
#inv2 .info-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
#inv2 .info-card .info-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
#inv2 .info-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
#inv2 .info-card p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
#inv2 .info-card.is-beveron {
  border-color: var(--brand);
  box-shadow: 0 14px 36px -16px rgba(0, 132, 200, 0.28);
}
/* dark-section variant */
#inv2 .dark .info-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
#inv2 .dark .info-card:hover {
  background: rgba(0, 132, 200, 0.08);
  border-color: var(--brand);
}
#inv2 .dark .info-card h3 {
  color: #fff;
}
#inv2 .dark .info-card p {
  color: var(--on-dark-mute);
}
#inv2 .dark .info-card .info-ico {
  background: rgba(0, 132, 200, 0.16);
  color: var(--ice);
}
#inv2 .dark .info-card.is-beveron {
  background: rgba(0, 132, 200, 0.12);
  border-color: var(--brand);
}

/* ---------- TRUST FACT CHIPS ---------- */
#inv2 .facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
#inv2 .fact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}
#inv2 .fact:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
}
#inv2 .fact i {
  color: var(--brand);
}

@media (max-width: 1024px) {
  /* Market Opportunity + GCC Landscape stay 3-up on tablet */
  #inv2 .grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ---------- TRACTION CHIPS ---------- */
#inv2 .trac-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}
#inv2 .trac {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
#inv2 .trac:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
#inv2 .trac i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
#inv2 .trac span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

/* ---------- ROADMAP TIMELINE ---------- */
#inv2 .road {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 54px;
}
#inv2 .road-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
#inv2 .road-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
#inv2 .road-when {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
#inv2 .road-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--ink);
}
#inv2 .road-card p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}

/* ---------- VISION ---------- */
#inv2 .vision {
  text-align: center;
}
#inv2 .vision .h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
}

/* ---------- FAQ ---------- */
#inv2 .faq {
  max-width: 860px;
  margin: 36px auto 0;
}
#inv2 details.faq-i {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
#inv2 details.faq-i[open] {
  border-color: var(--brand);
  box-shadow: 0 10px 30px -12px rgba(0, 132, 200, 0.18);
}
#inv2 details.faq-i summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  color: var(--ink);
}
#inv2 details.faq-i summary::-webkit-details-marker {
  display: none;
}
#inv2 details.faq-i summary i {
  color: var(--ink-3);
  font-size: 0.8rem;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  flex-shrink: 0;
}
#inv2 details.faq-i[open] summary i {
  transform: rotate(180deg);
  color: var(--brand);
}
#inv2 details.faq-i .faq-a {
  padding: 0 24px 20px;
  color: var(--ink-2);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ---------- FORM ---------- */
#inv2 .form-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
  margin-top: 50px;
}
#inv2 .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
#inv2 .form-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 22px;
  color: var(--ink);
}
#inv2 .f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
#inv2 .f-field {
  margin-bottom: 16px;
}
#inv2 .f-field input,
#inv2 .f-field select,
#inv2 .f-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
#inv2 .f-field input::placeholder,
#inv2 .f-field textarea::placeholder {
  color: var(--ink-3);
}
#inv2 .f-field input:focus,
#inv2 .f-field select:focus,
#inv2 .f-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 132, 200, 0.12);
}
#inv2 .f-field select {
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230084c8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
#inv2 .f-field textarea {
  resize: vertical;
  min-height: 110px;
}
#inv2 .f-err {
  color: #ef4444;
  font-size: 0.8rem;
  min-height: 16px;
  display: block;
  margin-top: 5px;
}
#inv2 .f-msg {
  text-align: center;
  font-weight: 600;
  margin-top: 12px;
  min-height: 22px;
}
#inv2 .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
#inv2 .form-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

#inv2 .ways {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#inv2 .way {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
#inv2 .way:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
#inv2 .way-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
#inv2 .way h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ink);
}
#inv2 .way p {
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* ---------- FINAL CTA ---------- */
/* Final CTA: LIGHT section so it separates cleanly from the dark form above,
   with the conversion content in a vivid cyan card that carries the accent. */
#inv2 .final {
  position: relative;
  text-align: center;
  padding: clamp(56px, 8vw, 100px) 24px;
  background: var(--bg-alt);
}
#inv2 .final .wrap-narrow {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(
      640px 340px at 80% -30%,
      rgba(0, 132, 200, 0.35),
      transparent 65%
    ),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  color: #fff;
  box-shadow: 0 30px 60px -32px rgba(11, 26, 43, 0.45);
}
#inv2 .final .wrap-narrow::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0, 132, 200, 0.18);
  bottom: -180px;
  left: -110px;
  pointer-events: none;
}
#inv2 .final .wrap-narrow {
  position: relative;
  z-index: 1;
}
#inv2 .final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
}
#inv2 .final p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0 auto 30px;
  max-width: 660px;
}
#inv2 .final-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1024px) {
  /* Tablet keeps the laptop layout: image rows stay 2-col (founder / opportunity /
     vision), traction 2-up, why-now 2-up, KPIs stay 4-up. Only the form + hero stack. */
  #inv2 .form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  #inv2 .why-grid,
  #inv2 .prob-grid,
  #inv2 .trac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Roadmap stays 3-up on tablet */
  #inv2 .road {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  /* Tablet only: trim the portfolio scroller's trailing gutter so it doesn't add
     empty scroll space (pairs with the lower tablet dwell to cut section height) */
  #inv2 .hscroll-track {
    padding-right: max(40px, 5vw);
  }
  #inv2 .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  #inv2 .hero-visual {
    max-width: 460px;
    margin: 8px auto 0;
  }
  #inv2 .hero {
    min-height: auto;
    padding: 100px 0 48px;
  }
  /* Tablet: the 3 "ways to engage" cards sit 3-in-a-row */
  #inv2 .ways {
    flex-direction: row;
  }
  #inv2 .way {
    flex: 1 1 0;
  }
}
@media (max-width: 640px) {
  #inv2 .hero {
    min-height: auto;
    padding: 104px 0 60px;
  }
  #inv2 .why-grid,
  #inv2 .prob-grid,
  #inv2 .f-row,
  #inv2 .duo,
  #inv2 .founder-grid,
  #inv2 .opp-grid,
  #inv2 .vision-grid,
  #inv2 .trac-grid,
  #inv2 .grid-3,
  #inv2 .road {
    grid-template-columns: 1fr;
  }
  #inv2 .hero-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
  #inv2 .opp-media {
    aspect-ratio: 4 / 3;
  }
  #inv2 .ways {
    flex-direction: column;
  }
  #inv2 .way {
    flex: 1 1 auto;
  }
  #inv2 .duo-card,
  #inv2 .form-card {
    padding: 30px 24px;
  }
  #inv2 .hero-visual {
    display: none;
  }
  #inv2 .scroll-cue {
    display: none;
  }
  /* Horizontal scroller falls back to a normal vertical stack on small screens */
  #inv2 .hscroll {
    height: auto !important;
  }
  #inv2 .hscroll-sticky {
    position: static;
    height: auto;
    display: block;
    padding: 64px 0;
  }
  #inv2 .hscroll-track {
    transform: none !important;
    flex-direction: column;
    padding: 0 20px;
  }
  #inv2 .h-intro,
  #inv2 .h-panel {
    flex: 1 1 auto;
    width: 100%;
  }
  #inv2 .hscroll-rail,
  #inv2 .hscroll-hint {
    display: none;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  #inv2 *,
  #inv2 *::before,
  #inv2 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  #inv2 .rv,
  #inv2 .rv-l,
  #inv2 .rv-r,
  #inv2 .rv-sc,
  #inv2 .hero .anim {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* keep shared master_footer flush (override common's .bv-page ~ footer -60px pull) */
#master-footer-placeholder {
  position: relative;
  z-index: 2;
}

footer {
  margin-top: -140px !important;
}
