    :root {
      --onetrack-red: #E20000;
      --deep-red: #4C0505;
      --volt: #D8FF34;
      --gray-05: #fafafa;
      --gray-10: #f4f4f4;
      --gray-20: #e0e0e0;
      --gray-30: #c6c6c6;
      --gray-50: #8d8d8d;
      --gray-70: #525252;
      --gray-80: #393939;
      --gray-85: #2f2f2f;
      --gray-90: #262626;
      --gray-95: #1e1e1e;
      --gray-100: #161616;
    }

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

    body {
      font-family: 'IBM Plex Sans', -apple-system, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      color: var(--gray-90);
      background: white;
    }

    .mono { font-family: 'IBM Plex Mono', monospace; }

    /* Navigation */
    .nav {
      background: white;
      border-bottom: 1px solid var(--gray-20);
      padding: 0 48px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .nav-logo { height: 56px; }

    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }

    .nav-links > li {
      position: relative;
    }

    .nav-links a {
      color: var(--gray-70);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
    }

    .nav-links a:hover { color: var(--onetrack-red); }

    .nav-link-highlight {
      color: #00f0ff !important;
      font-weight: 500 !important;
    }

    .nav-links > li > a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 8px 0;
    }

    .nav-links > li > a .nav-chevron {
      width: 12px;
      height: 12px;
      transition: transform 0.2s;
    }

    .nav-links > li:hover > a .nav-chevron {
      transform: rotate(180deg);
    }

    /* Dropdown Menu */
    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: -20px;
      background: white;
      border: 1px solid var(--gray-20);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
      padding: 16px 0;
      min-width: 280px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.2s;
    }

    .nav-links > li:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .nav-dropdown a {
      display: block;
      padding: 12px 24px;
      color: var(--gray-70);
      font-size: 15px;
      font-weight: 500;
      transition: all 0.15s;
    }

    .nav-dropdown a:hover {
      background: var(--gray-05);
      color: var(--onetrack-red);
    }

    .nav-dropdown-section {
      padding: 10px 24px 6px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--gray-50);
    }

    .nav-dropdown-section:not(:first-child) {
      margin-top: 12px;
      border-top: 1px solid var(--gray-20);
      padding-top: 16px;
    }

    .nav-dropdown-featured {
      padding: 12px 24px;
      border-top: 1px solid var(--gray-10);
      margin-top: 8px;
    }

    .nav-dropdown-featured-label {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--onetrack-red);
      margin-bottom: 8px;
    }

    .nav-dropdown-featured a {
      padding: 8px 0;
      font-size: 13px;
      color: var(--gray-70);
    }

    .nav-dropdown-featured a:hover {
      background: transparent;
      color: var(--onetrack-red);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      padding: 14px 28px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
    }

    .btn-primary {
      background: var(--onetrack-red);
      color: white;
    }

    .btn-primary:hover { background: var(--deep-red); }

    .btn-secondary {
      background: var(--volt);
      color: var(--gray-100);
      border: 1px solid var(--volt);
      font-weight: 600;
    }

    .btn-secondary:hover {
      background: #c4e82f;
      border-color: #c4e82f;
    }

    .btn-outline {
      background: transparent;
      color: var(--gray-70);
      border: 1px solid var(--gray-30);
    }

    .btn-outline:hover {
      border-color: var(--onetrack-red);
      color: var(--onetrack-red);
    }

    /* ===========================================
       HERO SECTION - Reusable Component
       Use class="hero" on section element
       =========================================== */
    .hero {
      min-height: 85vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      text-align: left;
      padding: 200px 48px 140px 80px;
      background: var(--gray-100);
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.3;
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(22, 22, 22, 0.95) 0%, rgba(22, 22, 22, 0.7) 50%, rgba(22, 22, 22, 0.4) 100%);
    }

    /* Hero background image variant (alternative to .hero-bg) */
    .hero-bg-image {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: cover;
      background-position: right top;
      z-index: 0;
    }

    .hero-bg-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(22, 22, 22, 0.7);
      z-index: 1;
    }

    .hero-glow {
      position: absolute;
      width: 1000px;
      height: 1000px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(226, 0, 0, 0.15) 0%, transparent 60%);
      filter: blur(120px);
      top: -300px;
      right: -300px;
      z-index: 2;
      pointer-events: none;
    }

    /* Volt/green glow variant */
    .hero-glow--volt {
      background: radial-gradient(circle, rgba(216, 255, 52, 0.2) 0%, transparent 60%);
    }

    /* Animated glow variant */
    .hero-glow--animated {
      animation: pulse-glow 4s ease-in-out infinite;
    }

    @keyframes pulse-glow {
      0%, 100% { transform: scale(1); opacity: 0.6; }
      50% { transform: scale(1.1); opacity: 0.9; }
    }

    .hero-inner {
      max-width: 800px;
      margin: 0;
      position: relative;
      z-index: 10;
    }

    .hero-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--volt);
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: 56px;
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 24px;
      color: white;
    }

    .hero-title strong {
      font-weight: 600;
    }

    .hero-subtitle {
      font-size: 20px;
      color: var(--gray-30);
      max-width: 700px;
      margin: 0 0 40px 0;
      line-height: 1.6;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
      justify-content: flex-start;
    }

    .hero-stats {
      display: flex;
      gap: 48px;
      justify-content: flex-start;
      padding-top: 48px;
      margin-top: 48px;
      border-top: 1px solid var(--gray-80);
    }

    .hero-stat {
      text-align: left;
    }

    .hero-stat-value {
      font-size: 48px;
      font-weight: 300;
      color: white;
      line-height: 1;
    }

    .hero-stat-value span {
      color: var(--volt);
    }

    .hero-stat-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gray-50);
      margin-top: 8px;
    }

    /* Hero responsive */
    @media (max-width: 768px) {
      .hero {
        padding: 140px 24px 80px 24px;
        min-height: auto;
      }
      .hero-title { font-size: 36px; }
      .hero-subtitle { font-size: 16px; }
      .hero-cta { flex-direction: column; }
      .hero-stats { flex-direction: column; gap: 24px; }
      .hero-stat-value { font-size: 36px; }
    }

    /* Product Tour Modal */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      padding: 20px;
    }

    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .modal-container {
      background: white;
      border-radius: 12px;
      max-width: 900px;
      width: 100%;
      max-height: 90vh;
      overflow: hidden;
      transform: translateY(20px) scale(0.95);
      transition: transform 0.3s ease;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      display: flex;
    }

    .modal-overlay.active .modal-container {
      transform: translateY(0) scale(1);
    }

    .modal-image-side {
      flex: 1;
      background: var(--onetrack-red);
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      gap: 16px;
    }

    .modal-image-tagline {
      color: white;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .modal-product-preview {
      width: 100%;
      max-width: 380px;
      background: var(--gray-100);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .modal-video-views {
      display: flex;
      gap: 8px;
      padding: 12px;
    }

    .modal-video-screenshot {
      flex: 1;
      border-radius: 6px;
      overflow: hidden;
      background: var(--gray-90);
      position: relative;
    }

    .modal-video-screenshot img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      display: block;
    }

    .modal-video-label {
      position: absolute;
      top: 6px;
      left: 6px;
      background: var(--onetrack-red);
      color: white;
      font-size: 9px;
      font-weight: 600;
      padding: 2px 6px;
      border-radius: 3px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .modal-play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 28px;
      height: 28px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .modal-play-button::after {
      content: '';
      width: 0;
      height: 0;
      border-left: 8px solid var(--gray-90);
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      margin-left: 2px;
    }

    .modal-aion-stack {
      padding: 0 12px 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .modal-aion-card {
      background: white;
      border-radius: 6px;
      overflow: hidden;
    }

    .modal-aion-card.dark {
      background: var(--gray-80);
    }

    .modal-aion-card-header {
      background: var(--gray-100);
      color: white;
      padding: 5px 10px;
      font-size: 9px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .modal-aion-card.dark .modal-aion-card-header {
      background: var(--gray-80);
      border-bottom: 1px solid var(--gray-70);
    }

    .modal-aion-card-body {
      padding: 8px 10px;
    }

    .modal-aion-logo {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 4px;
    }

    .modal-aion-logo-icon {
      width: 16px;
      height: 16px;
      object-fit: contain;
      background: var(--gray-100);
      border-radius: 50%;
      padding: 2px;
    }

    .modal-aion-alert {
      color: var(--onetrack-red);
      font-size: 10px;
      font-weight: 600;
    }

    .modal-aion-insight-text {
      font-size: 10px;
      color: var(--gray-70);
      line-height: 1.4;
      margin: 0;
    }

    .modal-aion-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .modal-aion-list li {
      font-size: 10px;
      color: white;
      padding-left: 12px;
      position: relative;
      line-height: 1.5;
    }

    .modal-aion-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--onetrack-red);
    }

    .modal-content-side {
      flex: 1;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      position: relative;
      background: var(--gray-100);
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: transparent;
      border: none;
      width: 32px;
      height: 32px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s;
      opacity: 0.5;
    }

    .modal-close:hover {
      opacity: 1;
    }

    .modal-close svg {
      width: 24px;
      height: 24px;
      stroke: white;
      stroke-width: 2;
    }

    .modal-eyebrow {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--onetrack-red);
      margin-bottom: 16px;
    }

    .modal-eyebrow svg {
      width: 16px;
      height: 16px;
      fill: var(--onetrack-red);
    }

    .modal-title {
      font-size: 32px;
      font-weight: 700;
      color: white;
      line-height: 1.2;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: -0.02em;
    }

    .modal-subtitle {
      color: var(--gray-30);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 32px;
    }

    .modal-form-container {
      flex: 1;
    }

    /* HubSpot Form Styling */
    .modal-form-container .hs-form {
      font-family: 'IBM Plex Sans', sans-serif !important;
    }

    .modal-form-container .hs-form-field {
      margin-bottom: 16px;
    }

    .modal-form-container .hs-form label {
      font-size: 14px;
      font-weight: 500;
      color: white;
      margin-bottom: 6px;
      display: block;
    }

    .modal-form-container .hs-form input[type="text"],
    .modal-form-container .hs-form input[type="email"],
    .modal-form-container .hs-form input[type="tel"],
    .modal-form-container .hs-form select,
    .modal-form-container .hs-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--gray-70);
      border-radius: 6px;
      font-size: 15px;
      font-family: 'IBM Plex Sans', sans-serif;
      transition: border-color 0.2s, box-shadow 0.2s;
      background: var(--gray-90);
      color: white;
    }

    .modal-form-container .hs-form input::placeholder {
      color: var(--gray-50);
    }

    .modal-form-container .hs-form input:focus,
    .modal-form-container .hs-form select:focus,
    .modal-form-container .hs-form textarea:focus {
      outline: none;
      border-color: var(--onetrack-red);
      box-shadow: 0 0 0 3px rgba(226, 0, 0, 0.2);
    }

    .modal-form-container .hs-form .hs-button {
      width: 100%;
      background: var(--onetrack-red);
      color: white;
      border: none;
      padding: 16px 24px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s;
      font-family: 'IBM Plex Sans', sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .modal-form-container .hs-form .hs-button:hover {
      background: var(--deep-red);
    }

    .modal-form-container .hs-error-msgs {
      color: #ff6b6b;
      font-size: 13px;
      margin-top: 4px;
    }

    .modal-form-container .hs-form select {
      color: white;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c6c6c6' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
    }

    .modal-form-container .hs-form select option {
      background: var(--gray-90);
      color: white;
    }

    /* Responsive modal */
    @media (max-width: 768px) {
      .modal-container {
        flex-direction: column;
        max-height: 95vh;
        overflow-y: auto;
      }

      .modal-image-side {
        padding: 16px;
        min-height: auto;
      }

      .modal-product-preview {
        max-width: 320px;
      }

      .modal-video-screenshot img {
        height: 80px;
      }

      .modal-content-side {
        padding: 32px 24px;
      }

      .modal-title {
        font-size: 24px;
      }
    }

    /* ===========================================
       HOMEPAGE HERO - Full viewport with video
       =========================================== */
    .hero-homepage {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
      overflow: hidden;
      background: var(--gray-100);
    }

    .hero-homepage .hero-video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-homepage .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
      );
      z-index: 1;
    }

    .hero-homepage .hero-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      padding: 0 48px;
      margin-bottom: 120px; /* Space for logo bar */
    }

    .hero-homepage .hero-title {
      font-size: 72px;
      font-weight: 300;
      line-height: 1.05;
      margin-bottom: 24px;
      color: white;
      text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
    }

    .hero-homepage .hero-title strong {
      font-weight: 600;
    }

    .hero-homepage .hero-subtitle {
      font-size: 22px;
      color: rgba(255, 255, 255, 0.85);
      max-width: 680px;
      margin: 0 auto 40px;
      line-height: 1.6;
      text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
    }

    .hero-homepage .hero-cta {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-bottom: 32px;
    }

    .hero-homepage .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
    }

    .hero-homepage .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
      border-color: rgba(255, 255, 255, 0.4);
    }

    .hero-speed {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-speed-item {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
    }

    .hero-speed-item svg {
      color: var(--onetrack-red);
    }

    .hero-speed-divider {
      color: rgba(255, 255, 255, 0.4);
    }

    /* Floating Glassy Logo Bar */
    .hero-logo-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 20;
      padding: 0 48px 48px;
    }

    .hero-logo-bar-inner {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 0;
      padding: 28px 40px;
      max-width: 1100px;
      margin: 0 auto;
      overflow: hidden;
    }

    .hero-logo-label {
      text-align: center;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 20px;
    }

    .hero-logo-track {
      display: flex;
      animation: logo-scroll 25s linear infinite;
      width: max-content;
    }

    .hero-logo-track:hover {
      animation-play-state: paused;
    }

    .hero-logo-set {
      display: flex;
      gap: 48px;
      padding-right: 48px;
    }

    .hero-logo-item {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 50px;
    }

    .hero-logo-item img {
      height: 40px;
      width: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 0.75;
      transition: opacity 0.3s ease;
    }

    .hero-logo-item img:hover {
      opacity: 1;
    }

    /* Logos that are already white - don't double invert */
    .hero-logo-item img[src*="white"] {
      filter: none;
      opacity: 0.85;
    }

    .hero-logo-item img[src*="white"]:hover {
      opacity: 1;
    }

    /* Adjust specific logo sizes - make smaller ones larger */
    .hero-logo-item img[src*="wonderful"] {
      height: 52px;
    }

    .hero-logo-item img[src*="bigelow"] {
      height: 48px;
    }

    .hero-logo-item img[src*="church-dwight"] {
      height: 56px;
    }

    .hero-logo-item img[src*="hain-celestial"] {
      height: 46px;
    }

    @keyframes logo-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Legacy hero-audience and hero-solutions (keep for compatibility) */
    .hero-audience {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .hero-audience-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gray-100);
      color: white;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 10px 16px;
      border-radius: 4px;
    }

    .hero-audience-badge svg {
      opacity: 0.7;
    }

    .hero-solutions {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-solution-card {
      background: white;
      border: 1px solid var(--gray-20);
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-70);
      border-radius: 6px;
      box-shadow:
        0 1px 2px rgba(0,0,0,0.04),
        0 4px 8px rgba(0,0,0,0.04),
        0 8px 16px rgba(0,0,0,0.02);
      transition: all 0.2s ease;
      cursor: default;
    }

    .hero-solution-card:hover {
      transform: translateY(-2px);
      box-shadow:
        0 2px 4px rgba(0,0,0,0.06),
        0 8px 16px rgba(0,0,0,0.06),
        0 16px 32px rgba(0,0,0,0.04);
      border-color: var(--onetrack-red);
      color: var(--onetrack-red);
    }

    /* Legacy Logo Carousel (keep for other pages) */
    .logo-carousel {
      padding: 48px 0;
      background: white;
      border-bottom: 1px solid var(--gray-20);
      overflow: hidden;
    }

    .logo-carousel-label {
      text-align: center;
      font-size: 12px;
      color: var(--gray-50);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 32px;
    }

    .logo-track {
      display: flex;
      animation: scroll 30s linear infinite;
      width: max-content;
    }

    .logo-track:hover {
      animation-play-state: paused;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logo-set {
      display: flex;
      gap: 64px;
      padding: 0 32px;
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 40px;
      min-width: 120px;
      color: var(--gray-40);
      font-size: 14px;
      font-weight: 500;
      opacity: 0.6;
      transition: opacity 0.2s;
    }

    .logo-item:hover {
      opacity: 1;
    }

    /* Sensor Showcase Section */
    .sensor-section {
      position: relative;
      height: 300vh;
      background: var(--gray-100);
    }

    .sensor-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Glowing background effect */
    .sensor-glow {
      position: absolute;
      width: 700px;
      height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(226, 0, 0, 0.5) 0%, rgba(226, 0, 0, 0.2) 30%, rgba(226, 0, 0, 0.05) 50%, transparent 70%);
      filter: blur(80px);
      animation: pulse-glow 3s ease-in-out infinite;
    }

    .sensor-glow-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(216, 255, 52, 0.35) 0%, rgba(216, 255, 52, 0.1) 40%, transparent 60%);
      filter: blur(60px);
      transform: translate(80px, -80px);
      animation: pulse-glow-2 4s ease-in-out infinite;
    }

    .sensor-glow-3 {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(226, 0, 0, 0.6) 0%, transparent 60%);
      filter: blur(40px);
      transform: translate(-100px, 50px);
      animation: pulse-glow-3 2.5s ease-in-out infinite;
    }

    @keyframes pulse-glow {
      0%, 100% {
        transform: scale(1);
        opacity: 0.7;
      }
      50% {
        transform: scale(1.15);
        opacity: 1;
      }
    }

    @keyframes pulse-glow-2 {
      0%, 100% {
        transform: translate(80px, -80px) scale(1);
        opacity: 0.5;
      }
      50% {
        transform: translate(80px, -80px) scale(1.2);
        opacity: 0.8;
      }
    }

    @keyframes pulse-glow-3 {
      0%, 100% {
        transform: translate(-100px, 50px) scale(1);
        opacity: 0.6;
      }
      50% {
        transform: translate(-100px, 50px) scale(1.3);
        opacity: 0.9;
      }
    }

    /* Sensor image container */
    .sensor-image-container {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sensor-image {
      max-width: 650px;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 30px 80px rgba(0,0,0,0.6));
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Gradient overlay on sensor */
    .sensor-image-container::before {
      content: '';
      position: absolute;
      inset: -20%;
      background: linear-gradient(180deg, transparent 0%, transparent 60%, var(--gray-100) 100%);
      pointer-events: none;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.5s;
    }

    /* Facts that appear on scroll */
    .sensor-facts {
      position: absolute;
      z-index: 20;
      display: flex;
      flex-direction: column;
      gap: 24px;
      pointer-events: none;
    }

    .sensor-facts.left {
      left: 8%;
      top: 50%;
      transform: translateY(-50%);
      align-items: flex-start;
    }

    .sensor-facts.right {
      right: 8%;
      top: 50%;
      transform: translateY(-50%);
      align-items: flex-end;
    }

    .sensor-fact {
      opacity: 0;
      transform: translateX(-30px);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .sensor-facts.right .sensor-fact {
      transform: translateX(30px);
      text-align: right;
    }

    .sensor-fact.active {
      opacity: 1;
      transform: translateX(0);
    }

    .sensor-fact-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--volt);
      margin-bottom: 4px;
    }

    .sensor-fact-value {
      font-size: 28px;
      font-weight: 300;
      color: white;
      line-height: 1.2;
    }

    /* Install photo section */
    .sensor-install-container {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sensor-install-container.active {
      opacity: 1;
    }

    .sensor-install-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7;
    }

    .sensor-install-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(22,22,22,0.3) 0%, rgba(22,22,22,0.7) 50%, rgba(22,22,22,0.95) 100%);
    }

    .sensor-install-text {
      position: absolute;
      bottom: 15%;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 10;
    }

    .sensor-install-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--volt);
      margin-bottom: 12px;
    }

    .sensor-install-headline {
      font-size: 48px;
      font-weight: 300;
      color: white;
      line-height: 1.2;
    }

    .sensor-install-headline strong {
      font-weight: 600;
    }

    .sensor-install-subtext {
      font-size: 18px;
      color: var(--gray-30);
      margin-top: 16px;
    }

    /* Section label */
    .sensor-label {
      position: absolute;
      top: 32px;
      left: 50%;
      transform: translateX(-50%);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray-50);
      z-index: 30;
    }

    /* Results Section - Consolidated */
    .results-section {
      padding: 100px 48px;
      background: white;
    }

    .results-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .results-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .results-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--onetrack-red);
      margin-bottom: 16px;
    }

    .results-title {
      font-size: 40px;
      font-weight: 300;
      color: var(--gray-100);
      margin-bottom: 16px;
    }

    .results-subtitle {
      font-size: 18px;
      color: var(--gray-50);
      max-width: 600px;
      margin: 0 auto;
    }

    .results-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 48px;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    .results-grid .result-card {
      flex: 0 1 calc(33.333% - 14px);
      min-width: 300px;
    }

    .result-card {
      background: var(--gray-05);
      border-radius: 16px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid transparent;
    }

    .result-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(226, 0, 0, 0.12);
      border-color: var(--onetrack-red);
    }

    .result-card.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .result-card.in-view:hover {
      transform: translateY(-8px);
    }

    /* Staggered entrance for cards */
    .result-card:nth-child(1) { transition-delay: 0.0s; }
    .result-card:nth-child(2) { transition-delay: 0.1s; }
    .result-card:nth-child(3) { transition-delay: 0.2s; }
    .result-card:nth-child(4) { transition-delay: 0.3s; }
    .result-card:nth-child(5) { transition-delay: 0.4s; }
    .result-card:nth-child(6) { transition-delay: 0.5s; }

    .result-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--onetrack-red) 0%, #ff6b6b 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    }

    .result-card.in-view::before {
      transform: scaleX(1);
    }

    .result-value {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 48px;
      font-weight: 700;
      color: var(--onetrack-red);
      line-height: 1;
      margin-bottom: 8px;
    }

    .result-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--gray-70);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 16px;
    }

    .result-description {
      font-size: 15px;
      color: var(--gray-50);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .result-company {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: var(--gray-70);
      padding: 6px 12px;
      background: white;
      border-radius: 20px;
    }

    .result-company::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--volt);
      border-radius: 50%;
    }

    /* Results footer stats */
    .results-footer {
      display: flex;
      justify-content: center;
      gap: 64px;
      padding-top: 48px;
      border-top: 1px solid var(--gray-10);
    }

    .results-stat {
      text-align: center;
    }

    .results-stat-value {
      font-size: 32px;
      font-weight: 600;
      color: var(--gray-100);
      margin-bottom: 4px;
    }

    .results-stat-label {
      font-size: 14px;
      color: var(--gray-50);
    }

    /* Strategic Section (unused - kept for reference) */
    .strategic-section {
      padding: 120px 48px;
      background: var(--gray-100);
    }

    .strategic-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .strategic-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .strategic-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--volt);
      margin-bottom: 16px;
    }

    .strategic-headline {
      font-size: 36px;
      font-weight: 300;
      color: white;
      margin-bottom: 16px;
    }

    .strategic-subhead {
      font-size: 18px;
      color: var(--gray-50);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .strategic-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .strategic-card-full {
      background: var(--gray-90);
      border: 1px solid var(--gray-80);
      padding: 32px;
      transition: all 0.2s;
    }

    .strategic-card-full:hover {
      border-color: var(--volt);
    }

    .strategic-card-icon {
      width: 56px;
      height: 56px;
      background: var(--gray-80);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--volt);
    }

    .strategic-card-title {
      font-size: 20px;
      font-weight: 600;
      color: white;
      margin-bottom: 12px;
    }

    .strategic-card-desc {
      font-size: 15px;
      color: var(--gray-30);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .strategic-card-example {
      padding-top: 16px;
      border-top: 1px solid var(--gray-80);
      font-size: 14px;
    }

    .strategic-card-example-label {
      color: var(--gray-50);
      margin-right: 8px;
    }

    .strategic-card-example-text {
      color: var(--volt);
      font-weight: 500;
    }

    /* Vision Section */
    .vision-section {
      padding: 100px 48px;
      background: var(--gray-05);
    }

    .vision-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .vision-two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .vision-text {
      padding-right: 24px;
    }

    .vision-intro {
      font-size: 36px;
      font-weight: 700;
      color: var(--gray-100);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .vision-intro-sub {
      font-size: 20px;
      color: var(--gray-70);
      line-height: 1.5;
    }

    .vision-terminal-wrapper {
      position: relative;
    }

    .vision-postit {
      position: absolute;
      top: -24px;
      right: -16px;
      background: #ffeb3b;
      padding: 20px 24px;
      transform: rotate(6deg);
      box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .vision-postit span {
      font-family: 'Caveat', 'Segoe Script', 'Bradley Hand', cursive;
      font-size: 28px;
      font-weight: 700;
      color: var(--gray-100);
      line-height: 1.1;
    }

    .vision-postit::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.02) 100%);
    }

    .vision-terminal {
      background: #0a0a0a;
      border: 2px solid #333;
      border-radius: 8px;
      padding: 24px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    /* Green screen terminal mockup */
    .terminal-mockup {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      line-height: 1.6;
      color: #00ff00;
      background: #0a0a0a;
    }

    .terminal-mockup .header {
      color: #00ff00;
      border-bottom: 1px solid #004400;
      padding-bottom: 8px;
      margin-bottom: 12px;
      font-size: 10px;
    }

    .terminal-mockup .row {
      display: flex;
      gap: 16px;
      margin-bottom: 4px;
    }

    .terminal-mockup .label {
      color: #008800;
      width: 80px;
      flex-shrink: 0;
    }

    .terminal-mockup .value {
      color: #00ff00;
    }

    .terminal-mockup .highlight {
      background: #00ff00;
      color: #0a0a0a;
      padding: 0 4px;
    }

    .terminal-mockup .divider {
      border-top: 1px solid #004400;
      margin: 12px 0;
    }

    .terminal-mockup .footer {
      color: #006600;
      font-size: 10px;
      margin-top: 12px;
    }

    /* Intelligence Layer Section */
    .intelligence-section {
      padding: 120px 48px;
      background: var(--gray-100);
      color: white;
    }

    .intelligence-inner {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .intelligence-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--volt);
      margin-bottom: 32px;
    }

    .intelligence-statement {
      font-size: 32px;
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 0;
    }

    .intelligence-statement strong {
      font-weight: 500;
      color: var(--volt);
    }

    /* Video Section */
    .video-section {
      padding: 120px 48px;
      background: var(--gray-05);
    }

    .video-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .video-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .video-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--onetrack-red);
      margin-bottom: 16px;
    }

    .video-title {
      font-size: 32px;
      font-weight: 300;
      color: var(--gray-100);
      margin-bottom: 12px;
    }

    .video-description {
      font-size: 16px;
      color: var(--gray-50);
      max-width: 600px;
      margin: 0 auto;
    }

    .video-container {
      margin-bottom: 40px;
      box-shadow: 0 24px 80px rgba(0,0,0,0.12);
    }

    .video-wrapper {
      padding: 56.25% 0 0 0;
      position: relative;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .video-quote {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }

    .video-quote-text {
      font-size: 22px;
      font-weight: 300;
      line-height: 1.5;
      color: var(--gray-100);
    }

    .video-quote-text::before { content: '"'; color: var(--onetrack-red); }
    .video-quote-text::after { content: '"'; color: var(--onetrack-red); }

    .video-quote-attribution {
      text-align: right;
    }

    .video-quote-name {
      font-size: 16px;
      font-weight: 600;
      color: var(--gray-100);
    }

    .video-quote-title {
      font-size: 14px;
      color: var(--gray-50);
    }

    .video-quote-company {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      color: var(--onetrack-red);
      margin-top: 4px;
    }

    .video-cta {
      text-align: center;
      margin-top: 40px;
    }

    /* Flow Sections - Three Sticky Sections */
    .flow-wrapper {
      background: var(--gray-100);
    }

    .flow-section {
      min-height: 150vh;
      position: relative;
    }

    .flow-sticky {
      position: sticky;
      top: 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 60px 48px;
    }

    .flow-inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    /* Section Header */
    .flow-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 32px;
    }

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

    .btn-volt {
      background: var(--volt);
      color: var(--gray-100);
      padding: 12px 20px;
      border-radius: 0;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.2s;
      position: relative;
    }

    .btn-volt::after {
      content: '';
      position: absolute;
      top: -6px;
      right: -6px;
      width: 12px;
      height: 12px;
      background: var(--volt);
      clip-path: polygon(0 0, 100% 0, 100% 100%);
    }

    .btn-volt:hover {
      background: #c4e82f;
    }

    .btn-volt:hover::after {
      background: #c4e82f;
    }

    .flow-icon {
      width: 48px;
      height: 48px;
      background: var(--volt);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gray-100);
    }

    .flow-title {
      font-size: 32px;
      font-weight: 600;
      color: white;
    }

    /* Three Column Layout */
    .flow-columns {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr;
      gap: 0;
      align-items: stretch;
    }

    .flow-column {
      background: var(--gray-90);
      border: 1px solid var(--gray-80);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .flow-column-header {
      padding: 16px 20px;
      border-bottom: 1px solid var(--gray-80);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .flow-column-number {
      width: 24px;
      height: 24px;
      background: var(--volt);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: var(--gray-100);
    }

    .flow-column-label {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--volt);
    }

    .flow-column-body {
      flex: 1;
      padding: 16px;
      display: flex;
      flex-direction: column;
    }

    /* Arrow Connector */
    .flow-connector {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      color: var(--gray-60);
    }

    .flow-connector svg {
      width: 24px;
      height: 24px;
    }

    /* Capture Column */
    .flow-media-container {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 280px;
      background: var(--gray-95);
      border-radius: 8px;
      overflow: hidden;
    }

    .flow-media {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Understand Column */
    .flow-alert-badge {
      display: inline-block;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      background: var(--onetrack-red);
      color: white;
      padding: 6px 12px;
      border-radius: 4px;
      margin-bottom: 16px;
      align-self: flex-start;
    }

    .flow-alert-badge.severe {
      background: #ff3b3b;
      animation: pulse-badge 2s ease-in-out infinite;
    }

    @keyframes pulse-badge {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .flow-alert-content {
      flex: 1;
      background: var(--gray-80);
      border-radius: 8px;
      padding: 20px;
    }

    .flow-alert-title {
      font-size: 16px;
      font-weight: 600;
      color: white;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .flow-alert-detail {
      font-size: 14px;
      color: var(--gray-30);
      line-height: 1.5;
    }

    /* Automate Column */
    .flow-agent-items {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .flow-agent-item {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 14px;
      color: var(--gray-40);
      padding: 14px 18px;
      background: var(--gray-85);
      border-radius: 8px;
      transition: all 0.3s ease;
      border: 1px solid var(--gray-80);
    }

    .flow-agent-item.completed {
      color: white;
      background: var(--gray-80);
    }

    .flow-agent-item.active {
      color: white;
      background: linear-gradient(90deg, rgba(208, 255, 0, 0.1) 0%, var(--gray-80) 100%);
      border-color: var(--volt);
    }

    .flow-agent-check {
      color: var(--volt);
      font-size: 18px;
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(208, 255, 0, 0.15);
      border-radius: 50%;
    }

    .flow-agent-spinner {
      color: var(--volt);
      font-size: 16px;
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Entrance animations for columns */
    .flow-column {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .flow-connector {
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .flow-section.in-view .flow-column:nth-child(1) {
      opacity: 1;
      transform: translateY(0);
    }

    .flow-section.in-view .flow-connector:nth-child(2) {
      opacity: 1;
      transition-delay: 0.3s;
    }

    .flow-section.in-view .flow-column:nth-child(3) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.4s;
    }

    .flow-section.in-view .flow-connector:nth-child(4) {
      opacity: 1;
      transition-delay: 0.6s;
    }

    .flow-section.in-view .flow-column:nth-child(5) {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.7s;
    }

    /* Section divider */
    .flow-section:not(:last-child)::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 1px;
      background: var(--gray-80);
    }

    /* Productivity Section - Labor Dashboard (Gantt) */
    .labor-dashboard {
      background: var(--gray-85);
      border-radius: 8px;
      padding: 16px;
      font-size: 12px;
    }

    .labor-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--gray-80);
    }

    .labor-title {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: var(--volt);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .labor-time {
      font-size: 11px;
      color: var(--gray-50);
    }

    .labor-hours {
      display: flex;
      gap: 2px;
      margin-bottom: 12px;
      padding-left: 70px;
    }

    .labor-hour {
      flex: 1;
      text-align: center;
      font-size: 9px;
      color: var(--gray-50);
      font-family: 'IBM Plex Mono', monospace;
    }

    .labor-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
      padding: 6px 8px;
      border-radius: 4px;
      transition: all 0.2s ease;
    }

    .labor-row.highlighted {
      background: rgba(226, 0, 0, 0.15);
      border: 1px solid var(--onetrack-red);
    }

    .labor-name {
      width: 60px;
      font-size: 11px;
      color: white;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .labor-row.highlighted .labor-name {
      color: white;
      font-weight: 600;
    }

    .labor-bars {
      flex: 1;
      display: flex;
      gap: 2px;
    }

    .labor-bar {
      flex: 1;
      height: 20px;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .labor-bar.green { background: linear-gradient(180deg, #4ade80 0%, #22c55e 100%); }
    .labor-bar.yellow { background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%); }
    .labor-bar.red { background: linear-gradient(180deg, #f87171 0%, #ef4444 100%); }
    .labor-bar.gray { background: var(--gray-70); opacity: 0.3; }

    .labor-score {
      width: 40px;
      text-align: right;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: white;
    }

    .labor-row.highlighted .labor-score {
      color: var(--onetrack-red);
      font-weight: 600;
    }

    .labor-flag {
      font-size: 10px;
      color: var(--onetrack-red);
      margin-left: 4px;
    }

    /* Productivity Section - Coordinate & Optimize with Heatmap */
    .heatmap-container {
      position: relative;
      background: var(--gray-85);
      border-radius: 8px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .heatmap-background {
      position: absolute;
      inset: 0;
      padding: 12px;
      opacity: 0.6;
    }

    .warehouse-grid {
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: repeat(4, 1fr);
      gap: 4px;
    }

    .warehouse-zone {
      border-radius: 3px;
      position: relative;
    }

    .warehouse-zone.cool { background: rgba(34, 197, 94, 0.3); }
    .warehouse-zone.warm { background: rgba(251, 191, 36, 0.4); }
    .warehouse-zone.hot { background: rgba(239, 68, 68, 0.5); }
    .warehouse-zone.hotspot {
      background: rgba(239, 68, 68, 0.7);
      animation: pulse-zone 2s ease-in-out infinite;
    }
    .warehouse-zone.aisle { background: var(--gray-80); opacity: 0.5; }

    @keyframes pulse-zone {
      0%, 100% { opacity: 0.7; }
      50% { opacity: 1; }
    }

    .warehouse-zone-label {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 8px;
      font-family: 'IBM Plex Mono', monospace;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
    }

    .alert-overlay {
      position: relative;
      z-index: 10;
      padding: 12px;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .alert-panel {
      background: var(--gray-85);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-80);
    }

    .alert-panel-header {
      background: var(--gray-80);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      border-bottom: 1px solid var(--gray-70);
    }

    .alert-panel-icon {
      width: 24px;
      height: 24px;
      background: var(--onetrack-red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
    }

    .alert-panel-title {
      font-size: 12px;
      font-weight: 600;
      color: white;
    }

    .alert-panel-count {
      margin-left: auto;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: var(--onetrack-red);
      background: rgba(226, 0, 0, 0.2);
      padding: 3px 7px;
      border-radius: 10px;
    }

    .alert-item {
      padding: 16px;
      border-bottom: 1px solid var(--gray-80);
      transition: all 0.2s ease;
    }

    .alert-item:last-child {
      border-bottom: none;
    }

    .alert-item.primary {
      background: rgba(226, 0, 0, 0.15);
      border-left: 3px solid var(--onetrack-red);
    }

    .alert-item-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    .alert-priority {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 9px;
      font-weight: 600;
      padding: 3px 6px;
      border-radius: 2px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .alert-priority.urgent {
      background: var(--onetrack-red);
      color: white;
    }

    .alert-priority.warning {
      background: #f59e0b;
      color: var(--gray-100);
    }

    .alert-employee {
      font-size: 13px;
      font-weight: 600;
      color: white;
    }

    .alert-time {
      margin-left: auto;
      font-size: 11px;
      color: var(--gray-30);
    }

    .alert-detail {
      font-size: 12px;
      color: white;
      line-height: 1.4;
      opacity: 0.85;
    }

    .alert-action {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-top: 8px;
      font-size: 11px;
      color: var(--volt);
      cursor: pointer;
    }

    .heatmap-legend {
      display: flex;
      gap: 12px;
      margin-top: auto;
      padding-top: 8px;
      font-size: 9px;
      color: var(--gray-30);
    }

    .heatmap-legend-item {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .heatmap-legend-dot {
      width: 8px;
      height: 8px;
      border-radius: 2px;
    }

    .heatmap-legend-dot.green { background: #22c55e; }
    .heatmap-legend-dot.yellow { background: #fbbf24; }
    .heatmap-legend-dot.red { background: #ef4444; }

    /* Quality Section - Claim Email */
    .claim-email {
      background: var(--gray-85);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-80);
    }

    .claim-email-header {
      background: var(--gray-80);
      padding: 10px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--gray-70);
    }

    .claim-email-badge {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.05em;
      background: #f59e0b;
      color: var(--gray-100);
      padding: 4px 8px;
      border-radius: 3px;
    }

    .claim-email-time {
      font-size: 11px;
      color: var(--gray-40);
    }

    .claim-email-from,
    .claim-email-subject {
      padding: 8px 14px;
      border-bottom: 1px solid var(--gray-80);
      font-size: 12px;
      display: flex;
      gap: 8px;
    }

    .claim-email-label {
      color: var(--gray-50);
      min-width: 36px;
    }

    .claim-email-value {
      color: white;
    }

    .claim-email-body {
      padding: 14px;
      font-size: 13px;
      color: white;
      line-height: 1.5;
      border-bottom: 1px solid var(--gray-80);
    }

    .claim-email-meta {
      padding: 10px 14px;
      font-size: 11px;
      color: var(--gray-50);
      display: flex;
      gap: 8px;
    }

    /* Quality Section - Investigate Chat */
    .investigate-chat {
      background: var(--gray-85);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-80);
    }

    .investigate-chat-header {
      background: var(--gray-80);
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--gray-70);
    }

    .investigate-chat-body {
      padding: 12px;
    }

    .investigate-results {
      margin: 10px 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .investigate-result {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      background: var(--gray-80);
      border-radius: 6px;
      font-size: 12px;
      color: var(--gray-30);
    }

    .investigate-result svg {
      color: var(--gray-50);
      flex-shrink: 0;
    }

    .investigate-result.highlighted {
      background: rgba(208, 255, 0, 0.1);
      border: 1px solid var(--volt);
      color: white;
    }

    .investigate-result.highlighted svg {
      color: var(--volt);
    }

    .investigate-result-time {
      margin-left: auto;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      color: var(--gray-50);
    }

    /* Quality Section - Resolve Panel */
    .resolve-panel {
      background: var(--gray-85);
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-80);
    }

    .resolve-status {
      background: rgba(34, 197, 94, 0.15);
      padding: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--gray-80);
    }

    .resolve-status-icon {
      width: 32px;
      height: 32px;
      background: #22c55e;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 16px;
      font-weight: 700;
    }

    .resolve-status-title {
      font-size: 14px;
      font-weight: 600;
      color: white;
    }

    .resolve-status-time {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      color: #22c55e;
    }

    .resolve-video {
      padding: 0;
      border-bottom: 1px solid var(--gray-80);
      background: #000;
      position: relative;
    }

    .resolve-video-placeholder {
      background: var(--gray-90);
      border-radius: 6px;
      height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--gray-50);
      font-size: 12px;
      border: 1px dashed var(--gray-70);
    }

    .resolve-video-placeholder svg {
      color: var(--gray-60);
    }

    .resolve-video-img {
      width: 100%;
      height: auto;
      display: block;
      padding: 12px;
      object-fit: contain;
    }

    .resolve-video-label {
      padding: 8px 12px 10px;
      font-size: 11px;
      color: var(--gray-40);
      text-align: center;
      background: rgba(0,0,0,0.6);
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }

    .resolve-action {
      padding: 12px 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--volt);
    }

    /* Productivity Section - Coach Chat */
    .coach-chat {
      background: var(--gray-85);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 380px;
    }

    .coach-chat-header {
      background: var(--gray-80);
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--gray-70);
    }

    .coach-avatar {
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, var(--volt) 0%, #9ef01a 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: var(--gray-100);
    }

    .coach-name {
      font-size: 12px;
      font-weight: 600;
      color: white;
    }

    .coach-status {
      font-size: 10px;
      color: var(--volt);
      margin-left: auto;
    }

    .coach-messages {
      flex: 1;
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      overflow-y: auto;
    }

    .coach-msg {
      max-width: 90%;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.4;
    }

    .coach-msg.agent {
      background: var(--gray-80);
      color: var(--gray-20);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }

    .coach-msg.user {
      background: var(--onetrack-red);
      color: white;
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }

    .coach-msg strong {
      color: white;
      font-weight: 600;
    }

    .coach-video-embed {
      margin-top: 8px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--gray-70);
    }

    .coach-video-embed img {
      width: 100%;
      height: auto;
      display: block;
    }

    .coach-video-label {
      background: var(--gray-90);
      padding: 6px 10px;
      font-size: 10px;
      color: var(--gray-40);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .coach-video-label svg {
      color: var(--volt);
    }

    .coach-input {
      padding: 12px;
      border-top: 1px solid var(--gray-80);
      display: flex;
      gap: 8px;
    }

    .coach-input input {
      flex: 1;
      background: var(--gray-90);
      border: 1px solid var(--gray-70);
      border-radius: 20px;
      padding: 8px 16px;
      font-size: 12px;
      color: white;
      outline: none;
    }

    .coach-input input::placeholder {
      color: var(--gray-50);
    }

    .coach-input button {
      width: 32px;
      height: 32px;
      background: var(--volt);
      border: none;
      border-radius: 50%;
      color: var(--gray-100);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .flow-placeholder-icon {
      font-size: 48px;
      color: var(--gray-70);
      margin-bottom: 12px;
    }

    .flow-placeholder-text {
      font-size: 14px;
      color: var(--gray-50);
    }

    /* Alert placeholder */
    .flow-placeholder.alert {
      align-items: stretch;
      justify-content: flex-start;
      background: var(--gray-90);
    }

    .flow-alert-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .flow-alert-badge {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.1em;
      background: var(--onetrack-red);
      color: white;
      padding: 4px 8px;
      border-radius: 2px;
    }

    .flow-alert-badge.severe {
      background: #ff3b3b;
      animation: pulse-badge 2s ease-in-out infinite;
    }

    @keyframes pulse-badge {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .flow-alert-time {
      font-size: 12px;
      color: var(--gray-50);
    }

    .flow-alert-body {
      padding: 16px;
      background: var(--gray-80);
      border-radius: 4px;
    }

    .flow-alert-title {
      font-size: 16px;
      font-weight: 600;
      color: white;
      margin-bottom: 4px;
    }

    .flow-alert-detail {
      font-size: 13px;
      color: var(--gray-30);
    }

    /* Agent placeholder */
    .flow-placeholder.agent {
      align-items: stretch;
      justify-content: flex-start;
      background: var(--gray-90);
    }

    .flow-agent-header {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--volt);
      margin-bottom: 16px;
    }

    .flow-agent-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--gray-30);
      padding: 8px 0;
      border-bottom: 1px solid var(--gray-80);
    }

    .flow-agent-item:last-child {
      border-bottom: none;
    }

    .flow-agent-item.active {
      color: white;
    }

    .flow-agent-check {
      color: var(--volt);
    }

    .flow-agent-spinner {
      color: var(--volt);
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }


    /* Flow transitions */
    .flow-media-wrapper,
    #flow-alert,
    #flow-agent {
      transition: opacity 0.4s ease;
    }

    .flow-fade {
      opacity: 0.3;
    }

    /* Animation states */
    .flow-alert-header,
    .flow-alert-body {
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .flow-hidden {
      opacity: 0;
      transform: translateY(10px);
    }

    .flow-agent-item {
      transition: opacity 0.3s ease;
    }

    .flow-agent-item.pending {
      opacity: 0.3;
    }

    .flow-agent-item .flow-agent-check {
      transition: transform 0.3s ease;
    }

    .flow-agent-item.checking .flow-agent-check {
      transform: scale(1.3);
    }

    /* AI Section */
    .ai-section {
      padding: 120px 48px;
      background: var(--gray-100);
      color: white;
    }

    .ai-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 64px;
      align-items: center;
    }

    .ai-content {
      padding-right: 16px;
    }

    .ai-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--volt);
      margin-bottom: 24px;
    }

    .ai-title {
      font-size: 36px;
      font-weight: 300;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .ai-subtitle {
      font-size: 17px;
      color: var(--gray-30);
      line-height: 1.7;
    }

    .ai-email {
      background: var(--gray-90);
      border: 1px solid var(--gray-80);
      font-size: 14px;
      border-radius: 4px;
      overflow: hidden;
    }

    .email-toolbar {
      background: var(--gray-80);
      padding: 8px 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      border-bottom: 1px solid var(--gray-70);
    }

    .email-toolbar-btn {
      font-size: 11px;
      color: var(--gray-50);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .email-toolbar-title {
      font-size: 11px;
      color: var(--gray-50);
      margin-left: auto;
      font-family: 'IBM Plex Mono', monospace;
    }

    .email-header {
      padding: 16px 20px;
      border-bottom: 1px solid var(--gray-80);
    }

    .email-field {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
      font-size: 13px;
    }

    .email-field:last-child {
      margin-bottom: 0;
    }

    .email-field-label {
      color: var(--gray-50);
      width: 60px;
      flex-shrink: 0;
    }

    .email-field-value {
      color: white;
    }

    .email-field-value.highlight {
      color: var(--volt);
    }

    .email-avatar {
      width: 28px;
      height: 28px;
      background: var(--volt);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 600;
      color: var(--gray-100);
      flex-shrink: 0;
    }

    .email-body {
      padding: 20px;
      color: var(--gray-30);
      line-height: 1.7;
    }

    .email-body p {
      margin-bottom: 16px;
    }

    .email-body p:last-child {
      margin-bottom: 0;
    }

    .email-highlight {
      color: var(--volt);
      font-weight: 500;
    }

    .email-reply {
      background: var(--gray-80);
      padding: 12px 16px;
      border-top: 1px solid var(--gray-70);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .email-reply-input {
      flex: 1;
      background: var(--gray-90);
      border: 1px solid var(--gray-70);
      padding: 10px 14px;
      color: var(--gray-30);
      font-size: 13px;
      border-radius: 4px;
    }

    .email-reply-btn {
      background: var(--volt);
      color: var(--gray-100);
      border: none;
      padding: 10px 16px;
      font-size: 12px;
      font-weight: 600;
      border-radius: 4px;
      cursor: pointer;
    }

    /* Enterprise Section */
    .enterprise-section {
      padding: 120px 48px;
      background: var(--gray-05);
    }

    .enterprise-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .enterprise-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .enterprise-eyebrow {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--onetrack-red);
      margin-bottom: 16px;
    }

    .enterprise-title {
      font-size: 36px;
      font-weight: 300;
      color: var(--gray-100);
      margin-bottom: 16px;
    }

    .enterprise-subtitle {
      font-size: 18px;
      color: var(--gray-50);
      max-width: 600px;
      margin: 0 auto;
    }

    .enterprise-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 48px;
    }

    .enterprise-pillar {
      background: white;
      border: 1px solid var(--gray-20);
      padding: 32px 24px;
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .enterprise-pillar:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.08);
      border-color: var(--onetrack-red);
    }

    .enterprise-pillar-icon {
      width: 48px;
      height: 48px;
      background: var(--gray-05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--onetrack-red);
    }

    .enterprise-pillar-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--gray-100);
      margin-bottom: 16px;
    }

    .enterprise-pillar-list {
      list-style: none;
      font-size: 14px;
      color: var(--gray-70);
      line-height: 1.8;
    }

    .enterprise-pillar-list li::before {
      content: '✓';
      color: var(--onetrack-red);
      margin-right: 8px;
      font-size: 12px;
    }

    .enterprise-badges {
      display: flex;
      justify-content: center;
      gap: 32px;
      padding-top: 48px;
      border-top: 1px solid var(--gray-20);
    }

    .enterprise-badge {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--gray-70);
    }

    .enterprise-badge-icon {
      font-size: 16px;
    }

    /* CTA Section */
    .cta-section {
      padding: 120px 48px;
      background: var(--gray-100);
      text-align: center;
    }

    .cta-inner {
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 40px;
      font-weight: 300;
      color: white;
      margin-bottom: 20px;
    }

    .cta-subtitle {
      font-size: 18px;
      color: var(--gray-50);
      margin-bottom: 40px;
    }

    .cta-details {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
      color: var(--gray-50);
      margin-top: 24px;
    }

    .cta-note {
      font-size: 14px;
      color: var(--gray-50);
      margin-top: 20px;
    }

    /* Footer */
    .footer {
      background: var(--gray-100);
      position: relative;
      overflow: hidden;
      padding: 80px 48px 40px;
    }

    .footer-logo-bg {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 140%;
      max-width: 1800px;
      pointer-events: none;
      z-index: 0;
    }

    .footer-logo-bg img {
      width: 100%;
      height: auto;
      opacity: 0.04;
      mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 70%);
      -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 70%);
    }

    .footer-fade {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to bottom, transparent 0%, rgba(22,22,22,0.3) 100%);
      pointer-events: none;
      z-index: 1;
    }

    .footer-content {
      position: relative;
      z-index: 10;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 40px;
    }

    .footer-brand {
      max-width: 240px;
    }

    .footer-brand p {
      font-size: 14px;
      color: var(--gray-50);
      line-height: 1.6;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-contact,
    .footer-social {
      margin-top: 16px;
    }

    .footer-contact h4,
    .footer-social h4 {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gray-50);
      margin-bottom: 10px;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    .footer-contact-icon {
      width: 16px;
      height: 16px;
      min-width: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-contact-icon svg {
      width: 14px;
      height: 14px;
      fill: #E53935;
    }

    .footer-contact-item a,
    .footer-contact-item span {
      color: var(--gray-30);
      text-decoration: none;
      font-size: 12px;
      line-height: 1.4;
    }

    .footer-contact-item a:hover {
      color: white;
    }

    .footer-col h4 {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--gray-50);
      margin-bottom: 14px;
    }

    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 8px; }
    .footer-col a {
      color: var(--gray-30);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: white; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 32px;
      border-top: 1px solid var(--gray-80);
    }

    .footer-copy {
      font-size: 13px;
      color: var(--gray-50);
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .footer-legal a {
      font-size: 13px;
      color: var(--gray-50);
      text-decoration: none;
    }

    .footer-legal a:hover { color: white; }

    .footer-social-icons {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .footer-social-icons::before {
      content: '';
      width: 1px;
      height: 16px;
      background: var(--gray-70);
      margin-right: 8px;
    }

    .footer-social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--gray-80);
      transition: background 0.2s;
    }

    .footer-social-icon:hover {
      background: var(--accent);
    }

    .footer-social-icon svg {
      width: 16px;
      height: 16px;
      fill: var(--gray-30);
    }

    .footer-social-icon:hover svg {
      fill: white;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .platform-flow { grid-template-columns: 1fr; }
      .platform-step-arrow { display: none; }
      .flow-section { min-height: auto; }
      .flow-sticky { position: static; min-height: auto; padding: 48px 24px; }
      .flow-header { margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
      .flow-header-left { gap: 12px; }
      .flow-title { font-size: 24px; }
      .btn-volt { padding: 8px 16px; font-size: 13px; }
      .flow-icon { width: 40px; height: 40px; }
      .flow-columns { grid-template-columns: 1fr; gap: 16px; }
      .flow-connector { transform: rotate(90deg); padding: 8px 0; }
      .flow-media-container { min-height: 200px; }
      .flow-column-body { padding: 14px; }
      .flow-agent-item { font-size: 12px; padding: 10px 12px; }
      .ai-inner { grid-template-columns: 1fr; }
      .enterprise-inner { grid-template-columns: 1fr; }
      .video-quote { grid-template-columns: 1fr; gap: 24px; }
      .video-quote-attribution { text-align: left; }
      .vision-two-col { grid-template-columns: 1fr; gap: 48px; }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-brand { grid-column: span 2; }
    }

    @media (max-width: 1024px) {
      .usecases-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .strategic-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
      .enterprise-pillars { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hero { padding: 100px 24px 60px; min-height: auto; }
      .hero-title { font-size: 36px; }
      .hero-subtitle { font-size: 17px; }
      .hero-audience { flex-wrap: wrap; gap: 8px; }
      .hero-audience-badge { font-size: 10px; padding: 8px 12px; }
      .hero-solutions { gap: 8px; }
      .hero-solution-card { padding: 10px 16px; font-size: 13px; }
      /* Homepage hero mobile */
      .hero-homepage { min-height: 100vh; }
      .hero-homepage .hero-content { padding: 0 24px; margin-bottom: 140px; }
      .hero-homepage .hero-title { font-size: 40px; }
      .hero-homepage .hero-subtitle { font-size: 18px; }
      .hero-homepage .hero-cta { flex-direction: column; align-items: center; }
      .hero-speed { flex-direction: column; gap: 12px; }
      .hero-speed-divider { display: none; }
      .hero-logo-bar { padding: 0 16px 24px; }
      .hero-logo-bar-inner { padding: 16px 20px; border-radius: 0; }
      .hero-logo-label { font-size: 10px; margin-bottom: 16px; }
      .hero-logo-set { gap: 32px; padding-right: 32px; }
      .hero-logo-item img { height: 22px; }
      .usecases-section { padding: 80px 24px; }
      .usecases-title { font-size: 28px; }
      .vision-section { padding: 60px 24px; }
      .vision-text { padding-right: 0; margin-bottom: 24px; }
      .vision-intro { font-size: 26px; }
      .vision-intro-sub { font-size: 16px; }
      .vision-terminal { padding: 16px; }
      .vision-postit {
        top: -16px;
        right: -8px;
        padding: 14px 18px;
      }
      .vision-postit span { font-size: 22px; }
      .terminal-mockup { font-size: 9px; }
      .terminal-mockup .label { width: 70px; }
      .intelligence-section, .video-section, .platform-section, .ai-section, .enterprise-section, .cta-section, .flow-section, .strategic-section, .results-section { padding: 80px 24px; }
      .strategic-headline { font-size: 28px; }
      .strategic-subhead { font-size: 16px; }
      .strategic-card-full { padding: 24px; }
      .strategic-card-title { font-size: 18px; }
      .flow-title { font-size: 24px; }
      .flow-header { margin-bottom: 40px; }
      .flow-card-label { font-size: 10px; }
      .flow-card-caption { font-size: 12px; }
      .flow-placeholder { min-height: 160px; padding: 20px; }
      .flow-alert-title { font-size: 14px; }
      .flow-agent-item { font-size: 13px; }
      .intelligence-statement { font-size: 24px; }
      /* Productivity section mobile fixes */
      .labor-dashboard { padding: 12px; }
      .labor-hours { padding-left: 50px; }
      .labor-hour { font-size: 8px; }
      .labor-name { width: 45px; font-size: 10px; }
      .labor-bar { height: 16px; }
      .labor-score { width: 35px; font-size: 10px; }
      .labor-row { padding: 4px 6px; gap: 6px; }
      .alert-panel { font-size: 12px; }
      .alert-header { padding: 12px; }
      .alert-item { padding: 12px; }
      .coach-chat { height: 320px; }
      .coach-header { padding: 10px 12px; }
      .coach-messages { padding: 12px; }
      .coach-message { padding: 10px 12px; font-size: 12px; }
      .coach-video { max-height: 100px; }
      .platform-title, .cta-title, .results-title { font-size: 32px; }
      .ai-title { font-size: 28px; }
      .enterprise-title { font-size: 28px; }
      .enterprise-pillars { grid-template-columns: 1fr; }
      .enterprise-badges { flex-wrap: wrap; gap: 16px; }
      .results-grid .result-card { flex: 0 1 calc(50% - 10px); min-width: 280px; }
      .result-value { font-size: 36px; }
      .result-card { padding: 24px; }
      .results-footer { gap: 32px; flex-wrap: wrap; }
      .footer { padding: 80px 24px 32px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .footer-brand { grid-column: auto; }
      .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
      .footer-logo-bg { display: none; }
    }

    @media (max-width: 540px) {
      .results-grid .result-card { flex: 0 1 100%; }
      .result-value { font-size: 32px; }
      .results-footer { flex-direction: column; gap: 24px; text-align: center; }
    }
/* Blog styles */

/* Page Header */
.page-header {
  margin-top: 120px;
  margin-bottom: 64px;
  text-align: center;
}

.page-title {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gray-100);
}

.page-subtitle {
  font-size: 20px;
  color: var(--gray-70);
  max-width: 700px;
  margin: 0 auto;
}

/* Search Bar */
.search-section { margin-bottom: 64px; }
.search-bar { max-width: 600px; margin: 0 auto; position: relative; }
.search-bar input { width: 100%; padding: 16px 48px 16px 20px; font-size: 16px; border: 2px solid var(--gray-20); border-radius: 8px; font-family: inherit; }
.search-bar input:focus { outline: none; border-color: var(--onetrack-red); }
.search-icon { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--gray-50); }
.search-results-count { text-align: center; margin-top: 16px; color: var(--gray-50); font-size: 14px; }

/* Content Grid */
.content-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 32px; margin-bottom: 80px; }
.content-card { display: block; text-decoration: none; border: 1px solid var(--gray-20); border-radius: 8px; overflow: hidden; transition: all 0.2s; background: white; }
.content-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-4px); }
.content-card-image { width: 100%; height: 200px; object-fit: cover; }
.content-card-body { padding: 24px; }
.card-date { display: block; font-size: 14px; color: var(--gray-50); margin-bottom: 8px; }
.content-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--gray-100); }
.content-card p { color: var(--gray-70); font-size: 15px; line-height: 1.6; }
.no-results { text-align: center; padding: 80px 0; color: var(--gray-50); }
.no-results h3 { font-size: 24px; margin-bottom: 16px; }

/* Article Styles */
.article-header { margin-top: 120px; margin-bottom: 48px; text-align: center; }
.article-meta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 24px; font-size: 14px; color: var(--gray-50); }
.article-type { background: var(--onetrack-red); color: white; padding: 4px 12px; border-radius: 4px; font-weight: 500; text-transform: uppercase; font-size: 12px; }
.article-title { font-size: 48px; font-weight: 600; line-height: 1.2; margin-bottom: 24px; color: var(--gray-100); }
.article-featured-image { width: 100%; max-width: 1000px; margin: 0 auto 48px; border-radius: 8px; overflow: hidden; }
.article-featured-image img { width: 100%; height: auto; display: block; }
.article-content { max-width: 800px; margin: 0 auto 80px; font-size: 18px; line-height: 1.8; }
.article-content h1 { font-size: 36px; font-weight: 600; margin: 48px 0 24px; color: var(--gray-100); }
.article-content h2 { font-size: 28px; font-weight: 600; margin: 40px 0 20px; color: var(--gray-100); }
.article-content h3 { font-size: 22px; font-weight: 600; margin: 32px 0 16px; color: var(--gray-100); }
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin-bottom: 20px; padding-left: 32px; }
.article-content li { margin-bottom: 8px; }
.article-content a { color: var(--onetrack-red); text-decoration: none; }
.article-content a:hover { text-decoration: underline; }
.article-content img { max-width: 100%; height: auto; border-radius: 8px; margin: 24px 0; }
.article-content blockquote { border-left: 4px solid var(--onetrack-red); padding-left: 24px; margin: 32px 0; font-style: italic; color: var(--gray-70); }
.article-content figure { margin: 32px 0; }
.article-content iframe { max-width: 100%; border-radius: 8px; }
.w-richtext-figure-type-video { position: relative; width: 100%; margin: 32px 0; }
.w-richtext-figure-type-video > div { position: relative; width: 100%; padding-bottom: 56.25%; }
.w-richtext-figure-type-video iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gray-70); text-decoration: none; font-size: 14px; margin-bottom: 32px; }
.back-link:hover { color: var(--onetrack-red); }

@media (max-width: 768px) {
  .page-title { font-size: 36px; }
  .content-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 32px; }
}
