/* ═════════════════════════════════════════════════════════════════
       REVORI — brand-locked refresh
       Palette + type matched to /Revori-Website/index*.html
       ═════════════════════════════════════════════════════════════════ */
:root {
      --pad-y:        clamp(96px, 12vw, 160px);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img, svg, video { display: block; max-width: 100%; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    ::selection { background: var(--accent-glow); color: #fff; }

    /* Single ambient brand glow */
    #glow {
      position: fixed;
      inset: 0;
      background:
        radial-gradient(60% 50% at 18% 8%,  rgba(78,143,247,0.10), transparent 60%),
        radial-gradient(50% 45% at 90% 95%, rgba(20,184,166,0.07), transparent 65%);
      pointer-events: none;
      z-index: 0;
    }

    /* ═════════ NAV ═════════ */
    nav#nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 200;
      height: 72px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 clamp(24px, 4vw, 64px);
      transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
      border-bottom: 1px solid transparent;
    }
    nav#nav .nav-logo { justify-self: start; }
    nav#nav .nav-right { justify-self: end; display: flex; align-items: center; gap: 18px; }
    nav#nav.menu-open {
      background: rgba(10,12,18,0.985);
      -webkit-backdrop-filter: blur(24px);
      backdrop-filter: blur(24px);
      border-bottom-color: transparent;
    }
    nav#nav.scrolled {
      background: rgba(12,14,20,0.88);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--border);
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }
    .logo-word {
      font-family: var(--sans);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: 0.36em;
      text-transform: uppercase;
      color: var(--text);
      padding-left: 0.36em; /* keeps optical balance with trailing letter-spacing */
    }
    .logo-word .logo-dot { color: var(--accent); }
    .logo-img { height: 22px; width: auto; display: block; }

    .nav-cta {
      padding: 11px 22px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #fff;
      border: none;
      border-radius: 4px;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.03em;
      cursor: pointer;
      text-decoration: none;
      transition: box-shadow 0.3s, transform 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .nav-cta:hover {
      box-shadow: 0 0 30px var(--accent-glow);
      transform: translateY(-1px);
    }

    /* ═════════ SHARED LAYOUT ═════════ */
    .section-inner {
      max-width: var(--w);
      margin: 0 auto;
      padding: 0 var(--gut);
      position: relative;
      z-index: 1;
    }

    /* Gradient word treatment. Global default so any heading can use
       a span with class accent-text and get the same gradient as
       "What is Revori?". Section-scoped rules below override it. */
.accent-text {
      color: inherit;
    }

    /* Section eyebrows — JetBrains Mono with bullet rule */
    .eyebrow {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .eyebrow::before {
      content: '';
      width: 24px; height: 1px;
      background: var(--accent);
      opacity: 0.6;
    }
    .eyebrow .eb-num { color: var(--accent); font-weight: 600; }

    /* ═════════ HERO ═════════ */

    .hero-video-frame { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
    .hero-video-frame video { width: 100%; height: 100%; object-fit: cover; }
    .v-placeholder {
      width: 100%; height: 100%;
      position: relative;
      display: block;
      background: linear-gradient(135deg, #06080d 0%, #0c0e14 50%, #050608 100%);
      overflow: hidden;
    }
    /* office footage sits under everything as texture only */
    .hero-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: grayscale(0.30) saturate(0.85) brightness(0.85) contrast(1.05) blur(0px);
      transform: scale(1.06);
      opacity: 0;
      animation: heroBgIn 1.6s ease .3s forwards;
    }
    @keyframes heroBgIn { to { opacity: 1; } }

    /* knocks the blown-out windows down and biases the whole plate blue */
    .hero-bg-scrim {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(96deg, rgba(8,9,14,0.94) 0%, rgba(8,9,14,0.86) 14%, rgba(8,9,14,0.46) 34%, rgba(8,9,14,0.12) 52%, rgba(8,9,14,0.06) 100%),
        linear-gradient(180deg, rgba(8,9,14,0.42) 0%, transparent 26%, rgba(8,9,14,0.62) 100%),
        linear-gradient(0deg, rgba(20,46,78,0.16), rgba(20,46,78,0.16));
      pointer-events: none;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-bg-video { animation: none; opacity: 1; }
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(105deg,
          rgba(8,9,14,0.92) 0%,
          rgba(8,9,14,0.72) 35%,
          rgba(8,9,14,0.30) 60%,
          rgba(8,9,14,0.10) 80%,
          transparent 100%),
        linear-gradient(to top, rgba(8,9,14,0.7) 0%, transparent 35%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 clamp(24px, 4vw, 64px);
    }

    /* Hero badge — minimal live-indicator pill (empty bubble + pulse dot) */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      background: var(--accent-soft);
      border: 1px solid rgba(78,143,247,0.22);
      border-radius: 2px;
      margin-bottom: 28px;
      backdrop-filter: blur(8px);
    }
    .hero-badge-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent-glow);
      animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%      { opacity: 0.45; transform: scale(0.9); }
    }

    .hero-display {
      font-family: var(--sans);
      font-weight: 800;
      font-size: clamp(2rem, 3.8vw, 3.6rem);
      color: var(--text);
      letter-spacing: -0.035em;
      line-height: 1.08;
      margin-bottom: 20px;
      max-width: 14ch;
    }
.hero-display .accent-text {
      color: var(--accent);
    }

    .hero-keystone {
      font-family: var(--sans);
      font-weight: 400;
      font-size: clamp(17px, 1.5vw, 21px);
      color: var(--text-secondary);
      line-height: 1.6;
      max-width: 40ch;
      margin-bottom: 36px;
    }
    .hero-keystone strong {
      color: var(--text);
      font-weight: 600;
    }

    .hero-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

    /* Primary CTA — brand gradient pill */
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 28px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #fff;
      border: none;
      border-radius: 2px;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.02em;
      text-decoration: none;
      cursor: pointer;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .hero-cta::after { content: '→'; font-size: 16px; transition: transform 0.3s; }
    .hero-cta:hover {
      box-shadow: 0 8px 32px var(--accent-glow);
      transform: translateY(-1px);
    }
    .hero-cta:hover::after { transform: translateX(3px); }

    /* Secondary ghost CTA */
    .hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      color: var(--text);
      font-family: var(--sans);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: border-color 0.25s, background 0.25s;
    }
    .hero-secondary:hover {
      border-color: var(--border-2);
      background: var(--surface-2);
    }

    /* Marquee — high-visibility AMS logos */
    .hero-band {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 3;
      height: 92px;
      background:
        linear-gradient(to bottom, rgba(12,14,20,0.55) 0%, rgba(8,9,14,0.92) 100%);
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      border-top: 1px solid var(--border-2);
      box-shadow: 0 -1px 0 0 rgba(255,255,255,0.04) inset;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-band::before {
      content: '';
    }
    .hero-band::after {
      content: '';
      position: absolute;
      right: 0;
      top: 0; bottom: 0;
      width: 80px;
      background: linear-gradient(to left, rgba(8,9,14,1) 30%, transparent);
      z-index: 2;
      pointer-events: none;
    }
    .hero-band-track {
      display: flex;
      align-items: center;
      gap: 0;
      white-space: nowrap;
      width: max-content;
      flex-shrink: 0;
      animation: marquee 50s linear infinite;
      will-change: transform;
      /* lighter masking — only fade at the very edges so the logos are clearly visible */
      mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    }
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .hero-band-item {
      display: flex; align-items: center;
      padding: 0 44px;
      flex-shrink: 0;
      opacity: 1;
      /* Brighten the SVG fills (which use rgba(255,255,255,0.5) hardcoded)
         so wordmarks read clearly against the dark band */
      filter: brightness(1.7) contrast(1.15) saturate(1.25);
      transition: filter 0.25s ease, transform 0.25s ease;
    }
    .hero-band-item:hover {
      filter: brightness(2.1) contrast(1.2) saturate(1.35);
      transform: scale(1.04);
    }
    .hero-band-item svg { height: 28px; width: auto; }
    .hero-band-divider {
      width: 1px; height: 22px;
      background: var(--border-2);
      flex-shrink: 0;
    }

    /* ═════════════════════════════════════════════════════════════════
       BAND SYSTEM — alternating section treatments.
       Add class="band-dark" or class="band-light" to a section element.
       band-light re-maps the text/border/surface tokens so every child
       rule that uses var(--text), var(--border), var(--surface) etc.
       inverts automatically. To reorder sections later, swap the class;
       nothing else needs to change.
       ═════════════════════════════════════════════════════════════════ */
    .band-dark {
      --band-base: var(--bg-elevated);
      background:
        radial-gradient(60% 70% at 0% 50%, rgba(78,143,247,0.045), transparent 72%),
        var(--band-base);
      color: var(--text);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .band-light {
      --text:           #0f1119;
      --text-secondary: rgba(15,17,25,0.62);
      --text-muted:     rgba(15,17,25,0.45);
      --text-faint:     rgba(15,17,25,0.30);
      --border:         rgba(0,0,0,0.08);
      --border-2:       rgba(0,0,0,0.16);
      --surface:        rgba(15,17,25,0.022);
      --surface-2:      rgba(15,17,25,0.05);
      background: #f4f0e8;
      color: var(--text);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    /* ═════════ ABOUT — LIGHT band ═════════ */
    #about {
      padding: var(--pad-y) 0 calc(var(--pad-y) * 0.85);
      position: relative;
    }
    #about::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 1px; height: 56px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      opacity: 0.5;
    }
    #about .section-inner {
      display: grid;
      grid-template-columns: 240px 1fr;
      gap: 80px;
      align-items: start;
    }
    .about-side { position: sticky; top: 100px; }
    #about .eyebrow {
      color: var(--text-secondary);
    }
    #about .eyebrow::before { background: var(--accent); opacity: 0.7; }
    .about-header {
      font-family: var(--sans);
      font-weight: 700;
      font-size: clamp(22px, 2.4vw, 30px);
      color: var(--text);
      letter-spacing: -0.025em;
      line-height: 1.2;
    }
.about-header .accent-text {
      color: inherit;
    }
    .about-body {
      font-family: var(--sans);
      max-width: 64ch;
    }
    .about-lede {
      font-weight: 400;
      font-size: clamp(17px, 1.4vw, 19px);
      line-height: 1.6;
      color: var(--text-secondary);
      margin-bottom: 26px;
    }
    .about-cards {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .about-card {
      padding: 17px 0;
      border-top: 1px solid var(--border);
    }
    .about-card:last-child { border-bottom: 1px solid var(--border); }
    .about-card-t {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
      letter-spacing: -0.015em;
      line-height: 1.3;
      margin-bottom: 9px;
    }
    .about-card-b {
      font-family: var(--sans);
      font-weight: 400;
      font-size: 15.5px;
      line-height: 1.6;
      color: var(--text-secondary);
    }

    /* ═════════ FOUNDER VIDEO ═════════ */
    #founder { padding: clamp(64px, 7vw, 92px) 0; }
    .fdr-wrap {
      display: grid;
      grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
      gap: clamp(30px, 5vw, 64px);
      align-items: center;
    }
    .fdr-copy h2 {
      font-family: var(--sans);
      font-weight: 700;
      font-size: clamp(22px, 2.4vw, 30px);
      color: var(--text);
      letter-spacing: -0.025em;
      line-height: 1.2;
      margin-bottom: 16px;
    }
.fdr-copy h2 .accent-text {
      color: inherit;
    }
    .fdr-p {
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.66;
      color: var(--text-secondary);
      max-width: 44ch;
      margin-bottom: 16px;
    }
    .fdr-cap {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -0.005em;
      color: var(--text-muted);
    }
    @media (max-width: 880px) {
      .fdr-wrap { grid-template-columns: 1fr; gap: 26px; }
      .fdr-p { max-width: none; }
    }

    /* ═════════ PAYS FOR ITSELF ═════════ */
    #savings { padding: clamp(64px, 7vw, 96px) 0; }
    .sav-head { margin-bottom: clamp(28px, 3.5vw, 44px); }
    .sav-head h2 {
      font-family: var(--sans);
      font-weight: 700;
      font-size: clamp(22px, 2.4vw, 30px);
      color: var(--text);
      letter-spacing: -0.025em;
      line-height: 1.2;
    }
.sav-head h2 .accent-text {
      color: inherit;
    }
    .sav-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: clamp(18px, 2.4vw, 30px);
    }
    .sav-card {
      border-top: 1px solid var(--border);
      padding-top: 18px;
      position: relative;
    }
    .sav-card::after {
      content: '';
      position: absolute;
      top: -1px; left: 0;
      width: 0; height: 1px;
      background: linear-gradient(90deg, var(--accent), var(--teal));
      transition: width .8s cubic-bezier(.16,1,.3,1) .1s;
    }
    .sav-card.in::after { width: 46px; }
    .sav-num {
      display: block;
      font-family: var(--mono);
      font-size: 10.5px;
      letter-spacing: .14em;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .sav-t {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 16px;
      letter-spacing: -0.018em;
      color: var(--text);
      margin-bottom: 8px;
    }
    .sav-b {
      font-family: var(--sans);
      font-size: 15px;
      line-height: 1.62;
      color: var(--text-secondary);
    }
    .sav-close {
      margin-top: clamp(28px, 3.5vw, 42px);
      padding-top: 22px;
      border-top: 1px solid var(--border);
      font-family: var(--sans);
      font-size: clamp(16px, 1.5vw, 19px);
      font-weight: 600;
      line-height: 1.5;
      color: var(--text);
      letter-spacing: -0.015em;
    }
    @media (max-width: 820px) {
      .sav-grid { grid-template-columns: 1fr; gap: 22px; }
    }

    /* ═════════ CONSOLIDATION + DEPLOYMENT — split with diagram ═════════ */
    #consolidation, #deployment { padding: clamp(64px, 7vw, 96px) 0; }
    #consolidation .section-inner, #deployment .section-inner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(32px, 5vw, 72px);
      align-items: center;
    }

    /* deployment alternates: diagram left, copy right */
    #deployment .split-head { grid-column: 2; grid-row: 1; }
    #deployment .split-vis  { grid-column: 1; grid-row: 1; }
    .split-head h2 {
      font-family: var(--sans);
      font-weight: 700;
      font-size: clamp(22px, 2.4vw, 30px);
      color: var(--text);
      letter-spacing: -0.025em;
      line-height: 1.2;
      margin-bottom: 18px;
      max-width: 18ch;
    }
#consolidation .split-head h2 .accent-text {
      color: inherit;
    }
#deployment .split-head h2 .accent-text {
      color: inherit;
    }
    .split-p {
      font-family: var(--sans);
      font-size: 16.5px;
      line-height: 1.68;
      color: var(--text-secondary);
      margin-bottom: 14px;
      max-width: 48ch;
    }
    .split-p:last-child { margin-bottom: 0; }
    .split-vis svg { width: 100%; height: auto; display: block; }

    /* consolidation diagram */
    .cons-svg .cs-before rect,
    .cons-svg .cs-after rect {
      fill: var(--surface);
      stroke: var(--border-2);
      stroke-width: 1;
    }
    .cons-svg .cs-after rect {
      fill: rgba(78,143,247,0.07);
      stroke: rgba(78,143,247,0.42);
    }
    .cons-svg text {
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      fill: var(--text-muted);
      text-anchor: middle;
    }
    .cons-svg .cs-lg { font-size: 16px; font-weight: 700; fill: var(--text); }
    .cons-svg .cs-sm { font-size: 10.5px; fill: var(--text-muted); }
    .cons-svg .cs-arrows path {
      fill: none;
      stroke: var(--accent);
      stroke-width: 1.4;
      opacity: .5;
      stroke-dasharray: 220;
      stroke-dashoffset: 220;
    }
    .split-vis.in .cons-svg .cs-arrows path { animation: csDraw 1.1s cubic-bezier(.4,0,.2,1) forwards; }
    .split-vis.in .cons-svg .cs-arrows path:nth-child(2) { animation-delay: .10s; }
    .split-vis.in .cons-svg .cs-arrows path:nth-child(3) { animation-delay: .20s; }
    .split-vis.in .cons-svg .cs-arrows path:nth-child(4) { animation-delay: .30s; }
    @keyframes csDraw { to { stroke-dashoffset: 0; } }

    /* deployment diagram */
    .dep-svg .dp-perim {
      fill: rgba(78,143,247,0.03);
      stroke: rgba(78,143,247,0.35);
      stroke-width: 1.2;
      stroke-dasharray: 5 5;
    }
    .dep-svg .dp-perim-l {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: .16em;
      fill: var(--text-faint);
    }
    .dep-svg .dp-core {
      fill: rgba(78,143,247,0.10);
      stroke: rgba(78,143,247,0.5);
      stroke-width: 1.2;
    }
    .dep-svg .dp-core-t {
      font-family: var(--sans);
      font-size: 15px; font-weight: 700;
      fill: var(--text); text-anchor: middle;
    }
    .dep-svg .dp-node rect {
      fill: var(--surface);
      stroke: var(--border-2);
      stroke-width: 1;
    }
    .dep-svg .dp-node text {
      font-family: var(--sans);
      font-size: 11px; font-weight: 500;
      fill: var(--text-muted); text-anchor: middle;
    }
    .dep-svg .dp-link path {
      fill: none; stroke: var(--accent); stroke-width: 1.2; opacity: .45;
      stroke-dasharray: 70; stroke-dashoffset: 70;
    }
    .split-vis.in .dep-svg .dp-link path { animation: csDraw .8s ease forwards; }
    .split-vis.in .dep-svg .dp-link path:nth-child(2){animation-delay:.08s}
    .split-vis.in .dep-svg .dp-link path:nth-child(3){animation-delay:.16s}
    .split-vis.in .dep-svg .dp-link path:nth-child(4){animation-delay:.24s}
    .dep-svg .dp-out path { fill:none; stroke: var(--text-faint); stroke-width:1.2; stroke-dasharray:4 4; }
    .dep-svg .dp-out line { stroke:#ef4444; stroke-width:1.8; stroke-linecap:round; opacity:.7; }

    @media (max-width: 900px) {
      #consolidation .section-inner, #deployment .section-inner {
        grid-template-columns: 1fr; gap: 26px;
      }
      #deployment .split-head, #deployment .split-vis,
      #consolidation .split-head, #consolidation .split-vis {
        grid-column: 1; grid-row: auto;
      }
      #deployment .split-head { order: 1; }
      #deployment .split-vis  { order: 2; }
      .split-head h2 { max-width: none; }
      .split-p { max-width: none; }
      .split-vis { max-width: 400px; margin-top: 0 !important; }
    }

    /* ═════════ STATEMENTS — DARK band ═════════ */
    #statements {
      padding: calc(var(--pad-y) * 0.8) 0;
      position: relative;
      overflow: hidden;
    }
    #statements::after {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 1px; height: 56px;
      background: linear-gradient(to bottom, var(--teal), transparent);
      opacity: 0.5;
    }
    #statements .section-inner { display: flex; flex-direction: column; }

    .statement {
      display: grid;
      grid-template-columns: 96px 1fr 1.8fr;
      align-items: baseline;
      gap: 0 56px;
      padding: 36px 0;
      border-top: 1px solid var(--border);
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 1.5s cubic-bezier(.16,1,.3,1), transform 1.6s cubic-bezier(.16,1,.3,1);
    }
    .statement:last-child { border-bottom: 1px solid var(--border); }
    .statement.in { opacity: 1; transform: translateY(0); }

    /* ═════════ ASK — DARK band (deeper base so the window lifts off it) ═════════ */
    #ask {
      padding: var(--pad-y) 0;
      position: relative;
      --band-base: var(--bg);
    }
    #ask .section-inner {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    /* stacked so the heading, the sub-paragraph and the tabs all sit on
       the same left margin as every other section */
    .ask-head {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
    .ask-head h2 {
      font-family: var(--sans);
      font-weight: 700;
      font-size: clamp(22px, 2.4vw, 30px);
      letter-spacing: -0.025em;
      line-height: 1.2;
      max-width: 18ch;
      color: var(--text);
    }
.ask-head h2 .accent-text {
      color: inherit;
    }

    /* four equal columns so every tab is the same width regardless of label */

    /* Console-style surface */

    .ask-dots { display: inline-flex; gap: 7px; }
    .ask-dots span {
      width: 9px; height: 9px;
      border-radius: 50%;
      background: rgba(255,255,255,0.10);
      border: 1px solid var(--border);
    }
    .ask-dots span:first-child  { background: rgba(239,68,68,0.45); }
    .ask-dots span:nth-child(2) { background: rgba(245,158,11,0.45); }
    .ask-dots span:nth-child(3) { background: rgba(16,185,129,0.5); }
    .ask-chrome-id {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .ask-chrome-id::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(16,185,129,0.6);
    }

    .ask-mode-label {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--accent);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      padding: 28px 36px 0;
      display: block;
      opacity: 0.8;
    }

    .ask-input-row {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 36px 56px;
      /* Keep the typing canvas fixed while prompts move between one and
         two lines. The content remains vertically centered inside it. */
      height: 126px;
    }
    .ask-field {
      font-family: var(--sans);
      font-size: clamp(17px, 1.4vw, 21px);
      font-weight: 400;
      color: var(--text);
      line-height: 1.5;
      flex: 1;
      display: block;
      align-items: center;
      min-height: 44px;
      letter-spacing: -0.01em;
    }
    .ask-typed { white-space: pre-wrap; word-break: break-word; }

    .cursor {
      display: inline-block;
      width: 2px;
      height: 1.05em;
      background: var(--accent);
      vertical-align: text-bottom;
      margin-left: 2px;
      animation: blink 1.05s step-end infinite;
      flex-shrink: 0;
    }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

    .ask-send {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border: none;
      cursor: default;
      display: grid;
      place-items: center;
      flex-shrink: 0;
      box-shadow: 0 0 24px var(--accent-glow);
    }
    .ask-send svg { width: 16px; height: 16px; fill: #fff; }

    /* ═════════ BUILT-FOR — LIGHT band ═════════ */

    /* ═════════ CAPABILITIES — LIGHT band ═════════ */
    /* Headline runs full width above; below it the stepper and the asset
       sit in the two-column arrangement from V3, at V3's sizing. */

    /* see-it-work frame sizing inside the site section */

    .carousel-frame {
      width: 100%;
      aspect-ratio: 16/11;
      overflow: hidden;
      border-radius: 4px;
      border: 1px solid var(--border);
      background: #e8edf3;
      position: relative;
      box-shadow: 0 20px 40px -16px rgba(0,0,0,0.12);
    }
    .carousel-frame::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--teal) 70%, transparent);
      opacity: 0.5;
      z-index: 3;
    }
    .c-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.02);
      transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1);
    }
    .c-slide.active { opacity: 1; transform: scale(1); }
    .c-slide-inner {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-elevated);
    }

    /* ═════════ ADDED: hero assurance + marquee caption ═════════ */
    .hero-assurance {
      font-family: var(--sans);
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 18px;
      letter-spacing: 0.01em;
    }
    .hero-band-caption {
      font-family: var(--sans);
      font-size: 12.5px;
      color: var(--text-faint);
      text-align: center;
      max-width: 60ch;
      margin: 14px auto 0;
      padding: 0 var(--gut);
      line-height: 1.5;
    }

    /* ═════════ ADDED: WHERE REVORI FITS ═════════ */

    /* ═════════ ADDED: THREE MODULES ═════════ */
    #modules {
      padding: 0;
      position: relative;
      background: #0a0c11;
      overflow: hidden;
    }
    #modules > .section-inner {
      padding: 0 !important;
      max-width: none !important;
    }

    /* left stepper */

    /* right panel */

    /* ═════════ Cockpit: My Workflows preview ═════════ */
    /* pane contents — sit inside .sys-main */
    .cp-wrap { position:relative; padding:22px 22px 22px; height:100%; display:flex; flex-direction:column; }
    .cp-h { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
    .cp-h h4 { font-family:var(--sans); font-size:15px; font-weight:700; color:#fff; letter-spacing:-.01em; margin:0; }
    .cp-h .cp-sub { font-size:10.5px; color:rgba(229,233,240,.45); margin-left:10px; font-weight:500; letter-spacing:.01em; }
    .cp-new { width:auto; height:26px; padding:0 12px; border-radius:6px; background:rgba(42,212,229,.14); border:1px solid rgba(42,212,229,.4); color:var(--cyan); display:flex; align-items:center; justify-content:center; gap:5px; font-size:11px; font-weight:600; line-height:1; white-space:nowrap; transition:background .25s, transform .15s; }
    .cp-new.pulse { background:rgba(42,212,229,.28); transform:scale(0.96); }

    .cp-grid { display:flex; flex-direction:column; gap:8px; transition:opacity .25s; overflow-y:auto; padding-right:2px; scrollbar-width:thin; }
    .cp-grid::-webkit-scrollbar { width:4px; }
    .cp-grid::-webkit-scrollbar-thumb { background:rgba(255,255,255,.12); border-radius:2px; }
.cp-wrap.creating .cp-grid { opacity:0; pointer-events:none; }
.cp-wrap.creating .cp-h { opacity:0; pointer-events:none; transition:opacity .25s; }
    .cp-tile { position:relative; display:flex; align-items:center; justify-content:space-between; gap:12px; border:1px solid rgba(255,255,255,.07); border-radius:7px; padding:11px 14px; background:rgba(255,255,255,.018); transition:background .3s, border-color .3s; }
    .cp-tile.hover { background:rgba(255,255,255,.045); border-color:rgba(42,212,229,.3); }
    .cp-tile-main { min-width:0; }
    .cp-tile-t { font-size:12.5px; font-weight:600; color:#fff; margin-bottom:3px; letter-spacing:-.005em; }
    .cp-tile-d { font-size:10.5px; line-height:1.4; color:rgba(229,233,240,.6); }
    .cp-tile-r { display:flex; align-items:center; gap:10px; flex-shrink:0; }
    .cp-draft { font-size:11px; font-weight:400; color:rgba(229,233,240,.4); }
    .cp-toggle { position:relative; width:28px; height:16px; border-radius:9px; background:rgba(255,255,255,.14); display:inline-block; flex-shrink:0; }
    .cp-toggle::after { content:''; position:absolute; top:2px; left:2px; width:12px; height:12px; border-radius:50%; background:#8b909c; transition:transform .2s, background .2s; }
    .cp-toggle.on { background:rgba(42,212,229,.35); }
    .cp-toggle.on::after { transform:translateX(12px); background:#2ad4e5; }
    .cp-tile.newborn { animation:cpNew .8s ease-out; border-color:rgba(42,212,229,.55); background:rgba(42,212,229,.06); }
    @keyframes cpNew { 0%{opacity:0; transform:translateY(6px);} 100%{opacity:1; transform:translateY(0);} }

    .cp-tip { position:absolute; z-index:8; background:#141822; border:1px solid rgba(255,255,255,.11); border-radius:6px; padding:10px 12px; font-size:11px; line-height:1.5; color:#e5e9f0; max-width:230px; box-shadow:0 12px 30px rgba(0,0,0,.55); opacity:0; transform:translateY(-4px); transition:opacity .25s, transform .25s; pointer-events:none; }
    .cp-tip.on { opacity:1; transform:translateY(0); }
    .cp-tip b { color:#fff; }

    .cp-create { position:absolute; inset:22px; background:transparent; opacity:0; transform:translateY(6px); pointer-events:none; transition:opacity .35s, transform .35s; display:flex; flex-direction:column; z-index:5; overflow-y:auto; }
    .cp-create.on { opacity:1; transform:translateY(0); }
    .cp-create > * { flex-shrink:0; }
    .cp-create h5 { margin:0 0 4px; font-size:14px; font-weight:700; color:#fff; letter-spacing:-.005em; }
    .cp-create .cp-hint { font-size:10.5px; color:rgba(229,233,240,.5); margin-bottom:12px; }
    .cp-flabel { font-size:9px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:rgba(229,233,240,.4); margin:9px 0 4px; }
    .cp-create > .cp-flabel:first-of-type { margin-top:0; }
    .cp-mini-field { border:1px solid rgba(255,255,255,.1); border-radius:6px; padding:7px 10px; background:rgba(255,255,255,.02); font-size:11.5px; color:#e5e9f0; min-height:14px; line-height:1.4; transition:border-color .25s, box-shadow .25s; }
    .cp-mini-field.active { border-color:rgba(42,212,229,.4); box-shadow:0 0 0 3px rgba(42,212,229,.06); } .cp-mini-field.cp-select { position:relative; padding-right:26px; } .cp-mini-field.cp-select::after { content:''; position:absolute; right:10px; top:50%; width:7px; height:7px; border-right:1.4px solid rgba(229,233,240,.35); border-bottom:1.4px solid rgba(229,233,240,.35); transform:translateY(-65%) rotate(45deg); pointer-events:none; }
    .cp-field { border:1px solid rgba(255,255,255,.1); border-radius:6px; padding:8px 10px; background:rgba(255,255,255,.02); font-size:11.5px; color:#fff; line-height:1.5; min-height:44px; overflow-wrap:break-word; word-break:break-word; white-space:normal; transition:border-color .25s, box-shadow .25s; }
    .cp-field.active { border-color:rgba(42,212,229,.4); box-shadow:0 0 0 4px rgba(42,212,229,.06); }
    .cp-field .cp-caret { display:inline-block; width:1.5px; height:14px; background:var(--cyan); vertical-align:-2px; margin-left:2px; animation:cpCaret .8s steps(2) infinite; }
    @keyframes cpCaret { 50%{opacity:0;} }
    .cp-frow { display:grid; grid-template-columns:1fr 1fr; gap:10px; }

    .cp-savebtn { margin-top:14px; align-self:flex-start; border:1px solid rgba(42,212,229,.4); background:rgba(42,212,229,.14); color:var(--cyan); border-radius:6px; padding:7px 16px; font-size:11.5px; font-weight:600; opacity:0; transform:translateY(4px); transition:opacity .35s, transform .35s, background .2s; }
    .cp-savebtn.on { opacity:1; transform:translateY(0); }
    .cp-savebtn.pulse { background:rgba(42,212,229,.32); transform:scale(.96); }

    /* fake cursor */
    .cp-cursor { position:absolute; z-index:9; width:16px; height:20px; left:50%; top:50%; opacity:0; transition:left .9s cubic-bezier(.4,.05,.2,1), top .9s cubic-bezier(.4,.05,.2,1), opacity .3s; pointer-events:none; }
    .cp-cursor svg { width:100%; height:100%; fill:#fff; stroke:#000; stroke-width:1; filter:drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
    .cp-cursor.on { opacity:1; }
    .cp-cursor.click svg { transform:scale(.85); transform-origin:top left; }

    /* cursor that moves between rail nav items, across the whole demo */
    .fin-cursor { position:absolute; z-index:20; width:16px; height:20px; left:50%; top:50%; opacity:0; transition:left .85s cubic-bezier(.4,.05,.2,1), top .85s cubic-bezier(.4,.05,.2,1), opacity .3s; pointer-events:none; }
    .fin-cursor svg { width:100%; height:100%; fill:#fff; stroke:#000; stroke-width:1; filter:drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
    .fin-cursor.on { opacity:1; }
    .fin-cursor.click svg { transform:scale(.85); transform-origin:top left; }

    /* threads empty state */

    /* split holds at all widths — no stacking */

    /* ═════════ ADDED: ask subhead + callout, cap export ═════════ */
    /* Tab-specific notes. Hidden unless their tab is the active one, so
       Production and Book of Business show none. */
    @keyframes askNoteIn {
      from { opacity: 0; transform: translateY(-4px); }
      to   { opacity: 1; transform: none; }
    }
    /* runs the full width beneath both columns */

    /* ═════════ THREE LINES (CLOSING) ═════════ */
    #three-lines {
      padding: calc(var(--pad-y) * 1.4) 0 var(--pad-y);
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(60% 40% at 50% 30%, rgba(78,143,247,0.08), transparent 70%),
        var(--bg);
      border-top: 1px solid var(--border);
    }
    #three-lines::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 1px; height: 80px;
      background: linear-gradient(to bottom, var(--accent), transparent);
      opacity: 0.6;
    }
    #three-lines .section-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .closing-line {
      font-family: var(--sans);
      font-weight: 700;
      font-size: clamp(24px, 3.4vw, 44px);
      color: var(--text);
      text-align: center;
      letter-spacing: -0.025em;
      line-height: 1.18;
      margin-bottom: 22px;
      opacity: 0;
      filter: blur(8px);
      transform: translateY(8px);
      transition:
        opacity 1.4s cubic-bezier(.16,1,.3,1),
        filter 1.4s cubic-bezier(.16,1,.3,1),
        transform 1.4s cubic-bezier(.16,1,.3,1);
      max-width: 24ch;
    }
.closing-line:nth-child(2) {
      color: var(--accent);
    }
    .closing-line.visible { opacity: 1; filter: blur(0); transform: translateY(0); }
    .closing-line:last-of-type { margin-bottom: 0; }

    .closing-rule {
      width: 1px;
      height: 0;
      background: var(--accent);
      box-shadow: 0 0 18px var(--accent-glow), 0 0 36px var(--accent-glow);
      margin: 56px 0 40px;
      opacity: 0;
      transition: height 0.9s cubic-bezier(.16,1,.3,1), opacity 0.6s ease;
    }
    .closing-rule.visible { height: 88px; opacity: 1; }

    .closing-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #fff;
      border: none;
      border-radius: 4px;
      font-family: var(--sans);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.02em;
      text-decoration: none;
      cursor: pointer;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .closing-cta::after { content: '→'; font-size: 17px; transition: transform 0.3s; }
    .closing-cta:hover {
      box-shadow: 0 8px 36px var(--accent-glow);
      transform: translateY(-1px);
    }
    .closing-cta:hover::after { transform: translateX(3px); }

    /* ═════════ FOOTER ═════════ */
    footer {
      padding: 40px var(--gut);
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 24px;
    }
    .footer-text {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      line-height: 1.8;
    }
    .footer-text a {
      color: inherit;
      text-decoration: none;
    }
    .footer-text a:hover,
    .footer-text a:focus-visible {
      color: var(--text);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* ═════════ Reveal system ═════════ */
    .r {
      opacity: 0;
      transform: translateY(14px);
      transition:
        opacity 1.5s cubic-bezier(.16,1,.3,1),
        transform 1.6s cubic-bezier(.16,1,.3,1);
    }
    .r.in { opacity: 1; transform: translateY(0); }
    .scroll-reveal {
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 1.5s cubic-bezier(.16,1,.3,1),
        transform 1.6s cubic-bezier(.16,1,.3,1);
    }
    .scroll-reveal.in { opacity: 1; transform: translateY(0); }

    /* ═════════ Mobile ═════════ */
    @media (max-width: 960px) {
      :root { --pad-y: 88px; }
      #about .section-inner,
      .ask-input-row { height: 152px; }
      .about-side { position: static; }
      .ask-head { gap: 18px; }
      .statement {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto;
        gap: 8px 18px;
        padding: 36px 0;
      }
    }

    @media (max-width: 640px) {
      .hero-display { font-size: clamp(36px, 9vw, 56px); }
      .ask-input-row { height: 208px; padding: 16px 22px 38px; }
      .ask-mode-label { padding: 22px 22px 0; }
      .hero-band-item { padding: 0 32px; }
      .hero-band::before { display: none; }
    }
    .hero-content { position:relative; z-index:2; width:100%; max-width:1500px; margin:0 auto; padding:0 clamp(24px, 3vw, 52px); }
    .hero-content .hero-display { max-width:20ch; white-space:normal; }
    .hero-content .hero-keystone { max-width: 46ch; }
    .hero-cta-alt {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 24px;
      border: 1px solid var(--border-2);
      border-radius: 4px;
      background: rgba(255,255,255,0.05);
      color: var(--text);
      font-family: var(--sans); font-weight: 600; font-size: 14px;
      letter-spacing: .01em; text-decoration: none; white-space: nowrap;
      transition: border-color .3s ease, background .3s ease, transform .3s ease;
    }
    .hero-cta-alt span { transition: transform .3s ease; }
    .hero-cta-alt:hover { border-color: rgba(78,143,247,.5); background: rgba(255,255,255,0.09); transform: translateY(-1px); }
    .hero-cta-alt:hover span { transform: translateX(3px); }
    .personal-video-wrap { width: 100%; max-width:none; border-radius: 4px; overflow: hidden; border: 1px solid var(--border-2); box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.04) inset; background: var(--bg-elevated); }
    .personal-video-chrome { display:flex; align-items:center; gap:8px; padding:12px 16px; border-bottom:1px solid var(--border); background:var(--bg-elevated); }
    .personal-video-chrome .pvd { width:10px; height:10px; border-radius:50%; }
    .personal-video-chrome .pvd:nth-child(1){background:#ff5f57}.personal-video-chrome .pvd:nth-child(2){background:#febc2e}.personal-video-chrome .pvd:nth-child(3){background:#28c840}
    .personal-video-container { position:relative; width:100%; height:0; padding-bottom:56.25%; overflow:hidden; }
    .personal-video-container iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
    @media (max-width: 760px) { .hero-content { max-width:none; padding:0 24px; } .hero-content .hero-display { max-width:none; font-size:clamp(34px, 9.5vw, 52px); } .hero-content .hero-keystone { max-width:none; margin-bottom:22px; } .personal-video-wrap { max-width:100%; } }
    /* ── centered minimal menu ── */
    .nav-links { display:flex; align-items:stretch; height:72px; gap:clamp(18px,2.4vw,34px); justify-self:center; }
    .nav-item { position:relative; display:flex; align-items:stretch; }
    .nav-link {
      display:inline-flex; align-items:center; gap:6px;
      font-family:var(--sans); font-size:11.5px; font-weight:600;
      color:var(--text-secondary); text-decoration:none;
      letter-spacing:.14em; text-transform:uppercase;
      background:none; border:0; padding:0; cursor:pointer;
      transition:color .25s ease;
    }
    .nav-link:hover, .nav-item.open > .nav-link, .nav-link[aria-expanded="true"] { color:var(--text); }
    .nav-caret { width:8px; height:8px; flex:0 0 8px; opacity:.6; transition:transform .25s ease, opacity .25s ease; }
    .nav-item.open .nav-caret { transform:rotate(180deg); opacity:1; }

    /* full-bleed mega panel */
    .nav-panel {
      position:fixed; top:72px; left:0; right:0;
      background:rgba(10,12,18,.985);
      -webkit-backdrop-filter:blur(24px); backdrop-filter:blur(24px);
      border-top:1px solid var(--border);
      border-bottom:1px solid var(--border);
      box-shadow:0 30px 70px rgba(0,0,0,.55);
      opacity:0; visibility:hidden; pointer-events:none;
      transform:translateY(-6px);
      transition:opacity .22s ease, transform .22s ease, visibility .22s;
      z-index:190;
    }
    .nav-item.open .nav-panel { opacity:1; visibility:visible; pointer-events:auto; transform:translateY(0); }

    .nav-panel-inner {
      max-width:var(--w); margin:0 auto;
      padding:clamp(36px,4vw,56px) clamp(24px,4vw,64px) clamp(40px,4.5vw,60px);
      display:grid; grid-template-columns:repeat(3, minmax(0,1fr));
      column-gap:clamp(32px,5vw,88px); row-gap:38px;
      text-align:left;
    }
    .nav-panel-inner.cols-2 { grid-template-columns:repeat(2, minmax(0,1fr)); }

    .np-item { display:block; text-decoration:none; max-width:340px; }
    .np-title {
      font-family:var(--sans); font-size:15px; font-weight:600;
      color:var(--text); letter-spacing:0; margin-bottom:7px;
      transition:color .2s ease;
    }
    .np-desc {
      font-family:var(--sans); font-size:13.5px; font-weight:400;
      line-height:1.55; color:var(--text-secondary);
    }
    .np-item:hover .np-title { color:var(--accent); }
    .np-item-external {
      grid-column: 1 / -1;
      margin-top: 10px;
      padding: 14px 16px;
      border: 1px solid rgba(78,143,247,0.3);
      border-radius: 6px;
      background: rgba(78,143,247,0.07);
      transition: border-color .25s ease, background .25s ease;
    }
    .np-item-external:hover { border-color: rgba(78,143,247,0.55); background: rgba(78,143,247,0.12); }
    .np-item-external .np-title { display:flex; align-items:center; gap:6px; color: var(--accent-light); }
    .np-item-external .np-desc { color: var(--text-secondary); }
    .mm-sub a.mm-external {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 4px;
      padding: 10px 12px;
      border: 1px solid rgba(78,143,247,0.3);
      border-radius: 6px;
      background: rgba(78,143,247,0.08);
      color: var(--accent-light);
    }

    /* open-state underline on the trigger, Harvey style */
    .nav-item[data-dropdown] > .nav-link::after {
      content:''; position:absolute; left:0; right:0; bottom:0;
      height:1.5px; background:var(--text);
      transform:scaleX(0); transform-origin:center;
      transition:transform .25s ease;
    }
    .nav-item.open > .nav-link::after { transform:scaleX(1); }
    .hamburger { display:none; border:0; background:transparent; padding:8px; cursor:pointer; }
    .hamburger span { display:block; width:22px; height:2px; margin:4px 0; background:var(--text); }
    .mobile-menu { display:none; }
    @media (max-width: 1080px) { .nav-links { display:none; } .hamburger { display:block; } nav#nav { grid-template-columns:1fr auto; } nav#nav .nav-right .nav-cta { display:none; } }
    @media (max-width: 1080px) { .mobile-menu { position:fixed; top:72px; left:0; right:0; bottom:0; z-index:299; display:none; flex-direction:column; gap:0; padding:24px 24px 48px; overflow-y:auto; background:rgba(12,14,20,.98); -webkit-backdrop-filter:blur(20px); backdrop-filter:blur(20px); border-bottom:1px solid var(--border); } .mobile-menu.open { display:flex; } .mobile-menu a { color:var(--text); text-decoration:none; font-size:16px; } .mm-group { padding:16px 0; border-bottom:1px solid var(--border); } .mm-label { font-family:var(--sans); font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--text-secondary); margin-bottom:10px; } .mm-group .mm-sub { display:flex; flex-direction:column; gap:12px; padding-left:2px; } .mm-group .mm-sub a { font-size:15px; color:var(--text); } .mm-single { display:block; padding:16px 0; border-bottom:1px solid var(--border); font-family:var(--sans); font-size:11px; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--text); } .mobile-menu .mobile-cta { margin-top:24px; align-self:flex-start; padding:12px 24px; background:linear-gradient(135deg,var(--accent),var(--accent-light)); border-radius:4px; font-weight:700; font-size:14px; color:#fff; } }

    /* ═══════════ SEE IT WORK — live system replica ═══════════ */

:root{--sys-bg:#05060b;--sys-border:rgba(255,255,255,0.07);--sys-border-2:rgba(255,255,255,0.12);--sys-text:#e6ecf3;--sys-text-2:rgba(255,255,255,0.66);--sys-muted:rgba(255,255,255,0.38);--cyan:#2ad4e5;--blue:#3b82f6;}
.chrome-dlbar{position:absolute;left:12px;bottom:0;transform:translateY(100%);background:#f1f3f4;border:1px solid #dadce0;border-bottom:none;border-radius:6px 6px 0 0;box-shadow:0 -3px 10px rgba(0,0,0,.14);z-index:40;transition:transform .38s cubic-bezier(.2,.8,.3,1);}
.chrome-dlbar.on{transform:translateY(0);}
.chrome-dlbar-inner{display:flex;align-items:center;gap:9px;padding:9px 16px 9px 12px;font-family:var(--sans);font-size:11.5px;color:#3c4043;}
.chrome-dl-ico{width:17px;height:17px;flex:0 0 17px;background:#1d6f43;color:#fff;font-size:7px;font-weight:700;display:flex;align-items:center;justify-content:center;letter-spacing:.02em;border-radius:2px;}
.chrome-dl-name{white-space:nowrap;}
.chrome-dl-chev{width:9px;height:9px;color:#5f6368;margin-left:2px;}
.rail-group{font-family:var(--sans);font-size:9.5px;font-weight:600;letter-spacing:.18em;color:var(--sys-muted);padding:0 3px;margin:0 0 9px}
.rail-group.second{margin-top:18px;padding-top:14px;border-top:1px solid var(--sys-border)}
.wf-t{font-size:12.5px;font-weight:600;color:var(--sys-text);margin-bottom:4px;letter-spacing:.005em}
.wf-d{font-size:11px;line-height:1.45;color:var(--sys-muted)}
.thread.on .wf-t{color:#fff}
.thread-badge{display:inline-block;font-size:8.5px;font-weight:700;letter-spacing:.12em;color:var(--cyan);border:1px solid rgba(42,212,229,.35);padding:2px 5px;margin-bottom:6px}
.file-chip{display:inline-flex;align-items:center;gap:7px;padding:6px 10px;background:rgba(255,255,255,.05);border:1px solid var(--sys-border);font-size:11px;color:var(--sys-text-2);max-width:100%}
.file-chip .fc-x{width:15px;height:15px;flex:0 0 15px;background:#1d6f43;color:#fff;font-size:7px;font-weight:700;display:flex;align-items:center;justify-content:center;letter-spacing:.02em}
.file-chip .fc-n{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.msg-file{align-self:flex-end;margin-bottom:-14px}
.thread{border-radius:7px;padding:10px 11px;margin-bottom:4px;border:1px solid transparent;cursor:pointer;transition:background .3s,border-color .3s}
.thread:hover{background:rgba(255,255,255,.045)}
.thread:hover .thread-t{color:#fff}
.thread.on{background:rgba(255,255,255,.07);border-color:transparent}
.thread.on .thread-t{color:#fff}
.thread-t{font-size:10.5px;font-weight:600;line-height:1.45;color:var(--sys-text);transition:color .25s}

.msg-user{align-self:flex-end;max-width:82%;background:rgba(255,255,255,.06);border:0;border-radius:14px;padding:11px 16px;font-size:12.5px;line-height:1.5;color:var(--sys-text);opacity:0;transform:translateY(8px);transition:opacity .45s,transform .45s}
.msg-user.in{opacity:1;transform:none}
.msg-bot{border:0;border-radius:0;padding:6px 2px 2px;background:none;opacity:0;transform:translateY(8px);transition:opacity .5s,transform .5s}
.msg-bot.in{opacity:1;transform:none}
.rv{opacity:0;transform:translateY(5px);transition:opacity .4s,transform .4s}
.rv.in{opacity:1;transform:none}

.b-line{font-size:12.5px;line-height:1.65;color:var(--sys-text-2);margin-bottom:11px}
.b-line strong{color:var(--sys-text);font-weight:600}
.b-line a{color:#6da3fa;text-decoration:underline;text-underline-offset:2px}
.b-h{font-size:12.5px;font-weight:700;color:var(--sys-text);margin:4px 0 9px}
.b-h2{font-size:12px;font-weight:700;color:var(--sys-text);margin:2px 0 7px}
.b-rule{height:1px;background:var(--sys-border);margin:15px 0 13px}
.b-memo{font-size:12px;line-height:1.7;color:var(--sys-text-2);margin-bottom:11px}
.b-memo b{color:var(--sys-text);font-weight:700}

.b-kpis{display:grid;gap:10px;margin-bottom:14px}
.kpi{border:1px solid var(--sys-border);border-radius:0;padding:12px 13px;background:linear-gradient(160deg,rgba(40,72,110,.2),rgba(255,255,255,.012))}
.kpi.kpi-hi{border-color:rgba(42,212,229,.45);box-shadow:0 0 0 1px rgba(42,212,229,.18) inset;background:linear-gradient(160deg,rgba(42,212,229,.16),rgba(255,255,255,.012))}
.kpi-l{font-size:8.5px;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:var(--sys-muted);margin-bottom:7px;line-height:1.3}
.kpi-v{font-size:19px;font-weight:700;color:var(--sys-text);letter-spacing:-.02em;font-variant-numeric:tabular-nums}
.kpi-s{font-size:9.5px;color:var(--sys-muted);margin-top:5px}
.kpi-d{font-size:10px;font-weight:600;margin-top:5px;color:var(--green)}
.kpi-d.dn{color:var(--green)}

/* gauges */
.b-gauges{display:grid;grid-template-columns:repeat(3,1fr);gap:11px;margin-bottom:14px}
.gauge{border:1px solid var(--sys-border);border-radius:0;padding:14px 10px 12px;background:rgba(255,255,255,.014);text-align:center}
.gauge svg{width:100%;max-width:126px;margin:0 auto;display:block}
.g-track{fill:none;stroke:rgba(255,255,255,.07);stroke-width:11;stroke-linecap:round}
.g-fill{fill:none;stroke:var(--green);stroke-width:11;stroke-linecap:round;transition:stroke-dashoffset 1.1s cubic-bezier(.16,1,.3,1)}
.g-v{font-size:19px;font-weight:700;color:var(--sys-text);margin-top:-4px}
.g-l{font-size:8.5px;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:var(--sys-muted);margin-top:4px}

.b-tbl{width:100%;border-collapse:collapse;margin-bottom:13px;font-size:11.5px}
.b-tbl thead th{background:rgba(255,255,255,.05);color:var(--sys-text);font-weight:600;text-align:left;padding:8px 12px;border-bottom:1px solid var(--sys-border);font-size:11px;white-space:nowrap}
.b-tbl tbody tr{opacity:0;transform:translateY(4px);transition:opacity .35s,transform .35s}
.b-tbl tbody tr.in{opacity:1;transform:none}
.b-tbl tbody td{padding:8px 12px;border-bottom:1px solid rgba(255,255,255,.045);color:var(--sys-text-2);font-variant-numeric:tabular-nums}
.b-tbl tbody td:first-child{color:var(--sys-text);font-weight:600}
.b-tbl tbody tr.tot td{border-bottom:0;font-weight:700;color:var(--sys-text)}

.b-chart{border:1px solid rgba(78,143,247,.22);border-radius:0;padding:15px 14px 10px;margin-bottom:13px;background:rgba(10,20,38,.4);opacity:0;transform:translateY(6px);transition:opacity .5s,transform .5s}
.b-chart.in{opacity:1;transform:none}
.ch-title{text-align:center;font-size:11.5px;font-weight:700;color:var(--sys-text);margin-bottom:4px}
.ch-legend{display:flex;justify-content:flex-end;gap:14px;margin-bottom:2px}
.ch-lg{display:flex;align-items:center;gap:5px;font-size:9.5px;font-weight:600;color:var(--sys-text-2)}
.ch-lg i{width:8px;height:8px;border-radius:50%}
.b-chart svg{width:100%;display:block}
.gridline{stroke:rgba(255,255,255,.055);stroke-width:1}
.axlbl{font-size:7.5px;fill:var(--sys-muted)}
.axlbl-x{font-size:8px;fill:var(--sys-text-2);font-weight:500}
.ln-path{fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}

.b-sum{margin-bottom:11px}
.b-sum-i{font-size:12px;line-height:1.62;color:var(--sys-text-2);padding-left:16px;margin-bottom:7px}
.b-sum-i b{color:var(--sys-text);font-weight:700}
.b-steps{margin:0 0 11px 0}
.b-step{font-size:12px;line-height:1.62;color:var(--sys-text-2);padding-left:30px;margin-bottom:6px}
.b-step b{color:var(--sys-text);font-weight:700}

.b-links{font-size:11.5px;margin-bottom:9px}
.b-links a{color:#6da3fa;text-decoration:underline;text-underline-offset:2px}
.b-links span{color:var(--sys-muted);margin:0 6px}
.b-rel{margin-bottom:11px}
.b-rel-h{font-size:11.5px;font-weight:700;color:var(--sys-text);margin-bottom:6px}
.b-rel a{display:block;font-size:11.5px;color:#6da3fa;text-decoration:underline;text-underline-offset:2px;padding-left:16px;margin-bottom:4px}
.b-plain{font-size:11.5px;color:var(--sys-text-2);margin-bottom:7px}

.b-meta{display:flex;align-items:center;gap:11px;margin-top:4px}
.b-meta-t{font-size:10.5px;color:var(--sys-muted)}
.b-pdf{font-size:10.5px;padding:4px 10px;border:1px solid rgba(78,143,247,.35);border-radius:0;color:#6da3fa}
.b-file-dl{display:inline-flex;align-items:center;gap:7px;cursor:pointer;color:var(--sys-text-2);font-size:11px;}
.b-file-dl .b-file-ico{width:16px;height:16px;flex:0 0 16px;background:#1d6f43;color:#fff;font-size:7px;font-weight:700;display:flex;align-items:center;justify-content:center;letter-spacing:.02em;border-radius:2px;}
.b-file-dl .b-file-name{text-decoration:underline;text-decoration-color:transparent;transition:text-decoration-color .15s,color .15s;}
.b-file-dl:hover .b-file-name,.b-file-dl.hover .b-file-name{color:var(--sys-text);text-decoration-color:currentColor;}

.thinking{display:flex;align-items:center;gap:10px;padding:10px 2px;border:0;border-radius:0;background:none;opacity:0;transition:opacity .35s}
.thinking.in{opacity:1}
.think-dots{display:flex;gap:4px}
.think-dots i{width:5px;height:5px;border-radius:50%;background:var(--cyan);animation:td 1.3s infinite}
.think-dots i:nth-child(2){animation-delay:.18s}
.think-dots i:nth-child(3){animation-delay:.36s}
@keyframes td{0%,60%,100%{opacity:.22;transform:translateY(0)}30%{opacity:1;transform:translateY(-3px)}}
.think-txt{font-family:var(--sans);font-size:10.5px;font-weight:500;letter-spacing:.06em;color:var(--sys-muted)}

.jump{position:absolute;bottom:92px;left:50%;transform:translateX(-50%) translateY(8px);opacity:0;pointer-events:none;
  display:flex;align-items:center;gap:6px;padding:6px 13px;border-radius:0;
  background:rgba(20,30,48,.94);border:1px solid rgba(78,143,247,.4);backdrop-filter:blur(8px);
  font-size:10.5px;color:#9dc0fb;cursor:pointer;z-index:6;transition:opacity .3s,transform .3s}
.jump.show{opacity:1;transform:translateX(-50%) translateY(0);pointer-events:auto}
.cur{display:inline-block;width:1.5px;height:14px;background:var(--cyan);vertical-align:-2px;margin-left:2px;animation:bl 1.1s steps(1) infinite}
@keyframes bl{0%,50%{opacity:1}51%,100%{opacity:0}}

@media(max-width:920px){
  .b-gauges{grid-template-columns:1fr}
}

/* 2026 product architecture and page polish */
.product-nav-item { border-top:1px solid rgba(42,212,229,.32); padding-top:14px; }
.product-nav-item .np-title { color:#2ad4e5; }
.np-menu-rule { grid-column:1 / -1; margin:4px 0 0; padding:10px 0 2px; border-top:1px solid var(--border); font-family:var(--mono); font-size:9px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-secondary); }
.mm-product-divider { display:block; margin:3px 0 0; padding-top:12px; border-top:1px solid var(--border); font:500 10px var(--mono); letter-spacing:.12em; text-transform:uppercase; color:var(--text-secondary); }
.fin-intro-grid { align-items:start; }
.fin-product-peek { margin-top:28px; display:flex; gap:12px; align-items:center; max-width:560px; padding:14px 16px; background:rgba(18,32,51,.7); border:1px solid rgba(42,212,229,.26); border-radius:8px; box-shadow:0 14px 36px rgba(2,8,18,.18); }
.fin-product-peek svg { width:36px; flex:none; } .fin-product-peek strong { display:block; font-size:12px; letter-spacing:.03em; } .fin-product-peek span { display:block; margin-top:3px; color:var(--text-secondary); font-size:12px; }
@media(max-width:760px){.fin-product-peek{margin-top:20px}.np-menu-rule{display:none}}

/* Product navigation: intentionally compact and quiet. */
.products-menu .nav-panel { background:#0a0d14; }
.products-menu .nav-panel-inner.has-feature { grid-template-columns:1fr; max-width:1180px; min-height:0; padding:26px clamp(28px,4vw,54px) 28px; }
.products-menu .nav-panel-inner.has-feature .np-links { grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px 58px; max-width:820px; }
.products-menu .np-links::before { content:'Core products'; grid-column:1/-1; color:var(--text-secondary); font:500 9px var(--mono); letter-spacing:.16em; text-transform:uppercase; padding-bottom:2px; }
.products-menu .product-nav-item, .products-menu .nav-feature { display:none; }
.products-menu .np-menu-rule { margin:7px 0 1px; padding:15px 0 2px; }
.products-menu .np-item { max-width:none; padding:0; }
.products-menu .np-item .np-title { font-size:14px; margin-bottom:3px; }
.products-menu .np-item .np-desc { font-size:12px; line-height:1.42; max-width:38ch; }
@media(max-width:760px){.products-menu .nav-panel-inner.has-feature .np-links{grid-template-columns:1fr;gap:16px}.products-menu .np-links::before{display:none}}

/* Two-product menu: product selection, not a dense destination list. */
.products-menu .nav-panel { background:#0a0d14; }
.products-menu .product-menu-panel { width:min(1060px,calc(100vw - 48px)); margin:0 auto; padding:26px 0 30px; }
.product-menu-heading { display:flex; align-items:baseline; gap:28px; margin:0 0 18px; }
.product-menu-heading span { color:var(--text); font:600 12px var(--sans); letter-spacing:.01em; }
.product-menu-heading p { margin:0; max-width:670px; color:var(--text-secondary); font-size:12px; line-height:1.45; }
.product-menu-cards { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.product-menu-card { display:block; overflow:hidden; color:var(--text); text-decoration:none; border:1px solid rgba(255,255,255,.12); border-radius:10px; background:#101118; transition:transform .22s ease,border-color .22s ease,background .22s ease; }
.product-menu-card-new { border-color:rgba(42,212,229,.35); }
.product-menu-card:hover { transform:translateY(-3px); border-color:rgba(42,212,229,.6); background:#131722; }
.pmc-visual { height:132px; background-size:cover; background-position:center; filter:brightness(.55) saturate(.75); transition:filter .22s ease,transform .35s ease; }
.product-menu-card:hover .pmc-visual { filter:brightness(.75) saturate(.9); transform:scale(1.02); }
.pmc-revori { background-image:linear-gradient(90deg,rgba(8,11,17,.1),rgba(8,11,17,.5)),url('onprem-machine.webp'); }
.pmc-revori2 { background-image:linear-gradient(90deg,rgba(6,11,18,.15),rgba(6,11,18,.55)),url('ai-particles-poster.jpg'); }
.pmc-copy { padding:18px 20px 20px; }
.pmc-label { display:block; margin-bottom:8px; color:var(--text-secondary); font:500 9px var(--mono); letter-spacing:.15em; text-transform:uppercase; }
.pmc-label i { color:var(--accent); font-style:normal; }
.pmc-copy h3 { margin:0 0 7px; color:var(--text); font:500 24px var(--sans); letter-spacing:-.025em; }
.pmc-copy p { margin:0; min-height:38px; max-width:46ch; color:var(--text-secondary); font-size:12px; line-height:1.45; }
.pmc-link { display:block; margin-top:16px; color:var(--text); font-size:12px; font-weight:600; }.pmc-link b{color:var(--accent);margin-left:4px;transition:transform .2s}.product-menu-card:hover .pmc-link b{display:inline-block;transform:translateX(4px)}
@media(max-width:760px){.products-menu .product-menu-panel{width:auto;padding:22px 24px 28px}.product-menu-heading{display:block}.product-menu-heading span{display:block;margin-bottom:8px}.product-menu-cards{grid-template-columns:1fr}.pmc-visual{height:105px}}
.fin-hero-preview{margin-top:28px;max-width:580px;overflow:hidden;border:1px solid rgba(42,212,229,.32);border-radius:9px;background:#0a111d;box-shadow:0 20px 54px rgba(2,9,18,.25);font-family:var(--sans)}.fhp-bar{height:36px;display:flex;align-items:center;gap:8px;padding:0 13px;border-bottom:1px solid rgba(255,255,255,.09);color:#dce6f1;font-size:11px}.fhp-bar em{margin-left:auto;color:#2ad4e5;font:500 9px var(--mono);letter-spacing:.1em;text-transform:uppercase}.fhp-dot{width:7px;height:7px;border-radius:50%;background:#2ad4e5}.fhp-body{display:grid;grid-template-columns:92px 1fr;min-height:218px}.fhp-side{display:flex;flex-direction:column;gap:15px;padding:18px 12px;border-right:1px solid rgba(255,255,255,.08);color:#7e8da4;font-size:10px}.fhp-side .active{color:#eff8ff}.fhp-main{padding:17px}.fhp-metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}.fhp-metrics div{padding:9px;border:1px solid rgba(255,255,255,.07);background:rgba(255,255,255,.025)}.fhp-metrics small{display:block;color:#8290a6;font-size:8px}.fhp-metrics strong{display:block;margin:5px 0 2px;color:#f1f6fa;font-size:14px}.fhp-metrics i{color:#4ee1c1;font-size:8px;font-style:normal}.fhp-chart{margin-top:15px;padding:10px;border:1px solid rgba(255,255,255,.07);color:#9ba9bc;font-size:9px}.fhp-chart svg{display:block;width:100%;height:62px;margin-top:7px}.fhp-query{margin-top:10px;padding:8px 10px;border:1px solid rgba(42,212,229,.25);color:#91a0b5;font-size:10px}.fhp-query b{float:right;color:#2ad4e5}@media(max-width:700px){.fhp-body{grid-template-columns:72px 1fr}.fhp-metrics{grid-template-columns:1fr}.fhp-side{gap:10px}.fin-hero-preview{max-width:100%}}
/* Products menu: core products and solution links on the left, comparison action on the right. */
.products-menu .nav-panel{background:#0a0d14}.products-menu .product-menu-panel{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(260px,.75fr);gap:clamp(34px,5vw,72px);width:min(1120px,calc(100vw - 56px));margin:0 auto;padding:30px 0 34px}.product-menu-links{display:grid;grid-template-columns:1fr 1fr;gap:12px 28px}.pm-section-label{grid-column:1/-1;color:var(--text-secondary);font:500 9px var(--mono);letter-spacing:.16em;text-transform:uppercase;margin-bottom:1px}.pm-link{display:flex;justify-content:space-between;gap:12px;padding:12px 0;color:var(--text);text-decoration:none;border-top:1px solid rgba(255,255,255,.1)}.pm-link strong{display:block;font-size:14px;font-weight:600}.pm-link small{display:block;margin-top:4px;max-width:28ch;color:var(--text-secondary);font-size:11.5px;line-height:1.4}.pm-link b{color:var(--accent);font-weight:500;opacity:.7}.pm-link:hover strong,.pm-link:hover b{color:var(--accent);opacity:1}.pm-link em{margin-left:7px;color:var(--accent);font:500 8px var(--mono);letter-spacing:.1em;text-transform:uppercase;font-style:normal}.pm-solutions-label{margin-top:8px;padding-top:17px;border-top:1px solid rgba(255,255,255,.13)}.pm-solutions{grid-column:1/-1;display:grid;grid-template-columns:1fr 1fr;gap:0 28px}.pm-solutions a{padding:9px 0;color:var(--text);text-decoration:none}.pm-solutions strong{display:block;font-size:12px;font-weight:600}.pm-solutions small{display:block;margin-top:3px;color:var(--text-secondary);font-size:10.5px;line-height:1.35}.pm-solutions a:hover strong{color:var(--accent)}.pm-compare-card{display:flex;flex-direction:column;overflow:hidden;align-self:stretch;color:var(--text);text-decoration:none;border:1px solid rgba(42,212,229,.3);border-radius:9px;background:#101923;transition:transform .2s,border-color .2s}.pm-compare-card:hover{transform:translateY(-2px);border-color:rgba(42,212,229,.68)}.pm-compare-visual{height:118px;background:linear-gradient(100deg,rgba(7,13,23,.08),rgba(7,13,23,.62)),url('ai-particles-poster.jpg') center/cover;filter:saturate(.7)}.pm-compare-card>div:last-child{padding:16px 18px 18px}.pm-compare-card span{color:var(--accent);font:500 8px var(--mono);letter-spacing:.14em;text-transform:uppercase}.pm-compare-card h3{margin:8px 0 7px;font:500 21px/1.1 var(--sans);letter-spacing:-.02em}.pm-compare-card p{margin:0;color:var(--text-secondary);font-size:11.5px;line-height:1.45}.pm-compare-card strong{display:block;margin-top:14px;font-size:11.5px}.pm-compare-card strong b{color:var(--accent);margin-left:4px}@media(max-width:760px){.products-menu .product-menu-panel{display:block;width:auto;padding:24px}.pm-compare-card{margin-top:22px}.product-menu-links,.pm-solutions{grid-template-columns:1fr}.pm-link small{max-width:none}}
