    :root {
      --bg-dark: #020307;
      --bg-surface: #070b14;
      --card-bg: rgba(6, 9, 18, 0.78);
      --border-sheen: rgba(0, 240, 255, 0.2);
      
      --accent-cyan: #00f0ff;
      --accent-amber: #ffb703;
      --accent-magenta: #ff0055;
      --accent-green: #00ff88;
      --accent-gold: #e5c07b;
      --accent-teal: #00e5c9;
      --accent-orange: #ff7700;
      
      --text-main: #f3f6fc;
      --text-muted: #8b9bb4;
      --text-dim: #445065;
      
      --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      cursor: none;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg-dark);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    /* Ambient CRT Scanline Overlay */
    .scanlines {
      position: fixed;
      inset: 0;
      background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 255, 0, 0.02));
      background-size: 100% 3px, 6px 100%;
      pointer-events: none;
      z-index: 999;
      opacity: 0.5;
    }

    /* Background Ambient Canvas Grid */
    #ambient-canvas {
      position: fixed;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    /* Interactive Luxury HUD Cursor */
    #cursor-reticle {
      position: fixed;
      top: 0;
      left: 0;
      width: 36px;
      height: 36px;
      border: 1px solid var(--accent-cyan);
      border-radius: 50%;
      pointer-events: none !important;
      z-index: 999999;
      transform: translate(-50%, -50%);
      transition: width 0.2s, height 0.2s, border-color 0.2s, opacity 0.3s, background-color 0.2s;
      mix-blend-mode: difference;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
    }

    #cursor-reticle.active { opacity: 1; }
    #cursor-reticle.hover-link {
      width: 52px;
      height: 52px;
      border-color: var(--accent-teal);
      background-color: rgba(0, 240, 255, 0.12);
    }

    #cursor-dot {
      width: 4px;
      height: 4px;
      background: #fff;
      border-radius: 50%;
    }

    #cursor-coords {
      position: absolute;
      left: 45px;
      top: -5px;
      font-family: var(--font-mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      color: var(--accent-cyan);
      white-space: nowrap;
    }

    /* ====================================================
       PERSISTENT TOP NAVIGATION BAR
       ==================================================== */
    .persistent-navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 64px;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 950;
      background: rgba(4, 7, 14, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 240, 255, 0.15);
    }

    .persistent-navbar::before {
      content: "";
      position: absolute;
      bottom: -1px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #fff;
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.15em;
    }

    .nav-logo-icon {
      color: var(--accent-cyan);
      font-size: 15px;
    }

    .nav-status-badge {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--accent-green);
      letter-spacing: 0.12em;
      padding: 3px 8px;
      background: rgba(0, 255, 136, 0.08);
      border: 1px solid rgba(0, 255, 136, 0.25);
      border-radius: 4px;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-link {
      text-decoration: none;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      color: var(--text-muted);
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid transparent;
      transition: all 0.25s ease;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-link span {
      font-size: 9px;
      color: rgba(255, 255, 255, 0.35);
    }

    .nav-link:hover {
      color: #fff;
      border-color: rgba(0, 240, 255, 0.3);
      background: rgba(0, 240, 255, 0.06);
      box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    }

    .nav-link.active {
      color: var(--accent-cyan);
      border-color: rgba(0, 240, 255, 0.4);
      background: rgba(0, 240, 255, 0.08);
    }

    .nav-link-teal {
      color: var(--accent-teal);
      border-color: rgba(0, 229, 201, 0.25);
      background: rgba(0, 229, 201, 0.05);
    }

    .nav-link-teal:hover {
      color: #fff;
      border-color: var(--accent-teal);
      background: rgba(0, 229, 201, 0.15);
      box-shadow: 0 0 15px rgba(0, 229, 201, 0.3);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .audio-toggle {
      padding: 6px 14px;
      border: 1px solid rgba(0, 240, 255, 0.3);
      border-radius: 20px;
      background: rgba(8, 12, 22, 0.6);
      backdrop-filter: blur(10px);
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      color: var(--accent-cyan);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.3s;
    }

    .audio-toggle:hover {
      background: var(--accent-cyan);
      color: #000;
      box-shadow: 0 0 20px var(--accent-cyan);
    }

    .audio-indicator {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #444;
    }

    .audio-active .audio-indicator {
      background: var(--accent-green);
      box-shadow: 0 0 8px var(--accent-green);
    }

    /* Page Container */
    .page-container {
      position: relative;
      z-index: 1;
      max-width: 1320px;
      margin: 0 auto;
      padding: 130px 32px 100px 32px;
    }

    /* ====================================================
       SPLIT HERO SECTION & GATEWAY FUNNEL HUB
       ==================================================== */
    .hero-section {
      padding: 20px 0 70px 0;
      border-bottom: 1px solid rgba(0, 240, 255, 0.12);
      margin-bottom: 70px;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 48px;
      align-items: start;
      position: relative;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--accent-cyan);
      text-transform: uppercase;
      margin-bottom: 18px;
      padding: 4px 12px;
      background: rgba(0, 240, 255, 0.05);
      border: 1px solid rgba(0, 240, 255, 0.2);
      border-radius: 4px;
      width: fit-content;
    }

    .hero-title {
      font-size: clamp(34px, 4.2vw, 60px);
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.035em;
      margin-bottom: 20px;
      color: #ffffff;
      text-transform: uppercase;
    }

    .hero-title span {
      background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-lead {
      font-size: clamp(15px, 1.4vw, 18px);
      line-height: 1.65;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    /* Platform Flexibility Banner */
    .platform-flexibility-box {
      background: rgba(0, 240, 255, 0.03);
      border: 1px solid rgba(0, 240, 255, 0.2);
      border-radius: 12px;
      padding: 18px 20px;
      margin-bottom: 28px;
    }

    .platform-flex-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--accent-gold);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .platform-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .platform-chip {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--text-main);
      padding: 4px 10px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      transition: all 0.2s;
    }

    .platform-chip:hover {
      border-color: var(--accent-cyan);
      background: rgba(0, 240, 255, 0.1);
      color: #fff;
    }

    .hero-stats-bar {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .stat-item {
      font-family: var(--font-mono);
    }

    .stat-num {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: baseline;
      gap: 3px;
    }

    .stat-num span {
      font-size: 13px;
      color: var(--accent-cyan);
    }

    .stat-label {
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-top: 2px;
    }

    /* Right Column: Two Primary Gateway Funnels */
    .hero-funnels-hub {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .funnel-card {
      padding: 28px 26px;
      border-radius: 18px;
      backdrop-filter: blur(20px);
      text-decoration: none;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
      transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.25s;
    }

    .funnel-card-teal {
      background: linear-gradient(145deg, rgba(0, 36, 32, 0.85), rgba(6, 16, 22, 0.95));
      border: 1px solid rgba(0, 229, 201, 0.35);
    }

    .funnel-card-teal:hover {
      border-color: var(--accent-teal);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0, 229, 201, 0.3);
    }

    .funnel-card-orange {
      background: linear-gradient(145deg, rgba(46, 18, 0, 0.85), rgba(18, 10, 8, 0.95));
      border: 1px solid rgba(255, 119, 0, 0.35);
    }

    .funnel-card-orange:hover {
      border-color: var(--accent-orange);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(255, 119, 0, 0.3);
    }

    .funnel-top-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }

    .funnel-badge {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .funnel-title {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }

    .funnel-desc {
      font-size: 13px;
      line-height: 1.55;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .funnel-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-weight: 700;
    }

    /* Section Header */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .section-title {
      font-size: clamp(24px, 3.2vw, 36px);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-title::before {
      content: "//";
      color: var(--accent-cyan);
      font-family: var(--font-mono);
      font-size: 20px;
    }

    .section-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.18em;
    }

    /* ====================================================
       CORE SERVICES PILLARS (NO MOUSE-TILT - NEON ILLUMINATION ON HOVER)
       ==================================================== */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      margin-bottom: 100px;
    }

    /* Base Service Card: Flat, Rock-Solid, No Skew or Mouse Pull */
    .service-card {
      background: var(--card-bg);
      border-radius: 20px;
      padding: 40px;
      backdrop-filter: blur(24px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transform: none !important; /* No mouse-drawing skew or tilt */
      transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    }

    .service-card:hover {
      transform: translateY(-5px) !important;
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: -1px;
      left: 40px;
      right: 40px;
      height: 1px;
      transition: opacity 0.3s;
    }

    /* --- Neon Variant 01: Cyan Illumination --- */
    .service-card-cyan {
      border: 1px solid rgba(0, 240, 255, 0.2);
    }
    .service-card-cyan::before {
      background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    }
    .service-card-cyan:hover {
      border-color: var(--accent-cyan);
      background: linear-gradient(145deg, rgba(0, 36, 45, 0.85), rgba(6, 12, 22, 0.95));
      box-shadow: 0 0 35px rgba(0, 240, 255, 0.25), inset 0 0 25px rgba(0, 240, 255, 0.08);
    }
    .service-card-cyan:hover .service-name {
      color: var(--accent-cyan);
    }

    /* --- Neon Variant 02: Magenta Illumination --- */
    .service-card-magenta {
      border: 1px solid rgba(255, 0, 85, 0.2);
    }
    .service-card-magenta::before {
      background: linear-gradient(90deg, transparent, var(--accent-magenta), transparent);
    }
    .service-card-magenta:hover {
      border-color: var(--accent-magenta);
      background: linear-gradient(145deg, rgba(46, 0, 20, 0.85), rgba(16, 6, 12, 0.95));
      box-shadow: 0 0 35px rgba(255, 0, 85, 0.25), inset 0 0 25px rgba(255, 0, 85, 0.08);
    }
    .service-card-magenta:hover .service-name {
      color: var(--accent-magenta);
    }

    /* --- Neon Variant 03: Amber Illumination --- */
    .service-card-amber {
      border: 1px solid rgba(255, 183, 3, 0.2);
    }
    .service-card-amber::before {
      background: linear-gradient(90deg, transparent, var(--accent-amber), transparent);
    }
    .service-card-amber:hover {
      border-color: var(--accent-amber);
      background: linear-gradient(145deg, rgba(46, 28, 0, 0.85), rgba(18, 12, 6, 0.95));
      box-shadow: 0 0 35px rgba(255, 183, 3, 0.25), inset 0 0 25px rgba(255, 183, 3, 0.08);
    }
    .service-card-amber:hover .service-name {
      color: var(--accent-amber);
    }

    /* --- Neon Variant 04: Green Illumination --- */
    .service-card-green {
      border: 1px solid rgba(0, 255, 136, 0.2);
    }
    .service-card-green::before {
      background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    }
    .service-card-green:hover {
      border-color: var(--accent-green);
      background: linear-gradient(145deg, rgba(0, 42, 22, 0.85), rgba(6, 18, 12, 0.95));
      box-shadow: 0 0 35px rgba(0, 255, 136, 0.25), inset 0 0 25px rgba(0, 255, 136, 0.08);
    }
    .service-card-green:hover .service-name {
      color: var(--accent-green);
    }

    .card-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 24px;
      gap: 16px;
    }

    .service-index {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      color: var(--accent-cyan);
      text-transform: uppercase;
      display: block;
      margin-bottom: 8px;
    }

    .vector-hud-container {
      width: 105px;
      height: 105px;
      min-width: 105px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 18px;
      padding: 10px;
      transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
    }

    .hud-cyan {
      background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(6, 12, 22, 0.7) 70%);
      border: 1px solid rgba(0, 240, 255, 0.3);
      box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    }
    .service-card:hover .hud-cyan {
      transform: scale(1.08);
      border-color: var(--accent-cyan);
      box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.25), 0 15px 40px rgba(0, 240, 255, 0.35);
    }

    .hud-magenta {
      background: radial-gradient(circle, rgba(255, 0, 85, 0.12) 0%, rgba(18, 6, 12, 0.7) 70%);
      border: 1px solid rgba(255, 0, 85, 0.3);
      box-shadow: inset 0 0 20px rgba(255, 0, 85, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    }
    .service-card:hover .hud-magenta {
      transform: scale(1.08);
      border-color: var(--accent-magenta);
      box-shadow: inset 0 0 30px rgba(255, 0, 85, 0.25), 0 15px 40px rgba(255, 0, 85, 0.35);
    }

    .hud-amber {
      background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, rgba(20, 14, 6, 0.7) 70%);
      border: 1px solid rgba(255, 183, 3, 0.3);
      box-shadow: inset 0 0 20px rgba(255, 183, 3, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    }
    .service-card:hover .hud-amber {
      transform: scale(1.08);
      border-color: var(--accent-amber);
      box-shadow: inset 0 0 30px rgba(255, 183, 3, 0.25), 0 15px 40px rgba(255, 183, 3, 0.35);
    }

    .hud-green {
      background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, rgba(6, 18, 12, 0.7) 70%);
      border: 1px solid rgba(0, 255, 136, 0.3);
      box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.1), 0 10px 30px rgba(0, 0, 0, 0.6);
    }
    .service-card:hover .hud-green {
      transform: scale(1.08);
      border-color: var(--accent-green);
      box-shadow: inset 0 0 30px rgba(0, 255, 136, 0.25), 0 15px 40px rgba(0, 255, 136, 0.35);
    }

    .vector-hud-svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .service-name {
      font-size: clamp(22px, 2.3vw, 30px);
      font-weight: 800;
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: #fff;
      margin-bottom: 12px;
      transition: color 0.25s;
    }

    .service-desc {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      margin-top: auto;
    }

    .feature-item {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-item::before {
      content: "◆";
      color: var(--accent-cyan);
      font-size: 8px;
    }

    /* Orbital SVG Keyframes */
    @keyframes orbit-spin-cw { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
    @keyframes orbit-spin-ccw { 0% { transform: rotate(0deg); } 100% { transform: rotate(-360deg); } }
    @keyframes core-pulse { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.15); opacity: 1; } }
    @keyframes signal-ping { 0% { r: 12px; opacity: 1; } 100% { r: 125px; opacity: 0; } }

    .orbit-cw { animation: orbit-spin-cw 20s linear infinite; transform-origin: 150px 150px; }
    .orbit-ccw { animation: orbit-spin-ccw 26s linear infinite; transform-origin: 150px 150px; }
    .pulse-node { animation: core-pulse 2.5s ease-in-out infinite; transform-origin: 150px 150px; }
    .ping-wave { animation: signal-ping 3s cubic-bezier(0, 0.2, 0.8, 1) infinite; transform-origin: 150px 150px; }

    /* ====================================================
       ENGINEERING PROCESS (STEPPER)
       ==================================================== */
    .process-section {
      margin-bottom: 100px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .process-step {
      background: rgba(6, 9, 18, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      padding: 28px 24px;
      position: relative;
      transition: all 0.3s;
    }

    .process-step:hover {
      border-color: var(--accent-cyan);
      background: rgba(6, 9, 18, 0.85);
      transform: translateY(-4px);
    }

    .step-num {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent-cyan);
      letter-spacing: 0.15em;
      margin-bottom: 16px;
      display: block;
    }

    .step-title {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }

    .step-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ====================================================
       ENGAGEMENT TIERS & CTA DECK
       ==================================================== */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 100px;
    }

    .pricing-card {
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      padding: 36px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      transition: all 0.3s;
    }

    .pricing-card.featured {
      border-color: var(--accent-teal);
      background: linear-gradient(145deg, rgba(0, 36, 32, 0.85), rgba(6, 16, 22, 0.95));
      box-shadow: 0 20px 60px rgba(0, 229, 201, 0.18);
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
    }

    .pricing-badge {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      color: var(--accent-teal);
      margin-bottom: 12px;
      text-transform: uppercase;
    }

    .pricing-name {
      font-size: 24px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .pricing-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    .pricing-deliverables {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px;
    }

    .pricing-deliverables li {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pricing-deliverables li::before {
      content: "›";
      color: var(--accent-cyan);
      font-weight: bold;
      font-size: 16px;
    }

    .btn-action {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 8px;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.14em;
      font-weight: 700;
      text-decoration: none;
      text-transform: uppercase;
      transition: all 0.25s ease;
      cursor: pointer !important;
    }

    .btn-action-primary {
      background: var(--accent-cyan);
      color: #000;
      border: 1px solid var(--accent-cyan);
      box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
    }

    .btn-action-primary:hover {
      background: #fff;
      border-color: #fff;
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
    }

    .btn-action-teal {
      background: var(--accent-teal);
      color: #000;
      border: 1px solid var(--accent-teal);
      box-shadow: 0 0 20px rgba(0, 229, 201, 0.3);
    }

    .btn-action-teal:hover {
      background: #fff;
      border-color: #fff;
      box-shadow: 0 0 30px rgba(0, 229, 201, 0.6);
    }

    .btn-action-outline {
      background: transparent;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-action-outline:hover {
      border-color: var(--accent-cyan);
      background: rgba(0, 240, 255, 0.08);
      color: var(--accent-cyan);
    }

    /* Terminal Inquiry Console */
    .inquiry-console {
      background: var(--card-bg);
      border: 1px solid var(--border-sheen);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
      margin-bottom: 80px;
    }

    .console-bar {
      display: flex;
      justify-content: space-between;
      padding: 14px 24px;
      background: rgba(255, 255, 255, 0.02);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent-cyan);
    }

    .console-body {
      padding: 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    /* Footer */
    .page-footer {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.12em;
    }

    @media (max-width: 992px) {
      .hero-section { grid-template-columns: 1fr; gap: 36px; }
      .services-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr; }
      .console-body { grid-template-columns: 1fr; }
      .nav-center { display: none; }
      .persistent-navbar { padding: 0 20px; }
    }

    @media (max-width: 640px) {
      .process-grid { grid-template-columns: 1fr; }
      .hero-stats-bar { grid-template-columns: 1fr; }
      .page-footer { flex-direction: column; gap: 16px; text-align: center; }
      .feature-list { grid-template-columns: 1fr; }
      .card-top { flex-direction: column-reverse; align-items: flex-start; }
      .vector-hud-container { width: 90px; height: 90px; min-width: 90px; }
      #cursor-reticle { display: none; }
      * { cursor: auto; }
    }
