:root{
    --hue: 25;
    --sat: 95%;

    /* Brand */
    --primary: #F97316;
    --primary-light: #FB923C;
    --primary-dark: #EA6C00;
    --violet: #A78BFA;
    --sky: #38BDF8;
    --red: #EF4444;

    /* Dark */
    --bg-dark: #0A0A0F;
    --bg-dark-2: #111118;
    --card-dark: #16161E;
    --card-dark-2: #1C1C28;
    --border-dark: #222232;

    /* Light */
    --bg-light: #FAF6F2;
    --card-light: #FFFFFF;
    --border-light: #EDE5DC;
    --tag-fill: #FEF3E8;

    /* Text */
    --ink: #0D1A0D;
    --ink-2: #2D3D2D;
    --muted-light: #5A6A5A;
    --muted-dark: #8B8B9A;
    --subtle: #AAAABC;

    --container: 1240px;
    --section-py: clamp(72px, 10vw, 128px);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body{
    margin:0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
    background: var(--bg-dark);
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv11";
    overflow-x: hidden;
  }

  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  .container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
  @media (max-width: 640px){ .container { padding: 0 20px; } }

  /* ===== LABELS & TYPE ===== */
  .label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
  }
  .label::before {
    content: "";
    width: 18px; height: 1px;
    background: var(--primary);
  }
  .label.center::before { display: none; }

  h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -0.02em; font-weight: 700; }
  .h1 { font-size: clamp(44px, 6vw, 80px); font-weight: 700; line-height: 1.02; letter-spacing: -0.028em; }
  .h2 { font-size: clamp(32px, 4vw, 54px); font-weight: 700; line-height: 1.05; letter-spacing: -0.022em; }
  .h3 { font-size: clamp(18px, 1.4vw, 22px); font-weight: 700; line-height: 1.25; letter-spacing: -0.01em; }

  .subline { font-size: clamp(16px, 1.25vw, 19px); line-height: 1.55; color: var(--muted-dark); max-width: 620px; }
  section.light .subline { color: var(--muted-light); }

  .mono { font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: 0; }

  /* ===== BUTTONS ===== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    transition: all .2s ease;
    white-space: nowrap;
  }
  .btn .arr { transition: transform .25s ease; }
  .btn:hover .arr { transform: translateX(4px); }

  .btn-primary {
    background: var(--primary);
    color: #fff;
  }
  .btn-primary:hover { background: var(--primary-dark); box-shadow: 0 10px 30px -10px rgba(249,115,22,.55); }

  .btn-ghost {
    background: transparent;
    border-color: rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
  }
  .btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
  section.light .btn-ghost { border-color: rgba(13,26,13,.18); color: var(--ink); }
  section.light .btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

  /* ===== HEADER ===== */
  header.site {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(10,10,15,.7);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .2s ease, border-color .2s ease;
  }
  header.site.scrolled { background: rgba(10,10,15,.92); }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; letter-spacing: -0.015em; font-size: 17px;
  }
  .brand-mark {
    width: 28px; height: 28px; border-radius: 6px;
    background: #F97316 url('brand-mark.png') center/contain no-repeat;
    position: relative;
    overflow: hidden;
  }

  .navlinks { display: flex; gap: 4px; align-items: center; }
  .navlink {
    position: relative;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    border-radius: 6px;
    transition: color .15s ease, background .15s ease;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .navlink:hover { color: #fff; background: rgba(255,255,255,.04); }
  .caret { width: 10px; height: 10px; opacity: .55; }

  .nav-cta { display: flex; align-items: center; gap: 10px; }
  .pill-live {
    font-size: 11px; font-weight: 600;
    color: #9EF09E;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(60, 180, 90, .12);
    border: 1px solid rgba(60, 180, 90, .25);
    display: inline-flex; align-items: center; gap: 6px;
  }
  .pill-live .dot {
    width: 6px; height: 6px; border-radius: 50%; background: #6CE66C;
    box-shadow: 0 0 0 3px rgba(108,230,108,.18);
  }
  .hamb { display: none; background: none; border: 0; color: #fff; padding: 6px; }

  @media (max-width: 980px){
    .navlinks { display: none; }
    .hamb { display: inline-flex; }
    .pill-live { display: none; }

    header.site.nav-open .navlinks {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: rgba(10,10,15,.98);
      backdrop-filter: blur(14px);
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 12px 20px 20px;
      gap: 2px;
      max-height: calc(100vh - 72px);
      overflow-y: auto;
    }
    header.site.nav-open .navlink-wrap { position: static; width: 100%; }
    header.site.nav-open .navlink {
      width: 100%;
      justify-content: flex-start;
      padding: 12px 14px;
    }
    header.site.nav-open .mega {
      position: static;
      transform: none;
      opacity: 1;
      pointer-events: auto;
      min-width: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      padding: 0 0 8px 8px;
    }
    header.site.nav-open .mega::before { display: none; }
    header.site.nav-open .caret { display: none; }
  }

  /* Mega menu */
  .mega {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 340px;
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 10px;
    opacity: 0; pointer-events: none;
    transition: all .18s ease;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.6);
  }
  /* Invisible bridge: keeps hover continuous across the 6px gap between
     the navlink and the dropdown so the menu doesn't close mid-traverse. */
  .mega::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    top: -10px;
    height: 10px;
  }
  .navlink-wrap { position: relative; }
  .navlink-wrap:hover .mega,
  .navlink-wrap:focus-within .mega {
    opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  .mega a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    color: rgba(255,255,255,.85);
    font-size: 13.5px;
    transition: background .12s ease;
  }
  .mega a:hover { background: rgba(249,115,22,.08); color: #fff; }
  .mega a .sub { display:block; font-size: 11.5px; color: var(--muted-dark); margin-top:2px; font-weight: 400; }
  .mega a b { font-weight: 600; font-size: 13.5px; }
  .mega-ico {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 6px;
    background: rgba(249,115,22,.12);
    color: var(--primary);
    display: grid; place-items: center;
  }

  /* =====================================
     SECTION 1 — HERO
     ===================================== */
  section { position: relative; }
  .hero {
    padding: clamp(72px,9vw,120px) 0 clamp(72px,10vw,140px);
    background: var(--bg-dark);
    overflow: hidden;
  }
  .hero::before{
    content: "";
    position: absolute; inset: 0;
    background:
      radial-gradient(circle at 78% 38%, rgba(249,115,22,.12), transparent 45%),
      linear-gradient(180deg, transparent, rgba(0,0,0,.4));
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
  }
  @media (max-width: 980px){ .hero-grid { grid-template-columns: 1fr; } }

  .eyebrow-bar {
    display: inline-flex; align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    color: rgba(255,255,255,.75);
    font-size: 12px;
    margin-bottom: 28px;
  }
  .eyebrow-chip {
    font-size: 10px; letter-spacing: 0.14em; font-weight: 700;
    color: var(--primary);
    background: rgba(249,115,22,.12);
    padding: 4px 9px;
    border-radius: 999px;
  }

  .hero h1 b { color: var(--primary); font-weight: 700; }
  .hero h1 em {
    font-style: normal;
    background: linear-gradient(180deg, #fff 60%, rgba(255,255,255,.5));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .hero .subline { margin-top: 26px; }
  .hero-cta-row { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

  .hero-meta {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex; gap: 36px; flex-wrap: wrap;
  }
  .hero-meta .m {
    display: flex; flex-direction: column; gap: 4px;
  }
  .hero-meta .m .k {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted-dark);
  }
  .hero-meta .m .v { font-size: 14px; color: rgba(255,255,255,.92); font-weight: 500; }

  /* Circles composition */
  .hero-art {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
  }
  @media (max-width: 980px){ .hero-art { max-width: 100%; margin: 0 auto; } }

  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    inset: 0;
  }
  .ring.r1 { inset: 12%; opacity: .65; }
  .ring.r2 { inset: 2%;  opacity: .40; border-width: 1px; }
  .ring.r3 { inset: -14%; opacity: .18; border-width: 1px; }
  .ring.r4 { inset: -32%; opacity: .08; border-width: 1px; }
  .ring.pulse { animation: ring-pulse 3.2s ease-out infinite; }
  @keyframes ring-pulse {
    0% { transform: scale(1); opacity: .5; }
    100% { transform: scale(1.15); opacity: 0; }
  }

  .hero-grid-bg {
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background-image:
      linear-gradient(to right, rgba(249,115,22,.13) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(249,115,22,.13) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at center, black 20%, transparent 75%);
  }

  .hero-core {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 18%; aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, #FCA05B, var(--primary) 60%, var(--primary-dark));
    box-shadow:
      0 0 0 1px rgba(255,255,255,.1) inset,
      0 0 60px rgba(249,115,22,.45),
      0 0 120px rgba(249,115,22,.25);
  }
  .hero-core::after{
    content:""; position:absolute; inset: 22%;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.9);
  }

  /* Stat chips overlaid */
  .stat-chips {
    position: absolute;
    display: flex; flex-direction: column; gap: 12px;
    left: -36px; bottom: -12px;
  }
  @media (max-width: 980px){ .stat-chips { position: static; flex-direction: row; justify-content: center; margin-top: 24px; flex-wrap: wrap; left: 0; bottom: 0; } }

  .stat-chip {
    background: rgba(22,22,30,.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.08);
    padding: 14px 18px;
    border-radius: 10px;
    display: flex; gap: 12px; align-items: center;
    min-width: 180px;
  }
  .stat-chip .n { font-size: 22px; font-weight: 700; color: var(--primary); letter-spacing: -0.02em; }
  .stat-chip .t { font-size: 11.5px; color: var(--muted-dark); text-transform: uppercase; letter-spacing: 0.1em; line-height: 1.2; }
  .stat-chip:nth-child(2) { transform: translateX(80px); }
  .stat-chip:nth-child(3) { transform: translateX(20px); }
  @media (max-width: 980px){ .stat-chip { transform: none !important; min-width: 0; } }

  /* =====================================
     SECTION 2 — TRUST BAR
     ===================================== */
  section.light { background: var(--bg-light); color: var(--ink); }
  .trust {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .trust-label {
    text-align: center;
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--muted-light);
    margin-bottom: 24px;
  }
  .marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  }
  .marquee-track {
    display: flex; gap: 64px;
    width: max-content;
    animation: marquee 60s linear infinite;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee {
    to { transform: translateX(-50%); }
  }
  .logo-cell {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(13,26,13,.55);
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
  .logo-cell .gl {
    width: 8px; height: 8px; border-radius: 50%;
    background: currentColor;
    opacity: .55;
  }

  /* =====================================
     SECTION 3 — THE PROVOCATION
     ===================================== */
  .provoke {
    background: var(--bg-dark-2);
    padding: var(--section-py) 0;
    position: relative;
  }
  .provoke-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 72px;
    align-items: start;
  }
  @media (max-width: 980px){ .provoke-grid { grid-template-columns: 1fr; gap: 40px; } }

  .provoke h2 em { font-style: normal; color: var(--muted-dark); }
  .provoke .body { color: var(--muted-dark); font-size: 17px; margin-top: 24px; max-width: 540px; }

  .contrast-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(255,255,255,.07); }
  .contrast-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: grid; grid-template-columns: 6px 1fr; gap: 20px;
    align-items: start;
    position: relative;
  }
  .contrast-item .bar {
    width: 3px; height: 100%;
    background: var(--primary);
    border-radius: 2px;
  }
  .contrast-item .line {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .contrast-item .good {
    font-size: clamp(22px, 2.4vw, 32px); font-weight: 700; letter-spacing: -0.015em;
  }
  .contrast-item .vs {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; color: var(--muted-dark);
  }
  .contrast-item .bad {
    font-size: clamp(16px, 1.3vw, 18px);
    color: var(--muted-dark);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,.2);
  }
  .contrast-item .note {
    grid-column: 2;
    font-size: 13px; color: var(--muted-dark); margin-top: 8px;
    max-width: 430px;
  }

  /* =====================================
     SECTION 4 — SOLUTIONS GRID
     ===================================== */
  .solutions { padding: var(--section-py) 0; }
  .sec-head { margin-bottom: 64px; max-width: 900px; }
  .sec-head h2 { margin-top: 0; }
  .sec-head .subline { margin-top: 22px; }

  .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 960px){ .grid-3 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px){ .grid-3 { grid-template-columns: 1fr; } }

  .sol-card {
    position: relative;
    background: var(--card-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 32px 28px 28px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    cursor: pointer;
  }
  .sol-card::before{
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
  }
  .sol-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -20px rgba(13,26,13,.15);
    border-color: rgba(249,115,22,.45);
  }
  .sol-card:hover::before { transform: scaleX(1); }

  .sol-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; color: var(--muted-light);
    margin-bottom: 18px;
  }
  .sol-ico {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--tag-fill);
    color: var(--primary);
    display: grid; place-items: center;
    margin-bottom: 22px;
  }
  .sol-title { font-size: 19px; font-weight: 700; letter-spacing: -0.012em; margin-bottom: 10px; }
  .sol-body { font-size: 14.5px; color: var(--muted-light); line-height: 1.55; }
  .sol-more {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 24px;
    font-size: 13px; color: var(--primary); font-weight: 600;
  }
  .sol-more .arr { transition: transform .25s ease; }
  .sol-card:hover .sol-more .arr { transform: translateX(4px); }

  /* Last card = platform highlight */
  .sol-card.platform {
    background: linear-gradient(135deg, #16161E, #0F0F16);
    color: #fff;
    border-color: rgba(249,115,22,.3);
  }
  .sol-card.platform .sol-num { color: var(--muted-dark); }
  .sol-card.platform .sol-ico { background: rgba(249,115,22,.12); }
  .sol-card.platform .sol-body { color: var(--muted-dark); }
  .sol-card.platform .sol-title { color: #fff; }

  /* =====================================
     SECTION 5 — HOW IT WORKS
     ===================================== */
  .process {
    background: var(--bg-dark);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
  }
  .process::before {
    content: "";
    position: absolute; right: -10%; top: -15%;
    width: 55vw; height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249,115,22,.08), transparent 60%);
    pointer-events: none;
  }
  .steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
  }
  @media (max-width: 900px){ .steps { grid-template-columns: 1fr; } }

  .steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 6%; right: 6%;
    height: 1px;
    background-image: linear-gradient(to right, rgba(249,115,22,.45) 50%, transparent 50%);
    background-size: 12px 1px;
  }
  @media (max-width: 900px){ .steps::before { display: none; } }

  .step {
    position: relative;
    padding-top: 0;
  }
  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--card-dark);
    border: 1px solid rgba(249,115,22,.4);
    display: grid; place-items: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px; font-weight: 600;
    color: var(--primary);
    position: relative;
    margin-bottom: 24px;
  }
  .step-num::after {
    content: "";
    position: absolute; inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(249,115,22,.18);
  }

  .step-day {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--primary);
    background: rgba(249,115,22,.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
    letter-spacing: 0;
  }
  .step-title { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 14px; }
  .step-body { color: var(--muted-dark); font-size: 14.5px; line-height: 1.6; max-width: 340px; }

  /* =====================================
     SECTION 6 — INDUSTRIES
     ===================================== */
  .industries { padding: var(--section-py) 0; }
  .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  @media (max-width: 1100px){ .grid-4 { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 820px){ .grid-4 { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 500px){ .grid-4 { grid-template-columns: 1fr; } }

  .ind-card {
    position: relative;
    background: var(--card-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 22px 22px 22px 26px;
    cursor: pointer;
    transition: all .2s ease;
    display: flex; flex-direction: column;
    min-height: 160px;
  }
  .ind-card::before {
    content: "";
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 2px 0 0 2px;
    opacity: 0;
    transition: opacity .2s ease;
  }
  .ind-card:hover {
    border-color: rgba(249,115,22,.4);
    box-shadow: 0 8px 24px -12px rgba(13,26,13,.12);
  }
  .ind-card:hover::before { opacity: 1; }

  .ind-title {
    font-size: 15px; font-weight: 700; letter-spacing: -0.01em;
    margin-bottom: 10px;
    color: var(--ink);
  }
  .ind-hook {
    font-size: 13px;
    color: var(--muted-light);
    line-height: 1.5;
    flex: 1;
  }
  .ind-arrow {
    align-self: flex-end;
    color: var(--muted-light);
    transition: color .2s ease, transform .2s ease;
    margin-top: 12px;
  }
  .ind-card:hover .ind-arrow { color: var(--primary); transform: translate(4px,-4px); }

  /* =====================================
     SECTION 7 — CASE STUDIES
     ===================================== */
  .cases {
    background: var(--bg-dark-2);
    padding: var(--section-py) 0;
  }
  .cases .grid-3 { gap: 24px; }

  .case-card {
    position: relative;
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
    cursor: pointer;
    display: flex; flex-direction: column;
  }
  .case-card:hover {
    border-color: rgba(249,115,22,.35);
    transform: translateY(-3px);
  }
  .case-card::after {
    content: "";
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
  }
  .case-card:hover::after { transform: scaleX(1); }

  .case-art {
    aspect-ratio: 16 / 9;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    border-bottom: 1px solid var(--border-dark);
  }
  .case-art svg { width: 100%; height: 100%; display:block; }

  .case-body { padding: 24px 26px 30px; display: flex; flex-direction: column; gap: 16px; flex: 1; }

  .tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
  .tag {
    font-size: 11px; font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(249,115,22,.1);
    color: var(--primary);
    border: 1px solid rgba(249,115,22,.25);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .case-title {
    font-size: 20px; font-weight: 700; letter-spacing: -0.015em;
    color: #fff;
    line-height: 1.25;
  }
  .case-one-line { font-size: 14px; color: var(--muted-dark); line-height: 1.55; }
  .case-stats {
    display: flex; flex-wrap: wrap;
    gap: 14px 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: auto;
  }
  .case-stats .s { display: flex; flex-direction: column; gap: 2px; }
  .case-stats .n {
    font-family: "JetBrains Mono", monospace;
    font-weight: 600; font-size: 15px;
    color: var(--primary);
    letter-spacing: -0.01em;
  }
  .case-stats .t { font-size: 11px; color: var(--muted-dark); text-transform: uppercase; letter-spacing: 0.08em; }
  .case-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: rgba(255,255,255,.85); font-weight: 600;
  }
  .case-link .arr { color: var(--primary); transition: transform .25s; }
  .case-card:hover .case-link .arr { transform: translateX(4px); }

  .cases-cta {
    display: flex; justify-content: center;
    margin-top: 44px;
  }

  /* =====================================
     SECTION 8 — vSENSE AI CALLOUT
     ===================================== */
  .vsense {
    padding: var(--section-py) 0;
    background: var(--bg-dark);
  }
  .vsense-inner {
    background: linear-gradient(135deg, #16161E 0%, #1C1C28 100%);
    border: 1px solid var(--border-dark);
    border-radius: 18px;
    padding: clamp(40px, 5vw, 72px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .vsense-inner::before {
    content: "";
    position: absolute;
    right: -10%; top: -20%;
    width: 55%; height: 140%;
    background: radial-gradient(circle, rgba(249,115,22,.14), transparent 60%);
    pointer-events: none;
  }
  @media (max-width: 960px){ .vsense-inner { grid-template-columns: 1fr; gap: 36px; padding: 40px; } }

  .vsense h2 em { color: var(--muted-dark); font-style: normal; }
  .vsense .body { color: var(--muted-dark); font-size: 16px; margin: 24px 0 28px; max-width: 480px; }

  .tag-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
  .tpill {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.85);
  }

  /* Node diagram */
  .node-diag {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 440px;
    margin: 0 auto;
  }
  .node-diag svg { position: absolute; inset: 0; width: 100%; height: 100%; }
  .node {
    position: absolute;
    width: 56px; height: 56px;
    background: var(--card-dark);
    border: 1px solid rgba(249,115,22,.4);
    border-radius: 10px;
    display: grid; place-items: center;
    color: var(--primary);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 1px rgba(0,0,0,.3);
  }
  .node.center {
    width: 72px; height: 72px;
    background: radial-gradient(circle, #FCA05B, var(--primary) 70%);
    border-color: var(--primary-light);
    color: #fff;
    box-shadow:
      0 0 40px rgba(249,115,22,.55),
      0 0 0 1px rgba(0,0,0,.3);
    z-index: 2;
  }
  .node .lbl {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%; transform: translateX(-50%);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    color: var(--muted-dark);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  /* =====================================
     SECTION 9 — CREDENTIALS
     ===================================== */
  .credentials {
    padding: calc(var(--section-py) * 0.6) 0;
    border-top: 1px solid var(--border-light);
  }
  .cred-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  @media (max-width: 820px){ .cred-grid { grid-template-columns: repeat(2, 1fr); } }

  .cred {
    padding: 32px 24px;
    border-right: 1px solid var(--border-light);
    display: flex; flex-direction: column; gap: 8px;
  }
  .cred:last-child { border-right: 0; }
  @media (max-width: 820px){
    .cred { border-right: 0; border-bottom: 1px solid var(--border-light); }
    .cred:nth-child(even) { border-right: 0; }
    .cred:nth-child(odd) { border-right: 1px solid var(--border-light); }
    .cred:nth-last-child(-n+2) { border-bottom: 0; }
  }

  .cred-n {
    font-size: clamp(34px, 3.6vw, 48px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1;
  }
  .cred-n.orange { color: var(--primary); }
  .cred-t {
    font-size: 13px;
    color: var(--muted-light);
    font-weight: 500;
  }

  /* =====================================
     SECTION 10 — CLOSING CTA
     ===================================== */
  .closing {
    padding: var(--section-py) 0 calc(var(--section-py) * 0.6);
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  .closing::before{
    content: "";
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: min(120vw, 1100px); aspect-ratio: 1;
    background:
      radial-gradient(circle, rgba(249,115,22,.16), transparent 55%);
    pointer-events: none;
  }
  .closing-rings {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    width: min(90vw, 700px); aspect-ratio: 1;
    pointer-events: none;
  }
  .closing-rings .ring { border-color: rgba(249,115,22,.14); }
  .closing-rings .ring.r1 { inset: 15%; border-color: rgba(249,115,22,.22); }
  .closing-rings .ring.r2 { inset: 0%; }
  .closing-rings .ring.r3 { inset: -18%; }
  .closing-rings .ring.r4 { inset: -40%; border-color: rgba(249,115,22,.08); }

  .closing-inner { position: relative; max-width: 720px; margin: 0 auto; }
  .closing h2 { font-size: clamp(38px, 5vw, 64px); letter-spacing: -0.025em; }
  .closing .subline { margin: 24px auto 36px; max-width: 520px; font-size: 17px; }
  .closing-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .closing-contact {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: var(--muted-dark);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  }
  .closing-contact a:hover { color: var(--primary); }
  .closing-contact .dot { opacity: .4; }

  /* =====================================
     POC STICKY BANNER
     ===================================== */
  .poc-banner {
    background: var(--card-dark);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
  }
  .poc-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .poc-text { color: #fff; font-size: 15px; }
  .poc-text b { color: var(--primary); font-weight: 600; }
  .poc-text span { color: var(--muted-dark); margin-left: 10px; }

  /* =====================================
     FOOTER
     ===================================== */
  footer.site {
    background: var(--bg-dark);
    color: var(--muted-dark);
    padding: 72px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
  }
  @media (max-width: 900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

  .footer-col h5 {
    color: rgba(255,255,255,.9);
    font-size: 13px; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0 0 18px;
  }
  .footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 14px; color: var(--muted-dark); }
  .footer-col a:hover { color: var(--primary); }
  .footer-tagline {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    line-height: 1.6;
    margin: 16px 0 22px;
    max-width: 260px;
  }
  .footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
  .badge {
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: rgba(255,255,255,.85);
    letter-spacing: 0.02em;
  }

  .footer-bottom {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.06);
    display: flex; justify-content: space-between; gap: 18px;
    flex-wrap: wrap;
    color: var(--muted-dark);
    font-size: 13px;
  }
  .footer-bottom a { color: var(--muted-dark); }
  .footer-bottom a:hover { color: var(--primary); }

  /* =====================================
     TWEAKS PANEL
     ===================================== */
  #tweaks {
    position: fixed;
    right: 20px; bottom: 20px;
    width: 320px;
    background: rgba(20,20,28,.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 18px;
    color: #fff;
    font-size: 13px;
    z-index: 100;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
    display: none;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
  #tweaks.on { display: block; }
  #tweaks h4 {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 14px;
    font-weight: 700;
  }
  .tw-row { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
  .tw-row label { font-size: 11px; color: var(--muted-dark); text-transform: uppercase; letter-spacing: 0.1em; }
  .tw-row input[type=range] { width: 100%; accent-color: var(--primary); }
  .tw-seg { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 4px; padding: 3px; background: rgba(255,255,255,.05); border-radius: 6px; }
  .tw-seg button {
    padding: 6px 8px;
    background: transparent;
    border: 0;
    color: var(--muted-dark);
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 500;
  }
  .tw-seg button.on { background: rgba(249,115,22,.18); color: var(--primary); }
  .tw-row .val { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--primary); }
  .tw-row .rowflex { display:flex; justify-content: space-between; align-items: center; }

  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.in { opacity: 1; transform: none; }