
  :root {
    /* JSimple brand: black + electric cyan from logo */
    --bg: #08090b;
    --bg-2: #0e1014;
    --bg-3: #14171c;
    --surface: #181b22;
    --surface-2: #20242c;
    --border: rgba(255,255,255,0.07);
    --border-strong: rgba(255,255,255,0.14);
    --text: #f2f4f8;
    --text-dim: #9aa2b1;
    --text-muted: #5f6675;
    --accent: #1bb5f5;          /* signature cyan from logo */
    --accent-2: #5fd0ff;
    --accent-deep: #0a85bd;
    --accent-warm: #ffb47a;
    --line: #232831;
    --grid: rgba(27, 181, 245, 0.06);
    --nav-bg: rgba(8, 9, 11, 0.75);
    --panel-bg: rgba(20, 23, 28, 0.4);
    --serif: 'Fraunces', Georgia, serif;        /* used ONLY for editorial accent moments */
    --display: 'Geist', 'Inter Tight', system-ui, sans-serif;  /* main display font - modern, tech-credible */
    --sans: 'Inter Tight', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --logo-filter: none;
  }

  /* ============ LIGHT MODE ============ */
  [data-theme="light"] {
    --bg: #ffffff;
    --bg-2: #f6f8fb;
    --bg-3: #eef1f6;
    --surface: #ffffff;
    --surface-2: #f6f8fb;
    --border: rgba(10, 22, 40, 0.10);
    --border-strong: rgba(10, 22, 40, 0.20);
    --text: #0c1320;
    --text-dim: #4a5468;
    --text-muted: #8089a0;
    --accent: #0a85bd;          /* slightly deeper cyan for contrast on white */
    --accent-2: #0a6ea0;
    --accent-deep: #075a82;
    --accent-warm: #d97a3a;
    --line: #e4e8ef;
    --grid: rgba(10, 133, 189, 0.05);
    --nav-bg: rgba(255, 255, 255, 0.8);
    --panel-bg: rgba(246, 248, 251, 0.7);
    /* Invert the black-background logo so the J+wordmark read on light */
    --logo-filter: invert(1) hue-rotate(180deg);
  }
  /* Light-mode: the JPEG logos have black backgrounds, so swap to a CSS-friendly treatment.
     We use mix-blend to drop the black, keeping the cyan J and dark wordmark visible. */
  [data-theme="light"] .logo-img,
  [data-theme="light"] .footer-brand img {
    mix-blend-mode: multiply;
  }
  /* Film grain is too heavy on white — soften it */
  [data-theme="light"] body::before { opacity: 0.015; }
  /* Soften heavy shadows in light mode */
  [data-theme="light"] .product-card:hover,
  [data-theme="light"] .case:hover,
  [data-theme="light"] .member:hover,
  [data-theme="light"] .velzora-card,
  [data-theme="light"] .search-mockup,
  [data-theme="light"] .dashboard-mockup {
    box-shadow: 0 20px 50px -25px rgba(10, 22, 40, 0.25);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    transition: background 0.4s ease, color 0.4s ease;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  body::before {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none; z-index: 1;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

  /* ============ NAV ============ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    backdrop-filter: blur(20px);
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border);
  }
  nav .inner {
    max-width: 1280px; margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo-img { height: 44px; width: auto; display: block; }
  @media (max-width: 720px) {
    .logo-img { height: 36px; }
  }

  /* ============ THEME TOGGLE + LOGO SWAP ============ */
  /* Default (dark): show the white-wordmark logo, hide dark-text version */
  .logo-light-src, .footer-logo-light { display: none !important; }
  .logo-dark-src, .footer-logo-dark { display: block !important; }
  [data-theme="light"] .logo-light-src, [data-theme="light"] .footer-logo-light { display: block !important; }
  [data-theme="light"] .logo-dark-src, [data-theme="light"] .footer-logo-dark { display: none !important; }
  /* Remove the multiply blend now that we use transparent PNGs */
  [data-theme="light"] .logo-img, [data-theme="light"] .footer-brand img { mix-blend-mode: normal; }

  .theme-toggle {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
  }
  .theme-toggle:hover {
    color: var(--text);
    border-color: var(--text);
    background: rgba(127,127,127,0.06);
  }
  /* Default dark: show moon (tap for light). Light: show sun (tap for dark) */
  /* Show the icon for the mode you'll switch TO.
     Dark mode → show sun (tap to go light). Light mode → show moon (tap to go dark). */
  .theme-toggle .theme-icon-sun { display: block; }
  .theme-toggle .theme-icon-moon { display: none; }
  [data-theme="light"] .theme-toggle .theme-icon-sun { display: none; }
  [data-theme="light"] .theme-toggle .theme-icon-moon { display: block; }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-links a {
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-size: 0.9rem; font-weight: 500;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    white-space: nowrap;
  }
  .btn-primary { background: var(--text); color: var(--bg); }
  .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.15); }
  .btn-ghost { border-color: var(--border-strong); color: var(--text); }
  .btn-ghost:hover { border-color: var(--text); background: rgba(255,255,255,0.04); }
  .btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(27, 181, 245, 0.3);
  }
  .btn-accent:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27, 181, 245, 0.5); }
  .btn .arr { transition: transform 0.25s; }
  .btn:hover .arr { transform: translateX(3px); }

  /* ============ HERO ============ */
  .hero { position: relative; padding: 9rem 0 6rem; overflow: hidden; }
  .hero-bg {
    position: absolute; inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  /* Glow blobs */
  .hero-bg::before {
    content: '';
    position: absolute; top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 1100px; height: 800px;
    background: radial-gradient(circle, rgba(27, 181, 245, 0.22) 0%, transparent 60%);
    filter: blur(90px);
  }
  .hero-bg::after {
    content: '';
    position: absolute; bottom: -100px; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255, 180, 122, 0.05) 0%, transparent 70%);
    filter: blur(60px);
  }
  .hero-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  .hero-svg .arc {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1;
    opacity: 0.18;
    transform-origin: center;
  }
  .hero-svg .arc.thin { opacity: 0.08; stroke-width: 0.5; }
  .hero-svg .arc.bright { opacity: 0.35; stroke-width: 1.2; stroke-dasharray: 4 8; }
  .hero-svg .glow-dot {
    fill: var(--accent-2);
  }
  @keyframes drift {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(8px, -12px); opacity: 1; }
  }
  @keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .hero-svg .rotate-group {
    transform-origin: 50% 50%;
    animation: rotate-slow 120s linear infinite;
  }
  .hero-svg .rotate-group-rev {
    transform-origin: 50% 50%;
    animation: rotate-slow 90s linear infinite reverse;
  }
  .hero-svg .dot-1 { animation: drift 6s ease-in-out infinite; }
  .hero-svg .dot-2 { animation: drift 8s ease-in-out infinite 1s; }
  .hero-svg .dot-3 { animation: drift 7s ease-in-out infinite 2s; }
  .hero-svg .dot-4 { animation: drift 9s ease-in-out infinite 0.5s; }
  /* Subtle "J" curve echo - bottom left, very faded */
  .hero-svg .j-echo {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    opacity: 0.08;
    stroke-linecap: round;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 2; max-width: 1100px; }
  .hero-inner.hero-centered { margin: 0 auto; text-align: center; }
  .hero-inner.hero-centered .eyebrow { margin-left: 0; margin-right: 0; }
  .hero-inner.hero-centered .hero-title { margin-left: auto; margin-right: auto; }
  .hero-inner.hero-centered .hero-cta { justify-content: center; }
  .hero-inner.hero-centered .hero-eco { margin-left: auto; margin-right: auto; max-width: 960px; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 0.9rem;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    background: var(--panel-bg);
    font-family: var(--mono);
    letter-spacing: 0.02em;
  }
  .eyebrow .dot {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0.1); }
  }

  h1.hero-title {
    font-family: var(--display);
    font-size: clamp(2.8rem, 6.8vw, 6rem);
    line-height: 0.96;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin-bottom: 1.75rem;
  }
  h1.hero-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    color: var(--accent);
    letter-spacing: -0.025em;
  }
  .hero-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--text-dim);
    max-width: 680px;
    margin-bottom: 2.5rem;
    line-height: 1.55;
  }
  .hero-sub strong { color: var(--text); font-weight: 500; }
  .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

  /* ============ HERO ECOSYSTEM MAP ============ */
  /* The "what we do" visual: JSimple center → 3 children (Velzora, Lociro, Custom AI) */
  .hero-eco {
    margin: 3.5rem 0 3rem;
    padding: 2.5rem 2rem;
    background: var(--panel-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
  }
  .hero-eco-label {
    font-family: var(--mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    justify-content: center;
  }
  .hero-eco-label::before,
  .hero-eco-label::after {
    content: '';
    height: 1px;
    background: var(--border-strong);
    flex: 1;
    max-width: 80px;
  }
  .hero-eco-svg-wrap {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
  }
  .hero-eco-svg {
    width: 100%;
    height: auto;
    display: block;
  }
  /* Animated branch strokes */
  .hero-eco-svg .branch {
    stroke: var(--accent);
    stroke-width: 1.2;
    fill: none;
    stroke-dasharray: 4 6;
    opacity: 0.4;
    animation: branch-flow 4s linear infinite;
  }
  @keyframes branch-flow {
    to { stroke-dashoffset: -20; }
  }
  .hero-eco-svg .branch-2 { animation-delay: 0.5s; opacity: 0.35; }
  .hero-eco-svg .branch-3 { animation-delay: 1s; opacity: 0.45; }

  /* Floating capability dots (NLP, RAG, etc) */
  .hero-eco-svg .cap-dot {
    fill: var(--accent-2);
    opacity: 0.6;
    animation: dot-pulse 3s ease-in-out infinite;
  }
  .hero-eco-svg .cap-dot.d2 { animation-delay: 0.8s; }
  .hero-eco-svg .cap-dot.d3 { animation-delay: 1.6s; }
  @keyframes dot-pulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-3px); }
  }
  .hero-eco-svg .cap-tag {
    font-family: var(--mono);
    font-size: 9px;
    fill: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* Center node — JSimple */
  .hero-eco-svg .core-bg {
    fill: var(--bg);
    stroke: var(--accent);
    stroke-width: 1.5;
  }
  .hero-eco-svg .core-glow {
    fill: var(--accent);
    opacity: 0.08;
    animation: core-pulse 3s ease-in-out infinite;
  }
  @keyframes core-pulse {
    0%, 100% { opacity: 0.08; }
    50% { opacity: 0.18; }
  }
  .hero-eco-svg .core-j {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 700;
    fill: var(--accent);
  }
  .hero-eco-svg .core-label {
    font-family: var(--mono);
    font-size: 9px;
    fill: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  /* Child nodes as foreignObject HTML pills */
  .eco-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    justify-content: center;
    pointer-events: auto;
  }
  .eco-pill:hover {
    transform: translateY(-2px);
  }
  .eco-pill-icon {
    width: 32px; height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .eco-pill.velzora { background: linear-gradient(180deg, rgba(124, 58, 237, 0.12), rgba(124, 58, 237, 0.04)); border: 1px solid rgba(124, 58, 237, 0.35); }
  .eco-pill.velzora:hover { background: linear-gradient(180deg, rgba(124, 58, 237, 0.18), rgba(124, 58, 237, 0.06)); border-color: rgba(124, 58, 237, 0.55); }
  .eco-pill.velzora .eco-pill-icon { background: linear-gradient(135deg, #7C3AED, #4c1d95); }

  .eco-pill.lociro { background: linear-gradient(180deg, rgba(167, 139, 250, 0.1), rgba(107, 63, 180, 0.04)); border: 1px solid rgba(167, 139, 250, 0.3); }
  .eco-pill.lociro:hover { background: linear-gradient(180deg, rgba(167, 139, 250, 0.16), rgba(107, 63, 180, 0.06)); border-color: rgba(167, 139, 250, 0.5); }
  .eco-pill.lociro .eco-pill-icon { background: linear-gradient(135deg, #0a0612 0%, #6b3fb4 100%); border: 1px solid rgba(255,255,255,0.1); }

  .eco-pill.custom { background: linear-gradient(180deg, rgba(27, 181, 245, 0.1), rgba(27, 181, 245, 0.03)); border: 1px solid rgba(27, 181, 245, 0.32); }
  .eco-pill.custom:hover { background: linear-gradient(180deg, rgba(27, 181, 245, 0.16), rgba(27, 181, 245, 0.05)); border-color: rgba(27, 181, 245, 0.55); }
  .eco-pill.custom .eco-pill-icon { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }

  .eco-pill-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text);
    letter-spacing: -0.015em;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 0.2rem;
  }
  .eco-pill-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
  }

  /* Mobile layout: stack instead of fan */
  @media (max-width: 720px) {
    .hero-eco { padding: 1.75rem 1.25rem; margin: 2.5rem 0 2rem; }
    .hero-eco-svg-mobile {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }
    .hero-eco-svg-mobile .eco-core {
      width: 60px; height: 60px;
      border-radius: 50%;
      background: var(--bg);
      border: 1.5px solid var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-weight: 700;
      color: var(--accent);
      font-size: 1.4rem;
      position: relative;
    }
    .hero-eco-svg-mobile .eco-core::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      width: 1px;
      height: 16px;
      background: linear-gradient(180deg, var(--accent), transparent);
    }
    .hero-eco-svg-mobile .eco-pills {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0.6rem;
      width: 100%;
      margin-top: 1rem;
    }
    .hero-eco-svg-mobile .eco-pill {
      padding: 0.85rem 0.6rem;
      border-radius: 12px;
    }
    .hero-eco-svg-mobile .eco-pill-name { font-size: 0.78rem; }
    .hero-eco-svg-mobile .eco-pill-tag { font-size: 0.62rem; }
    .hero-eco-svg-wrap { display: none; }
  }
  @media (min-width: 721px) {
    .hero-eco-svg-mobile { display: none; }
  }

  /* Product callout strip in hero */
  .hero-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(20, 23, 28, 0.5);
    backdrop-filter: blur(20px);
  }
  .hero-product {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
  }
  .hero-product:hover {
    background: rgba(255,255,255,0.04);
    border-color: var(--border);
    transform: translateY(-2px);
  }
  .hero-product-logo {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .hero-product-logo.velzora {
    background: linear-gradient(135deg, #7C3AED 0%, #4c1d95 100%);
    box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.6);
  }
  .hero-product-logo.lociro {
    background: linear-gradient(135deg, #0a0612 0%, #2d1f4a 60%, #6b3fb4 100%);
    box-shadow: 0 8px 24px -8px rgba(107, 63, 180, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .hero-product-logo .glyph {
    font-family: var(--sans);
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .hero-product-meta { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
  .hero-product-name {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.015em;
    display: flex; align-items: baseline; gap: 0.15rem;
  }
  .hero-product-name .dot-velzora { color: #c9a8ff; }
  .hero-product-name .dot-lociro { color: #a78bfa; }
  .hero-product-tag {
    font-size: 0.83rem;
    color: var(--text-dim);
    line-height: 1.35;
  }
  .hero-product-arrow {
    margin-left: auto;
    color: var(--text-muted);
    transition: all 0.3s;
    flex-shrink: 0;
  }
  .hero-product:hover .hero-product-arrow {
    color: var(--accent);
    transform: translateX(4px);
  }

  /* ============ "WHAT IS JSIMPLE" CLARITY PANEL ============ */
  .clarity {
    padding: 5rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
  }
  .clarity-head {
    text-align: center;
    margin-bottom: 3rem;
  }
  .clarity-head h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--text);
  }
  .clarity-head h2 em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .clarity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
  }
  .clarity-item {
    background: var(--bg);
    padding: 2.5rem 2rem;
    position: relative;
  }
  .clarity-num {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
  }
  .clarity-title {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
  }
  .clarity-desc {
    color: var(--text-dim);
    font-size: 0.93rem;
    line-height: 1.55;
  }

  /* ============ TRUSTED ============ */
  .trusted {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .trusted-label {
    text-align: center;
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
  }
  .trusted-track {
    display: flex; gap: 4rem;
    align-items: center; justify-content: center;
    flex-wrap: wrap; opacity: 0.85;
  }
  .trusted-item {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: -0.01em;
    transition: color 0.3s;
    white-space: nowrap;
  }
  .trusted-item:hover { color: var(--text); }
  .trusted-item.italic { font-style: italic; font-weight: 400; }

  /* ============ SECTION BASE ============ */
  section { position: relative; padding: 7rem 0; }
  .section-eyebrow {
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .section-eyebrow::before {
    content: '';
    width: 24px; height: 1px;
    background: var(--accent);
  }
  h2.section-title {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 900px;
  }
  h2.section-title em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
    letter-spacing: -0.02em;
  }
  .section-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 680px;
    line-height: 1.6;
  }
  .section-head { margin-bottom: 4rem; }

  /* ============ PRODUCTS DEEP DIVE ============ */
  .products { background: var(--bg); position: relative; }
  .products::before {
    content: '';
    position: absolute; top: 20%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(27, 181, 245, 0.1), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }
  .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
  }
  .product-card {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  }
  .product-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    opacity: 0.6;
  }
  .product-card.velzora-card::before {
    background: linear-gradient(90deg, transparent, #7C3AED, transparent);
  }
  .product-card.lociro-card::before {
    background: linear-gradient(90deg, transparent, #6b3fb4, transparent);
  }
  .product-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .product-header-logo {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
  }
  .product-header-logo.velzora {
    background: linear-gradient(135deg, #7C3AED 0%, #4c1d95 100%);
    box-shadow: 0 8px 24px -8px rgba(124, 58, 237, 0.6);
  }
  .product-header-logo.lociro {
    background: linear-gradient(135deg, #0a0612 0%, #2d1f4a 60%, #6b3fb4 100%);
    box-shadow: 0 8px 24px -8px rgba(107, 63, 180, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
  }
  .product-name {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.025em;
  }
  .product-name .dot { color: var(--accent); }
  .product-status {
    margin-left: auto;
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.3rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 100px;
  }
  .product-tagline {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-bottom: 1.25rem;
    color: var(--text);
  }
  .product-tagline em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent-2);
    font-weight: 400;
  }
  .product-desc {
    color: var(--text-dim);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .product-features { list-style: none; margin-bottom: 1.75rem; }
  .product-features li {
    padding: 0.55rem 0;
    color: var(--text-dim);
    font-size: 0.93rem;
    display: flex; align-items: center; gap: 0.75rem;
    border-bottom: 1px solid var(--line);
  }

  /* ============ RICH PRODUCT MOCKUPS ============ */
  /* Replaces the simple .product-visual rows with designed mini-UIs */
  .mockup {
    background: #0a0c10;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1.75rem;
    font-family: var(--sans);
    position: relative;
    overflow: hidden;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.04) inset,
      0 20px 40px -20px rgba(0,0,0,0.6);
  }
  /* Browser-chrome top bar */
  .mockup-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
  }
  .mockup-chrome .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #2a2f38;
  }
  .mockup-chrome .url {
    margin-left: 0.5rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }
  .mockup-chrome .url::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.15);
  }

  /* ----- VELZORA mockup: live chat + AI routing panel ----- */
  /* Two-pane layout: conversation on left, intent + routing + ticket on right */
  .velzora-mock {
    padding: 0.85rem;
  }
  .velzora-mock .mockup-chrome .url::before { display: none; }
  .velzora-mock .live-pill {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-family: var(--mono);
    font-size: 0.62rem;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .velzora-mock .live-pill::before {
    content: '';
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2);
  }
  .velzora-mock .vz-panes {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 0.75rem;
  }
  /* LEFT pane — conversation */
  .velzora-mock .vz-chat-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.7rem;
  }
  .velzora-mock .vz-chat-avatar {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7C3AED, #4c1d95);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.7rem;
    flex-shrink: 0;
  }
  .velzora-mock .vz-chat-name {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.1;
  }
  .velzora-mock .vz-chat-status {
    font-size: 0.6rem;
    color: var(--text-muted);
    display: flex; align-items: center; gap: 0.3rem;
  }
  .velzora-mock .vz-chat-status::before {
    content: '';
    width: 5px; height: 5px;
    background: #4ade80;
    border-radius: 50%;
  }
  .velzora-mock .vz-bubble {
    font-size: 0.68rem;
    line-height: 1.45;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    max-width: 85%;
    margin-bottom: 0.35rem;
    word-break: break-word;
  }
  .velzora-mock .vz-bubble.user {
    background: #1a1d24;
    color: var(--text);
    border-bottom-right-radius: 2px;
    margin-left: auto;
  }
  .velzora-mock .vz-bubble.ai {
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    color: #e9e0ff;
    border-bottom-left-radius: 2px;
  }
  .velzora-mock .vz-input {
    margin-top: 0.5rem;
    padding: 0.45rem 0.65rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.66rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .velzora-mock .vz-input-send {
    margin-left: auto;
    width: 20px; height: 20px;
    background: linear-gradient(135deg, #7C3AED, #4c1d95);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  /* RIGHT pane — routing + ticket */
  .velzora-mock .vz-section-label {
    font-family: var(--mono);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
  }
  .velzora-mock .vz-intent {
    margin-bottom: 0.7rem;
  }
  .velzora-mock .vz-intent-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 0.35rem;
  }
  .velzora-mock .vz-intent-tag {
    display: inline-block;
    background: rgba(74, 222, 128, 0.1);
    color: #86efac;
    border: 1px solid rgba(74, 222, 128, 0.3);
    font-size: 0.6rem;
    font-weight: 500;
    padding: 0.18rem 0.5rem;
    border-radius: 100px;
  }
  .velzora-mock .vz-routes {
    margin-bottom: 0.7rem;
  }
  .velzora-mock .vz-route {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.5rem;
    border-radius: 7px;
    margin-bottom: 0.3rem;
    border: 1px solid transparent;
    background: rgba(255,255,255,0.02);
    position: relative;
  }
  .velzora-mock .vz-route.active {
    border-color: rgba(74, 222, 128, 0.55);
    background: rgba(74, 222, 128, 0.05);
    box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.15);
  }
  .velzora-mock .vz-route-icon {
    width: 20px; height: 20px;
    background: rgba(255,255,255,0.04);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
  }
  .velzora-mock .vz-route.active .vz-route-icon {
    background: rgba(74, 222, 128, 0.18);
    color: #4ade80;
  }
  .velzora-mock .vz-route-text {
    flex: 1;
    min-width: 0;
  }
  .velzora-mock .vz-route-title {
    font-size: 0.66rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.15;
  }
  .velzora-mock .vz-route.active .vz-route-title { color: #d4f5d8; }
  .velzora-mock .vz-route-sub {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
  }
  .velzora-mock .vz-route-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    opacity: 0;
  }
  .velzora-mock .vz-route.active .vz-route-dot { opacity: 1; }

  .velzora-mock .vz-ticket {
    padding: 0.55rem 0.6rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 8px;
  }
  .velzora-mock .vz-ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0;
    font-size: 0.62rem;
    color: var(--text-dim);
  }
  .velzora-mock .vz-ticket-row + .vz-ticket-row { border-top: 1px dashed var(--line); }
  .velzora-mock .vz-ticket-row .v { color: var(--text); font-weight: 500; }
  .velzora-mock .vz-ticket-row .v.ok { color: #4ade80; }
  .velzora-mock .vz-ticket-row.head .v { color: var(--text-muted); font-weight: 400; }
  .velzora-mock .vz-ticket-label {
    font-family: var(--mono);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--border);
  }

  /* ============ VELZORA MOCKUP — LIVE ANIMATION ============ */
  /* Full 14-second loop:
     Bubble 1 (user) → 2 (AI) → 3 (user) → 4 (AI)
     Intent: "Classifying..." → resolves to "Customer support"
     Routes light up one by one, then the "Resolve in helpdesk" stays active
     Ticket appears with #, priority, SLA, AI-resolved
     Then restart  */

  /* Step 1 — bubbles appear sequentially */
  .velzora-mock .vz-bubble {
    opacity: 0;
    transform: translateY(6px);
    animation: vz-bubble-in 14s ease-in-out infinite;
  }
  .velzora-mock .vz-bubble:nth-child(2) { animation-delay: 1s; }   /* user 1 */
  .velzora-mock .vz-bubble:nth-child(3) { animation-delay: 2.5s; } /* ai 1 */
  .velzora-mock .vz-bubble:nth-child(4) { animation-delay: 5s; }   /* user 2 */
  .velzora-mock .vz-bubble:nth-child(5) { animation-delay: 6.5s; } /* ai 2 */

  @keyframes vz-bubble-in {
    0%, 5%   { opacity: 0; transform: translateY(6px); }
    7%, 92%  { opacity: 1; transform: translateY(0); }
    100%     { opacity: 0; transform: translateY(0); }
  }

  /* Typing indicator dots in the input */
  .velzora-mock .vz-input .typing-dots {
    display: inline-flex;
    gap: 3px;
    margin-left: 0.4rem;
  }
  .velzora-mock .vz-input .typing-dots span {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: #c4b5fd;
    animation: vz-typing 1.4s ease-in-out infinite;
  }
  .velzora-mock .vz-input .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
  .velzora-mock .vz-input .typing-dots span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes vz-typing {
    0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
    30%           { opacity: 1; transform: scale(1.3); }
  }

  /* Step 2 — intent classification */
  .velzora-mock .vz-intent-classifying {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--text-muted);
    animation: vz-classify-hide 14s ease-in-out infinite;
  }
  .velzora-mock .vz-intent-classifying::before {
    content: '';
    width: 8px; height: 8px;
    border: 1.5px solid #c4b5fd;
    border-top-color: transparent;
    border-radius: 50%;
    animation: vz-spin 0.8s linear infinite;
  }
  @keyframes vz-spin { to { transform: rotate(360deg); } }
  @keyframes vz-classify-hide {
    0%, 15%   { opacity: 1; max-height: 16px; }
    18%, 92%  { opacity: 0; max-height: 0; }
    100%      { opacity: 1; max-height: 16px; }
  }

  .velzora-mock .vz-intent-tag {
    opacity: 0;
    animation: vz-tag-in 14s ease-in-out infinite;
  }
  @keyframes vz-tag-in {
    0%, 17%   { opacity: 0; transform: scale(0.9); }
    20%, 92%  { opacity: 1; transform: scale(1); }
    100%      { opacity: 0; transform: scale(0.9); }
  }

  /* Step 3 — routes scan, then "Resolve in helpdesk" wins */
  .velzora-mock .vz-route { transition: none; }
  .velzora-mock .vz-route { animation: 14s ease-in-out infinite; }
  /* Use .scan to highlight each route briefly while AI considers */
  .velzora-mock .vz-route.scan-1 { animation-name: vz-scan-1; }
  .velzora-mock .vz-route.scan-2 { animation-name: vz-scan-2; }
  .velzora-mock .vz-route.scan-3 { animation-name: vz-scan-3; }
  .velzora-mock .vz-route.scan-4 { animation-name: vz-scan-4; }

  /* Each scan route lights up briefly then dims, except #1 which stays active at the end */
  @keyframes vz-scan-1 {
    0%, 22%  { background: rgba(255,255,255,0.02); border-color: transparent; box-shadow: none; }
    24%, 30% { background: rgba(74,222,128,0.05); border-color: rgba(74,222,128,0.3); }
    32%, 92% { background: rgba(74,222,128,0.05); border-color: rgba(74,222,128,0.55); box-shadow: 0 0 0 1px rgba(74,222,128,0.15); }
    100%     { background: rgba(255,255,255,0.02); border-color: transparent; }
  }
  @keyframes vz-scan-2 {
    0%, 24%  { background: rgba(255,255,255,0.02); border-color: transparent; }
    26%, 28% { background: rgba(167,139,250,0.06); border-color: rgba(167,139,250,0.3); }
    30%      { background: rgba(255,255,255,0.02); border-color: transparent; }
  }
  @keyframes vz-scan-3 {
    0%, 26%  { background: rgba(255,255,255,0.02); border-color: transparent; }
    28%, 30% { background: rgba(167,139,250,0.06); border-color: rgba(167,139,250,0.3); }
    32%      { background: rgba(255,255,255,0.02); border-color: transparent; }
  }
  @keyframes vz-scan-4 {
    0%, 28%  { background: rgba(255,255,255,0.02); border-color: transparent; }
    30%, 32% { background: rgba(167,139,250,0.06); border-color: rgba(167,139,250,0.3); }
    34%      { background: rgba(255,255,255,0.02); border-color: transparent; }
  }

  /* Animate the green dot on #1 to appear when it wins */
  .velzora-mock .vz-route.scan-1 .vz-route-dot {
    animation: vz-dot-in 14s ease-in-out infinite;
  }
  @keyframes vz-dot-in {
    0%, 30%   { opacity: 0; transform: scale(0.5); }
    33%, 92%  { opacity: 1; transform: scale(1); }
    100%      { opacity: 0; }
  }
  .velzora-mock .vz-route.scan-1 .vz-route-icon {
    animation: vz-icon-active 14s ease-in-out infinite;
  }
  @keyframes vz-icon-active {
    0%, 30%   { background: rgba(255,255,255,0.04); color: var(--text); }
    33%, 92%  { background: rgba(74,222,128,0.18); color: #4ade80; }
    100%      { background: rgba(255,255,255,0.04); color: var(--text); }
  }
  .velzora-mock .vz-route.scan-1 .vz-route-title {
    animation: vz-route-text-active 14s ease-in-out infinite;
  }
  @keyframes vz-route-text-active {
    0%, 30%   { color: var(--text); }
    33%, 92%  { color: #d4f5d8; }
    100%      { color: var(--text); }
  }

  /* Step 4 — ticket fades in last */
  .velzora-mock .vz-ticket {
    opacity: 0;
    animation: vz-ticket-in 14s ease-in-out infinite;
  }
  @keyframes vz-ticket-in {
    0%, 50%   { opacity: 0; transform: translateY(6px); }
    55%, 92%  { opacity: 1; transform: translateY(0); }
    100%      { opacity: 0; transform: translateY(6px); }
  }

  /* "AI-resolved" pulses at the very end */
  .velzora-mock .vz-ticket-row .v.ok {
    animation: vz-resolved-pulse 14s ease-in-out infinite;
  }
  @keyframes vz-resolved-pulse {
    0%, 60%       { color: var(--text-muted); }
    65%, 75%      { color: #86efac; text-shadow: 0 0 8px rgba(74,222,128,0.5); }
    80%, 92%      { color: #4ade80; text-shadow: none; }
    100%          { color: var(--text-muted); }
  }

  /* Live pill subtle pulse */
  .velzora-mock .live-pill::before {
    animation: live-pulse 2s ease-in-out infinite;
  }
  @keyframes live-pulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.2); }
    50%      { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.05); }
  }

  @media (prefers-reduced-motion: reduce) {
    .velzora-mock .vz-bubble,
    .velzora-mock .vz-intent-classifying,
    .velzora-mock .vz-intent-tag,
    .velzora-mock .vz-route,
    .velzora-mock .vz-route.scan-1 .vz-route-dot,
    .velzora-mock .vz-route.scan-1 .vz-route-icon,
    .velzora-mock .vz-route.scan-1 .vz-route-title,
    .velzora-mock .vz-ticket,
    .velzora-mock .vz-ticket-row .v.ok,
    .velzora-mock .live-pill::before,
    .velzora-mock .vz-input .typing-dots span {
      animation: none;
    }
    .velzora-mock .vz-bubble,
    .velzora-mock .vz-intent-tag,
    .velzora-mock .vz-ticket { opacity: 1; transform: none; }
    .velzora-mock .vz-intent-classifying { display: none; }
    .velzora-mock .vz-route.scan-1 {
      background: rgba(74,222,128,0.05);
      border-color: rgba(74,222,128,0.55);
      box-shadow: 0 0 0 1px rgba(74,222,128,0.15);
    }
    .velzora-mock .vz-route.scan-1 .vz-route-dot { opacity: 1; }
    .velzora-mock .vz-route.scan-1 .vz-route-icon { background: rgba(74,222,128,0.18); color: #4ade80; }
    .velzora-mock .vz-route.scan-1 .vz-route-title { color: #d4f5d8; }
    .velzora-mock .vz-ticket-row .v.ok { color: #4ade80; }
  }

  /* ----- LOCIRO mockup: workspace dashboard ----- */
  .lociro-mock .dash-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
  }
  .lociro-mock .stat {
    padding: 0.6rem 0.65rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 8px;
  }
  .lociro-mock .stat-label {
    font-family: var(--mono);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
  }
  .lociro-mock .stat-val {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.02em;
  }
  .lociro-mock .stat-val .up {
    color: #4ade80;
    font-size: 0.65rem;
    margin-left: 0.3rem;
    font-weight: 500;
  }
  .lociro-mock .model-section-label {
    font-family: var(--mono);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.55rem;
    display: flex;
    justify-content: space-between;
  }
  .lociro-mock .model-section-label span:last-child {
    color: #a78bfa;
  }
  .lociro-mock .model-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
  }
  .lociro-mock .model-name {
    width: 80px;
    color: var(--text);
    font-weight: 500;
    flex-shrink: 0;
  }
  .lociro-mock .model-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.04);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
  }
  .lociro-mock .model-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6b3fb4, #a78bfa);
    border-radius: 100px;
  }
  .lociro-mock .model-pct {
    width: 32px;
    text-align: right;
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 0.68rem;
    flex-shrink: 0;
  }
  .lociro-mock .footer-flag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding-top: 0.75rem;
    margin-top: 0.65rem;
    border-top: 1px solid var(--border);
    font-family: var(--mono);
    font-size: 0.62rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }
  .lociro-mock .footer-flag .pill {
    background: rgba(251, 191, 36, 0.1);
    color: #fcd34d;
    border: 1px solid rgba(251, 191, 36, 0.25);
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    text-transform: uppercase;
  }
  /* ---- end mockups ---- */
  .product-features li:last-child { border-bottom: none; }
  .product-features li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-2);
    font-weight: 500;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: all 0.25s;
    padding-bottom: 2px;
  }
  .product-link:hover { border-color: var(--accent-2); gap: 0.75rem; }

  /* Live client tags inside product card */
  .live-clients {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }
  .live-clients-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
  }
  .live-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--text);
    margin-right: 0.4rem;
    margin-bottom: 0.4rem;
  }
  .live-tag .live-dot {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
  }

  /* ----- Security guarantees grid (Lociro card) ----- */
  .security-strip {
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }
  .security-strip-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .security-strip-label::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: #a78bfa;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.18);
  }
  .security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .security-card {
    padding: 0.85rem 0.95rem;
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.05), rgba(167, 139, 250, 0.02));
    border: 1px solid rgba(167, 139, 250, 0.18);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .security-card:hover {
    border-color: rgba(167, 139, 250, 0.35);
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.08), rgba(167, 139, 250, 0.03));
  }
  .security-card-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: rgba(167, 139, 250, 0.12);
    border: 1px solid rgba(167, 139, 250, 0.25);
    display: flex; align-items: center; justify-content: center;
    color: #c4b5fd;
    margin-bottom: 0.55rem;
  }
  .security-card-title {
    font-family: var(--display);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
    margin-bottom: 0.15rem;
    line-height: 1.25;
  }
  .security-card-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* ============ 3 PATHS ============ */
  .paths {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
  }
  .path {
    padding: 2.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .path:hover { transform: translateY(-4px); border-color: var(--border-strong); }
  .path-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--accent);
    opacity: 0.5;
    margin-bottom: 1.5rem;
  }
  .path-title {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }
  .path-title em { font-family: var(--serif); font-style: italic; color: var(--accent-2); font-weight: 400; }
  .path-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .path-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    transition: gap 0.25s;
  }
  .path-link:hover { gap: 0.65rem; }

  /* ============ CUSTOM WORK ============ */
  .custom { background: var(--bg); }
  .custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
  }
  .case {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .case:hover { transform: translateY(-4px); border-color: var(--border-strong); }
  .case-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .case-num {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
  }
  .case-industry {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
  }
  .case-title {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
  }
  .case-desc {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }
  .case-metric {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }
  .case-metric .num {
    font-family: var(--display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--accent-2);
    letter-spacing: -0.02em;
  }
  .case-metric .label { font-size: 0.85rem; color: var(--text-muted); }
  .case.named .case-industry { color: #4ade80; }
  .case.named .case-metric .num { color: #4ade80; }

  .privacy-note {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: rgba(27, 181, 245, 0.04);
    border: 1px solid rgba(27, 181, 245, 0.18);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .privacy-note svg { flex-shrink: 0; color: var(--accent); }

  /* ============ CAPABILITIES ============ */
  .capabilities { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 4rem;
  }
  .cap {
    background: var(--bg);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    display: block;
    color: inherit;
    text-decoration: none;
  }
  .cap:hover { background: var(--surface); }
  .cap-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(27, 181, 245, 0.2), rgba(27, 181, 245, 0.05));
    border: 1px solid rgba(27, 181, 245, 0.3);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-2);
  }
  .cap-title {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
  }
  .cap-desc {
    color: var(--text-dim);
    font-size: 0.93rem;
    line-height: 1.6;
  }

  /* ============ FLOW DIAGRAM — IDEA → BUILD → LIVE ============ */
  .flow-diagram-wrap {
    max-width: 1080px;
    margin: 4rem auto 0;
  }
  .flow-diagram {
    width: 100%;
    height: auto;
    display: block;
  }
  /* SVG text styles */
  .flow-diagram .flow-tag-label {
    font-family: var(--mono);
    font-size: 11px;
    fill: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .flow-diagram .flow-tag-link {
    stroke: var(--accent);
    stroke-width: 0.5;
    stroke-dasharray: 3 5;
    opacity: 0.4;
  }
  .flow-diagram .flow-card {
    fill: rgba(255,255,255,0.025);
    stroke: rgba(255,255,255,0.12);
    stroke-width: 0.5;
  }
  .flow-diagram .flow-card-active {
    fill: rgba(27, 181, 245, 0.06);
    stroke: rgba(27, 181, 245, 0.35);
    stroke-width: 0.5;
  }
  .flow-diagram .flow-stage-num {
    font-family: var(--mono);
    font-size: 11px;
    fill: var(--accent);
    letter-spacing: 0.15em;
  }
  .flow-diagram .flow-stage-num-live {
    fill: #4ade80;
  }
  .flow-diagram .flow-stage-title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 600;
    fill: var(--text);
    letter-spacing: -0.02em;
  }
  .flow-diagram .flow-stage-body {
    font-family: var(--display);
    font-size: 13px;
    fill: var(--text-dim);
  }
  .flow-diagram .flow-region-title {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    fill: var(--text);
  }
  .flow-diagram .flow-region-sub {
    font-family: var(--display);
    font-size: 11px;
    fill: var(--text-dim);
  }
  /* Pulse the active center card subtly */
  @keyframes flow-pulse {
    0%, 100% { stroke-opacity: 0.35; }
    50% { stroke-opacity: 0.6; }
  }
  .flow-diagram .flow-stage-active .flow-card-active {
    animation: flow-pulse 4s ease-in-out infinite;
  }
  /* Animate the connecting arrows */
  @keyframes arrow-shimmer {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -12; }
  }

  /* Compliance badges strip */
  .compliance-strip {
    margin: 2.5rem auto 0;
    max-width: 880px;
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
  }
  .compliance-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
  }
  .compliance-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
  }
  .compliance-badge {
    padding: 1.25rem 0.85rem;
    background: linear-gradient(180deg, rgba(27,181,245,0.06), rgba(27,181,245,0.02));
    border: 1px solid rgba(27,181,245,0.25);
    border-radius: 14px;
    transition: all 0.3s;
  }
  .compliance-badge:hover {
    border-color: rgba(27,181,245,0.5);
    background: linear-gradient(180deg, rgba(27,181,245,0.1), rgba(27,181,245,0.04));
    transform: translateY(-2px);
  }
  .compliance-badge-name {
    font-family: var(--display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--accent-2);
    margin-bottom: 0.3rem;
  }
  .compliance-badge-sub {
    font-family: var(--mono);
    font-size: 0.66rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .compliance-fine-print {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto;
    font-style: italic;
  }
  @media (max-width: 720px) {
    .compliance-badges { grid-template-columns: 1fr 1fr; }
    .compliance-strip { padding: 2rem 1.25rem; }
  }
  @media (max-width: 400px) {
    .compliance-badges { grid-template-columns: 1fr; }
  }

  /* ============ PROCESS — 4 D's ============ */
  .process { background: var(--bg); }
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
  }
  .process-step {
    background: var(--bg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background 0.3s;
  }
  .process-step:hover { background: var(--surface); }
  .process-step-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.7;
  }
  .process-step-title {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 0.6rem;
  }
  .process-step-desc {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.55;
  }

  /* ============ FOUNDER (EDITORIAL) ============ */
  .founder {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .founder-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: center;
  }
  .founder-portrait {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--surface), var(--bg-3));
    border: 1px solid var(--border);
  }
  .founder-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(15%) contrast(1.05);
  }
  .founder-portrait::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(8, 9, 11, 0.6) 100%);
    pointer-events: none;
  }
  .founder-name-tag {
    position: absolute;
    bottom: 1.5rem; left: 1.5rem;
    z-index: 2;
    color: white;
  }
  .founder-name-tag .name {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    display: block;
    margin-bottom: 0.2rem;
  }
  .founder-name-tag .title {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
  }

  .founder-quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.7rem, 2.5vw, 2.3rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--text);
    position: relative;
  }
  .founder-quote::before {
    content: '"';
    font-size: 6rem;
    line-height: 0.5;
    color: var(--accent);
    display: block;
    margin-bottom: 1rem;
    font-style: normal;
    font-family: var(--display);
  }
  .founder-bio {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .founder-bio strong { color: var(--text); font-weight: 500; }
  .founder-cite {
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

  /* ============ SECTION BACKGROUND ART (subtle, ambient) ============ */
  /* Tier 2 — mid-page sections get one quiet accent each */
  section { position: relative; }
  .sect-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .sect-bg svg { width: 100%; height: 100%; display: block; }
  /* Make sure section content stays above */
  section > .container { position: relative; z-index: 1; }
  /* Subtle motion for floating dots in sections */
  @keyframes sect-dot-pulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.7; }
  }
  .sect-bg .pulse-dot { animation: sect-dot-pulse 4s ease-in-out infinite; }
  .sect-bg .pulse-dot.d2 { animation-delay: 1.2s; }
  .sect-bg .pulse-dot.d3 { animation-delay: 2.4s; }

  /* ============ BELIEF (homepage slim quote) ============ */
  .belief {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
  }
  .belief-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.8;
  }
  .belief-bg svg { width: 100%; height: 100%; }
  .belief-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
  }
  .belief-eyebrow {
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2.5rem;
  }
  .belief-quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: var(--text);
    margin-bottom: 3rem;
  }
  .belief-quote em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .belief-author {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem 1rem 1rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 100px;
    backdrop-filter: blur(10px);
  }
  .belief-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    flex-shrink: 0;
  }
  .belief-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .belief-author-meta { text-align: left; }
  .belief-author-name {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    letter-spacing: -0.01em;
  }
  .belief-author-title {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
  }
  .belief-link {
    margin-left: 0.5rem;
    padding-left: 1.25rem;
    border-left: 1px solid var(--border);
    color: var(--accent-2);
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: gap 0.25s;
  }
  .belief-link:hover { gap: 0.55rem; }
  @media (max-width: 640px) {
    .belief-author { flex-wrap: wrap; padding: 1rem; border-radius: 16px; }
    .belief-link { padding-left: 0; border-left: none; margin-left: 0; width: 100%; justify-content: center; padding-top: 0.75rem; border-top: 1px solid var(--border); }
  }

  /* ============ VALUES ============ */
  .values { background: var(--bg); }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .value {
    padding: 2rem 0;
    border-top: 1px solid var(--border-strong);
    position: relative;
  }
  .value::before {
    content: '';
    position: absolute;
    top: -1px; left: 0;
    width: 30%;
    height: 1px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .value:hover::before { width: 100%; }
  .value-num {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
  }
  .value-title {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 0.75rem;
  }
  .value-desc {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.55;
  }

  /* ============ TESTIMONIALS ============ */
  .testimonials { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
  }
  .testimonial {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
  }
  .testimonial-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 2rem;
    flex: 1;
    font-weight: 400;
    letter-spacing: -0.005em;
  }
  .testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    line-height: 0;
    color: var(--accent);
    vertical-align: -0.4em;
    margin-right: 0.3rem;
    font-family: var(--display);
    font-style: normal;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }
  .author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display);
    font-weight: 500;
    color: white;
    font-size: 1.05rem;
  }
  .author-name { font-weight: 500; font-size: 0.95rem; margin-bottom: 0.15rem; }
  .author-title { font-size: 0.82rem; color: var(--text-muted); }

  /* ============ CTA ============ */
  .cta {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
  }
  .cta::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 50%, rgba(27, 181, 245, 0.15), transparent 60%),
      radial-gradient(ellipse at 70% 50%, rgba(255, 180, 122, 0.05), transparent 60%);
    pointer-events: none;
  }
  .cta-inner {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  .cta h2 {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 1.5rem;
  }
  .cta h2 em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
  }
  .cta p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    line-height: 1.5;
  }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ============ FOOTER ============ */
  footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2.5rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer-brand img { height: 48px; width: auto; margin-bottom: 1.5rem; }
  .footer-brand p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
  }
  .footer-col h4 {
    font-family: var(--mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .footer-col a {
    display: block;
    padding: 0.4rem 0;
    color: var(--text-dim);
    font-size: 0.92rem;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--text); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
  }
  .footer-locations { display: flex; gap: 2rem; flex-wrap: wrap; }

  /* ============ ANIMATIONS ============ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .reveal { opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
  .delay-1 { animation-delay: 0.08s; }
  .delay-2 { animation-delay: 0.16s; }
  .delay-3 { animation-delay: 0.24s; }
  .delay-4 { animation-delay: 0.32s; }
  .delay-5 { animation-delay: 0.4s; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 968px) {
    .nav-links { display: flex; gap: 0; }
    .nav-links > a { display: none; }
    /* Keep only the theme toggle visible on mobile */
    .nav-links .theme-toggle { display: flex; }
    nav .inner { padding: 0.9rem 1.5rem; }
    .container { padding: 0 1.5rem; }
    section { padding: 5rem 0; }
    .hero { padding: 7rem 0 4rem; }
    .hero-products { grid-template-columns: 1fr; }
    .clarity-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .paths-grid { grid-template-columns: 1fr; }
    .custom-grid { grid-template-columns: 1fr; }
    .capabilities-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .founder-layout { grid-template-columns: 1fr; gap: 3rem; }
    .founder-portrait { aspect-ratio: 1 / 1; max-width: 380px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
    .product-card { padding: 2rem; }
    .case { padding: 2rem; }
  }
  @media (max-width: 560px) {
    .process-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
  }
