:root {
      --bg: #020512;
      --bg-2: #050a1d;
      --panel: rgba(8, 17, 42, 0.78);
      --panel-2: rgba(10, 25, 59, 0.62);
      --line: rgba(101, 170, 255, 0.18);
      --line-strong: rgba(84, 169, 255, 0.42);
      --blue: #2f8cff;
      --blue-2: #5db7ff;
      --cyan: #65e7ff;
      --text: #f6fbff;
      --muted: #a8b6cf;
      --muted-2: #73819e;
      --good: #60f4bd;
      --warning: #ffc86b;
      --danger: #ff758f;
      --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
      --radius: 22px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; background: var(--bg); }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 15% 8%, rgba(47, 140, 255, 0.16), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(101, 231, 255, 0.08), transparent 24%),
        linear-gradient(180deg, #020512 0%, #040816 42%, #020512 100%);
      overflow-x: hidden;
      line-height: 1.55;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(77, 142, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(77, 142, 255, .035) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, black, transparent 88%);
      z-index: 0;
    }

    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button { font: inherit; }
    img, svg, canvas { display: block; max-width: 100%; }

    :focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 4px;
      border-radius: 8px;
    }

    .page-shell {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      overflow: visible;
      scroll-behavior: smooth;
    }
    .container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
    .section { padding: 112px 0; position: relative; }
    .section-tight { padding: 74px 0; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--cyan);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--cyan));
    }

    h1, h2, h3, p { margin-top: 0; }
    h1 {
      font-size: clamp(52px, 7vw, 96px);
      line-height: .94;
      letter-spacing: -.055em;
      margin-bottom: 24px;
    }
    h2 {
      font-size: clamp(38px, 5vw, 66px);
      line-height: 1.02;
      letter-spacing: -.045em;
      margin-bottom: 18px;
    }
    h3 { font-size: 21px; letter-spacing: -.02em; }
    .lead {
      color: var(--muted);
      font-size: clamp(18px, 2vw, 22px);
      max-width: 720px;
      margin-bottom: 30px;
    }
    .muted { color: var(--muted); }
    .gradient-text {
      background: linear-gradient(100deg, #ffffff 10%, #7fc2ff 60%, #6cf2ff 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 20px;
      border-radius: 13px;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .045em;
      text-transform: uppercase;
      border: 1px solid transparent;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
      cursor: pointer;
    }
    .btn:hover { transform: translateY(-2px); }
    .btn-primary {
      color: white;
      background: linear-gradient(135deg, #2f8cff, #1557ff 55%, #22b9ff);
      box-shadow: 0 14px 40px rgba(47, 140, 255, .28), inset 0 1px rgba(255,255,255,.18);
    }
    .btn-primary:hover { box-shadow: 0 18px 50px rgba(47, 140, 255, .42), inset 0 1px rgba(255,255,255,.18); }
    .btn-ghost {
      color: var(--text);
      border-color: var(--line-strong);
      background: rgba(10, 20, 47, .62);
      backdrop-filter: blur(16px);
    }
    .btn-ghost:hover { border-color: rgba(101, 231, 255, .6); background: rgba(15, 32, 72, .78); }
    .btn svg { width: 16px; height: 16px; }

    .glass {
      background: linear-gradient(180deg, rgba(12, 29, 67, .72), rgba(6, 14, 34, .74));
      border: 1px solid var(--line);
      box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.04);
      backdrop-filter: blur(20px);
    }

    /* NAV */
    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(2, 5, 18, .72);
      backdrop-filter: blur(22px);
      border-bottom: 1px solid rgba(94, 166, 255, .12);
    }
    nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }
    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      background:
        radial-gradient(circle at 32% 28%, rgba(255,255,255,.78), transparent 10%),
        linear-gradient(145deg, #4ae6ff 0%, #187cff 45%, #153aff 100%);
      box-shadow: 0 0 30px rgba(47, 140, 255, .42);
      position: relative;
      overflow: hidden;
    }
    .brand-mark::before, .brand-mark::after {
      content: "";
      position: absolute;
      background: #061124;
      transform: rotate(-18deg);
      border-radius: 4px;
    }
    .brand-mark::before { width: 9px; height: 28px; left: 12px; top: 5px; }
    .brand-mark::after { width: 9px; height: 19px; left: 20px; top: 12px; }
    .brand-copy strong {
      display: block;
      font-size: 15px;
      letter-spacing: .12em;
      line-height: 1;
    }
    .brand-copy small {
      display: block;
      font-size: 9px;
      color: var(--muted-2);
      letter-spacing: .18em;
      text-transform: uppercase;
      margin-top: 5px;
    }
    .nav-links { display: flex; align-items: center; gap: 24px; }
    .nav-links a:not(.btn) {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      transition: color .2s ease;
    }
    .nav-links a:not(.btn):hover { color: white; }
    .menu-toggle {
      display: none;
      border: 1px solid var(--line-strong);
      background: rgba(12, 25, 58, .7);
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      cursor: pointer;
    }
    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      background: currentColor;
      margin: 4px auto;
      border-radius: 2px;
    }

    /* HERO */
    .hero {
      min-height: 790px;
      display: grid;
      place-items: center;
      padding: 86px 0 68px;
      position: relative;
      isolation: isolate;
    }
    #heroCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
      opacity: .66;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: radial-gradient(circle at 50% 35%, transparent 0%, rgba(2, 5, 18, .1) 45%, var(--bg) 94%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 54px;
      align-items: center;
    }
    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 11px;
      border: 1px solid rgba(96, 244, 189, .24);
      background: rgba(7, 24, 34, .48);
      color: #b9ffe5;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      background: var(--good);
      border-radius: 50%;
      box-shadow: 0 0 12px var(--good);
    }
    .hero-copy p { max-width: 650px; }
    .hero-note {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 24px;
      color: var(--muted-2);
      font-size: 12px;
    }
    .hero-note span { display: inline-flex; align-items: center; gap: 7px; }
    .hero-note b { color: var(--good); font-weight: 900; }

    .command-center {
      border-radius: 25px;
      padding: 18px;
      transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
      position: relative;
      overflow: hidden;
    }
    .command-center::before {
      content: "";
      position: absolute;
      width: 330px;
      height: 330px;
      top: -180px;
      right: -90px;
      background: radial-gradient(circle, rgba(48, 150, 255, .35), transparent 66%);
      pointer-events: none;
    }
    .window-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 3px 2px 14px;
      border-bottom: 1px solid var(--line);
    }
    .window-dots { display: flex; gap: 6px; }
    .window-dots i { width: 7px; height: 7px; border-radius: 50%; display: block; background: #2e3b58; }
    .window-dots i:nth-child(1) { background: #ff6c86; }
    .window-dots i:nth-child(2) { background: #ffc86b; }
    .window-dots i:nth-child(3) { background: #60f4bd; }
    .demo-label {
      color: var(--muted-2);
      font-size: 9px;
      letter-spacing: .13em;
      font-weight: 800;
      text-transform: uppercase;
    }
    .cc-head {
      padding: 18px 2px 14px;
      display: flex;
      justify-content: space-between;
      gap: 15px;
      align-items: center;
    }
    .cc-head strong { font-size: 15px; letter-spacing: -.02em; }
    .online {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 10px;
      color: #afffe0;
      font-weight: 800;
      padding: 6px 9px;
      border-radius: 999px;
      background: rgba(96, 244, 189, .08);
      border: 1px solid rgba(96, 244, 189, .16);
    }
    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      margin-bottom: 12px;
    }
    .metric {
      background: rgba(7, 17, 40, .74);
      border: 1px solid rgba(101, 171, 255, .14);
      padding: 14px;
      border-radius: 14px;
      min-height: 98px;
    }
    .metric small { color: var(--muted-2); text-transform: uppercase; font-size: 8px; font-weight: 800; letter-spacing: .11em; }
    .metric strong { display: block; font-size: 29px; margin: 6px 0 2px; letter-spacing: -.04em; }
    .metric em { color: var(--good); font-style: normal; font-size: 10px; }
    .flow-board {
      padding: 14px;
      border-radius: 16px;
      border: 1px solid rgba(101, 171, 255, .14);
      background: linear-gradient(180deg, rgba(7, 17, 42, .75), rgba(4, 12, 30, .8));
    }
    .flow-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; font-size: 10px; color: var(--muted); }
    .flow-line {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 7px;
      align-items: stretch;
    }
    .flow-node {
      min-height: 70px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 8px 4px;
      border-radius: 11px;
      border: 1px solid rgba(80, 166, 255, .18);
      background: rgba(11, 28, 61, .62);
      color: #cbd9ef;
      font-size: 8px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      position: relative;
    }
    .flow-node:not(:last-child)::after {
      content: "→";
      position: absolute;
      right: -9px;
      top: 50%;
      transform: translateY(-50%);
      color: #4cc9ff;
      z-index: 2;
      text-shadow: 0 0 10px #4cc9ff;
    }
    .activity-list { margin-top: 10px; display: grid; gap: 7px; }
    .activity {
      display: grid;
      grid-template-columns: 8px 1fr auto;
      gap: 8px;
      align-items: center;
      padding: 8px 10px;
      border-radius: 10px;
      background: rgba(7, 17, 37, .58);
      color: var(--muted);
      font-size: 9px;
    }
    .activity i { width: 6px; height: 6px; background: var(--blue-2); border-radius: 50%; box-shadow: 0 0 10px var(--blue-2); }
    .activity time { color: var(--muted-2); font-size: 8px; }

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      background: rgba(6, 14, 34, .54);
      box-shadow: 0 20px 50px rgba(0,0,0,.2);
    }
    .trust-item { padding: 19px 22px; border-right: 1px solid var(--line); }
    .trust-item:last-child { border-right: 0; }
    .trust-item strong { display: block; font-size: 13px; margin-bottom: 4px; }
    .trust-item span { color: var(--muted-2); font-size: 11px; }

    /* PROBLEM */
    .two-col { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
    .chaos-board { padding: 26px; border-radius: var(--radius); position: relative; overflow: hidden; }
    .chaos-board::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(47,140,255,.12), transparent 52%); }
    .chaos-center {
      width: 150px;
      height: 150px;
      margin: 95px auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 20px;
      font-weight: 900;
      font-size: 13px;
      letter-spacing: .08em;
      background: linear-gradient(145deg, rgba(20, 65, 140, .8), rgba(7, 17, 42, .9));
      border: 1px solid rgba(100, 189, 255, .35);
      box-shadow: 0 0 55px rgba(47,140,255,.22);
      position: relative;
      z-index: 2;
    }
    .chaos-chip {
      position: absolute;
      padding: 9px 12px;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      border-radius: 10px;
      border: 1px solid rgba(95, 161, 255, .22);
      background: rgba(6, 16, 40, .86);
      color: #c7d4ea;
      box-shadow: 0 12px 25px rgba(0,0,0,.18);
    }
    .chaos-chip::after {
      content: "";
      position: absolute;
      width: 70px;
      height: 1px;
      background: linear-gradient(90deg, rgba(77, 171, 255, .32), transparent);
      top: 50%;
    }
    .chip-1 { top: 34px; left: 34px; }
    .chip-2 { top: 39px; right: 32px; }
    .chip-3 { top: 132px; left: 18px; }
    .chip-4 { top: 137px; right: 18px; }
    .chip-5 { bottom: 48px; left: 35px; }
    .chip-6 { bottom: 44px; right: 32px; }
    .chip-1::after, .chip-3::after, .chip-5::after { left: 100%; }
    .chip-2::after, .chip-4::after, .chip-6::after { right: 100%; transform: rotate(180deg); }
    .pain-list { display: grid; gap: 13px; margin-top: 28px; }
    .pain-row { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; color: var(--muted); }
    .pain-row .x { color: #ff8ba0; font-weight: 900; }

    /* XRAY */
    .xray-shell { margin-top: 44px; display: grid; grid-template-columns: 280px 1fr; gap: 18px; }
    .xray-nav { padding: 12px; border-radius: 20px; display: grid; gap: 7px; align-content: start; }
    .xray-btn {
      width: 100%;
      text-align: left;
      color: var(--muted);
      border: 1px solid transparent;
      background: transparent;
      border-radius: 12px;
      padding: 13px 14px;
      cursor: pointer;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: .2s ease;
    }
    .xray-btn:hover { color: white; background: rgba(47,140,255,.07); }
    .xray-btn.active {
      color: white;
      border-color: rgba(91, 179, 255, .28);
      background: linear-gradient(135deg, rgba(47,140,255,.2), rgba(101,231,255,.07));
      box-shadow: inset 3px 0 #4db1ff;
    }
    .xray-btn span:last-child { color: var(--muted-2); }
    .xray-panel { padding: 30px; border-radius: 20px; min-height: 420px; }
    .xray-panel-top { display: flex; justify-content: space-between; gap: 20px; align-items: start; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
    .xray-panel h3 { font-size: 30px; margin-bottom: 8px; }
    .scan-badge { font-size: 9px; color: var(--cyan); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; border: 1px solid rgba(101,231,255,.2); padding: 7px 9px; border-radius: 999px; white-space: nowrap; }
    .xray-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
    .state-card { padding: 18px; border-radius: 14px; border: 1px solid var(--line); background: rgba(5,13,31,.62); }
    .state-card.before { border-color: rgba(255,117,143,.16); }
    .state-card.after { border-color: rgba(96,244,189,.16); }
    .state-label { font-size: 9px; letter-spacing: .13em; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
    .before .state-label { color: #ff91a6; }
    .after .state-label { color: #82f8c9; }
    .state-card p { color: var(--muted); margin-bottom: 0; font-size: 13px; }
    .xray-flow {
      margin-top: 14px;
      padding: 16px 18px;
      border-radius: 14px;
      border: 1px solid rgba(89, 173, 255, .2);
      background: rgba(7, 20, 48, .65);
      color: #d7e6fb;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.7;
    }

    /* SYSTEM */
    .system-compare { display: grid; grid-template-columns: 1fr 82px 1fr; gap: 18px; align-items: stretch; margin-top: 46px; }
    .system-card { padding: 26px; border-radius: 20px; position: relative; overflow: hidden; }
    .system-card h3 { display: flex; align-items: center; gap: 9px; margin-bottom: 21px; }
    .system-card h3 span { font-size: 9px; color: var(--muted-2); text-transform: uppercase; letter-spacing: .13em; }
    .tool-cloud { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tool {
      padding: 12px;
      border-radius: 12px;
      background: rgba(5,13,31,.62);
      border: 1px solid rgba(111, 156, 217, .14);
      color: var(--muted);
      text-align: center;
      font-size: 11px;
      font-weight: 800;
      min-height: 56px;
      display: grid;
      place-items: center;
    }
    .system-card.before-system .tool { transform: rotate(var(--r)); }
    .system-arrow { display: grid; place-items: center; color: var(--blue-2); font-size: 34px; text-shadow: 0 0 20px var(--blue); }
    .core-node {
      margin: 8px auto 18px;
      width: 190px;
      aspect-ratio: 1;
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 20px;
      position: relative;
      background: radial-gradient(circle at 35% 25%, rgba(101,231,255,.22), rgba(47,140,255,.15) 35%, rgba(6,14,34,.92) 72%);
      border: 1px solid rgba(101,231,255,.34);
      box-shadow: 0 0 70px rgba(47,140,255,.18), inset 0 0 40px rgba(47,140,255,.08);
    }
    .core-node::before, .core-node::after {
      content: "";
      position: absolute;
      inset: -13px;
      border-radius: 50%;
      border: 1px solid rgba(77, 177, 255, .15);
    }
    .core-node::after { inset: -29px; border-style: dashed; animation: spin 24s linear infinite; }
    @keyframes spin { to { transform: rotate(360deg); } }
    .core-node strong { font-size: 16px; letter-spacing: .06em; }
    .connected-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .connected-mini span { padding: 8px; border-radius: 9px; background: rgba(47,140,255,.07); border: 1px solid rgba(89,173,255,.14); color: #bcd0ec; font-size: 9px; text-align: center; font-weight: 800; }

    /* CARDS */
    .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
    .feature-card {
      padding: 24px;
      min-height: 235px;
      border-radius: 18px;
      position: relative;
      overflow: hidden;
      transition: border-color .25s ease, transform .2s ease;
      transform-style: preserve-3d;
    }
    .feature-card:hover { border-color: rgba(101,231,255,.32); }
    .feature-card::after {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      right: -80px;
      bottom: -80px;
      background: radial-gradient(circle, rgba(47,140,255,.12), transparent 70%);
    }
    .icon-box {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(47,140,255,.22), rgba(101,231,255,.06));
      border: 1px solid rgba(98, 186, 255, .24);
      color: var(--cyan);
      margin-bottom: 20px;
      box-shadow: inset 0 1px rgba(255,255,255,.05);
    }
    .icon-box svg { width: 21px; height: 21px; }
    .feature-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
    .feature-card .mini-tag { display: inline-flex; margin-top: 18px; color: var(--muted-2); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }

    /* INTEGRATIONS */
    .integration-wall { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-top: 38px; }
    .integration-chip {
      padding: 12px 15px;
      border-radius: 12px;
      border: 1px solid var(--line);
      background: rgba(8, 17, 40, .62);
      color: #bcc9dc;
      font-size: 12px;
      font-weight: 800;
      box-shadow: inset 0 1px rgba(255,255,255,.03);
    }
    .integration-note { text-align: center; color: var(--muted-2); font-size: 11px; margin: 20px auto 0; max-width: 720px; }

    /* MONDAY */
    .monday-board { margin-top: 44px; padding: 28px; border-radius: 22px; position: relative; overflow: hidden; }
    .timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; align-items: stretch; position: relative; }
    .timeline::before {
      content: "";
      position: absolute;
      top: 26px;
      left: 8%;
      right: 8%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(77,177,255,.45), rgba(101,231,255,.45), transparent);
      z-index: 0;
    }
    .step { position: relative; z-index: 1; text-align: center; }
    .step-num {
      width: 52px;
      height: 52px;
      margin: 0 auto 15px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 11px;
      font-weight: 900;
      color: white;
      background: linear-gradient(145deg, #1b61c9, #0d1738);
      border: 1px solid rgba(101,231,255,.24);
      box-shadow: 0 0 24px rgba(47,140,255,.22);
    }
    .step strong { display: block; font-size: 12px; margin-bottom: 5px; }
    .step span { display: block; color: var(--muted-2); font-size: 10px; line-height: 1.45; }
    .automation-proof {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 28px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: 14px;
      overflow: hidden;
    }
    .automation-proof div { background: rgba(4, 11, 28, .95); padding: 16px; text-align: center; font-size: 12px; color: #c6d4e8; font-weight: 800; }
    .automation-proof b { color: var(--good); }

    /* SERVICES */
    .service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 42px; }
    .service-card { min-height: 300px; padding: 30px; border-radius: 20px; position: relative; overflow: hidden; }
    .service-card .num { font-size: 11px; letter-spacing: .15em; color: var(--cyan); font-weight: 900; margin-bottom: 38px; }
    .service-card h3 { font-size: 30px; margin-bottom: 12px; }
    .service-card p { color: var(--muted); max-width: 470px; }
    .service-card ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
    .service-card li { font-size: 10px; font-weight: 800; color: #b9cae1; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(7, 18, 41, .56); }
    .service-card::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; right: -130px; top: -130px; background: radial-gradient(circle, rgba(47,140,255,.2), transparent 70%); }

    /* CTA */
    .health-card {
      border-radius: 30px;
      padding: 68px;
      overflow: hidden;
      position: relative;
      background:
        radial-gradient(circle at 78% 25%, rgba(101,231,255,.14), transparent 26%),
        radial-gradient(circle at 18% 72%, rgba(47,140,255,.18), transparent 35%),
        linear-gradient(145deg, rgba(11,32,75,.92), rgba(4,10,28,.96));
      border: 1px solid rgba(101, 184, 255, .26);
      box-shadow: 0 40px 100px rgba(0,0,0,.38), inset 0 1px rgba(255,255,255,.05);
    }
    .health-card::before {
      content: "BUSINESS X-RAY";
      position: absolute;
      right: -20px;
      top: 30px;
      font-size: clamp(40px, 8vw, 108px);
      font-weight: 900;
      letter-spacing: -.05em;
      color: rgba(255,255,255,.025);
      white-space: nowrap;
    }
    .health-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: end; position: relative; z-index: 1; }
    .scan-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .scan-list span { padding: 11px 13px; border-radius: 10px; background: rgba(2,8,25,.42); border: 1px solid rgba(109,183,255,.15); color: #c0cee2; font-size: 11px; font-weight: 800; }
    .scan-list span::before { content: "✓"; color: var(--good); margin-right: 8px; }

    .final-cta { text-align: center; padding: 120px 0 100px; }
    .final-cta h2 { max-width: 900px; margin-left: auto; margin-right: auto; }
    .final-cta p { max-width: 720px; margin: 0 auto 28px; }
    .final-cta .button-row { justify-content: center; }

    footer { border-top: 1px solid var(--line); padding: 34px 0 42px; background: rgba(2,6,18,.72); }
    .footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
    .footer-copy { color: var(--muted-2); font-size: 11px; margin-top: 12px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 12px 22px; justify-content: flex-end; }
    .footer-links a { color: #bdcbe0; font-size: 12px; font-weight: 700; }
    .footer-links a:hover { color: white; }

    .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .cursor-glow {
      position: fixed;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      pointer-events: none;
      background: radial-gradient(circle, rgba(50,145,255,.08), transparent 68%);
      transform: translate(-50%, -50%);
      z-index: 0;
      opacity: 0;
      transition: opacity .2s ease;
    }

    .center { text-align: center; }
    .center .lead { margin-left: auto; margin-right: auto; }
    .section-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(82,163,255,.22), transparent); }

    @media (max-width: 1020px) {
      .nav-links { gap: 16px; }
      .nav-links a:nth-child(2), .nav-links a:nth-child(3) { display: none; }
      .hero-grid, .two-col, .health-grid { grid-template-columns: 1fr; }
      .hero { min-height: auto; }
      .hero-copy { text-align: center; }
      .hero-copy .button-row, .hero-copy .hero-note { justify-content: center; }
      .hero-copy p { margin-left: auto; margin-right: auto; }
      .command-center { max-width: 680px; margin: 20px auto 0; transform: none; }
      .two-col { gap: 42px; }
      .chaos-board { max-width: 700px; margin: 0 auto; }
      .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
      .timeline::before { display: none; }
      .card-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .section { padding: 88px 0; }
      .nav-links {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 64px;
        padding: 15px;
        border-radius: 16px;
        border: 1px solid var(--line-strong);
        background: rgba(4, 10, 28, .98);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
      }
      .nav-links.open { display: flex; }
      .nav-links a:nth-child(2), .nav-links a:nth-child(3) { display: block; }
      .nav-links .btn { width: 100%; }
      .menu-toggle { display: block; }
      .trust-strip { grid-template-columns: repeat(2, 1fr); }
      .trust-item:nth-child(2) { border-right: 0; }
      .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .xray-shell { grid-template-columns: 1fr; }
      .xray-nav { grid-template-columns: repeat(3, 1fr); }
      .xray-btn { text-align: center; justify-content: center; font-size: 11px; }
      .xray-btn span:last-child { display: none; }
      .system-compare { grid-template-columns: 1fr; }
      .system-arrow { transform: rotate(90deg); min-height: 52px; }
      .service-grid { grid-template-columns: 1fr; }
      .health-card { padding: 46px 32px; }
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 28px, var(--max)); }
      .section { padding: 72px 0; }
      nav { min-height: 64px; }
      .brand-copy small { display: none; }
      .brand-mark { width: 34px; height: 34px; }
      .hero { padding: 58px 0 46px; }
      h1 { font-size: clamp(46px, 14vw, 70px); }
      h2 { font-size: clamp(34px, 10vw, 50px); }
      .button-row { flex-direction: column; align-items: stretch; }
      .btn { width: 100%; }
      .hero-note { gap: 10px; }
      .hero-note span { width: 100%; justify-content: center; }
      .command-center { padding: 12px; border-radius: 18px; }
      .metric-grid { grid-template-columns: 1fr 1fr; }
      .metric { min-height: 88px; padding: 11px; }
      .metric strong { font-size: 24px; }
      .flow-line { grid-template-columns: 1fr; }
      .flow-node { min-height: 46px; }
      .flow-node:not(:last-child)::after { content: "↓"; right: 50%; transform: translateX(50%); top: auto; bottom: -12px; }
      .trust-strip { grid-template-columns: 1fr; }
      .trust-item, .trust-item:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
      .trust-item:last-child { border-bottom: 0; }
      .chaos-board { padding: 18px; min-height: 410px; }
      .chaos-center { width: 130px; height: 130px; margin: 120px auto; }
      .chaos-chip { font-size: 8px; padding: 7px 8px; }
      .chaos-chip::after { display: none; }
      .chip-1 { top: 38px; left: 20px; }
      .chip-2 { top: 38px; right: 20px; }
      .chip-3 { top: 103px; left: 10px; }
      .chip-4 { top: 103px; right: 10px; }
      .chip-5 { bottom: 45px; left: 24px; }
      .chip-6 { bottom: 45px; right: 24px; }
      .xray-nav { grid-template-columns: repeat(2, 1fr); }
      .xray-panel { padding: 20px; }
      .xray-panel-top { display: block; }
      .scan-badge { display: inline-flex; margin-top: 8px; }
      .xray-columns { grid-template-columns: 1fr; }
      .tool-cloud { grid-template-columns: repeat(2, 1fr); }
      .connected-mini { grid-template-columns: repeat(2, 1fr); }
      .card-grid { grid-template-columns: 1fr; }
      .feature-card { min-height: 210px; }
      .timeline { grid-template-columns: repeat(2, 1fr); }
      .automation-proof { grid-template-columns: 1fr; }
      .service-card { padding: 24px; min-height: 280px; }
      .health-card { padding: 38px 22px; border-radius: 22px; }
      .scan-list { grid-template-columns: 1fr; }
      .final-cta { padding: 86px 0 76px; }
      .footer-grid { grid-template-columns: 1fr; text-align: center; }
      .footer-grid .brand { justify-content: center; }
      .footer-links { justify-content: center; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
      }
      .reveal { opacity: 1; transform: none; }
      .cursor-glow, #heroCanvas { display: none; }
    }
  

/* Production additions */
html { scroll-padding-top: 78px; }
body { min-width: 320px; }
.nav-wrap { box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.footer-legal { display:flex; gap:18px; flex-wrap:wrap; justify-content:flex-end; margin-top:10px; }
.footer-legal a { color: var(--muted); font-size:12px; }
.footer-legal a:hover { color: var(--cyan); }
.page-hero { padding: 150px 0 80px; min-height: 52vh; display:grid; align-items:center; position:relative; overflow:hidden; }
.page-hero::before { content:""; position:absolute; inset:-20%; background:radial-gradient(circle at 50% 40%,rgba(47,140,255,.16),transparent 35%); pointer-events:none; }
.page-hero .container { position:relative; z-index:1; }
.form-shell { display:grid; grid-template-columns:.9fr 1.1fr; gap:30px; align-items:start; }
.form-panel { padding:28px; border-radius:var(--radius); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { display:grid; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { color:#dce9ff; font-size:13px; font-weight:800; letter-spacing:.02em; }
.field input,.field select,.field textarea { width:100%; border:1px solid var(--line-strong); background:rgba(3,9,25,.72); color:var(--text); border-radius:12px; padding:14px 15px; font:inherit; outline:none; transition:border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height:130px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--cyan); box-shadow:0 0 0 3px rgba(101,231,255,.10); }
.form-help { color:var(--muted-2); font-size:12px; margin-top:12px; }
.xray-steps { display:grid; gap:12px; }
.xray-step { padding:18px 20px; border-radius:15px; border:1px solid var(--line); background:rgba(7,18,43,.64); }
.xray-step strong { display:block; margin-bottom:4px; }
.notice { display:none; margin-top:16px; padding:14px 16px; border-radius:12px; background:rgba(96,244,189,.10); border:1px solid rgba(96,244,189,.28); color:#caffec; }
.legal-page { max-width:820px; }
.legal-page h2 { font-size:32px; margin-top:42px; }
.legal-page h3 { margin-top:28px; }
.legal-page p,.legal-page li { color:var(--muted); }
.legal-page a { color:var(--cyan); }
@media (max-width: 820px) {
  .form-shell { grid-template-columns:1fr; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .footer-legal { justify-content:center; }
}
