    /* ─────────────────────────────────────────
       DESIGN TOKENS
    ───────────────────────────────────────── */
    :root {
      --bg:          #0c0b0a;
      --s1:          #141210;
      --s2:          #1c1a17;
      --s3:          #252220;
      --s4:          #302d2a;
      --border:      #2c2926;
      --border-hi:   #3d3a35;
      --text:        #f0ebe3;
      --text-2:      #c4bdb5;
      --text-3:      #857f79;
      --amber:       #f0a020;
      --amber-lo:    #c07c10;
      --amber-hi:    #ffbe40;
      --amber-glow:  rgba(240,160,32,0.10);
      --amber-glow2: rgba(240,160,32,0.04);
      --green:       #4ade80;
      --red:         #f87171;

      --display:  'Barlow Condensed', sans-serif;
      --body:     'IBM Plex Sans', sans-serif;
      --mono:     'IBM Plex Mono', monospace;

      --r:   6px;
      --r-lg:12px;
      --ease: cubic-bezier(0.22,1,0.36,1);
    }

    /* ─────────────────────────────────────────
       RESET & BASE
    ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--body);
      font-size: 18px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    img { display: block; max-width: 100%; }

    /* Noise texture overlay */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.025;
      pointer-events: none;
      z-index: 9999;
    }

    /* ─────────────────────────────────────────
       TYPOGRAPHY HELPERS
    ───────────────────────────────────────── */
    .display-xl {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(3.5rem, 8vw, 7.5rem);
      line-height: 0.92;
      letter-spacing: -0.01em;
      text-transform: uppercase;
    }
    .display-lg {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 0.95;
      text-transform: uppercase;
    }
    .display-md {
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      line-height: 1;
      text-transform: uppercase;
    }
    .label {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--amber);
    }
    .body-lg { font-size: 1.2rem; line-height: 1.75; color: var(--text-2); }
    .body-sm { font-size: 1rem; line-height: 1.65; color: var(--text-2); }

    /* ─────────────────────────────────────────
       LAYOUT UTILS
    ───────────────────────────────────────── */
    .container {
      width: min(1200px, 100%);
      margin-inline: auto;
      padding-inline: clamp(1.25rem, 5vw, 3rem);
    }
    .section { padding-block: clamp(4rem, 8vw, 7rem); }

    /* ─────────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ─────────────────────────────────────────
       BUTTONS
    ───────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      font-family: var(--body);
      font-size: 1rem;
      font-weight: 600;
      border-radius: var(--r);
      border: none;
      cursor: pointer;
      transition: all 0.2s var(--ease);
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--amber);
      color: #0c0b0a;
    }
    .btn-primary:hover {
      background: var(--amber-hi);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(240,160,32,0.35);
    }
    .btn-ghost {
      background: transparent;
      color: var(--text-2);
      border: 1px solid var(--border-hi);
    }
    .btn-ghost:hover {
      border-color: var(--text-3);
      color: var(--text);
      background: var(--s2);
    }
    .btn-lg { padding: 1rem 2rem; font-size: 1rem; }

    /* ─────────────────────────────────────────
       NAVIGATION
    ───────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 64px;
      border-bottom: 1px solid transparent;
      transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
    }
    .nav.scrolled {
      background: rgba(12,11,10,0.88);
      backdrop-filter: blur(16px) saturate(1.5);
      -webkit-backdrop-filter: blur(16px) saturate(1.5);
      border-bottom-color: var(--border);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      height: 100%;
      gap: 2rem;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.625rem;
      flex-shrink: 0;
    }
    .nav-logo svg { width: 28px; height: 28px; }
    .nav-logo-text {
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--text);
    }
    .nav-logo-text span { color: var(--amber); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      margin-left: 1.5rem;
    }
    .nav-links a {
      padding: 0.4rem 0.75rem;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text-2);
      border-radius: var(--r);
      transition: color 0.15s, background 0.15s;
    }
    .nav-links a:hover { color: var(--text); background: var(--s2); }

    .nav-cta { margin-left: auto; display: flex; align-items: center; gap: 0.75rem; }

    @media (max-width: 768px) {
      .nav-links { display: none; }
    }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 64px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -5%;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle at center, rgba(240,160,32,0.12) 0%, rgba(240,160,32,0.04) 40%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, var(--s4) 1px, transparent 1px);
      background-size: 32px 32px;
      opacity: 0.5;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
      padding-block: 5rem 4rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.75rem;
      background: var(--s2);
      border: 1px solid var(--border-hi);
      border-radius: 100px;
      margin-bottom: 1.5rem;
    }
    .hero-badge .dot {
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(0.8); }
    }
    .hero-badge span {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      color: var(--text-2);
    }

    .hero-headline { margin-bottom: 1.5rem; }
    .hero-headline .line-1 { color: var(--text); }
    .hero-headline .line-2 { color: var(--amber); }
    .hero-headline .line-3 { color: var(--text-3); }

    .hero-sub {
      font-size: 1.1rem;
      line-height: 1.7;
      color: var(--text-2);
      max-width: 520px;
      margin-bottom: 2rem;
    }
    .hero-sub strong { color: var(--text); font-weight: 600; }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 3rem;
    }

    .hero-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 1rem;
      color: var(--text-2);
    }
    .hero-meta-item svg { flex-shrink: 0; }

    /* ── Product Mockup ── */
    .hero-mockup {
      position: relative;
    }

    .mockup-card {
      background: var(--s1);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.03),
        0 32px 64px rgba(0,0,0,0.6),
        0 0 80px var(--amber-glow2);
    }

    .mockup-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.875rem 1.125rem;
      border-bottom: 1px solid var(--border);
      background: var(--s2);
    }
    .mockup-header-left {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .mockup-header-dots {
      display: flex; gap: 5px;
    }
    .mockup-header-dots span {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--border-hi);
    }
    .mockup-title {
      font-family: var(--mono);
      font-size: 0.72rem;
      color: var(--text-3);
      letter-spacing: 0.05em;
    }
    .mockup-live {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-family: var(--mono);
      font-size: 0.68rem;
      color: var(--green);
    }
    .mockup-live-dot {
      width: 6px; height: 6px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse-dot 1.5s ease-in-out infinite;
    }

    .mockup-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-bottom: 1px solid var(--border);
    }
    .mockup-stat {
      padding: 0.875rem 1.125rem;
      border-right: 1px solid var(--border);
    }
    .mockup-stat:last-child { border-right: none; }
    .mockup-stat-label {
      font-family: var(--mono);
      font-size: 0.62rem;
      color: var(--text-3);
      letter-spacing: 0.08em;
      margin-bottom: 0.2rem;
    }
    .mockup-stat-value {
      font-family: var(--display);
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }
    .mockup-stat-value.amber { color: var(--amber); }

    .mockup-table { padding: 0.75rem 0; }
    .mockup-row {
      display: grid;
      grid-template-columns: 0.6fr 1.2fr 1fr 0.7fr 0.5fr;
      padding: 0.45rem 1.125rem;
      font-size: 0.72rem;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.15s;
    }
    .mockup-row:hover { background: var(--s2); }
    .mockup-row-header {
      font-family: var(--mono);
      font-size: 0.62rem;
      color: var(--text-3);
      letter-spacing: 0.08em;
      padding-bottom: 0.25rem;
      border-bottom: 1px solid var(--border);
      margin-bottom: 0.25rem;
    }
    .mockup-row-header:hover { background: transparent; }
    .mockup-time { color: var(--text-3); font-family: var(--mono); font-size: 0.68rem; }
    .mockup-truck { color: var(--text); font-weight: 500; }
    .mockup-material { color: var(--text-2); }
    .mockup-weight { color: var(--text); font-family: var(--mono); font-size: 0.7rem; }
    .mockup-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.15rem 0.45rem;
      border-radius: 100px;
      font-size: 0.62rem;
      font-family: var(--mono);
      letter-spacing: 0.05em;
    }
    .badge-done { background: rgba(74,222,128,0.12); color: var(--green); }
    .badge-queue { background: rgba(240,160,32,0.12); color: var(--amber); }

    .mockup-footer {
      padding: 0.625rem 1.125rem;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .mockup-footer-text {
      font-family: var(--mono);
      font-size: 0.62rem;
      color: var(--text-3);
    }
    .mockup-progress {
      width: 120px;
      height: 3px;
      background: var(--border);
      border-radius: 2px;
      overflow: hidden;
    }
    .mockup-progress-fill {
      height: 100%;
      width: 73%;
      background: linear-gradient(90deg, var(--amber-lo), var(--amber));
      border-radius: 2px;
      animation: progress-pulse 3s ease-in-out infinite;
    }
    @keyframes progress-pulse {
      0%,100% { opacity: 1; } 50% { opacity: 0.7; }
    }

    .mockup-float {
      position: absolute;
      bottom: -1.5rem;
      left: -2rem;
      background: var(--s2);
      border: 1px solid var(--border-hi);
      border-radius: var(--r);
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    }
    .mockup-float-icon {
      width: 36px; height: 36px;
      background: var(--amber-glow);
      border: 1px solid rgba(240,160,32,0.2);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .mockup-float-text strong {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--text);
    }
    .mockup-float-text span {
      font-size: 0.72rem;
      color: var(--text-3);
      font-family: var(--mono);
    }

    /* ─────────────────────────────────────────
       STATS BAR
    ───────────────────────────────────────── */
    .stats-bar {
      background: var(--s1);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    @media (max-width: 700px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .stat-item {
      padding: 2rem 1.5rem;
      border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: var(--display);
      font-weight: 800;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      color: var(--text);
      margin-bottom: 0.25rem;
    }
    .stat-number span { color: var(--amber); }
    .stat-label {
      font-size: 0.875rem;
      color: var(--text-2);
    }

    /* ─────────────────────────────────────────
       FEATURES BENTO
    ───────────────────────────────────────── */
    .features { background: var(--bg); }

    .section-header {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 3.5rem;
    }
    .section-header .display-lg { color: var(--text); }

    .bento-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: auto auto;
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
    }

    .bento-cell {
      background: var(--s1);
      padding: 2rem;
      position: relative;
      overflow: hidden;
      transition: background 0.2s;
    }
    .bento-cell:hover { background: var(--s2); }

    .bento-a { grid-column: span 5; }
    .bento-b { grid-column: span 4; }
    .bento-c { grid-column: span 3; }
    .bento-d { grid-column: span 3; }
    .bento-e { grid-column: span 5; }
    .bento-f { grid-column: span 4; }

    @media (max-width: 900px) {
      .bento-a, .bento-b, .bento-c,
      .bento-d, .bento-e, .bento-f {
        grid-column: span 12;
      }
    }
    @media (min-width: 901px) and (max-width: 1100px) {
      .bento-a { grid-column: span 6; }
      .bento-b { grid-column: span 6; }
      .bento-c { grid-column: span 4; }
      .bento-d { grid-column: span 4; }
      .bento-e { grid-column: span 4; }
      .bento-f { grid-column: span 6; }
    }

    .bento-icon {
      width: 44px; height: 44px;
      background: var(--amber-glow);
      border: 1px solid rgba(240,160,32,0.18);
      border-radius: var(--r);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.25rem;
      flex-shrink: 0;
    }
    .bento-icon svg { width: 22px; height: 22px; color: var(--amber); }

    .bento-title {
      font-family: var(--display);
      font-weight: 700;
      font-size: 1.25rem;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.5rem;
    }
    .bento-desc {
      font-size: 1rem;
      color: var(--text-2);
      line-height: 1.7;
    }

    .bento-a::after {
      content: '';
      position: absolute;
      bottom: -40px;
      right: -40px;
      width: 180px; height: 180px;
      background: radial-gradient(circle, var(--amber-glow) 0%, transparent 70%);
      pointer-events: none;
    }

    .bento-tag {
      display: inline-flex;
      align-items: center;
      padding: 0.2rem 0.5rem;
      background: rgba(240,160,32,0.1);
      border: 1px solid rgba(240,160,32,0.2);
      border-radius: 4px;
      font-family: var(--mono);
      font-size: 0.65rem;
      color: var(--amber);
      letter-spacing: 0.08em;
      margin-top: 1rem;
    }

    /* ─────────────────────────────────────────
       THEN VS NOW
    ───────────────────────────────────────── */
    .comparison { background: var(--s1); }

    .comparison-grid {
      display: grid;
      grid-template-columns: 1fr 80px 1fr;
      gap: 0;
      align-items: start;
    }
    @media (max-width: 768px) {
      .comparison-grid { grid-template-columns: 1fr; }
    }

    .comparison-col { padding: 0; }

    .comparison-header {
      padding: 1.25rem 1.5rem;
      border-radius: var(--r-lg) var(--r-lg) 0 0;
    }
    .comparison-header-legacy {
      background: var(--s3);
      border: 1px solid var(--border);
    }
    .comparison-header-modern {
      background: linear-gradient(135deg, rgba(240,160,32,0.15), rgba(240,160,32,0.05));
      border: 1px solid rgba(240,160,32,0.3);
    }
    .comparison-header-title {
      font-family: var(--display);
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .comparison-header-legacy .comparison-header-title { color: var(--text-3); }
    .comparison-header-modern .comparison-header-title { color: var(--amber); }
    .comparison-header-sub { font-size: 1rem; color: var(--text-3); margin-top: 0.15rem; }

    .comparison-list {
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 var(--r-lg) var(--r-lg);
      overflow: hidden;
    }
    .comparison-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.875rem 1.25rem;
      border-bottom: 1px solid var(--border);
      font-size: 1.05rem;
    }
    .comparison-item:last-child { border-bottom: none; }
    .comparison-item-icon {
      flex-shrink: 0;
      width: 18px; height: 18px;
      margin-top: 0.1rem;
    }
    .comparison-item-icon.bad { color: var(--red); opacity: 0.7; }
    .comparison-item-icon.good { color: var(--green); }
    .comparison-item-text { color: var(--text-2); line-height: 1.5; }

    .comparison-divider {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding-top: 4rem;
    }
    .vs-circle {
      width: 48px; height: 48px;
      background: var(--s3);
      border: 1px solid var(--border-hi);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-3);
    }
    .divider-line {
      width: 1px;
      height: 200px;
      background: linear-gradient(to bottom, transparent, var(--border), transparent);
    }

    @media (max-width: 768px) {
      .comparison-divider { flex-direction: row; padding: 1rem 0; }
      .divider-line { width: 100px; height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent); }
    }

    /* ─────────────────────────────────────────
       HOW IT WORKS
    ───────────────────────────────────────── */
    .how { background: var(--bg); }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      overflow: hidden;
    }
    @media (max-width: 700px) {
      .steps-grid { grid-template-columns: 1fr; }
    }

    .step {
      background: var(--s1);
      padding: 2.5rem 2rem;
      position: relative;
    }
    .step-num {
      font-family: var(--display);
      font-weight: 800;
      font-size: 4rem;
      line-height: 1;
      color: var(--border-hi);
      margin-bottom: 1.5rem;
      display: block;
    }
    .step-title {
      font-family: var(--display);
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 0.625rem;
    }
    .step-desc { font-size: 1rem; color: var(--text-2); line-height: 1.7; }

    .step::after {
      content: attr(data-num);
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-family: var(--mono);
      font-size: 0.65rem;
      color: var(--border-hi);
      letter-spacing: 0.1em;
    }

    /* ─────────────────────────────────────────
       SCREENSHOTS
    ───────────────────────────────────────── */
    .screenshots { background: var(--s1); }

    .screenshots-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3rem;
      max-width: 1040px;
      margin-inline: auto;
    }

    .demo-video {
      max-width: 1040px;
      margin: 0 auto 3.5rem;
      background: var(--s3);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
    }
    .demo-video video {
      display: block;
      width: 100%;
      height: auto;
      background: #000;
    }
    .demo-video figcaption {
      padding: 0.75rem 1rem;
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-3);
      border-top: 1px solid var(--border);
    }
    .screenshot-card {
      background: var(--s3);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      transition: border-color 0.2s, transform 0.2s;
      cursor: pointer;
    }
    .screenshot-card:hover {
      border-color: var(--amber);
      transform: translateY(-2px);
    }
    .screenshot-card img {
      width: 100%;
      display: block;
    }
    .screenshot-card-caption {
      padding: 0.75rem 1rem;
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: var(--text-3);
      border-top: 1px solid var(--border);
    }
    .screenshot-card-caption strong {
      display: block;
      color: var(--text-2);
      margin-bottom: 0.2rem;
      font-size: 0.72rem;
    }

    /* Lightbox */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.88);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .lightbox-overlay.open { display: flex; }
    .lightbox-overlay img {
      max-width: 100%;
      max-height: 90vh;
      border: 1px solid var(--border-hi);
      border-radius: 4px;
    }
    .lightbox-close {
      position: absolute;
      top: 1.25rem;
      right: 1.5rem;
      background: none;
      border: none;
      color: var(--text-3);
      font-size: 2rem;
      cursor: pointer;
      line-height: 1;
    }
    .lightbox-close:hover { color: var(--text); }

    /* ─────────────────────────────────────────
       PRICING
    ───────────────────────────────────────── */
    .pricing { background: var(--s1); }

    .pricing-note {
      font-size: 1rem;
      color: var(--text-3);
      text-align: center;
      margin-top: 1rem;
    }
    .pricing-note a {
      color: var(--text-2);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    }

    .plan {
      background: var(--s2);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 2rem;
      position: relative;
      transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    }
    .plan:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(0,0,0,0.3);
    }

    .plan-featured {
      border-color: rgba(240,160,32,0.4);
      background: linear-gradient(135deg, rgba(240,160,32,0.07), var(--s2) 60%);
      box-shadow: 0 0 0 1px rgba(240,160,32,0.1), 0 8px 32px rgba(0,0,0,0.3);
    }

    .plan-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--amber);
      color: #0c0b0a;
      font-family: var(--mono);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      padding: 0.25rem 0.75rem;
      border-radius: 100px;
      white-space: nowrap;
    }

    .plan-name {
      font-family: var(--display);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-2);
      margin-bottom: 1rem;
    }
    .plan-price {
      display: flex;
      align-items: flex-end;
      gap: 0.25rem;
      margin-bottom: 0.25rem;
    }
    .plan-price-num {
      font-family: var(--display);
      font-weight: 800;
      font-size: 3rem;
      line-height: 1;
      color: var(--text);
    }
    .plan-price-unit {
      font-size: 1rem;
      color: var(--text-3);
      padding-bottom: 0.3rem;
    }
    .plan-price-desc {
      font-size: 0.8rem;
      color: var(--text-3);
      margin-bottom: 1.75rem;
    }

    .plan-divider {
      height: 1px;
      background: var(--border);
      margin-bottom: 1.5rem;
    }

    .plan-features {
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
      margin-bottom: 2rem;
    }
    .plan-feature {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      font-size: 1rem;
      color: var(--text-2);
    }
    .plan-feature svg { flex-shrink: 0; margin-top: 2px; color: var(--amber); }
    .plan-feature.dim svg { color: var(--text-3); }
    .plan-feature.dim span { color: var(--text-3); }

    .plan-cta { width: 100%; text-align: center; justify-content: center; }

    /* ─────────────────────────────────────────
       TESTIMONIALS
    ───────────────────────────────────────── */
    .testimonials { background: var(--bg); }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    @media (max-width: 900px) {
      .testimonials-grid { grid-template-columns: 1fr; }
    }

    .testimonial {
      background: var(--s1);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 1.75rem;
    }

    .testimonial-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 1rem;
      color: var(--amber);
    }
    .testimonial-quote {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--text-2);
      margin-bottom: 1.25rem;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .testimonial-avatar {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--s3);
      border: 1px solid var(--border-hi);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text-2);
      flex-shrink: 0;
    }
    .testimonial-name {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
    }
    .testimonial-role {
      font-size: 0.75rem;
      color: var(--text-3);
      font-family: var(--mono);
    }

    /* ─────────────────────────────────────────
       CTA SECTION
    ───────────────────────────────────────── */
    .cta-section {
      background: var(--s1);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 600px; height: 300px;
      background: radial-gradient(ellipse at center, rgba(240,160,32,0.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 640px;
      margin-inline: auto;
      padding-block: 5rem;
    }
    .cta-inner .label { margin-bottom: 1rem; }
    .cta-inner .display-lg {
      color: var(--text);
      margin-bottom: 1.25rem;
    }
    .cta-inner .body-lg {
      margin-bottom: 2.5rem;
    }
    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.75rem;
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    .footer {
      background: var(--s1);
      border-top: 1px solid var(--border);
      padding-block: 3rem 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr repeat(4, 1fr);
      gap: 3rem;
      margin-bottom: 3rem;
    }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 500px) {
      .footer-grid { grid-template-columns: 1fr; }
    }

    .footer-brand-desc {
      font-size: 1rem;
      color: var(--text-2);
      line-height: 1.65;
      margin-top: 0.875rem;
      max-width: 280px;
    }
    .footer-col-title {
      font-family: var(--display);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-2);
      margin-bottom: 1rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      font-size: 1rem;
      color: var(--text-3);
      transition: color 0.15s;
    }
    .footer-links a:hover { color: var(--text-2); }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .footer-copy {
      font-size: 1rem;
      color: var(--text-3);
      font-family: var(--mono);
    }
    .footer-legal {
      display: flex;
      gap: 1.25rem;
    }
    .footer-legal a {
      font-size: 1rem;
      color: var(--text-3);
      font-family: var(--mono);
      transition: color 0.15s;
    }
    .footer-legal a:hover { color: var(--text-2); }

    /* ─────────────────────────────────────────
       HERO ANIMATION
    ───────────────────────────────────────── */
    @keyframes fade-up {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-badge    { animation: fade-up 0.6s var(--ease) 0.1s both; }
    .hero-headline { animation: fade-up 0.7s var(--ease) 0.25s both; }
    .hero-sub      { animation: fade-up 0.7s var(--ease) 0.4s both; }
    .hero-actions  { animation: fade-up 0.7s var(--ease) 0.55s both; }
    .hero-meta     { animation: fade-up 0.7s var(--ease) 0.65s both; }
    .hero-mockup   { animation: fade-up 0.8s var(--ease) 0.5s both; }


    /* ════════════════════════════════════════════════════════
       INDUSTRIES — dropdown nav + landing/hub pages
       (shared across all pages via /site.css)
       ════════════════════════════════════════════════════════ */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { display: inline-flex; align-items: center; gap: 0.32rem; }
    .nav-dropdown > a::after {
      content: ""; width: 0; height: 0; margin-top: 1px;
      border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
      border-top: 4px solid currentColor; opacity: 0.55; transition: transform 0.2s var(--ease, ease);
    }
    .nav-dropdown:hover > a::after,
    .nav-dropdown:focus-within > a::after { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 50%;
      transform: translateX(-50%) translateY(8px);
      min-width: 252px; margin-top: 0.6rem; padding: 0.4rem;
      list-style: none; background: var(--s2);
      border: 1px solid var(--border-hi); border-radius: 10px;
      box-shadow: 0 16px 44px rgba(0,0,0,0.5);
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease; z-index: 200;
    }
    .nav-dropdown-menu::before {  /* invisible bridge so hover survives the gap */
      content: ""; position: absolute; top: -0.7rem; left: 0; right: 0; height: 0.7rem;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1; visibility: visible; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu li { width: 100%; }
    .nav-dropdown-menu a {
      display: block; padding: 0.55rem 0.8rem; border-radius: 6px;
      color: var(--text-2); font-size: 0.95rem; white-space: nowrap;
      transition: background 0.15s, color 0.15s;
    }
    .nav-dropdown-menu a:hover { background: var(--s3); color: var(--amber-hi); }
    .nav-dropdown-sep { height: 1px; background: var(--border); margin: 0.4rem 0.5rem; }
    .nav-dropdown-menu a.nav-dropdown-all {
      color: var(--text-3); font-family: var(--mono);
      font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase;
    }
    .nav-dropdown-menu a.nav-dropdown-all:hover { color: var(--amber); background: transparent; }

    /* Subpage hero (industry + hub) — clears the fixed 64px nav */
    .subpage-hero {
      padding-top: clamp(7rem, 12vw, 9.5rem);
      padding-bottom: clamp(3rem, 6vw, 5rem);
      background: var(--s1); border-bottom: 1px solid var(--border);
    }
    .subpage-hero .label { color: var(--amber); }
    .subpage-lead { max-width: 760px; }
    .subpage-lead .display-lg { margin: 0.85rem 0 1.25rem; color: var(--text); }
    .subpage-crumb {
      font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--text-3); margin-bottom: 1.25rem;
    }
    .subpage-crumb a { color: var(--text-3); text-decoration: none; }
    .subpage-crumb a:hover { color: var(--amber); }

    /* Industry hub cards */
    .ind-hub-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; margin-top: 3rem;
    }
    @media (max-width: 900px) { .ind-hub-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .ind-hub-grid { grid-template-columns: 1fr; } }
    .ind-hub-card {
      display: flex; flex-direction: column; gap: 0.6rem;
      background: var(--s3); border: 1px solid var(--border); border-radius: 10px;
      padding: 1.6rem; text-decoration: none;
      transition: border-color 0.2s, transform 0.2s;
    }
    .ind-hub-card:hover { border-color: var(--amber); transform: translateY(-3px); }
    .ind-hub-icon { font-size: 1.5rem; line-height: 1; }
    .ind-hub-card h3 {
      font-family: var(--display); font-size: 1.4rem; font-weight: 700;
      color: var(--text); letter-spacing: 0.01em;
    }
    .ind-hub-card p { font-size: 0.95rem; color: var(--text-2); line-height: 1.6; }
    .ind-hub-more {
      margin-top: auto; padding-top: 0.6rem; font-family: var(--mono);
      font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--amber);
    }

    /* Industry page — pain → fit, workflow */
    .ind-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
    @media (max-width: 820px) { .ind-two-col { grid-template-columns: 1fr; gap: 2.25rem; } }
    .ind-list { list-style: none; display: flex; flex-direction: column; gap: 1.05rem; }
    .ind-list li { display: flex; gap: 0.8rem; font-size: 1.02rem; line-height: 1.6; color: var(--text-2); }
    .ind-list li::before { content: "▹"; color: var(--amber); flex: none; margin-top: 0.05rem; }
    .ind-fit { display: flex; flex-direction: column; gap: 1.2rem; }
    .ind-fit-item {
      background: var(--s3); border: 1px solid var(--border);
      border-left: 2px solid var(--amber); border-radius: 8px; padding: 1.1rem 1.3rem;
    }
    .ind-fit-item h4 { font-family: var(--display); font-size: 1.18rem; color: var(--text); margin-bottom: 0.35rem; }
    .ind-fit-item p { font-size: 0.97rem; color: var(--text-2); line-height: 1.6; }
    .ind-fit-tag {
      display: inline-block; margin-top: 0.55rem; font-family: var(--mono);
      font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3);
    }
    .ind-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
    @media (max-width: 820px) { .ind-flow { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 480px) { .ind-flow { grid-template-columns: 1fr; } }
    .ind-flow-step { background: var(--s2); border: 1px solid var(--border); border-radius: 8px; padding: 1.1rem; }
    .ind-flow-n { font-family: var(--mono); font-size: 0.7rem; color: var(--amber); letter-spacing: 0.1em; }
    .ind-flow-step h4 { font-family: var(--display); font-size: 1.05rem; color: var(--text); margin: 0.35rem 0; }
    .ind-flow-step p { font-size: 0.9rem; color: var(--text-2); line-height: 1.55; }
