.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(12,21,36,0.94) 0%, rgba(12,21,36,0.78) 42%, rgba(12,21,36,0.45) 100%),
      radial-gradient(ellipse 70% 60% at 60% 40%, rgba(20,184,166,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse 40% 50% at 80% 70%, rgba(245,158,11,0.08) 0%, transparent 60%);
    opacity: 0.9;
  }
  
  /* Diagram tooltip (early block — detailed layout in main stylesheet) */
  .sd-tooltip {
    position: absolute;
    background: rgba(12, 21, 36, 0.98);
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(20, 184, 166, 0.4);
    font-size: 0.875rem;
    max-width: 220px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    transform: translateY(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
  
  .sd-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(20, 184, 166, 0.5);
  }

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

  :root {
    --navy:   #0C1524;
    --navy2:  #111F35;
    --navy3:  #172845;
    --teal:   #14B8A6;
    --teal2:  #0D9488;
    --amber:  #F59E0B;
    --amber2: #D97706;
    --slate:  #94A3B8;
    --slate2: #64748B;
    --white:  #FFFFFF;
    --offwhite: #E2E8F0;
    --card-bg: #152035;
    --font-display: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── SKIP LINK ─── */
  .skip-link {
    position: absolute;
    left: -9999px; top: 0.5rem;
    background: var(--teal); color: var(--navy);
    font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
    padding: 0.5rem 1rem; border-radius: 4px;
    z-index: 200; text-decoration: none;
    transition: left 0.2s;
  }
  .skip-link:focus { left: 0.5rem; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 2rem;
    background: rgba(12,21,36,0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20,184,166,0.15);
    transition: background 0.3s;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 700; font-size: 0.95rem;
    color: var(--white);
    text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .nav-logo span { color: var(--teal); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.85rem; font-weight: 500;
    color: var(--slate); text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover, .nav-links a.active { color: var(--teal); }
  .nav-cta {
    background: var(--teal); color: var(--navy);
    font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
    padding: 0.5rem 1.2rem; border-radius: 4px;
    text-decoration: none; transition: background 0.2s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--teal2); }
  .mobile-only-cta { display: none; }

  /* Hamburger toggle */
  .nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    padding: 0;
    flex-shrink: 0;
  }
  .nav-toggle-bars {
    position: relative; width: 22px; height: 16px;
  }
  .nav-toggle-bars span {
    position: absolute; left: 0; right: 0; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }
  .nav-toggle-bars span:nth-child(1) { top: 0; }
  .nav-toggle-bars span:nth-child(2) { top: 7px; }
  .nav-toggle-bars span:nth-child(3) { top: 14px; }
  nav.open .nav-toggle-bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
  nav.open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  nav.open .nav-toggle-bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
      radial-gradient(ellipse 40% 50% at 80% 70%, rgba(245,158,11,0.08) 0%, transparent 60%);
    opacity: 0.9;
  }
  /* Rain animation */
  .rain-canvas {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.12; z-index: 2;
  }
  .hero-inner {
    position: relative; max-width: 1100px; margin: 0 auto; width: 100%; z-index: 3;
  }
  .hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
    color: var(--teal); text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 32px; height: 2px; background: var(--teal);
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    max-width: 800px;
  }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--teal), var(--amber));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 1.1rem; color: var(--slate); max-width: 560px;
    line-height: 1.7; margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--teal); color: var(--navy);
    font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
    padding: 0.85rem 2rem; border-radius: 4px;
    text-decoration: none; transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--teal2); transform: translateY(-2px); }
  .btn-secondary {
    background: transparent; color: var(--white);
    font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
    padding: 0.85rem 2rem; border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none; transition: border-color 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

  .hero-badges {
    margin-top: 3rem;
    display: flex; gap: 2rem; flex-wrap: wrap;
  }
  .hero-badge {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.82rem; color: var(--slate);
  }
  .hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: var(--slate); text-decoration: none;
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    opacity: 0.7; transition: opacity 0.2s, color 0.2s;
    animation: scrollBounce 2.4s ease-in-out infinite;
    z-index: 3;
  }
  .scroll-indicator:hover { opacity: 1; color: var(--teal); }
  .scroll-indicator svg { display: block; }
  @keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 12px); }
  }
  @media (prefers-reduced-motion: reduce) {
    .scroll-indicator { animation: none; }
  }

  /* ─── STATS BAR ─── */
  .stats-bar {
    background: var(--navy2);
    border-top: 1px solid rgba(20,184,166,0.2);
    border-bottom: 1px solid rgba(20,184,166,0.2);
    padding: 2.5rem 2rem;
  }
  .stats-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; text-align: center;
  }
  .stat-item { padding: 0.5rem; }
  .stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800; line-height: 1;
    color: var(--teal); margin-bottom: 0.3rem;
  }
  .stat-num.amber { color: var(--amber); }
  .stat-label { font-size: 0.78rem; color: var(--slate); line-height: 1.4; }

  /* ─── SECTIONS ─── */
  section { padding: 5rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
    color: var(--teal); text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  }
  .eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal); }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 1rem;
    text-align: center;
  }
  .section-sub {
    color: var(--slate); font-size: 1rem; max-width: 600px; line-height: 1.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* ─── PROBLEM / SOLUTION ─── */
  .ps-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
  }
  .ps-card {
    background: var(--card-bg); border-radius: 8px;
    padding: 2rem; border: 1px solid rgba(255,255,255,0.06);
  }
  .ps-card.solution { border-color: rgba(20,184,166,0.3); }
  .ps-card-head {
    font-family: var(--font-display); font-weight: 700; font-size: 0.72rem;
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1.5rem;
    padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .ps-card.solution .ps-card-head { color: var(--teal); border-color: rgba(20,184,166,0.2); }
  .ps-card:not(.solution) .ps-card-head { color: var(--amber); }
  .ps-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
  .ps-list li {
    display: flex; gap: 0.75rem; align-items: flex-start;
    font-size: 0.92rem; color: var(--offwhite); line-height: 1.5;
  }
  .ps-list li::before {
    content: ''; flex-shrink: 0; width: 6px; height: 6px;
    border-radius: 50%; margin-top: 0.5em;
  }
  .ps-card:not(.solution) .ps-list li::before { background: var(--amber); }
  .ps-card.solution .ps-list li::before { background: var(--teal); }

  /* ─── SYSTEM DIAGRAM ─── */
  .diagram-wrap {
    margin-top: 3rem;
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    background:
      linear-gradient(155deg, rgba(21,32,53,0.98) 0%, rgba(12,21,36,1) 55%, rgba(17,31,53,0.98) 100%);
    border: 1px solid rgba(20,184,166,0.22);
    box-shadow:
      0 28px 80px rgba(0,0,0,0.38),
      inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: visible;
  }
  .diagram-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 45% at 12% 18%, rgba(245,158,11,0.09), transparent 55%),
      radial-gradient(ellipse 50% 40% at 88% 82%, rgba(20,184,166,0.1), transparent 55%);
    pointer-events: none;
  }
  .diagram-header {
    position: relative;
    margin-bottom: 1.75rem;
  }
  .diagram-eyebrow {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }
  .diagram-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--teal);
  }
  .diagram-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
  }
  .diagram-caption {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.7;
    max-width: 720px;
  }
  .diagram-stage {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.35rem 0.75rem 1rem;
    border-radius: 16px;
    background: rgba(8,14,26,0.72);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: inset 0 0 0 1px rgba(20,184,166,0.06);
    overflow: hidden;
  }
  .diagram-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 30%, transparent 100%);
    pointer-events: none;
  }
  .diagram-stage.is-live .sd-flow {
    stroke-width: 2.75;
  }
  .system-diagram {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.28));
  }
  .system-diagram text { font-family: var(--font-body); }
  .system-diagram .sd-label {
    font-size: 12.5px;
    font-weight: 700;
    fill: var(--white);
  }
  .system-diagram .sd-sublabel {
    font-size: 10.5px;
    fill: var(--slate);
    opacity: 0.95;
  }
  .sd-node {
    fill: rgba(17,31,53,0.95);
    stroke: rgba(255,255,255,0.14);
    stroke-width: 1.5;
    transition: stroke 0.25s ease, filter 0.25s ease;
    cursor: pointer;
  }
  .system-diagram g:hover .sd-node {
    filter: drop-shadow(0 0 14px rgba(20,184,166,0.35));
  }
  .system-diagram g:hover .sd-node.solar {
    filter: drop-shadow(0 0 16px rgba(245,158,11,0.45));
  }
  .system-diagram g:hover .sd-node.hydro,
  .system-diagram g:hover .sd-node.battery {
    filter: drop-shadow(0 0 16px rgba(20,184,166,0.45));
  }
  .system-diagram g:hover .sd-node.monitor {
    filter: drop-shadow(0 0 14px rgba(245,158,11,0.35));
  }
  .sd-node.solar { stroke: rgba(245,158,11,0.75); }
  .sd-node.hydro { stroke: rgba(20,184,166,0.8); }
  .sd-node.battery { stroke: rgba(20,184,166,0.65); }
  .sd-node.load { stroke: rgba(148,163,184,0.55); }
  .sd-node.monitor { stroke: rgba(245,158,11,0.65); stroke-dasharray: 5 4; }
  .sd-flow {
    fill: none;
    stroke-width: 2.25;
    stroke-linecap: round;
    opacity: 0.85;
  }
  .sd-flow.solar-flow {
    stroke: var(--amber);
    filter: drop-shadow(0 0 6px rgba(245,158,11,0.35));
  }
  .sd-flow.hydro-flow {
    stroke: var(--teal);
    filter: drop-shadow(0 0 6px rgba(20,184,166,0.35));
  }
  .sd-flow.power-flow {
    stroke: var(--offwhite);
    stroke-opacity: 0.45;
  }
  .sd-flow.data-flow {
    stroke: var(--amber);
    stroke-dasharray: 4 5;
    stroke-opacity: 0.65;
    animation: sdDash 1.2s linear infinite;
  }
  @keyframes sdDash {
    to { stroke-dashoffset: -18; }
  }
  .sd-dot { fill: var(--teal); }
  .sd-dot.amber { fill: var(--amber); }
  .diagram-legend {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .diagram-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--slate);
    text-transform: uppercase;
  }
  .diagram-legend-swatch {
    width: 22px;
    height: 3px;
    border-radius: 999px;
  }
  .diagram-legend-swatch.solar { background: var(--amber); box-shadow: 0 0 8px rgba(245,158,11,0.45); }
  .diagram-legend-swatch.hydro { background: var(--teal); box-shadow: 0 0 8px rgba(20,184,166,0.45); }
  .diagram-legend-swatch.power { background: rgba(226,232,240,0.55); }
  .diagram-legend-swatch.data { background: repeating-linear-gradient(90deg, var(--amber) 0 5px, transparent 5px 9px); }

  /* ─── 4 STEP CARDS ─── */
  .steps-list {
    position: relative;
    z-index: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    counter-reset: step-counter;
  }
  .steps-list li {
    --step-accent: var(--teal);
    --step-glow: rgba(20,184,166,0.18);
    counter-increment: step-counter;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 100%;
    padding: 1.35rem 1.35rem 1.35rem 4.5rem;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  }
  .steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.15rem;
    top: 1.2rem;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
    background: linear-gradient(135deg, var(--step-accent), color-mix(in srgb, var(--step-accent) 70%, white));
    box-shadow: 0 8px 20px var(--step-glow);
  }
  .steps-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, var(--step-accent), transparent);
    opacity: 0.85;
  }
  .steps-list li:nth-child(1) {
    --step-accent: #f59e0b;
    --step-glow: rgba(245,158,11,0.22);
  }
  .steps-list li:nth-child(2) {
    --step-accent: #14b8a6;
    --step-glow: rgba(20,184,166,0.22);
  }
  .steps-list li:nth-child(3) {
    --step-accent: #2dd4bf;
    --step-glow: rgba(45,212,191,0.2);
  }
  .steps-list li:nth-child(4) {
    --step-accent: #fbbf24;
    --step-glow: rgba(251,191,36,0.2);
  }
  .steps-list li:hover {
    transform: translateY(-4px);
    border-color: var(--step-accent);
    border-color: color-mix(in srgb, var(--step-accent) 45%, transparent);
    box-shadow: 0 16px 36px rgba(0,0,0,0.28), 0 0 0 1px var(--step-accent);
    box-shadow: 0 16px 36px rgba(0,0,0,0.28), 0 0 0 1px color-mix(in srgb, var(--step-accent) 25%, transparent);
    background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.025) 100%);
  }
  .steps-list strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--white);
    margin-bottom: 0.15rem;
  }
  .steps-list strong::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    margin-top: 0.45rem;
    background: var(--step-accent);
    border-radius: 2px;
    opacity: 0.75;
  }
  .step-body {
    font-size: 0.86rem;
    line-height: 1.65;
    color: var(--slate);
  }
  .battery-partners {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    padding: 1.5rem 0 1.35rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(20,184,166,0.06), rgba(245,158,11,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
  }
  .battery-partners-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 1.15rem;
    padding: 0 1.5rem;
  }
  .battery-partners-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  }
  .battery-partners-track {
    display: flex;
    width: max-content;
    animation: batteryMarquee 38s linear infinite;
    will-change: transform;
  }
  .battery-partners:hover .battery-partners-track {
    animation-play-state: paused;
  }
  @keyframes batteryMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .battery-partners-slide {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    padding: 0 1.35rem;
    flex-shrink: 0;
  }
  .battery-logo {
    --logo-accent: var(--teal);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--logo-accent);
    opacity: 0.82;
    transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  .battery-logo:hover {
    opacity: 1;
    background: rgba(255,255,255,0.05);
    border-color: var(--logo-accent);
    border-color: color-mix(in srgb, var(--logo-accent) 35%, transparent);
  }
  .battery-logo svg {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }
  .battery-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    white-space: nowrap;
  }
  .battery-logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: -0.01em;
    color: var(--offwhite);
  }
  .battery-logo-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--logo-accent);
    margin-top: 0.15rem;
  }
  .battery-logo.voltcore { --logo-accent: #f59e0b; }
  .battery-logo.terracell { --logo-accent: #14b8a6; }
  .battery-logo.purelife { --logo-accent: #2dd4bf; }
  .battery-logo.ampstack { --logo-accent: #fbbf24; }
  .battery-logo.neobatt { --logo-accent: #38bdf8; }
  .battery-logo.iongrid { --logo-accent: #0d9488; }
  .battery-logo.cellmax { --logo-accent: #a3e635; }
  .battery-logo.powernest { --logo-accent: #34d399; }

  @media (prefers-reduced-motion: reduce) {
    .sd-dot animateMotion { display: none; }
    .sd-dot { opacity: 0; }
    .sd-flow.data-flow { animation: none; }
    .steps-list li:hover { transform: none; }
    .battery-partners-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
    .battery-partners-marquee { -webkit-mask-image: none; mask-image: none; overflow: visible; }
    .battery-partners-slide { flex-wrap: wrap; justify-content: center; gap: 0.75rem; padding: 0 1rem; }
  }
  @media (max-width: 768px) {
    .battery-partners-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; max-width: 100%; }
    .battery-partners-marquee { -webkit-mask-image: none; mask-image: none; overflow: hidden; }
    .battery-partners-slide { flex-wrap: wrap; justify-content: center; gap: 0.75rem; padding: 0 1rem; width: 100%; }
  }
  @media (max-width: 900px) {
    .steps-list { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .diagram-wrap { padding: 1.35rem; border-radius: 16px; }
    .diagram-stage { padding: 0.85rem 0.35rem 0.65rem; }
    .steps-list li { padding: 1.15rem 1.1rem 1.15rem 3.85rem; }
    .steps-list li::before {
      width: 2rem;
      height: 2rem;
      font-size: 0.88rem;
      left: 0.9rem;
      top: 1.05rem;
      border-radius: 8px;
    }
  }

  /* ─── PRODUCTS ─── */
  .products-section { background: var(--navy2); }
  .tier-label {
    font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 20px; display: inline-block;
    margin-bottom: 1.5rem;
    scroll-margin-top: 96px;
  }
  .tier-label.entry { background: rgba(245,158,11,0.15); color: var(--amber); }
  .tier-label.premium { background: rgba(20,184,166,0.15); color: var(--teal); }
  .tier-label.portable { background: rgba(56,189,248,0.15); color: #38bdf8; }
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  }
  .product-card {
    background: var(--card-bg); border-radius: 8px;
    padding: 1.5rem; border: 1px solid rgba(255,255,255,0.06);
    transition: border-color 0.2s, transform 0.2s;
    position: relative; overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--amber);
  }
  .product-card.premium::before { background: var(--teal); }
  .product-card.portable::before { background: #38bdf8; }
  .product-card:hover { border-color: rgba(20,184,166,0.3); transform: translateY(-3px); }
  .product-name {
    font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }
  .product-size { font-size: 0.78rem; color: var(--slate); margin-bottom: 0.75rem; }
  .product-price {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.1rem; color: var(--amber); margin-bottom: 1rem;
  }
  .product-card.premium .product-price { color: var(--teal); }
  .product-card.portable .product-price { color: #38bdf8; }
  .product-photo-wrap {
    margin: -1.5rem -1.5rem 1rem;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(145deg, #111f35, #0c1524);
    border-bottom: 1px solid rgba(56,189,248,0.12);
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .product-photo-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  .product-photo-wrap picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .product-photo-button {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
  }
  .product-photo-button:focus-visible {
    outline: 2px solid #38bdf8;
    outline-offset: -4px;
  }
  .product-card.portable .product-photo-wrap img {
    object-fit: contain;
    padding: 0.45rem;
  }
  .product-card.bundle {
    padding: 1.25rem;
    gap: 0;
  }
  .product-card.bundle .product-photo-wrap {
    margin: -1.25rem -1.25rem 1rem;
    border-bottom-color: rgba(20,184,166,0.18);
    aspect-ratio: 4/3;
  }
  .product-card.bundle .product-photo-wrap img {
    aspect-ratio: 4/3;
    height: 100%;
    object-fit: contain;
    padding: 0.35rem;
  }
  .product-card.bundle .product-desc {
    margin-bottom: 0;
  }
  .product-card.bundle .typhoon-banner-cta {
    width: fit-content;
    margin-top: auto !important;
  }
  .image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(4, 10, 18, 0.88);
    backdrop-filter: blur(10px);
  }
  .image-lightbox.open { display: flex; }
  .image-lightbox-inner {
    position: relative;
    width: min(1120px, 94vw);
    max-height: 92vh;
  }
  .image-lightbox img {
    display: block;
    width: 100%;
    max-height: 84vh;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(56,189,248,0.28);
    background: #0c1524;
  }
  .image-lightbox-title {
    margin: 0.75rem 3rem 0 0;
    color: #e2e8f0;
    font-family: var(--font-display);
    font-size: 0.9rem;
  }
  .image-lightbox-close {
    position: absolute;
    right: 0;
    bottom: -0.15rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(15,23,42,0.92);
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
  }
  .portable-page-link {
    display: flex;
    justify-content: center;
    margin: 0.75rem 0 1.25rem;
  }
  .portable-page-link a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    color: #7dd3fc;
    text-decoration: none;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(56,189,248,0.35);
    transition: background 0.2s, border-color 0.2s;
  }
  .portable-page-link a:hover {
    background: rgba(56,189,248,0.08);
    border-color: rgba(56,189,248,0.55);
  }
  .product-desc { font-size: 0.82rem; color: var(--slate); line-height: 1.6; }
  .upgrade-note {
    background: rgba(20,184,166,0.08); border: 1px solid rgba(20,184,166,0.2);
    border-radius: 6px; padding: 1rem 1.5rem;
    font-size: 0.85rem; color: var(--teal);
    margin-top: 1.5rem; text-align: center;
  }
  .product-finance {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: #7dd3fc;
    line-height: 1.5;
  }
  .bundle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
    align-items: stretch;
  }
  .product-card.bundle::before { background: linear-gradient(90deg, #38bdf8, var(--teal)); }
  .product-card.bundle .product-price { color: var(--teal); }
  .product-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(20,184,166,0.15);
    color: var(--teal);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 0.65rem;
  }
  .finance-callout {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .finance-card {
    background: var(--card-bg);
    border: 1px solid rgba(56,189,248,0.2);
    border-radius: 10px;
    padding: 1.35rem 1.5rem;
  }
  .finance-card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 0.5rem;
    color: #7dd3fc;
  }
  .finance-card p {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.6;
    max-width: none;
    margin: 0;
  }
  .portable-tools {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .portable-tool {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.5rem;
  }
  .portable-tool-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: var(--offwhite);
  }
  .portable-tool-sub {
    font-size: 0.78rem;
    color: var(--slate);
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .runtime-controls { display: flex; flex-direction: column; gap: 0.75rem; }
  .runtime-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.82rem;
    color: var(--slate);
  }
  .runtime-row label { flex: 1; }
  .runtime-row input[type="number"] {
    width: 4rem;
    background: var(--navy3);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: var(--offwhite);
    padding: 0.35rem 0.5rem;
    font-size: 0.82rem;
    text-align: center;
  }
  .runtime-row select {
    width: 100%;
    background: var(--navy3);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: var(--offwhite);
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
  }
  .runtime-result {
    margin-top: 1rem;
    padding: 1rem 1.15rem;
    border-radius: 8px;
    background: rgba(56,189,248,0.1);
    border: 1px solid rgba(56,189,248,0.25);
    text-align: center;
  }
  .runtime-result-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.75rem;
    color: #38bdf8;
    line-height: 1.1;
  }
  .runtime-result-label {
    font-size: 0.75rem;
    color: var(--slate);
    margin-top: 0.35rem;
  }
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    min-width: 520px;
  }
  .compare-table th,
  .compare-table td {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-align: left;
    vertical-align: top;
    line-height: 1.45;
  }
  .compare-table th {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate);
    background: rgba(255,255,255,0.02);
  }
  .compare-table td:first-child {
    color: var(--offwhite);
    font-weight: 600;
    white-space: nowrap;
  }
  .compare-table .col-portable { color: #7dd3fc; }
  .compare-table .col-hybrid { color: var(--teal); }
  .compare-table .win { color: var(--teal); font-weight: 600; }
  .typhoon-banner {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245,158,11,0.14) 0%, rgba(56,189,248,0.1) 100%);
    border: 1px solid rgba(245,158,11,0.35);
    position: relative;
    overflow: hidden;
  }
  .typhoon-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .typhoon-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .typhoon-banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.45rem;
  }
  .typhoon-banner-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--offwhite);
    margin-bottom: 0.35rem;
    line-height: 1.25;
  }
  .typhoon-banner-text {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.55;
    max-width: 560px;
  }
  .typhoon-banner-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--amber);
    color: var(--navy);
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
  }
  .typhoon-banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,158,11,0.35);
  }
  .products-grid.portable-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .bundle-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.85rem;
  }
  .product-spec {
    font-size: 0.62rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.22rem 0.48rem;
    border-radius: 4px;
    background: rgba(56,189,248,0.1);
    color: #7dd3fc;
    border: 1px solid rgba(56,189,248,0.15);
    white-space: nowrap;
  }
  .sd-node.portable { stroke: rgba(56,189,248,0.75); stroke-dasharray: 5 4; }
  .system-diagram g:hover .sd-node.portable { stroke: #38bdf8; filter: drop-shadow(0 0 8px rgba(56,189,248,0.5)); }
  .diagram-legend-swatch.portable { background: #38bdf8; }
  @media (max-width: 1200px) {
    .products-grid.portable-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 1024px) {
    .bundle-grid, .portable-tools, .finance-callout { grid-template-columns: 1fr; }
    .bundle-grid-3 { grid-template-columns: 1fr; }
  }

  /* ─── SAAS CALLOUT ─── */
  .saas-callout {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, rgba(20,184,166,0.12) 0%, rgba(20,184,166,0.03) 100%);
    border: 1px solid rgba(20,184,166,0.3);
    border-radius: 10px;
    padding: 2.5rem;
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: center;
    position: relative; overflow: hidden;
  }
  .saas-callout::before {
    content: ''; position: absolute; top: -40%; right: -10%;
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(20,184,166,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .saas-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(20,184,166,0.15); color: var(--teal);
    font-family: var(--font-display); font-weight: 700; font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.35rem 0.9rem; border-radius: 20px; margin-bottom: 1.25rem;
  }
  .saas-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 0.85rem; line-height: 1.2;
  }
  .saas-text { font-size: 0.92rem; color: var(--offwhite); line-height: 1.7; margin-bottom: 1.25rem; max-width: 480px; }
  .saas-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .saas-features li {
    display: flex; gap: 0.6rem; align-items: flex-start;
    font-size: 0.85rem; color: var(--slate);
  }
  .saas-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
  .saas-stats { display: flex; flex-direction: column; gap: 1.25rem; }
  .saas-stat {
    background: var(--card-bg); border: 1px solid rgba(20,184,166,0.15);
    border-radius: 8px; padding: 1.25rem 1.5rem;
  }
  .saas-stat-num {
    font-family: var(--font-display); font-weight: 800;
    font-size: 1.9rem; color: var(--teal); line-height: 1; margin-bottom: 0.3rem;
  }
  .saas-stat-label { font-size: 0.78rem; color: var(--slate); line-height: 1.5; }
  @media (max-width: 768px) {
    .saas-callout { grid-template-columns: 1fr; padding: 1.75rem; }
  }

  /* ─── WHY US ─── */
  .why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem;
  }
  .why-card {
    background: var(--card-bg); border-radius: 8px; padding: 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex; gap: 1.25rem;
  }
  .why-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 8px;
    background: rgba(20,184,166,0.12); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
  }
  .why-title {
    font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  .why-text { font-size: 0.85rem; color: var(--slate); line-height: 1.65; }

  /* ─── MARKET ─── */
  .market-section { background: var(--navy3); }
  .market-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: start;
  }
  .market-grid > * { min-width: 0; }
  .market-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .market-stat {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 100%;
    padding: 1.35rem 1.25rem;
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  }
  .market-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(20,184,166,0.35);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  }
  .market-stat:nth-child(even):hover { border-color: rgba(245,158,11,0.35); }
  .market-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--teal);
    line-height: 1;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
    margin-bottom: 0.15rem;
  }
  .market-num.amber { color: var(--amber); }
  .market-label {
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .market-caption {
    font-size: 0.78rem;
    color: var(--slate);
    line-height: 1.55;
    overflow-wrap: anywhere;
    margin-top: auto;
  }
  .market-why {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(20,184,166,0.2);
    min-width: 0;
  }
  .market-why-title {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.3;
  }
  .market-point {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .market-point:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .market-point-head {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--teal);
    margin-bottom: 0.3rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
  .market-point-text {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.6;
    overflow-wrap: anywhere;
  }
  @media (max-width: 1024px) {
    .market-grid { grid-template-columns: 1fr; gap: 2rem; }
  }
  @media (max-width: 600px) {
    .market-stats { grid-template-columns: 1fr; }
    .market-stat { padding: 1.15rem 1rem; }
    .market-num { font-size: 1.75rem; }
    .market-why { padding: 1.5rem; }
  }

  /* ─── TRACTION ─── */
  .traction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .traction-card {
    --traction-accent: var(--teal);
    --traction-glow: rgba(20,184,166,0.18);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 100%;
    padding: 1.5rem 1.35rem;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    text-align: left;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  }
  .traction-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, var(--traction-accent), transparent);
    opacity: 0.85;
  }
  .traction-card:nth-child(1) { --traction-accent: #14b8a6; --traction-glow: rgba(20,184,166,0.22); }
  .traction-card:nth-child(2) { --traction-accent: #f59e0b; --traction-glow: rgba(245,158,11,0.22); }
  .traction-card:nth-child(3) { --traction-accent: #2dd4bf; --traction-glow: rgba(45,212,191,0.2); }
  .traction-card:hover {
    transform: translateY(-3px);
    border-color: var(--traction-accent);
    border-color: color-mix(in srgb, var(--traction-accent) 40%, transparent);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
  }
  .traction-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    color: var(--traction-accent);
    margin-bottom: 0.15rem;
    line-height: 1;
  }
  .traction-num.amber { color: var(--traction-accent); }
  .traction-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
    color: var(--white);
  }
  .traction-text { font-size: 0.8rem; color: var(--slate); line-height: 1.65; }
  .pipeline-section {
    margin-top: 2rem;
    background: var(--card-bg);
    border-radius: 14px;
    padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .pipeline-title {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
  }
  .pipeline-rows { display: flex; flex-direction: column; gap: 1rem; }
  .pipeline-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
    gap: 0.85rem 1rem;
    align-items: center;
  }
  .pipeline-meta {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 0;
  }
  .pipeline-count {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--navy);
    background: linear-gradient(135deg, var(--teal), #2dd4bf);
  }
  .pipeline-row:nth-child(2) .pipeline-count { background: linear-gradient(135deg, var(--teal), #0d9488); }
  .pipeline-row:nth-child(3) .pipeline-count { background: linear-gradient(135deg, var(--amber), #fbbf24); }
  .pipeline-label {
    font-size: 0.84rem;
    color: var(--offwhite);
    line-height: 1.4;
    overflow-wrap: anywhere;
  }
  .pipeline-bar-wrap {
    height: 8px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
    min-width: 0;
  }
  .pipeline-bar { height: 100%; border-radius: 4px; background: var(--teal); transition: width 1.2s ease; }
  .pipeline-bar.amber { background: var(--amber); }
  .pipeline-val {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate);
    text-align: right;
    white-space: nowrap;
  }
  @media (max-width: 768px) {
    .traction-grid { grid-template-columns: 1fr; }
    .pipeline-row {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }
    .pipeline-val { text-align: left; white-space: normal; }
  }

  /* ─── FINANCIALS ─── */
  .financials-section { background: var(--navy2); }
  .fin-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; margin-top: 3rem; }
  .fin-grid > * { min-width: 0; }
  .fin-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .fin-subheading {
    font-family: var(--font-display);
    font-size: 0.88rem;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
  }
  .fin-table { width: 100%; border-collapse: collapse; }
  .fin-table th {
    font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate);
    padding: 0.75rem 1rem; text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .fin-table td {
    padding: 0.85rem 1rem; font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .fin-table td:first-child { color: var(--offwhite); }
  .fin-table td:nth-child(2) { color: var(--slate); font-size: 0.8rem; }
  .fin-table td:last-child { font-family: var(--font-display); font-weight: 600; color: var(--teal); text-align: right; }
  .fin-table td.fin-highlight { color: var(--teal); }
  .fin-timeline { display: flex; flex-direction: column; gap: 1.25rem; }
  .fin-milestone {
    display: flex; gap: 1.25rem; align-items: flex-start;
  }
  .fin-year {
    font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
    color: var(--navy); background: var(--teal);
    padding: 0.2rem 0.6rem; border-radius: 4px;
    white-space: nowrap; margin-top: 0.1rem; flex-shrink: 0;
  }
  .fin-year.amber { background: var(--amber); }
  .fin-rev { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.2rem; }
  .fin-detail { font-size: 0.8rem; color: var(--slate); }

  /* ─── ANIMATED REVENUE CHART ─── */
  .fin-chart-wrap { display: flex; flex-direction: column; }
  .fin-chart {
    width: 100%; height: auto; overflow: visible;
  }
  .fin-chart .bar-revenue, .fin-chart .bar-net {
    transform: scaleY(0); transform-origin: bottom; transform-box: fill-box;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .fin-chart.animate .bar-revenue, .fin-chart.animate .bar-net {
    transform: scaleY(1);
  }
  .fin-chart .bar-revenue { transition-delay: var(--bar-delay, 0s); }
  .fin-chart .bar-net { transition-delay: calc(var(--bar-delay, 0s) + 0.15s); }
  .fin-chart text { font-family: var(--font-body); fill: var(--slate); }
  .fin-chart .bar-label { font-size: 12px; fill: var(--slate); }
  .fin-chart .bar-value { font-size: 11px; font-weight: 700; fill: var(--offwhite); opacity: 0; transition: opacity 0.4s ease; transition-delay: 1.0s; }
  .fin-chart.animate .bar-value { opacity: 1; }
  .fin-chart .axis-line { stroke: rgba(255,255,255,0.08); stroke-width: 1; }
  .fin-chart .grid-line { stroke: rgba(255,255,255,0.04); stroke-width: 1; }
  .fin-legend { display: flex; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
  .fin-legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--slate); }
  .fin-legend-swatch { width: 12px; height: 12px; border-radius: 2px; }
  .fin-legend-swatch.revenue { background: var(--teal); }
  .fin-legend-swatch.net { background: var(--amber); }
  .fin-chart-note { font-size: 0.78rem; color: var(--slate2); margin-top: 1rem; line-height: 1.6; }

  /* ─── TEAM ─── */
  .team-section { background: var(--navy3); }
  .team-group-title {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }
  .team-group-title:first-of-type { margin-top: 2rem; }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .team-grid--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 860px;
    margin: 0 auto;
  }
  .team-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 1.75rem;
    border: 1px solid rgba(20,184,166,0.2);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.35rem;
    align-items: start;
    min-width: 0;
  }
  .team-card--placeholder {
    border-color: rgba(255,255,255,0.08);
    border-style: dashed;
  }
  .team-photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(20,184,166,0.45);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    flex-shrink: 0;
  }
  .team-photo-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    background: linear-gradient(145deg, rgba(20,184,166,0.12), rgba(12,21,36,0.85));
    border: 2px dashed rgba(20,184,166,0.35);
    color: var(--slate);
  }
  .team-photo-placeholder svg {
    width: 28px;
    height: 28px;
    opacity: 0.45;
  }
  .team-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--slate2);
  }
  .team-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.25rem; }
  .team-name.tba { color: var(--slate); font-style: italic; }
  .team-role { font-size: 0.78rem; color: var(--teal); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem; }
  .team-card--placeholder .team-role { color: var(--amber); }
  .team-coming-soon {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px dashed rgba(148, 163, 184, 0.25);
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.55;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }
  .team-bio { font-size: 0.84rem; color: var(--slate); line-height: 1.65; }
  @media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  }

  /* ─── CONTACT / CTA ─── */
  .cta-section {
    background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
    border-top: 1px solid rgba(20,184,166,0.2);
    text-align: center;
  }
  .cta-section .section-title { margin-bottom: 0.75rem; }
  .cta-section .section-sub { margin: 0 auto 2.5rem; }
  .contact-grid {
    display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  .contact-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  }
  .contact-type {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--teal);
  }
  .contact-val {
    font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--white);
  }
  .contact-val a { color: inherit; text-decoration: none; }
  .contact-val a:hover { color: var(--teal); }

  /* ─── CONTACT FORM ─── */
  .contact-form-wrap {
    max-width: 600px; margin: 0 auto 3rem;
    background: var(--card-bg); border: 1px solid rgba(20,184,166,0.2);
    border-radius: 10px; padding: 2rem; text-align: left;
  }
  .contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-field label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--slate);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: var(--navy); color: var(--white);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 6px;
    padding: 0.7rem 0.9rem; font-size: 0.9rem; font-family: var(--font-body);
    transition: border-color 0.2s;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none; border-color: var(--teal);
  }
  .form-field textarea { resize: vertical; min-height: 110px; }
  .form-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.25rem; }
  .form-note { font-size: 0.78rem; color: var(--slate2); }
  .form-status {
    font-size: 0.85rem; padding: 0.75rem 1rem; border-radius: 6px;
    display: none;
  }
  .form-status.show { display: block; }
  .form-status.success { background: rgba(20,184,166,0.12); color: var(--teal); border: 1px solid rgba(20,184,166,0.3); }
  .form-status.info { background: rgba(245,158,11,0.1); color: var(--amber); border: 1px solid rgba(245,158,11,0.25); }
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
  }

  /* ─── FAQ ─── */
  .faq-section { background: var(--navy3); }
  .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; }
  .faq-item {
    background: var(--card-bg); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; overflow: hidden;
  }
  .faq-question {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 1.1rem 1.5rem; color: var(--white); font-family: var(--font-display);
    font-weight: 600; font-size: 0.95rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .faq-question:hover { color: var(--teal); }
  .faq-icon {
    flex-shrink: 0; width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(20,184,166,0.3); border-radius: 50%;
    color: var(--teal); font-size: 0.9rem; transition: transform 0.25s ease;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .faq-answer-inner {
    padding: 0 1.5rem 1.25rem; font-size: 0.88rem; color: var(--slate); line-height: 1.7;
  }

  .form-status.error { background: rgba(239,68,68,0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.3); }

  /* ─── INVESTOR PANEL ─── */
  .investor-panel {
    border-top: 1px solid rgba(20,184,166,0.2);
    background: linear-gradient(180deg, rgba(17,31,53,0.5) 0%, transparent 100%);
  }
  .investor-summary {
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    padding: 1.5rem 2rem 1.35rem;
    background: var(--navy2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s ease;
  }
  .investor-summary:hover { background: rgba(21,32,53,0.98); }
  .investor-summary-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .investor-summary-label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-align: center;
  }
  .investor-summary-label::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--teal);
  }
  .investor-summary-chevron {
    font-size: 1.1rem;
    color: var(--teal);
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  .investor-panel.open .investor-summary-chevron { transform: rotate(180deg); }
  .investor-summary-hint { font-size: 0.82rem; color: var(--slate); font-family: var(--font-body); }
  .investor-teaser {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin-top: 0.35rem;
  }
  .investor-panel.open .investor-teaser { display: none; }
  .investor-teaser-item {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--slate);
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .investor-teaser-item strong { color: var(--teal); font-weight: 800; }
  .investor-summary-toggle {
    align-self: flex-start;
    margin-top: 0.25rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
  }
  .investor-panel-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.55s ease-in-out;
  }
  .investor-panel-inner {
    padding: 0 0 1rem;
  }
  .investor-subnav {
    position: sticky;
    top: 4.25rem;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(12,21,36,0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .investor-subnav a {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate);
    text-decoration: none;
    padding: 0.5rem 0.9rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
  }
  .investor-subnav a:hover {
    color: var(--white);
    border-color: rgba(20,184,166,0.35);
    background: rgba(20,184,166,0.08);
  }
  .investor-subnav-cta {
    color: var(--navy) !important;
    background: var(--teal) !important;
    border-color: var(--teal) !important;
  }
  .investor-subnav-cta:hover {
    background: var(--teal2) !important;
    color: var(--navy) !important;
  }
  .investor-ask-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 2rem 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
  }
  .investor-ask-card {
    padding: 1.35rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    min-width: 0;
  }
  .investor-ask-card.highlight {
    border-color: rgba(20,184,166,0.28);
    background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(20,184,166,0.03));
  }
  .investor-ask-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.5rem;
  }
  .investor-ask-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: 0.55rem;
  }
  .investor-ask-text {
    font-size: 0.84rem;
    color: var(--slate);
    line-height: 1.65;
  }
  .investor-funds-list {
    list-style: none;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .investor-funds-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--offwhite);
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .investor-funds-list li span:last-child {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--amber);
    flex-shrink: 0;
  }
  .venture-portfolio-section {
    padding: 2.5rem 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
  }
  .venture-callout {
    margin-top: 1.5rem;
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(20,184,166,0.08));
    border: 1px solid rgba(245,158,11,0.22);
    text-align: center;
  }
  .venture-callout strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--offwhite);
    margin-bottom: 0.45rem;
  }
  .venture-callout p {
    font-size: 0.82rem;
    color: var(--slate);
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto;
  }
  .venture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
  }
  .venture-card {
    --venture-accent: var(--teal);
    position: relative;
    padding: 1.35rem 1.25rem 1.25rem;
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255,255,255,0.045) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    min-width: 0;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .venture-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, var(--venture-accent), transparent);
    opacity: 0.9;
  }
  .venture-card:hover {
    transform: translateY(-3px);
    border-color: var(--venture-accent);
    border-color: color-mix(in srgb, var(--venture-accent) 40%, transparent);
    box-shadow: 0 14px 32px rgba(0,0,0,0.22);
  }
  .venture-card.big4 { --venture-accent: #14ebd7; }
  .venture-card.icky { --venture-accent: #58a6ff; }
  .venture-card.primeaxis { --venture-accent: #0873ff; }
  .venture-card.thriftytribe { --venture-accent: #28d36b; }
  .venture-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--venture-accent);
    margin-bottom: 0.55rem;
  }
  .venture-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.2;
    margin-bottom: 0.45rem;
    color: var(--white);
  }
  .venture-desc {
    font-size: 0.8rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }
  .venture-link {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--venture-accent);
    text-decoration: none;
  }
  .venture-link:hover { text-decoration: underline; }
  @media (max-width: 768px) {
    .venture-grid { grid-template-columns: 1fr; }
    .venture-portfolio-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  }
  .investor-cta-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .investor-cta-text {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
    max-width: 520px;
  }
  .investor-cta-text strong { color: var(--offwhite); }
  .btn-investor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
  }
  .investor-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
  }
  .btn-investor-outline {
    background: transparent;
    color: var(--teal);
    border: 1px solid rgba(20,184,166,0.45);
  }
  .btn-investor-outline:hover {
    background: rgba(20,184,166,0.1);
    color: var(--white);
    transform: translateY(-2px);
  }
  .investor-disclaimer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 2.5rem;
    font-size: 0.72rem;
    color: var(--slate2);
    line-height: 1.6;
    font-style: italic;
  }
  .investor-panel-body section:first-of-type { padding-top: 2.5rem; }
  @media (max-width: 768px) {
    .investor-summary, .investor-subnav, .investor-ask-grid, .investor-cta-bar, .investor-disclaimer { padding-left: 1.25rem; padding-right: 1.25rem; }
    .investor-ask-grid { grid-template-columns: 1fr; }
    .investor-subnav { top: 3.75rem; }
  }

  /* Investor Onboarding Timeline */
  .investor-steps-section {
    padding: 4.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .investor-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    padding-left: 2rem;
    border-left: 2px solid rgba(20, 184, 166, 0.15);
  }
  .timeline-step {
    position: relative;
    margin-bottom: 2.5rem;
  }
  .timeline-step:last-child {
    margin-bottom: 0;
  }
  .step-badge {
    position: absolute;
    left: calc(-2rem - 13px);
    top: 2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #0C1524;
    border: 2px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--teal);
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.3);
  }
  .step-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  }
  .step-content:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 184, 166, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
  }
  .step-desc {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.6;
  }
  .step-desc a {
    color: var(--teal);
    text-decoration: underline;
  }

  /* Investor FAQ accordion styling */
  .investor-faq-section {
    padding: 4.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .investor-faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .inv-faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
  }
  .inv-faq-item:hover {
    border-color: rgba(20, 184, 166, 0.25);
  }
  .inv-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    outline: none;
  }
  .inv-faq-icon {
    font-size: 1.25rem;
    color: var(--teal);
    transition: transform 0.2s;
  }
  .inv-faq-item.open .inv-faq-icon {
    transform: rotate(45deg);
  }
  .inv-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .inv-faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.7;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem; text-align: center;
    font-size: 0.78rem; color: var(--slate2);
  }
  footer a { color: var(--slate); text-decoration: none; }
  footer a:hover { color: var(--teal); }

  /* ─── SCROLL REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    nav {
      padding: 1rem 1.25rem;
      gap: 0.75rem;
      min-width: 0;
    }
    .nav-logo {
      min-width: 0;
      flex: 1 1 auto;
      max-width: calc(100% - 7rem);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .nav-back { display: none; }
    .nav-toggle {
      display: flex;
      position: relative;
      z-index: 101;
    }
    .nav-links {
      position: fixed; top: 0; right: 0; height: 100vh; height: 100dvh;
      width: min(78vw, 320px); max-width: 100%;
      flex-direction: column; gap: 0;
      background: var(--navy2);
      border-left: 1px solid rgba(20,184,166,0.15);
      padding: 6rem 2rem 2rem;
      transform: translateX(100%);
      transition: transform 0.3s ease, visibility 0s linear 0.3s;
      z-index: 99;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      box-sizing: border-box;
      visibility: hidden;
      pointer-events: none;
    }
    nav.open .nav-links {
      transform: translateX(0);
      display: flex;
      visibility: visible;
      pointer-events: auto;
      transition: transform 0.3s ease, visibility 0s;
    }
    .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .nav-links a { display: block; padding: 1rem 0; font-size: 1rem; }
    .nav-cta { display: none; }
    .mobile-only-cta { display: block; padding: 1.5rem 0 1rem; }
    .mobile-only-cta a {
      display: block; text-align: center; background: var(--teal); color: var(--navy) !important;
      font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
      padding: 0.8rem; border-radius: 6px; text-decoration: none; transition: background 0.2s;
    }
    .mobile-only-cta a:hover { background: var(--teal2); }
    .nav-overlay {
      display: none;
      position: fixed; inset: 0; background: rgba(12,21,36,0.6);
      z-index: 98;
    }
    nav.open ~ .nav-overlay { display: block; }
    .hero-inner { grid-template-columns: 1fr; }
    .ps-grid, .why-grid, .market-grid, .fin-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .traction-grid { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    canvas { display: none; }
    .hero-video { display: none; }
  }

  .investor-summary-chevron {
    display: inline-block;
  }

  /* CTA eyebrow — centered on desktop, left-aligned on mobile */
  .cta-eyebrow {
    justify-content: center;
  }

  /* Floating CTA Button */
  .floating-cta {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9997;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal);
    color: var(--navy);
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s, transform 0.3s, background-color 0.2s, box-shadow 0.2s;
    pointer-events: none;
  }
  .floating-cta.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .floating-cta:hover {
    background: var(--teal2);
    box-shadow: 0 6px 24px rgba(20, 184, 166, 0.6);
  }
  .floating-cta .cta-icon {
    font-size: 1rem;
  }

  /* Contact layout grid */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    align-items: start;
  }
  .contact-info {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2.5rem;
    text-align: left;
  }
  .info-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
  }
  .info-text {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .info-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .info-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .info-icon {
    font-size: 1.25rem;
    color: var(--teal);
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .info-item strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate2);
    margin-bottom: 0.25rem;
  }
  .info-item a, .info-item span {
    font-size: 0.95rem;
    color: white;
    text-decoration: none;
    transition: color 0.2s;
  }
  .info-item a:hover {
    color: var(--teal);
  }
  @media (max-width: 900px) {
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }
  }
  @media (max-width: 480px) {
    .floating-cta {
      bottom: 16px;
      left: 16px;
      padding: 0.7rem 1rem;
      font-size: 0.78rem;
    }
  }

  /* ═══════════════════════════════════════════════
     COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
     Targets: 768px tablets, 480px phones, 375px small phones
  ════════════════════════════════════════════════ */

  /* ── General section & hero padding ── */
  @media (max-width: 768px) {
    section { padding: 3.5rem 1.25rem; }
    .hero { padding: 7rem 1.25rem 3rem; }
    .hero-sub { font-size: 1rem; }
    .hero-badges { gap: 1rem; margin-top: 2rem; }
    .stats-bar { padding: 2rem 1.25rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .why-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .saas-callout { padding: 1.5rem; gap: 1.5rem; }
    .fin-grid { grid-template-columns: 1fr; gap: 2rem; }
    .diagram-wrap { padding: 1.25rem; }
    .diagram-stage { padding: 0.75rem 0.25rem 0.5rem; overflow-x: auto; }
    .system-diagram { min-width: 480px; }
    .investor-steps-section { padding: 3rem 1.25rem; }
    .investor-faq-section { padding: 3rem 1.25rem; }
    .investor-timeline { padding-left: 1.5rem; margin-top: 2rem; }
    .investor-subnav { padding: 0.75rem 1.25rem; gap: 0.5rem; }
    .investor-subnav a { font-size: 0.72rem; padding: 0.5rem 0.85rem; min-height: 44px; }
    .investor-ask-grid { padding: 1.5rem 1.25rem 0; }
    .venture-portfolio-section { padding: 1.5rem 1.25rem 0; }
    .investor-cta-bar { padding: 1.5rem 1.25rem; flex-direction: column; align-items: flex-start; }
    .investor-disclaimer { padding: 0 1.25rem 2rem; }
    .section-title { font-size: clamp(1.55rem, 5vw, 2rem); }
    .contact-info { padding: 1.75rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .form-actions { flex-direction: column; align-items: flex-start; }
    .faq-list { margin-top: 2rem; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card { justify-items: center; text-align: center; }
    .team-grid--single { max-width: 100%; }
    .fin-table-scroll { font-size: 0.82rem; }
    /* Allow diagram area to scroll horizontally on tablet */
    .diagram-wrap { overflow: visible; }
    .diagram-stage { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .cta-eyebrow { justify-content: center; }
    /* Prevent chatbot FAB from overlapping floating CTA on tablets/phones */
    #heBotFab { bottom: 16px; right: 16px; width: 48px; height: 48px; }
    #heBotPanel { right: 8px; bottom: 76px; width: calc(100vw - 16px); max-width: 360px; }
    .floating-cta .cta-text { display: none; }
    .floating-cta { padding: 0.75rem; border-radius: 50%; width: 48px; height: 48px; justify-content: center; gap: 0; left: 16px; bottom: 16px; }
    .floating-cta .cta-icon { font-size: 1.1rem; }
  }

  /* ── Small phone (≤480px) overrides ── */
  @media (max-width: 480px) {
    section { padding: 2.75rem 1rem; }
    .hero { padding: 6rem 1rem 2.5rem; }
    .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .hero-sub { font-size: 0.95rem; max-width: 100%; }
    .hero-actions { flex-direction: column; gap: 0.75rem; }
    .btn-primary, .btn-secondary { width: 100%; text-align: center; }
    .hero-badges { flex-direction: column; gap: 0.65rem; margin-top: 1.5rem; }
    .stats-bar { padding: 1.75rem 1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-num { font-size: 1.75rem; }
    .ps-grid { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
    .ps-card { padding: 1.5rem; }
    .diagram-wrap { padding: 1rem; border-radius: 12px; }
    .diagram-stage { padding: 0.6rem 0.2rem 0.4rem; }
    .system-diagram { min-width: 440px; }
    .diagram-legend { gap: 0.5rem 0.75rem; }
    .steps-list { grid-template-columns: 1fr; gap: 0.85rem; }
    .steps-list li { padding: 1rem 1rem 1rem 3.5rem; }
    .steps-list li::before { left: 0.75rem; top: 0.9rem; width: 1.85rem; height: 1.85rem; font-size: 0.8rem; }
    .products-grid { grid-template-columns: 1fr; }
    .product-card { padding: 1.25rem; }
    .saas-callout { padding: 1.25rem; }
    .why-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
    .why-card { padding: 1.25rem; }
    .market-grid { gap: 1.5rem; }
    .market-why { padding: 1.25rem; }
    .traction-grid { gap: 0.85rem; }
    .traction-card { padding: 1.25rem 1rem; }
    .pipeline-section { padding: 1.25rem; }
    .fin-grid { gap: 1.5rem; }
    .fin-table th, .fin-table td { padding: 0.6rem 0.75rem; font-size: 0.8rem; }
    .team-card { padding: 1.25rem; gap: 1rem; }
    .team-photo, .team-photo-placeholder { width: 72px; height: 72px; }
    .team-name { font-size: 0.95rem; }
    .investor-summary { padding: 1.25rem 1rem; }
    .investor-subnav { padding: 0.65rem 1rem; gap: 0.5rem; }
    .investor-ask-grid { padding: 1.25rem 1rem 0; gap: 0.85rem; }
    .investor-ask-card { padding: 1.1rem 1.1rem; }
    .investor-ask-title { font-size: 1rem; }
    .venture-portfolio-section { padding: 1.25rem 1rem 0; }
    .venture-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .venture-card { padding: 1.1rem 1rem 1rem; }
    .investor-cta-bar { padding: 1.25rem 1rem; }
    .investor-cta-actions { flex-direction: column; align-items: stretch; }
    .btn-investor { text-align: center; }
    .investor-faq-section { padding: 2.5rem 1rem; }
    .investor-faq-list { margin-top: 1.5rem; }
    .inv-faq-question { padding: 1rem 1.1rem; font-size: 0.88rem; }
    .investor-steps-section { padding: 2.5rem 1rem; }
    .investor-timeline { padding-left: 1.25rem; margin-top: 1.5rem; }
    .step-content { padding: 1.1rem; }
    .step-title { font-size: 0.95rem; }
    .faq-question { padding: 1rem 1.1rem; font-size: 0.88rem; }
    .faq-answer-inner { padding: 0 1.1rem 1rem; }
    .cta-section { text-align: left; }
    .cta-section .eyebrow { justify-content: flex-start; }
    .cta-section .section-title { text-align: left; }
    .cta-section .section-sub { text-align: left; margin-left: 0; }
    .contact-info { padding: 1.25rem; }
    .contact-form-wrap { padding: 1.25rem; margin: 0 0 2rem; }
    .info-item { gap: 0.85rem; }
    .info-icon { width: 36px; height: 36px; font-size: 1rem; }
    .footer-links { flex-direction: column; gap: 0.5rem; }
    /* Stat number overflow fix for narrow cells */
    .stat-num { font-size: clamp(1.1rem, 5vw, 1.75rem); word-break: break-word; overflow-wrap: anywhere; }
    /* Diagram: allow horizontal scroll without clipping */
    .diagram-stage { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .system-diagram { min-width: 420px; }
    /* Nav back link — hide on very small screens to avoid crowding */
    .nav-back { display: none; }
    /* CTA section text alignment */
    .cta-section .eyebrow { justify-content: flex-start !important; }
    /* Footer links wrapping */
    footer p:last-child { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem 0.5rem; line-height: 1.8; }
    footer p:last-child a { display: inline; white-space: nowrap; }
  }

  /* ── Very small screens (≤360px) ── */
  @media (max-width: 360px) {
    .hero h1 { font-size: 1.7rem; }
    .nav-links { width: min(100%, 320px); }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-num { font-size: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .system-diagram { min-width: 380px; }
  }

#heBotFab{position:fixed;bottom:24px;right:24px;width:56px;height:56px;border-radius:50%;background:linear-gradient(135deg,#14B8A6,#0D9488);display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 20px rgba(20,184,166,.4);z-index:9998;transition:transform .2s}
#heBotFab:hover{transform:scale(1.1)}
#heBotPulse{position:absolute;inset:-4px;border-radius:50%;border:2px solid #14B8A6;animation:heBotPulse 2s infinite;pointer-events:none}
@keyframes heBotPulse{0%{transform:scale(1);opacity:.6}100%{transform:scale(1.5);opacity:0}}
#heBotPanel{position:fixed;bottom:92px;right:24px;width:380px;max-width:calc(100vw - 32px);height:520px;max-height:calc(100vh - 120px);background:#0F172A;border:1px solid rgba(148,163,184,.15);border-radius:16px;display:none;flex-direction:column;z-index:9999;box-shadow:0 8px 40px rgba(0,0,0,.5);overflow:hidden}
#heBotPanel.open{display:flex;animation:heBotSlide .25s ease-out}
@keyframes heBotSlide{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
#heBotHeader{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;background:#0C1524;border-bottom:1px solid rgba(148,163,184,.1);font-size:14px;color:#E2E8F0}
#heBotHeader button{background:none;border:none;color:#94A3B8;font-size:22px;cursor:pointer;padding:0 4px;line-height:1}
#heBotMessages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:10px;scrollbar-width:thin;scrollbar-color:rgba(148,163,184,.2) transparent}
#heBotMessages::-webkit-scrollbar{width:4px}
#heBotMessages::-webkit-scrollbar-thumb{background:rgba(148,163,184,.2);border-radius:2px}
.heBotMsg{max-width:88%;padding:10px 14px;border-radius:14px;font-size:13px;line-height:1.55;animation:heBotFade .2s ease-out}
@keyframes heBotFade{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:none}}
.heBotMsg.bot{background:#1E293B;color:#CBD5E1;align-self:flex-start;border-bottom-left-radius:4px}
.heBotMsg.user{background:linear-gradient(135deg,#14B8A6,#0D9488);color:#042F2E;align-self:flex-end;border-bottom-right-radius:4px;font-weight:500}
.heBotMsg.bot a{color:#5EEAD4;text-decoration:underline}
.heBotTyping{display:flex;gap:4px;padding:10px 14px;align-self:flex-start}
.heBotTyping span{width:6px;height:6px;border-radius:50%;background:#64748B;animation:heBotDot 1.2s infinite}
.heBotTyping span:nth-child(2){animation-delay:.2s}
.heBotTyping span:nth-child(3){animation-delay:.4s}
@keyframes heBotDot{0%,80%,100%{transform:scale(.6);opacity:.4}40%{transform:scale(1);opacity:1}}
#heBotQuickReplies{padding:6px 12px;display:flex;flex-wrap:wrap;gap:6px;border-top:1px solid rgba(148,163,184,.08)}
#heBotQuickReplies:empty{display:none;padding:0}
.heBotQR{background:rgba(20,184,166,.12);color:#5EEAD4;border:1px solid rgba(20,184,166,.25);border-radius:20px;padding:5px 12px;font-size:11.5px;cursor:pointer;transition:all .15s;white-space:nowrap}
.heBotQR:hover{background:rgba(20,184,166,.25);border-color:#14B8A6}
#heBotForm{display:flex;gap:6px;padding:10px 12px;border-top:1px solid rgba(148,163,184,.1);background:#0C1524}
#heBotInput{flex:1;background:#1E293B;border:1px solid rgba(148,163,184,.15);border-radius:10px;padding:9px 12px;color:#E2E8F0;font-size:13px;outline:none;transition:border-color .2s}
#heBotInput:focus{border-color:#14B8A6}
#heBotForm button{background:linear-gradient(135deg,#14B8A6,#0D9488);border:none;border-radius:10px;width:38px;color:#042F2E;font-size:16px;cursor:pointer;transition:opacity .15s}
#heBotForm button:hover{opacity:.85}
@media(max-width:768px){#heBotPanel{right:8px;bottom:80px;width:calc(100vw - 16px);height:calc(100vh - 100px);max-width:360px}#heBotFab{bottom:16px;right:16px;width:48px;height:48px}}
.investor-teaser-strip {
  background: linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%);
  border-top: 1px solid rgba(20,184,166,0.15);
  border-bottom: 1px solid rgba(20,184,166,0.15);
}
.investor-teaser-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 1.5rem auto 1.75rem;
  max-width: 920px;
}
.investor-teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.investor-page-hero {
  padding-top: 7.5rem;
  padding-bottom: 2rem;
  text-align: center;
}
.investor-page-hero .section-sub { margin-left: auto; margin-right: auto; }
.investor-page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--slate);
  text-decoration: none;
}
.investor-page-back:hover { color: var(--teal); }
.investor-panel.open .investor-panel-body { max-height: none !important; }
