  :root {
    --bg: #05060b;
    --bg-1: #090b14;
    --bg-2: #0d0f1c;
    --panel: #0b0d18;
    --panel-hover: #10131f;
    --border: #1c2036;
    --border-soft: #14172a;
    --border-hover: #2c3155;
    --ink-900: #f3f4fb;
    --ink-700: #b7bcd6;
    --ink-500: #868cad;
    --ink-400: #5c6285;

    /* signature palette: black canvas + violet / blue / crimson / magenta only */
    --violet: #8b5cf6;
    --violet-2: #a78bfa;
    --blue: #3b6bff;
    --blue-2: #5f8bff;
    --crimson: #ef2f6e;
    --magenta: #e94ecf;
    --pink: #ff5fb0;

    --accent: #7c5cff;
    --accent-dark: #5f3fe0;
    --accent-soft: rgba(124, 92, 255, 0.12);

    --max-w: 1180px;
    --radius: 14px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html, body { margin: 0; padding: 0; background: var(--bg); }

  body {
    font-family: 'Inter', sans-serif;
    color: var(--ink-500);
    -webkit-font-smoothing: antialiased;
    background: var(--bg);
    overflow-x: hidden;
  }

  a { color: inherit; }
  img, svg { display: block; }
  section[id] { scroll-margin-top: 88px; }
  ::selection { background: rgba(139, 92, 246, 0.35); color: #fff; }

  .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

  /* film-grain / noise overlay for texture depth */
  .grain {
    position: fixed; inset: 0; z-index: 200; pointer-events: none;
    opacity: 0.035; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  /* ---------- Nav ---------- */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: rgba(5, 6, 11, 0.72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }
  .nav-inner { max-width: var(--max-w); margin: 0 auto; padding: 15px 24px; display: flex; align-items: center; justify-content: space-between; }

  .nav-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 700; font-size: 1.02rem; color: var(--ink-900); letter-spacing: -0.01em; font-family: 'Space Grotesk', sans-serif; }
  .nav-logo svg, .footer-logo svg { width: 26px; height: 26px; overflow: visible; }

  .mini-net path { stroke: url(#miniNetGrad); stroke-width: 5.5; fill: none; }
  .mini-net circle { fill: var(--violet-2); animation: miniBreathe 3.6s ease-in-out infinite; }
  .mini-net circle:nth-of-type(2) { animation-delay: 0.3s; fill: var(--blue-2); }
  .mini-net circle:nth-of-type(3) { animation-delay: 0.6s; fill: var(--crimson); }
  .mini-net circle:nth-of-type(4) { animation-delay: 0.9s; fill: var(--magenta); }
  .mini-net circle:nth-of-type(5) { animation-delay: 1.2s; fill: var(--blue-2); }
  .mini-net circle:nth-of-type(6) { animation-delay: 1.5s; fill: var(--violet-2); }
  @keyframes miniBreathe { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

  .nav-links { display: flex; align-items: center; gap: 32px; font-size: 0.9rem; font-weight: 500; }
  .nav-links a:not(.btn) { text-decoration: none; color: var(--ink-700); transition: color 0.15s ease; position: relative; }
  .nav-links a:not(.btn)::after {
    content: ''; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px;
    background: linear-gradient(90deg, var(--violet-2), var(--blue-2)); transition: right 0.25s ease;
  }
  .nav-links a:not(.btn):hover { color: var(--ink-900); }
  .nav-links a:not(.btn):hover::after { right: 0; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: 9px; font-weight: 600; font-size: 0.9rem;
    text-decoration: none; border: 1px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease, transform 0.15s ease;
    cursor: pointer; letter-spacing: -0.005em;
  }
  .btn-primary {
    position: relative; overflow: hidden; color: var(--bg);
    background: #ffffff;
    border-color: rgba(139, 92, 246, 0.18);
    box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 8px 24px -10px rgba(124, 92, 255, 0.35);
  }
  .btn-primary span.btn-label { position: relative; z-index: 2; }
  .btn-primary .neuron-svg {
    position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
    pointer-events: none; opacity: 0; transition: opacity 0.25s ease;
  }
  .btn-primary:hover .neuron-svg { opacity: 1; }
  .btn-primary .neuron-path {
    fill: none; stroke-width: 1.4; stroke-linecap: round;
    stroke: url(#neuronPathGrad);
    opacity: 0.35;
  }
  .btn-primary .neuron-node { fill: #a78bfa; opacity: 0.5; }
  .btn-primary .neuron-pulse {
    fill: #ffffff;
    filter: drop-shadow(0 0 3px rgba(139, 92, 246, 0.9)) drop-shadow(0 0 6px rgba(233, 78, 207, 0.6));
  }
  .btn-primary:hover { box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 10px 32px -8px rgba(124, 92, 255, 0.5); transform: translateY(-1px); background: #ffffff; }
  .btn-ghost { background: rgba(255,255,255,0.02); color: var(--ink-900); border-color: var(--border); }
  .btn-ghost:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.045); }
  .btn-light { background: #fff; color: #0a0b12; }
  .btn-light:hover { background: #eceafc; }

  .nav-toggle {
    display: none; align-items: center; gap: 8px; cursor: pointer;
    background: rgba(139,92,246,0.10); border: 1px solid var(--border-hover); border-radius: 9px;
    padding: 8px 13px 8px 11px; transition: background 0.15s ease, border-color 0.15s ease;
  }
  .nav-toggle:hover { background: rgba(139,92,246,0.16); }
  .nav-toggle-bars { position: relative; width: 18px; height: 13px; flex: none; }
  .nav-toggle-bars span { position: absolute; left: 0; right: 0; height: 2px; border-radius: 1px; background: var(--ink-900); transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease; }
  .nav-toggle-bars span:nth-child(1) { top: 0; }
  .nav-toggle-bars span:nth-child(2) { top: 5.5px; }
  .nav-toggle-bars span:nth-child(3) { top: 11px; }
  .nav-toggle.open .nav-toggle-bars span:nth-child(1) { top: 5.5px; transform: rotate(45deg); }
  .nav-toggle.open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
  .nav-toggle.open .nav-toggle-bars span:nth-child(3) { top: 5.5px; transform: rotate(-45deg); }
  .nav-toggle-label { font-size: 0.82rem; font-weight: 600; color: var(--ink-900); letter-spacing: -0.005em; }
  @keyframes navTogglePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139,92,246,0.45); }
    50% { box-shadow: 0 0 0 7px rgba(139,92,246,0); }
  }
  .nav-toggle.attention { animation: navTogglePulse 1.6s ease-in-out 2; }

  /* ---------- Hero ---------- */
  .hero {
    position: relative; padding: 172px 24px 120px; overflow: hidden;
    background:
      radial-gradient(900px 500px at 50% -8%, rgba(124, 92, 255, 0.16), transparent 60%),
      radial-gradient(700px 420px at 85% 8%, rgba(233, 78, 207, 0.08), transparent 55%),
      var(--bg);
  }
  .hero-bg-network { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; animation: bgDrift 24s ease-in-out infinite; }
  .section-bg-network { animation: bgDrift 28s ease-in-out infinite; }
  @keyframes bgDrift { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-12px, 10px) scale(1.02); } }

  .hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }

  .brand-lockup { display: flex; flex-direction: column; align-items: center; margin-bottom: 34px; }
  .brand-word { display: inline-flex; align-items: flex-end; font-weight: 700; font-size: clamp(2.6rem, 7.4vw, 4.5rem); color: var(--ink-900); letter-spacing: -0.03em; line-height: 1; margin: 0; font-family: 'Space Grotesk', sans-serif; }

  .brand-o {
    display: inline-block; width: 1.75em; height: 1.75em; border-radius: 50%; overflow: visible;
    position: relative; transform: translateY(-0.06em); flex-shrink: 0; margin-right: 0.06em;
  }
  .brand-o-bg { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 50% 45%, #0e0a1e 0%, #060512 62%, #020204 100%); box-shadow: 0 0 40px -6px rgba(124, 92, 255, 0.55), 0 0 80px -20px rgba(233, 78, 207, 0.3); }
  .brand-o svg { width: 100%; height: 100%; display: block; position: relative; z-index: 1; }

  .brand-suffix { align-self: flex-end; margin-top: 10px; margin-right: 2%; font-size: clamp(0.72rem, 1.4vw, 0.92rem); letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-400); font-weight: 600; font-family: 'JetBrains Mono', monospace; }

  .orb-node { transform-box: fill-box; transform-origin: center; animation: orbPulse 2.3s ease-in-out infinite; }
  @keyframes orbPulse { 0%, 100% { opacity: 0.45; transform: scale(1); } 50% { opacity: 1; transform: scale(1.5); } }

  .eyebrow-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px 7px 12px; border-radius: 999px;
    background: linear-gradient(180deg, rgba(124,92,255,0.14), rgba(124,92,255,0.05));
    border: 1px solid rgba(139, 92, 246, 0.28);
    color: var(--violet-2); font-size: 0.78rem; font-weight: 600; margin-bottom: 22px; letter-spacing: 0.01em;
  }
  .eyebrow-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-2); box-shadow: 0 0 8px 2px rgba(167, 139, 250, 0.7); animation: dotPulse 1.8s ease-in-out infinite; }
  @keyframes dotPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

  h1 {
    font-size: clamp(1.9rem, 4.4vw, 3.05rem); line-height: 1.14; font-weight: 700; color: var(--ink-900);
    letter-spacing: -0.025em; margin: 0 0 22px; max-width: 700px; font-family: 'Space Grotesk', sans-serif;
  }
  h1 .grad { background: linear-gradient(100deg, var(--violet-2) 0%, var(--blue-2) 45%, var(--magenta) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }

  .hero-sub { font-size: 1.1rem; line-height: 1.7; color: var(--ink-500); max-width: 580px; margin: 0 0 36px; }

  .hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 46px; }

  .trust-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-400); text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
  .trust-bar span.dot-sep { color: var(--border-hover); font-weight: 400; }
  .trust-bar span:not(.dot-sep) { transition: color 0.2s ease; }
  .trust-bar span:not(.dot-sep):hover { color: var(--violet-2); }

  /* ---------- Sections ---------- */
  .section { position: relative; overflow: hidden; padding: 108px 24px; }
  .section.soft { background: var(--bg-1); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }
  .section-bg-network { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
  .container { position: relative; z-index: 1; }

  .section-head { max-width: 660px; margin: 0 auto 58px; text-align: left; }
  .section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--violet-2); margin-bottom: 14px; font-family: 'JetBrains Mono', monospace;
  }
  .eyebrow::before { content: ''; width: 16px; height: 1px; background: linear-gradient(90deg, var(--violet-2), transparent); }

  h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 16px; font-family: 'Space Grotesk', sans-serif; }
  .section-lead { font-size: 1.04rem; line-height: 1.75; color: var(--ink-500); }
  .inline-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
    font-size: 0.92rem; font-weight: 600; color: var(--violet-2); text-decoration: none;
    transition: gap 0.15s ease, color 0.15s ease;
  }
  .inline-link:hover { gap: 10px; color: var(--blue-2); }
  .inline-link span { transition: transform 0.15s ease; }
  .inline-link:hover span { transform: translateX(2px); }

  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.7s cubic-bezier(0.16,1,0.3,1); filter: blur(4px); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }
  .reveal-left { transform: translateX(-28px); }
  .reveal-left.is-visible { transform: translateX(0); }
  .reveal-right { transform: translateX(28px); }
  .reveal-right.is-visible { transform: translateX(0); }
  .reveal-scale { transform: translateY(14px) scale(0.94); }
  .reveal-scale.is-visible { transform: translateY(0) scale(1); }

  /* magnetic cursor-follow glow on cards -- premium spotlight effect */
  .card { --gx: 50%; --gy: 50%; }
  .card::after {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
    background: radial-gradient(220px circle at var(--gx) var(--gy), rgba(139,92,246,0.14), transparent 70%);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .card:hover::after { opacity: 1; }

  /* count-up number reveal */
  .stat-num.counting span { display: inline-block; }

  /* button micro-interactions: press feedback */
  .btn { transform: translateZ(0); }
  .btn:active { transform: scale(0.965); }
  .btn-primary:active { transform: scale(0.965) translateY(0); }

  /* nav link underline sweep already exists; add logo hover pulse */
  .nav-logo svg { transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
  .nav-logo:hover svg { transform: rotate(8deg) scale(1.08); }

  /* section heading letter-fade-in on reveal for extra polish */
  .section-head.reveal h2, .hero-content h1 { transition: opacity 0.8s ease 0.1s, transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s; }

  /* process step number pop on reveal */
  .process-step.is-visible .process-num { animation: numPop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.15s backwards; }
  @keyframes numPop { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }

  /* icon tile subtle float-in */
  .card.is-visible .icon-tile { animation: iconFloatIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.05s backwards; }
  @keyframes iconFloatIn { 0% { transform: translateY(8px) scale(0.85); opacity: 0; } 100% { transform: translateY(0) scale(1); opacity: 1; } }

  /* value-list check pop */
  .value-item.is-visible .check, .value-list.is-visible .check { animation: numPop 0.4s cubic-bezier(0.34,1.56,0.64,1) backwards; }

  .icon-tile {
    position: relative; width: 46px; height: 46px; border-radius: 11px;
    background: linear-gradient(160deg, rgba(124,92,255,0.16), rgba(59,107,255,0.06));
    border: 1px solid rgba(139, 92, 246, 0.22);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  }
  .icon-tile svg { width: 24px; height: 24px; }
  .icon-tile svg * { stroke: var(--violet-2); }
  .icon-tile::after { content: ''; position: absolute; inset: 0; border-radius: 11px; border: 1.5px solid var(--violet-2); opacity: 0; }
  .card:hover .icon-tile::after { animation: iconPing 0.8s ease-out; }
  @keyframes iconPing { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.6); } }

  .scroll-progress {
    position: fixed; top: 0; left: 0; height: 2.5px; width: 0%;
    background: linear-gradient(90deg, var(--violet), var(--blue), var(--crimson), var(--magenta));
    z-index: 100; box-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
  }

  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

  .card {
    position: relative; background: linear-gradient(160deg, var(--panel), var(--bg-2));
    border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease, background 0.25s ease;
    will-change: transform; overflow: hidden;
  }
  .card::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px;
    background: linear-gradient(160deg, rgba(139,92,246,0.35), rgba(59,107,255,0), rgba(233,78,207,0.25));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: opacity 0.25s ease; pointer-events: none;
  }
  .card:hover { border-color: var(--border-hover); box-shadow: 0 24px 48px -22px rgba(0,0,0,0.6), 0 0 0 1px rgba(139,92,246,0.08); background: linear-gradient(160deg, var(--panel-hover), var(--bg-2)); }
  .card:hover::before { opacity: 1; }
  .card h3 { font-size: 1.04rem; font-weight: 700; color: var(--ink-900); margin: 0 0 9px; letter-spacing: -0.01em; }
  .card p { font-size: 0.92rem; line-height: 1.65; color: var(--ink-500); margin: 0; }

  .ind-icon * { fill: none; stroke: var(--violet-2); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

  .process-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
  .process-line { position: absolute; top: 15px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border-hover), transparent); z-index: 0; }
  .process-pulse { position: absolute; top: -3px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--violet-2); box-shadow: 0 0 12px 2px rgba(167, 139, 250, 0.8); animation: pulseTravel 4s ease-in-out infinite; }
  @keyframes pulseTravel { 0% { left: 0%; opacity: 0; } 8% { opacity: 1; } 92% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
  .process-step { position: relative; z-index: 1; }
  .process-num {
    display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(160deg, rgba(124,92,255,0.18), rgba(59,107,255,0.06)); border: 1px solid rgba(139,92,246,0.25);
    color: var(--violet-2); font-weight: 700; font-size: 0.8rem; margin-bottom: 18px; font-family: 'JetBrains Mono', monospace;
  }
  .process-step h3 { font-size: 1rem; color: var(--ink-900); margin: 0 0 7px; font-weight: 700; }
  .process-step p { font-size: 0.87rem; line-height: 1.6; color: var(--ink-500); margin: 0; }

  .about-grid { display: grid; grid-template-columns: 1.05fr 1fr 0.85fr; gap: 48px; align-items: center; }
  .about-visual { display: flex; align-items: center; justify-content: center; }
  .about-visual-wrap { position: relative; width: 100%; max-width: 240px; aspect-ratio: 1; border-radius: 50%; }
  .about-visual-wrap::before { content: ''; position: absolute; inset: -14%; border-radius: 50%; background: radial-gradient(circle, rgba(124,92,255,0.22), transparent 68%); filter: blur(6px); }
  .about-visual svg { position: relative; z-index: 1; width: 100%; max-width: 240px; border-radius: 50%; background: radial-gradient(circle at 50% 45%, #0e0a1e 0%, #060512 62%, #020204 100%); }

  .value-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
  .value-item { display: flex; gap: 13px; align-items: flex-start; }
  .check {
    flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(160deg, rgba(124,92,255,0.2), rgba(233,78,207,0.08)); border: 1px solid rgba(139,92,246,0.3);
    display: flex; align-items: center; justify-content: center; margin-top: 2px;
  }
  .check svg { width: 11px; height: 11px; }
  .check svg * { stroke: var(--violet-2); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .value-item p { margin: 0; font-size: 0.96rem; line-height: 1.65; color: var(--ink-700); }

  .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-soft); }
  .stat-num { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; }
  .stat-num span { background: linear-gradient(100deg, var(--violet-2), var(--blue-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .stat-label { font-size: 0.78rem; color: var(--ink-400); margin-top: 4px; letter-spacing: 0.02em; }

  .cta-band { position: relative; overflow: hidden; background: radial-gradient(ellipse 800px 500px at 50% 40%, rgba(124,92,255,0.10), transparent 65%), var(--bg-1); padding: 100px 24px; text-align: center; border-top: 1px solid var(--border-soft); }
  .cta-band h2 { position: relative; z-index: 2; color: #fff; }
  .cta-band .section-lead { position: relative; z-index: 2; color: var(--ink-500); max-width: 540px; margin: 0 auto 34px; }
  .cta-band .hero-ctas { position: relative; z-index: 2; justify-content: center; margin-bottom: 0; }


  .contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
  .contact-info { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; color: var(--ink-700); font-weight: 500; }
  .contact-info div { display: flex; align-items: center; gap: 10px; }
  .contact-info .cdot { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-2); box-shadow: 0 0 8px 2px rgba(167,139,250,0.6); flex-shrink: 0; }

  .contact-form { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
  .contact-form input, .contact-form textarea {
    width: 100%; background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 13px 15px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--ink-900); outline: none; transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--ink-400); }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
  .contact-form textarea { resize: vertical; min-height: 128px; }

  .form-success { display: none; padding: 18px; border-radius: 10px; background: linear-gradient(160deg, rgba(124,92,255,0.14), rgba(233,78,207,0.06)); border: 1px solid rgba(139,92,246,0.28); color: var(--ink-900); font-size: 0.92rem; font-weight: 500; }

  .footer { padding: 52px 24px 36px; border-top: 1px solid var(--border-soft); background: var(--bg); }
  .footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; }
  .footer-logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.98rem; color: var(--ink-900); font-family: 'Space Grotesk', sans-serif; }
  .footer-links { display: flex; gap: 24px; font-size: 0.87rem; }
  .footer-links a { text-decoration: none; color: var(--ink-500); transition: color 0.15s ease; }
  .footer-links a:hover { color: var(--ink-900); }
  .footer-copy { font-size: 0.78rem; color: var(--ink-400); width: 100%; margin-top: 10px; text-align: center; font-family: 'JetBrains Mono', monospace; }

  /* ---------- Ori chat widget: fixed in place, no wandering, no ambient popups ---------- */
  .ori-mover {
    position: fixed; bottom: 24px; right: 24px; z-index: 55;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .ori-mover.ori-tucked {
    opacity: 0; transform: scale(0.35) translate(30px, 30px);
    pointer-events: none;
  }

  .ori-fab {
    position: relative; width: 56px; height: 56px; border-radius: 50%; background: transparent;
    appearance: none; -webkit-appearance: none; border: none; cursor: pointer; display: block; padding: 0;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.5));
    transition: filter 0.2s ease;
  }
  .ori-fab::before {
    content: ''; position: absolute; inset: -2px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #14101f 0%, #08060f 78%);
    border: 1px solid var(--border-hover); z-index: -1;
  }
  .ori-fab:hover { filter: drop-shadow(0 10px 22px rgba(0,0,0,0.5)) brightness(1.08); }
  .ori-fab svg { width: 100%; height: 100%; display: block; overflow: visible; background: transparent; }

  .ori-blob-body { fill: url(#oriBodyGradient); }
  .ori-blob-ring { fill: none; stroke: url(#oriRingGradient); stroke-width: 1.4; opacity: 0.85; }
  #oriCircuitry circle { opacity: 0.6; }
  .ori-eye-white { fill: #f3effc; }
  .ori-eye-pupil { fill: #0a0714; }
  .ori-fab.blinking #oriEyes { animation: oriBlink 0.28s ease-in-out; }
  @keyframes oriBlink { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(0.1); } }
  .ori-expression-mark { display: none; }

  .ori-panel {
    position: fixed; bottom: 96px; right: 24px; width: 372px; max-width: calc(100vw - 40px);
    height: 500px; max-height: calc(100vh - 148px);
    background: linear-gradient(170deg, #0d0c17, #08070f);
    border: 1px solid var(--border-hover); border-radius: 18px;
    box-shadow: 0 32px 70px -20px rgba(0,0,0,0.75), 0 0 0 1px rgba(139,92,246,0.08);
    display: flex; flex-direction: column; overflow: hidden; z-index: 60;
    opacity: 0; transform: translateY(14px) scale(0.97); pointer-events: none; transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .ori-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

  .ori-header { display: flex; align-items: center; gap: 11px; padding: 15px 17px; border-bottom: 1px solid var(--border-soft); background: linear-gradient(160deg, rgba(124,92,255,0.06), transparent); }
  .ori-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: visible; flex-shrink: 0; box-shadow: 0 0 14px -2px rgba(139,92,246,0.5); animation: oriHeaderPop 0.4s cubic-bezier(0.34,1.56,0.64,1); }
  .ori-avatar svg { width: 100%; height: 100%; display: block; }
  @keyframes oriHeaderPop { 0% { transform: scale(0.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
  .ori-header-text { flex: 1; }
  .ori-header-text .name { font-weight: 700; font-size: 0.93rem; color: var(--ink-900); font-family: 'Space Grotesk', sans-serif; }
  .ori-header-text .sub { font-size: 0.75rem; color: var(--ink-400); display: flex; align-items: center; gap: 5px; }
  .ori-header-text .sub .livedot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; box-shadow: 0 0 6px 1px rgba(52,211,153,0.7); }
  .ori-close { background: none; border: none; cursor: pointer; color: var(--ink-400); font-size: 1.2rem; padding: 4px; line-height: 1; }
  .ori-close:hover { color: var(--ink-900); }

  .ori-messages { flex: 1; overflow-y: auto; padding: 17px; display: flex; flex-direction: column; gap: 12px; }
  .ori-msg { max-width: 82%; font-size: 0.88rem; line-height: 1.55; padding: 10px 14px; border-radius: 13px; }
  .ori-msg.bot { align-self: flex-start; background: var(--panel); border: 1px solid var(--border-soft); color: var(--ink-700); border-bottom-left-radius: 4px; }
  .ori-msg.user { align-self: flex-end; background: linear-gradient(135deg, var(--violet), var(--blue)); color: #fff; border-bottom-right-radius: 4px; }

  .ori-typing { align-self: flex-start; display: flex; gap: 4px; padding: 13px 14px; background: var(--panel); border: 1px solid var(--border-soft); border-radius: 13px; border-bottom-left-radius: 4px; }
  .ori-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--violet-2); animation: oriTyping 1.1s infinite ease-in-out; }
  .ori-typing span:nth-child(2) { animation-delay: 0.15s; }
  .ori-typing span:nth-child(3) { animation-delay: 0.3s; }
  @keyframes oriTyping { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

  .ori-input-row { display: flex; gap: 8px; padding: 13px; border-top: 1px solid var(--border-soft); }
  .ori-input-row input { flex: 1; background: var(--panel); border: 1px solid var(--border); border-radius: 10px; padding: 11px 13px; font-family: 'Inter', sans-serif; font-size: 0.88rem; outline: none; color: var(--ink-900); }
  .ori-input-row input::placeholder { color: var(--ink-400); }
  .ori-input-row input:focus { border-color: var(--violet); }
  .ori-send { background: linear-gradient(135deg, var(--violet), var(--blue)); border: none; border-radius: 10px; width: 42px; color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; }
  .ori-send:hover { filter: brightness(1.1); }

  @media (max-width: 480px) {
    .ori-panel { right: 12px; left: 12px; width: auto; bottom: 88px; }
  }

  @media (max-width: 980px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .process-track { grid-template-columns: repeat(1, 1fr); gap: 26px; }
    .process-line { display: none; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 720px) {
    .nav-links {
      position: fixed; top: 60px; left: 0; right: 0; bottom: 0; background: var(--bg);
      flex-direction: column; justify-content: center; gap: 28px; font-size: 1.08rem;
      transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .nav-toggle { display: flex; }
    .grid-3 { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: 1fr; gap: 24px; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { transition: none; opacity: 1; transform: none; filter: none; }
    .orb-node { animation: none; }
    .ori-typing span { animation: none; }
    .hero-bg-network { animation: none; }
    .section-bg-network { animation: none; }
    .mini-net circle { animation: none; }
    .process-pulse { animation: none; display: none; }
    .card:hover .icon-tile::after { animation: none; }
    .btn-primary::before { display: none; }
    .btn-primary .neuron-svg { display: none; }
    .ori-fab { animation: none; }
    .ori-fab svg { animation: none; }
    .ori-fab.confused { animation: none; }
    .eyebrow-pill .dot { animation: none; }
    .process-step.is-visible .process-num { animation: none; }
    .card.is-visible .icon-tile { animation: none; }
    .value-item.is-visible .check { animation: none; }
    .card::after { display: none; }
    .ori-expression-mark { animation: none; }
  }

  /* ---------- product showcase: one large real-screenshot moment at a time ---------- */
  .feature-showcase { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
  .feature-showcase.reverse { grid-template-columns: 0.85fr 1.15fr; }
  .feature-showcase.reverse .feature-frame { order: 2; }
  .feature-showcase.reverse .feature-text { order: 1; }
  .feature-showcase.text-only { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; text-align: center; }
  .feature-frame {
    position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
    background: #05060b; box-shadow: 0 24px 48px -20px rgba(0,0,0,0.6);
  }
  .feature-frame img { width: 100%; display: block; }
  .feature-text .eyebrow-sm { font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--violet-2); font-weight: 700; margin-bottom: 10px; }
  .feature-showcase.text-only .eyebrow-sm { justify-content: center; }
  .feature-text h3 { font-size: 1.5rem; margin: 0 0 14px; }
  .feature-text p { font-size: 0.98rem; color: var(--ink-500); line-height: 1.65; margin: 0; max-width: 420px; }
  .feature-showcase.text-only .feature-text p { max-width: none; margin: 0 auto; }
  @media (max-width: 900px) {
    .feature-showcase, .feature-showcase.reverse { grid-template-columns: 1fr; gap: 28px; }
    .feature-showcase.reverse .feature-frame, .feature-showcase.reverse .feature-text { order: initial; }
  }

  /* ---------- Ori embodiment / capability list ---------- */
  .ori-embody-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: center; }
  .ori-levels { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
  .ori-level-pill {
    font-size: 0.76rem; font-weight: 600; padding: 7px 13px; border-radius: 999px;
    border: 1px solid var(--border-hover); color: var(--ink-700); background: var(--panel);
  }
  .ori-level-pill.active { border-color: var(--violet-2); color: var(--violet-2); background: rgba(139,92,246,0.08); }
  .ori-capability-list { display: flex; flex-direction: column; gap: 18px; margin-top: 6px; padding: 0; }
  .ori-capability-list li { list-style: none; display: flex; gap: 14px; align-items: flex-start; }
  .ori-cap-dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--violet-2); margin-top: 7px; box-shadow: 0 0 10px rgba(167,139,250,0.7); }
  .ori-capability-list h4 { font-size: 0.98rem; margin: 0 0 4px; color: var(--ink-900); }
  .ori-capability-list p { font-size: 0.87rem; color: var(--ink-500); margin: 0; line-height: 1.55; }
  @media (max-width: 980px) { .ori-embody-grid { grid-template-columns: 1fr; gap: 32px; } }

  /* ---------- current page indicator in nav ---------- */
  .nav-links a.active:not(.btn) { color: var(--ink-900); }
  .nav-links a.active:not(.btn)::after { right: 0; background: linear-gradient(90deg, var(--violet-2), var(--blue-2)); }

  /* ---------- industry deep-dive: role cards ---------- */
  .role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 900px) { .role-grid { grid-template-columns: 1fr; } }
  .role-card { padding: 30px 26px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--panel); }
  .role-card .role-tag {
    display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
    color: var(--blue-2); margin-bottom: 12px;
  }
  .role-card h3 { font-size: 1.15rem; margin: 0 0 12px; }
  .role-card ul { margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
  .role-card li { list-style: none; font-size: 0.87rem; color: var(--ink-500); line-height: 1.5; padding-left: 16px; position: relative; }
  .role-card li::before { content: '-'; position: absolute; left: 0; color: var(--violet-2); }

  /* ---------- Ori page: hero orb + brain visual + product tour ---------- */
  .ori-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
  .ori-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 340px; }
  .ori-hero-visual::before {
    content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.28), rgba(59,107,255,0.08) 55%, transparent 72%);
    filter: blur(6px); z-index: 0;
  }
  .ori-orb-img {
    position: relative; z-index: 1; width: 100%; max-width: 320px;
    filter: drop-shadow(0 28px 54px rgba(109,66,244,0.4));
    animation: oriFloat 6s ease-in-out infinite;
  }
  @keyframes oriFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
  @media (max-width: 900px) {
    .ori-hero-grid { grid-template-columns: 1fr; gap: 8px; }
    .ori-hero-visual { order: -1; min-height: 220px; }
    .ori-orb-img { max-width: 220px; }
  }

  .ori-brain-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
  .ori-brain-grid .feature-frame { margin: 0; }
  @media (max-width: 980px) { .ori-brain-grid { grid-template-columns: 1fr; gap: 32px; } }

  .ori-tour-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 60px -24px rgba(0,0,0,0.65); }
  .ori-tour-frame img { width: 100%; display: block; }
  .ori-tour-frame.contained { max-width: 760px; margin: 0 auto; }
  .ori-tour-caption { text-align: center; color: var(--ink-500); font-size: 0.88rem; margin-top: 18px; }
  .ori-legend-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 28px; max-width: 900px; margin: 36px auto 0; }
  .ori-legend-grid > div { display: flex; gap: 12px; align-items: flex-start; }
  .ori-legend-num {
    flex: none; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 600; color: var(--violet-2);
    border: 1px solid var(--border-hover); background: rgba(139,92,246,0.08);
  }
  .ori-legend-grid h4 { font-size: 0.86rem; margin: 0 0 3px; color: var(--ink-900); }
  .ori-legend-grid p { font-size: 0.79rem; color: var(--ink-500); margin: 0; line-height: 1.45; }
  @media (max-width: 900px) { .ori-legend-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .ori-legend-grid { grid-template-columns: 1fr; } }

  /* rest of the original site's CSS omitted for brevity in this extract */
