    :root {
      --cl-green: #115a4e;
      --cl-green-dark: #103933;
      --cl-green-darker: #0a2620;
      --cl-green-light: #17e18c; /* official Inventure brand emerald */
      --cl-navy: #102542;        /* official Inventure brand navy */
      --cl-beige: #f8f2e6;
      --text-primary: #f8f2e6;
      --text-secondary: rgba(248, 242, 230, 0.66);
      --text-tertiary: rgba(248, 242, 230, 0.44);
      --text-quaternary: rgba(248, 242, 230, 0.24);
      --border: rgba(248, 242, 230, 0.08);
      --border-strong: rgba(248, 242, 230, 0.14);
      --surface: #0f2d28;
      --surface-2: #133832;
      --font-main: "Spline Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
      --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

      /* image slots — Unsplash stock, downloaded locally */
      --img-hero: url("images/hero.jpg");
      --img-conduits: url("images/conduits.jpg");
      --img-renewable: url("images/renewable.jpg");
      --img-finance: url("images/finance.jpg");
      --img-storage: url("images/storage.jpg");
      --img-datacenter: url("images/datacenter.jpg");
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

    body {
      background: var(--cl-green-darker);
      color: var(--text-primary);
      font-family: var(--font-main);
      font-weight: 400;
      font-size: 15px;
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
    img, svg { display: block; max-width: 100%; }

    /* ---------- Breathable container ---------- */
    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 64px;
    }
    @media (max-width: 1100px) { .container { padding: 0 48px; } }
    @media (max-width: 700px)  { .container { padding: 0 28px; } }

    .mono { font-family: var(--font-mono); font-feature-settings: "ss01" on; letter-spacing: 0; }

    /* ---------- Ambient glow ---------- */
    .ambient {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.55;
    }
    .ambient::before {
      content: "";
      position: absolute;
      top: -20%;
      left: 50%;
      transform: translateX(-50%);
      width: 1200px;
      height: 800px;
      background: radial-gradient(ellipse at center, rgba(23, 225, 140, 0.09), transparent 60%);
      filter: blur(40px);
    }

    /* ---------- Scroll reveal ---------- */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }
    .reveal.in {
      opacity: 1;
      transform: none;
    }
    .stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

    /* Word-level reveal on headlines — slide-up-from-mask with overshoot */
    .reveal:has(.word-wrap) {
      opacity: 1;
      transform: none;
      transition: none;
    }
    .word-wrap {
      display: inline-flex;
      overflow: hidden;
      vertical-align: bottom;
      line-height: inherit;
      padding-bottom: 0.08em;
    }
    .word {
      display: inline-block;
      transform: translateY(110%) rotate(5deg);
      transform-origin: 0% 0%;
      opacity: 0;
      transition:
        transform 1100ms cubic-bezier(0.18, 0.9, 0.25, 1.08),
        opacity 600ms cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: calc(var(--wi, 0) * 70ms + 60ms);
      will-change: transform;
    }
    .reveal.in .word {
      transform: translateY(0) rotate(0);
      opacity: 1;
    }

    /* Section-label eyebrows — tick-in effect */
    .section-label.reveal {
      transform: translateX(-14px);
      transition: opacity 600ms, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
    }
    .section-label.reveal.in { transform: none; }
    .section-label.reveal::before {
      content: "";
      display: inline-block;
      width: 0;
      height: 1px;
      background: var(--cl-green-light);
      vertical-align: middle;
      margin-right: 0;
      transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1) 200ms, margin-right 900ms cubic-bezier(0.22, 1, 0.36, 1) 200ms;
    }
    .section-label.reveal.in::before {
      width: 28px;
      margin-right: 12px;
    }

    /* Scroll progress bar */
    .scroll-progress {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      width: 100%;
      transform-origin: left center;
      transform: scaleX(0);
      background: linear-gradient(90deg, var(--cl-green-light), rgba(23, 225, 140, 0.5));
      z-index: 100;
      pointer-events: none;
      transition: transform 80ms linear;
    }

    /* Card tilt + cursor glow — subtle 3D response to pointer */
    .sector-card, .feature, .team-card, .metric, .stat {
      transform-style: preserve-3d;
      transform:
        perspective(900px)
        rotateX(var(--tiltx, 0deg))
        rotateY(var(--tilty, 0deg));
      transition:
        transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        background-color 0.3s ease;
      position: relative;
    }
    /* Dramatic 3D reveal for cards — tilt up from -8° with scale + translate */
    .sector-card.reveal:not(.in),
    .feature.reveal:not(.in),
    .team-card.reveal:not(.in),
    .metric.reveal:not(.in),
    .stat.reveal:not(.in) {
      opacity: 0;
      transform:
        perspective(1200px)
        rotateX(-9deg)
        translateY(52px)
        scale(0.94);
      transform-origin: 50% 100%;
      transition:
        transform 1200ms cubic-bezier(0.16, 0.9, 0.28, 1.04),
        opacity 800ms cubic-bezier(0.22, 1, 0.36, 1);
    }
    .sector-card.reveal.in,
    .feature.reveal.in,
    .team-card.reveal.in,
    .metric.reveal.in,
    .stat.reveal.in {
      transition:
        transform 1200ms cubic-bezier(0.16, 0.9, 0.28, 1.04),
        opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        background-color 0.3s ease;
    }
    .sector-card::after, .feature::after, .team-card::after, .metric::after, .stat::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      opacity: 0;
      transition: opacity 300ms ease;
      background: radial-gradient(
        320px circle at var(--glow-x, 50%) var(--glow-y, 50%),
        rgba(23, 225, 140, 0.10),
        transparent 55%
      );
    }
    .sector-card:hover::after,
    .feature:hover::after,
    .team-card:hover::after,
    .metric:hover::after,
    .stat:hover::after {
      opacity: 1;
    }

    @media (prefers-reduced-motion: reduce) {
      .sector-card, .feature, .team-card, .metric, .stat { transform: none; }
      .sector-card::after, .feature::after, .team-card::after, .metric::after, .stat::after { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .reveal:has(.word) { opacity: 1; }
      .word { opacity: 1; transform: none; filter: none; transition: none; }
      .scroll-progress { display: none; }
      html { scroll-behavior: auto; }
      * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
    }

    /* ---------- Nav ---------- */
    .nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      background: rgba(10, 38, 32, 0.72);
      border-bottom: 1px solid var(--border);
      transition: background-color 0.3s ease, border-color 0.3s ease;
    }
    .nav.nav--scrolled {
      background: rgba(10, 38, 32, 0.92);
      border-bottom-color: var(--border-strong);
    }
    .nav.nav--scrolled .nav-inner { height: 64px; }
    .nav.nav--scrolled .brand img { height: 34px; }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
      transition: height 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0;
      line-height: 0;
    }
    .brand img { height: 40px; width: auto; display: block; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
    .brand:hover img { transform: scale(1.03); }
    .foot-brand .brand img { height: 48px; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 14px;
      color: var(--text-secondary);
    }
    .nav-links a { transition: color 0.15s ease; }
    .nav-links a:hover, .nav-links a:focus-visible { color: var(--text-primary); outline: none; }

    .nav-cta {
      font-size: 14px;
      padding: 8px 16px;
      border-radius: 999px;
      background: var(--cl-green-light);
      color: var(--cl-green-dark);
      font-weight: 500;
      transition: background 0.15s ease, transform 0.15s ease;
    }
    .nav-cta:hover { background: #9dffa0; }
    .nav-cta:focus-visible { outline: 2px solid var(--text-primary); outline-offset: 2px; }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      padding: 160px 0 140px;
      text-align: center;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: -60px 0 0 0;
      background-image: var(--img-hero);
      background-size: 110% auto;
      background-position: center calc(50% + var(--parallax, 0px));
      background-repeat: no-repeat;
      opacity: 0.22;
      filter: saturate(0.8) contrast(1.05);
      z-index: -1;
      transition: opacity 500ms ease;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10,38,32,0.2) 0%, rgba(10,38,32,0.85) 80%, var(--cl-green-darker) 100%);
      z-index: -1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text-secondary);
      padding: 6px 12px;
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      margin-bottom: 40px;
      letter-spacing: 0.02em;
      font-family: var(--font-mono);
    }
    .hero-eyebrow::before {
      content: "";
      width: 6px; height: 6px;
      background: var(--cl-green-light);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--cl-green-light);
    }

    .hero h1 {
      font-size: clamp(40px, 5.9vw, 118px);
      font-weight: 400;
      line-height: 0.98;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      white-space: nowrap;
      margin: 0 0 32px;
    }

    .hero-sub {
      font-size: 18px;
      line-height: 1.5;
      color: var(--text-secondary);
      max-width: 54ch;
      margin: 0 auto 40px;
    }

    .hero-actions {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 6px 6px 6px 20px;
      background: rgba(248, 242, 230, 0.06);
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      font-size: 14px;
      transition: border-color 0.2s ease, background 0.2s ease;
    }
    .hero-actions:focus-within { border-color: var(--cl-green-light); background: rgba(248, 242, 230, 0.1); }
    .hero-actions input {
      background: transparent;
      border: 0;
      outline: none;
      color: var(--text-primary);
      font: inherit;
      min-width: 260px;
      padding: 8px 8px;
    }
    .hero-actions input::placeholder { color: var(--text-tertiary); }
    .hero-actions button {
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--cl-green-light);
      color: var(--cl-green-dark);
      font-weight: 500;
      transition: background 0.15s ease;
    }
    .hero-actions button:hover { background: #9dffa0; }
    .hero-actions button:focus-visible { outline: 2px solid var(--text-primary); outline-offset: 2px; }

    .hero-meta {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-top: 64px;
      font-size: 12px;
      color: var(--text-tertiary);
      flex-wrap: wrap;
    }
    .hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-meta span::before {
      content: "";
      width: 4px; height: 4px;
      background: var(--cl-green-light);
      border-radius: 50%;
      opacity: 0.7;
    }

    /* ---------- Section chrome ---------- */
    section { position: relative; z-index: 1; }

    .section-label {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-tertiary);
      margin-bottom: 20px;
      letter-spacing: 0.02em;
    }
    .section-heading {
      font-size: clamp(32px, 3.4vw, 52px);
      font-weight: 400;
      letter-spacing: -0.025em;
      line-height: 1.05;
      max-width: 22ch;
    }
    .section-lede {
      font-size: 17px;
      line-height: 1.55;
      color: var(--text-secondary);
      max-width: 46ch;
    }
    .divider { height: 1px; background: var(--border); width: 100%; }

    .cta-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-primary);
      padding: 12px 20px;
      border: 1px solid var(--border-strong);
      border-radius: 999px;
      transition: background 0.15s ease, border-color 0.15s ease;
      width: fit-content;
    }
    .cta-link:hover { background: rgba(248, 242, 230, 0.06); border-color: var(--cl-green-light); }
    .cta-link:focus-visible { outline: 2px solid var(--cl-green-light); outline-offset: 2px; }
    .cta-link svg { width: 12px; height: 12px; }

    .cta-link.solid {
      background: var(--cl-green-light);
      color: var(--cl-green-dark);
      border-color: var(--cl-green-light);
    }
    .cta-link.solid:hover { background: #9dffa0; }

    /* ---------- Sectors ---------- */
    .sectors {
      padding: 140px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .sectors-head {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 80px;
      align-items: end;
      margin-bottom: 64px;
    }
    .sectors-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .sector-card {
      position: relative;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 0;
      background: var(--surface);
      display: flex;
      flex-direction: column;
      min-height: 440px;
      overflow: hidden;
      transition: border-color 0.25s ease, transform 0.25s ease;
    }
    .sector-card:hover { border-color: var(--border-strong); transform: perspective(900px) rotateX(var(--tiltx, 0deg)) rotateY(var(--tilty, 0deg)) translateY(-3px); }

    .sector-art {
      position: relative;
      aspect-ratio: 4 / 3;
      background-size: 112% auto;
      background-position: center calc(50% + var(--art-shift, 0px));
      background-repeat: no-repeat;
      background-color: var(--surface-2);
      overflow: hidden;
      transition: background-position 180ms linear;
    }
    .sector-art::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10,38,32,0.1), rgba(10,38,32,0.6));
      pointer-events: none;
    }
    .sector-art .placeholder {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-quaternary);
      font-family: var(--font-mono);
      font-size: 11px;
      background:
        repeating-linear-gradient(45deg, transparent 0 14px, rgba(23,225,140,0.03) 14px 15px),
        var(--surface-2);
    }

    .sector-body {
      padding: 24px 24px 28px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .sector-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-tertiary);
      letter-spacing: 0.04em;
      margin-bottom: 10px;
    }
    .sector-card h4 {
      font-size: 19px;
      font-weight: 500;
      letter-spacing: -0.015em;
      margin-bottom: 12px;
      line-height: 1.2;
    }
    .sector-card p {
      font-size: 14px;
      color: var(--text-secondary);
      line-height: 1.5;
      margin-bottom: 24px;
    }
    .sector-card .more {
      margin-top: auto;
      font-size: 13px;
      color: var(--text-tertiary);
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .sector-card .more:hover { color: var(--cl-green-light); }

    /* ---------- Stats ---------- */
    .stats { padding: 140px 0; border-bottom: 1px solid var(--border); }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: var(--surface);
    }
    .stat {
      padding: 48px 40px;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: 0; }
    .stat-number {
      font-size: clamp(56px, 5.4vw, 76px);
      font-weight: 300;
      letter-spacing: -0.035em;
      color: var(--cl-green-light);
      line-height: 1;
      margin-bottom: 24px;
    }
    .stat-label {
      font-size: 15px;
      color: var(--text-secondary);
      max-width: 30ch;
      line-height: 1.5;
    }

    /* ---------- Split ("Built for energy") ---------- */
    .split-section {
      padding: 140px 0;
      border-bottom: 1px solid var(--border);
    }
    .split {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
      gap: 96px;
      align-items: start;
    }
    .split p + p { margin-top: 18px; }
    .split .actions { margin-top: 32px; }

    /* ---------- Features ---------- */
    .features { padding: 140px 0; border-bottom: 1px solid var(--border); }
    .features-head { margin-bottom: 56px; max-width: 880px; }
    .features-head h2 { margin: 0 0 20px; }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .feature {
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--surface);
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: border-color 0.25s ease, transform 0.25s ease;
    }
    .feature:hover { border-color: var(--border-strong); transform: perspective(900px) rotateX(var(--tiltx, 0deg)) rotateY(var(--tilty, 0deg)) translateY(-3px); }
    .feature-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      border: 1px solid var(--border-strong);
      display: flex; align-items: center; justify-content: center;
      color: var(--cl-green-light);
    }
    .feature h3 {
      font-size: 18px;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin-bottom: 8px;
    }
    .feature p {
      font-size: 14.5px;
      color: var(--text-secondary);
      line-height: 1.55;
    }

    /* ---------- Conduits band ---------- */
    .band { padding: 140px 0; border-bottom: 1px solid var(--border); }
    .band-frame {
      position: relative;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 80px;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      background-color: var(--surface-2);
      background-image: var(--img-conduits);
      background-size: 110% auto;
      background-position: center calc(50% + var(--band-shift, 0px));
      background-repeat: no-repeat;
      isolation: isolate;
      transition: background-position 220ms linear;
    }
    .band-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10,38,32,0.35) 0%, rgba(10,38,32,0.72) 60%, rgba(10,38,32,0.9) 100%),
        linear-gradient(90deg, rgba(10,38,32,0.45) 0%, rgba(10,38,32,0.1) 55%, transparent 100%);
      z-index: -1;
      pointer-events: none;
    }
    .band-frame h2 {
      font-size: clamp(36px, 4.2vw, 60px);
      font-weight: 400;
      letter-spacing: -0.028em;
      line-height: 1.02;
      max-width: 18ch;
      color: var(--cl-green-light);
    }
    .band-frame p {
      margin-top: 24px;
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 56ch;
    }
    .band-frame .actions { margin-top: 32px; }

    /* ---------- Ideas ---------- */
    .ideas { padding: 140px 0; border-bottom: 1px solid var(--border); }
    .ideas-head {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 64px;
      align-items: end;
      margin-bottom: 56px;
    }
    .post-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .post {
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      background: var(--surface);
      min-height: 240px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: border-color 0.25s ease, transform 0.25s ease;
    }
    .post:hover { border-color: var(--border-strong); transform: perspective(900px) rotateX(var(--tiltx, 0deg)) rotateY(var(--tilty, 0deg)) translateY(-3px); }
    .post-meta {
      display: flex; align-items: center; gap: 10px;
      font-size: 12px; color: var(--text-tertiary);
    }
    .post-meta .avatar {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--cl-green-light); opacity: 0.8;
    }
    .post-body { font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; }
    .post-tag {
      margin-top: auto;
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-quaternary);
      letter-spacing: 0.06em;
    }

    /* ---------- Nationwide ---------- */
    .nationwide {
      padding: 140px 0;
      border-bottom: 1px solid var(--border);
      text-align: center;
    }
    .nationwide h2 {
      font-size: clamp(40px, 4.6vw, 68px);
      font-weight: 400;
      letter-spacing: -0.03em;
      margin-bottom: 56px;
      line-height: 1.05;
    }
    .footprint-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      text-align: left;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .footprint-city {
      padding: 48px 32px;
      border-left: 1px solid var(--border);
      position: relative;
      transition: background-color 0.4s ease;
    }
    .footprint-city:last-child { border-right: 1px solid var(--border); }
    .footprint-city:hover { background-color: rgba(23, 225, 140, 0.035); }
    .footprint-city::before {
      content: "";
      position: absolute;
      top: 48px;
      left: 32px;
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--cl-green-light);
      box-shadow: 0 0 0 3px rgba(23, 225, 140, 0.15), 0 0 14px rgba(23, 225, 140, 0.55);
    }
    .footprint-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--text-tertiary);
      margin-left: 22px;
      margin-bottom: 28px;
    }
    .footprint-name {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 400;
      letter-spacing: -0.025em;
      line-height: 1.05;
    }
    .footprint-meta {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.04em;
      color: var(--text-tertiary);
      margin-top: 12px;
    }
    @media (max-width: 900px) {
      .footprint-grid { grid-template-columns: 1fr; }
      .footprint-city { border-left: 0; border-top: 1px solid var(--border); padding: 36px 0; }
      .footprint-city::before { left: 0; top: 36px; }
      .footprint-tag { margin-left: 22px; }
      .footprint-city:last-child { border-right: 0; }
    }

    /* ---------- Get in touch ---------- */
    .touch { padding: 140px 0; }
    .touch-card {
      position: relative;
      border: 1px solid var(--border-strong);
      border-radius: 24px;
      padding: 80px;
      background:
        radial-gradient(900px circle at 100% 0%, rgba(23, 225, 140, 0.1), transparent 55%),
        var(--surface);
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 56px;
      align-items: center;
      overflow: hidden;
    }
    .touch-card::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -40px;
      width: 320px;
      height: 320px;
      background-image: url("images/inventure-mark.svg");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: bottom right;
      opacity: 0.1;
      pointer-events: none;
    }
    .touch-card h2 {
      font-size: clamp(40px, 4.6vw, 64px);
      font-weight: 400;
      letter-spacing: -0.028em;
      line-height: 1.02;
      margin-bottom: 20px;
    }
    .touch-card p {
      font-size: 17px;
      color: var(--text-secondary);
      max-width: 42ch;
    }
    .touch-actions { display: flex; flex-direction: column; gap: 12px; }
    .touch-actions a {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 24px;
      border: 1px solid var(--border-strong);
      border-radius: 14px;
      font-size: 15px;
      transition: background 0.15s ease, border-color 0.15s ease;
    }
    .touch-actions a:hover { background: rgba(248, 242, 230, 0.05); border-color: var(--cl-green-light); }
    .touch-actions .label { display: flex; flex-direction: column; gap: 4px; }
    .touch-actions .label small {
      color: var(--text-tertiary);
      font-size: 11px;
      font-family: var(--font-mono);
      letter-spacing: 0.06em;
    }

    /* ---------- Footer ---------- */
    footer {
      border-top: 1px solid var(--border);
      padding: 64px 0 56px;
    }
    .foot-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 56px;
    }
    .foot-col h5 {
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-quaternary);
      margin-bottom: 18px;
      font-weight: 400;
    }
    .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .foot-col a { font-size: 13.5px; color: var(--text-secondary); transition: color 0.15s ease; }
    .foot-col a:hover { color: var(--text-primary); }
    .foot-brand p { margin-top: 18px; font-size: 13.5px; color: var(--text-secondary); max-width: 34ch; }
    .foot-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      font-size: 12px; color: var(--text-quaternary);
    }

    /* ---------- Responsive ---------- */
    @media (max-width: 1100px) {
      .sectors-grid { grid-template-columns: 1fr 1fr; }
      .post-strip { grid-template-columns: 1fr 1fr; }
      .features-grid { grid-template-columns: 1fr; }
      .split, .sectors-head, .ideas-head { grid-template-columns: 1fr; gap: 32px; }
      .split-section { padding: 96px 0; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat { border-right: 0; border-bottom: 1px solid var(--border); }
      .stat:last-child { border-bottom: 0; }
      .touch-card { grid-template-columns: 1fr; padding: 48px; }
      .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      .band-frame { padding: 48px; }
      .hero { padding: 120px 0 100px; }
      .hero h1 { white-space: normal; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .sectors-grid, .post-strip, .foot-grid { grid-template-columns: 1fr; }
      .hero-meta { flex-direction: column; gap: 10px; }
      .hero-actions { flex-direction: column; gap: 8px; padding: 12px; border-radius: 18px; width: 100%; }
      .hero-actions input { width: 100%; min-width: 0; }
      .hero-actions button { width: 100%; }
    }

    /* ============ Inner page patterns ============ */

    /* ---------- Page hero (smaller than homepage) ---------- */
    .page-hero {
      position: relative;
      padding: 140px 0 100px;
      text-align: left;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(800px circle at 20% 0%, rgba(23, 225, 140, 0.06), transparent 60%);
      z-index: -1;
      pointer-events: none;
      transform: translateY(var(--ph-shift, 0px));
      transition: transform 180ms linear;
    }
    .page-hero .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-tertiary);
      letter-spacing: 0.04em;
      margin-bottom: 28px;
    }
    .page-hero .eyebrow::before {
      content: "";
      width: 6px; height: 6px;
      background: var(--cl-green-light);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--cl-green-light);
    }
    .page-hero h1 {
      font-size: clamp(44px, 5.4vw, 96px);
      font-weight: 400;
      letter-spacing: -0.032em;
      line-height: 1.02;
      margin: 0 0 28px;
      max-width: 20ch;
    }
    .page-hero .lede {
      font-size: 18px;
      color: var(--text-secondary);
      max-width: 60ch;
      line-height: 1.55;
    }

    /* ---------- Long-form prose (legal pages) ---------- */
    .prose-wrap { padding: 80px 0 140px; }
    .prose {
      max-width: 720px;
      margin: 0 auto;
      font-size: 15.5px;
      line-height: 1.7;
      color: var(--text-secondary);
    }
    .prose h2 {
      font-size: 22px;
      font-weight: 500;
      color: var(--text-primary);
      letter-spacing: -0.01em;
      margin: 56px 0 16px;
      line-height: 1.3;
    }
    .prose h3 {
      font-size: 17px;
      font-weight: 500;
      color: var(--text-primary);
      margin: 32px 0 12px;
    }
    .prose p { margin-bottom: 18px; }
    .prose ul, .prose ol { margin: 18px 0 18px 24px; }
    .prose li { margin-bottom: 10px; }
    .prose a {
      color: var(--cl-green-light);
      border-bottom: 1px solid rgba(23, 225, 140, 0.3);
      transition: border-color 0.15s ease;
    }
    .prose a:hover { border-bottom-color: var(--cl-green-light); }
    .prose strong { color: var(--text-primary); font-weight: 500; }
    .prose hr { border: 0; border-top: 1px solid var(--border); margin: 40px 0; }
    .prose-meta {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-tertiary);
      margin-bottom: 32px;
      letter-spacing: 0.04em;
    }

    /* ---------- Generic content section ---------- */
    .content-section {
      padding: 120px 0;
      border-bottom: 1px solid var(--border);
    }
    .content-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
      gap: 96px;
      align-items: start;
    }
    .content-row h2 {
      font-size: clamp(32px, 3.2vw, 44px);
      font-weight: 400;
      letter-spacing: -0.025em;
      line-height: 1.08;
    }
    .content-row p {
      font-size: 17px;
      color: var(--text-secondary);
      line-height: 1.55;
      max-width: 56ch;
    }
    .content-row p + p { margin-top: 18px; }

    /* ---------- Job list (for Jobs page) ---------- */
    .job-list {
      display: flex;
      flex-direction: column;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--surface);
      overflow: hidden;
    }
    .job-row {
      display: grid;
      grid-template-columns: 2.2fr 1fr 1fr 40px;
      gap: 24px;
      padding: 24px 28px;
      border-top: 1px solid var(--border);
      align-items: center;
      transition: background 0.15s ease;
    }
    .job-row:first-child { border-top: 0; }
    .job-row:hover { background: rgba(248, 242, 230, 0.03); }
    .job-title { font-size: 16px; font-weight: 500; color: var(--text-primary); }
    .job-meta { font-size: 13px; color: var(--text-tertiary); font-family: var(--font-mono); }
    .job-arrow { color: var(--text-quaternary); text-align: right; font-size: 18px; }
    .job-row:hover .job-arrow { color: var(--cl-green-light); }

    /* ---------- Team grid (for About page) ---------- */
    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .team-grid--founders {
      grid-template-columns: repeat(2, minmax(0, 360px));
      justify-content: start;
      gap: 28px;
    }
    .team-card {
      padding: 20px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--surface);
      transition: border-color 0.3s ease, transform 0.3s ease;
    }
    .team-card:hover { border-color: var(--border-strong); transform: perspective(900px) rotateX(var(--tiltx, 0deg)) rotateY(var(--tilty, 0deg)) translateY(-3px); }
    .team-photo {
      aspect-ratio: 4 / 5;
      background: var(--surface-2);
      border-radius: 10px;
      margin-bottom: 20px;
      background-size: cover;
      background-position: center top;
      filter: grayscale(0.35) brightness(0.92) contrast(1.02);
      transition: filter 0.5s ease;
    }
    .team-card:hover .team-photo {
      filter: grayscale(0) brightness(1) contrast(1);
    }
    .team-name { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
    .team-role { font-size: 13px; color: var(--text-tertiary); margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.02em; }
    .team-bio { font-size: 14px; color: var(--text-secondary); margin-top: 14px; line-height: 1.5; }

    /* ---------- Contact form (simple) ---------- */
    .contact-form {
      display: grid;
      gap: 16px;
      max-width: 640px;
    }
    .contact-form label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-tertiary);
      display: block;
      margin-bottom: 6px;
    }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%;
      padding: 14px 16px;
      background: var(--surface);
      color: var(--text-primary);
      border: 1px solid var(--border-strong);
      border-radius: 10px;
      font: inherit;
      outline: none;
      transition: border-color 0.15s ease;
    }
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      border-color: var(--cl-green-light);
    }
    .contact-form textarea { min-height: 140px; resize: vertical; }
    .contact-form button {
      justify-self: start;
      padding: 14px 24px;
      background: var(--cl-green-light);
      color: var(--cl-green-dark);
      border-radius: 999px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.15s ease;
    }
    .contact-form button:hover { background: #2cf5a0; }

    /* Inquiry submit feedback */
    .form-status {
      grid-column: 1 / -1;
      margin-top: 4px;
      padding: 12px 16px;
      border: 1px solid var(--border-strong);
      border-radius: 10px;
      background: rgba(23, 225, 140, 0.06);
      color: var(--text-primary);
      font-size: 14px;
      font-family: var(--font-mono);
      letter-spacing: 0.02em;
    }
    .form-status--error {
      background: rgba(255, 120, 120, 0.06);
      border-color: rgba(255, 120, 120, 0.3);
    }

    @media (max-width: 1100px) {
      .content-row { grid-template-columns: 1fr; gap: 32px; }
      .team-grid { grid-template-columns: 1fr 1fr; }
      .job-row { grid-template-columns: 1fr 1fr; }
      .content-section { padding: 96px 0; }
      .page-hero { padding: 96px 0 72px; }
    }
    @media (max-width: 640px) {
      .team-grid { grid-template-columns: 1fr; }
      .job-row { grid-template-columns: 1fr; gap: 8px; }
    }

    /* ---------- Metric block (industry / illustrative stats) ---------- */
    .metrics-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 40px; flex-wrap: wrap; }
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: var(--surface);
    }
    .metric {
      padding: 36px 28px;
      border-right: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .metric:last-child { border-right: 0; }
    .metric::before {
      content: "";
      position: absolute;
      top: -30%;
      right: -20%;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(23, 225, 140, 0.08), transparent 65%);
      pointer-events: none;
    }
    .metric .n {
      font-size: clamp(38px, 3.6vw, 54px);
      font-weight: 300;
      letter-spacing: -0.028em;
      color: var(--cl-green-light);
      line-height: 1;
      margin-bottom: 18px;
      font-variant-numeric: tabular-nums;
    }
    .metric .l {
      font-size: 13.5px;
      color: var(--text-secondary);
      line-height: 1.5;
      max-width: 28ch;
    }
    .metric .tag {
      margin-top: 14px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-quaternary);
    }

    @media (max-width: 900px) {
      .metrics-grid { grid-template-columns: 1fr 1fr; }
      .metric { border-right: 0; border-bottom: 1px solid var(--border); }
      .metric:nth-child(even) { border-right: 0; }
      .metric:nth-last-child(-n+2) { border-bottom: 0; }
    }
    @media (max-width: 520px) {
      .metrics-grid { grid-template-columns: 1fr; }
      .metric { border-bottom: 1px solid var(--border); border-right: 0; }
      .metric:last-child { border-bottom: 0; }
    }

    /* ---------- Timeline (Inventure milestones) ---------- */
    .timeline {
      position: relative;
      padding-left: 24px;
      border-left: 1px solid var(--border-strong);
    }
    .timeline-item {
      position: relative;
      padding-bottom: 44px;
    }
    .timeline-item::before {
      content: "";
      position: absolute;
      left: -30px;
      top: 6px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--cl-green-light);
      box-shadow: 0 0 0 4px var(--cl-green-darker), 0 0 12px rgba(23, 225, 140, 0.7);
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-year {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.06em;
      color: var(--cl-green-light);
      margin-bottom: 8px;
    }
    .timeline-title {
      font-size: 19px;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }
    .timeline-body {
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.6;
      max-width: 52ch;
    }

    /* ---------- Pipeline / Journey bar ---------- */
    .pipeline {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      background: var(--surface);
    }
    .pipeline-step {
      position: relative;
      padding: 16px 18px;
      border-radius: 10px;
      background: var(--cl-green-darker);
      border: 1px solid var(--border);
    }
    .pipeline-step .step-n {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--cl-green-light);
      letter-spacing: 0.06em;
      margin-bottom: 6px;
    }
    .pipeline-step h4 {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 6px;
    }
    .pipeline-step p {
      font-size: 12.5px;
      color: var(--text-secondary);
      line-height: 1.5;
    }
    @media (max-width: 900px) {
      .pipeline { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .pipeline { grid-template-columns: 1fr; }
    }

    /* ---------- Image band — reusable small decorative band ---------- */
    .img-band {
      position: relative;
      height: 320px;
      border-radius: 16px;
      background-size: cover;
      background-position: center;
      overflow: hidden;
      isolation: isolate;
      margin: 0;
    }
    .img-band::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(10, 38, 32, 0.3), rgba(10, 38, 32, 0.7));
      z-index: -1;
    }
    .img-band-inner {
      position: absolute;
      left: 36px;
      bottom: 28px;
      right: 36px;
    }
    .img-band-caption {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--cl-green-light);
      text-transform: uppercase;
    }

    /* ---------- Illustrative tag on invented stats ---------- */
    .illustrative-note {
      display: inline-block;
      margin-top: 20px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-quaternary);
      letter-spacing: 0.04em;
    }

    /* ============ Tonal diversity (section backgrounds) ============ */

    /* Navy-tinted section — cooler, deeper */
    .tone-navy {
      background:
        linear-gradient(180deg, transparent 0%, rgba(16, 37, 66, 0.28) 50%, transparent 100%),
        var(--cl-green-darker);
      position: relative;
    }
    .tone-navy::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(1200px 400px at 50% 0%, rgba(16, 37, 66, 0.4), transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .tone-navy > * { position: relative; z-index: 1; }

    /* Emerald-tinted section — warmer accent */
    .tone-emerald {
      background:
        radial-gradient(1200px 500px at 70% 20%, rgba(23, 225, 140, 0.05), transparent 55%),
        var(--cl-green-darker);
      position: relative;
    }

    /* Deep green — richer than darker */
    .tone-deep {
      background: linear-gradient(180deg, var(--cl-green-darker) 0%, #0c2e28 50%, var(--cl-green-darker) 100%);
    }

    /* Gradient stitch — transition between tones */
    .section-transition {
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--border-strong) 50%, transparent 100%);
    }

    /* ============ Energy animations ============ */

    /* Sci-grid and scan-sweep retained as no-ops to avoid breakage on existing markup */
    .sci-grid { display: none; }
    .scan-sweep { position: relative; }

    /* Pulse/breathe on key accent dots — stronger */
    .hero-eyebrow::before,
    .hero-meta span::before {
      animation: dot-pulse 2.6s ease-in-out infinite;
    }
    @keyframes dot-pulse {
      0%, 100% { box-shadow: 0 0 10px rgba(23, 225, 140, 0.6); opacity: 0.85; transform: scale(1); }
      50%      { box-shadow: 0 0 20px rgba(23, 225, 140, 1), 0 0 44px rgba(23, 225, 140, 0.5); opacity: 1; transform: scale(1.15); }
    }

    /* Twin drifting ambient orbs — slow, soothing, energy-like */
    .ambient::after {
      content: "";
      position: absolute;
      width: 720px; height: 720px;
      left: 5%;
      top: 10%;
      background: radial-gradient(circle at center, rgba(23, 225, 140, 0.22), transparent 60%);
      filter: blur(80px);
      border-radius: 50%;
      animation: orb-drift 22s ease-in-out infinite;
      opacity: 0.7;
    }
    .ambient > .orb-b {
      content: "";
      position: absolute;
      width: 520px; height: 520px;
      right: 5%;
      bottom: 15%;
      background: radial-gradient(circle at center, rgba(16, 37, 66, 0.55), transparent 60%);
      filter: blur(80px);
      border-radius: 50%;
      animation: orb-drift-b 28s ease-in-out infinite;
      opacity: 0.9;
    }
    @keyframes orb-drift {
      0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
      50%  { transform: translate(55vw, 25vh) scale(1.2); opacity: 0.9; }
      100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    }
    @keyframes orb-drift-b {
      0%   { transform: translate(0, 0) scale(1); opacity: 0.4; }
      50%  { transform: translate(-40vw, -20vh) scale(1.3); opacity: 0.8; }
      100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    }

    /* ENERGY-LINE: bottom border on sections that "charges up" like power flowing in */
    .tone-navy, .tone-deep, .tone-emerald, .split-section, .sectors, .stats, .features, .content-section, .nationwide, .ideas {
      position: relative;
    }
    .tone-navy::after, .tone-deep::after, .tone-emerald::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -1px;
      width: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cl-green-light), transparent);
      box-shadow: 0 0 12px var(--cl-green-light);
      transform: translateX(-50%);
      opacity: 0;
      pointer-events: none;
      z-index: 3;
    }
    .tone-navy.in::after, .tone-deep.in::after, .tone-emerald.in::after {
      animation: energy-line 1800ms cubic-bezier(0.2, 0.8, 0.3, 1) 200ms 1 forwards;
    }
    @keyframes energy-line {
      0%   { width: 0; opacity: 0; }
      40%  { opacity: 1; }
      100% { width: 80%; opacity: 0.85; }
    }

    /* BORDER CHARGE: card borders pulse emerald on reveal */
    .sector-card.in, .feature.in, .stat.in, .team-card.in, .post.in {
      animation: border-charge 1400ms ease-out 200ms 1 both;
    }
    @keyframes border-charge {
      0%   { box-shadow: inset 0 0 0 1px rgba(23, 225, 140, 0), 0 0 0 rgba(23, 225, 140, 0); }
      35%  { box-shadow: inset 0 0 0 1px rgba(23, 225, 140, 0.5), 0 0 28px rgba(23, 225, 140, 0.25); }
      100% { box-shadow: inset 0 0 0 1px rgba(23, 225, 140, 0), 0 0 0 rgba(23, 225, 140, 0); }
    }

    /* HERO OVERLAY: drifting particles + base gradient */
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10,38,32,0.2) 0%, rgba(10,38,32,0.85) 80%, var(--cl-green-darker) 100%),
        radial-gradient(2px 2px at 20% 80%, rgba(23, 225, 140, 0.8), transparent),
        radial-gradient(2px 2px at 40% 60%, rgba(23, 225, 140, 0.5), transparent),
        radial-gradient(2px 2px at 60% 90%, rgba(23, 225, 140, 0.6), transparent),
        radial-gradient(1px 1px at 80% 70%, rgba(23, 225, 140, 0.4), transparent),
        radial-gradient(2px 2px at 90% 50%, rgba(23, 225, 140, 0.5), transparent);
      background-size: 100% 100%, 200% 200%, 300% 300%, 250% 250%, 280% 280%, 220% 220%;
      background-repeat: no-repeat, repeat, repeat, repeat, repeat, repeat;
      animation: particles-drift 24s linear infinite;
      z-index: -1;
    }
    @keyframes particles-drift {
      from { background-position: 0 0, 0 0,     0 0,     0 0,     0 0,     0 0; }
      to   { background-position: 0 0, 0 -400%, 0 -320%, 0 -380%, 0 -340%, 0 -420%; }
    }

    /* STAT GLOW FLARE: after count-up, the number briefly flares */
    .count-up {
      display: inline-block;
      font-variant-numeric: tabular-nums;
      text-shadow: 0 0 0 rgba(23, 225, 140, 0);
      animation: stat-flare 2600ms ease-out 1800ms 1 both;
    }
    @keyframes stat-flare {
      0%   { text-shadow: 0 0 0 rgba(23, 225, 140, 0); filter: brightness(1); }
      20%  { text-shadow: 0 0 30px rgba(23, 225, 140, 0.8), 0 0 60px rgba(23, 225, 140, 0.4); filter: brightness(1.3); }
      100% { text-shadow: 0 0 0 rgba(23, 225, 140, 0); filter: brightness(1); }
    }

    /* SECTION EDGE GLOW on hover for sector/feature cards */
    .sector-card, .feature { transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
    .sector-card:hover { box-shadow: 0 0 0 1px var(--cl-green-light), 0 20px 40px -20px rgba(23, 225, 140, 0.35); }
    .feature:hover      { box-shadow: 0 0 0 1px var(--cl-green-light), 0 16px 30px -16px rgba(23, 225, 140, 0.3); }

    /* Number counter — animate via JS, entrance scaffolding here */
    .count-up { display: inline-block; font-variant-numeric: tabular-nums; }

    /* Magnetic glow on primary CTAs */
    .nav-cta, .cta-link.solid, .hero-actions button, .contact-form button {
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }
    .nav-cta::after, .cta-link.solid::after, .hero-actions button::after, .contact-form button::after {
      content: "";
      position: absolute;
      inset: -2px;
      background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.5), transparent 50%);
      opacity: 0;
      transition: opacity 300ms ease;
      pointer-events: none;
      z-index: -1;
    }
    .nav-cta:hover::after, .cta-link.solid:hover::after, .hero-actions button:hover::after, .contact-form button:hover::after {
      opacity: 1;
    }

    /* Subtle shimmer on the hero headline once on reveal */
    .hero h1.reveal.in {
      background: linear-gradient(90deg, var(--text-primary) 0%, var(--text-primary) 40%, rgba(23, 225, 140, 0.9) 50%, var(--text-primary) 60%, var(--text-primary) 100%);
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: title-shimmer 2.8s cubic-bezier(0.4, 0, 0.2, 1) 400ms 1 both;
    }
    @keyframes title-shimmer {
      0%   { background-position: 120% 0; }
      100% { background-position: -20% 0; }
    }

    /* Stats card — corner glow */
    .stat {
      position: relative;
      overflow: hidden;
    }
    .stat::before {
      content: "";
      position: absolute;
      top: -40%;
      right: -10%;
      width: 240px; height: 240px;
      background: radial-gradient(circle, rgba(23, 225, 140, 0.08), transparent 65%);
      pointer-events: none;
    }

    /* Sector-card image — soft zoom on hover */
    .sector-art {
      transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
    }
    .sector-card:hover .sector-art {
      transform: scale(1.04);
    }

    /* Feature icon — breathing glow */
    .feature-icon {
      position: relative;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .feature:hover .feature-icon {
      border-color: var(--cl-green-light);
      box-shadow: 0 0 24px rgba(23, 225, 140, 0.25);
    }

    /* Parallax backdrop on hero */
    @media (prefers-reduced-motion: no-preference) {
      .hero::before {
        will-change: transform;
        transition: transform 40ms linear;
      }
    }

    /* Reveal fade + scale for section headings — more cinematic */
    .section-heading.reveal { transform: translateY(32px) scale(0.98); }
    .section-heading.reveal.in { transform: none; }

    @media (prefers-reduced-motion: reduce) {
      .hero-eyebrow::before,
      .hero-meta span::before,
      .ambient::after {
        animation: none;
      }
      .scan-sweep.in::after { animation: none; opacity: 0; }
      .hero h1.reveal.in {
        animation: none;
        color: var(--text-primary);
        background: none;
        -webkit-background-clip: initial;
      }
    }
