:root {
      /* Joosure AI delivery console palette */
      --bg-deep: #0A0E1A;
      --bg-surface: #0D1117;
      --bg-card: #151B2B;
      --bg-card-hover: #1A2235;
      --border: #1E293B;
      --border-bright: #334155;

      /* Status colors */
      --green: #19E6A7;
      --green-dim: rgba(25, 230, 167, 0.15);
      --purple: #B56DFF;
      --purple-dim: rgba(181, 109, 255, 0.15);
      --yellow: #F5B84B;
      --yellow-dim: rgba(245, 184, 75, 0.15);
      --red: #FF647C;
      --red-dim: rgba(255, 100, 124, 0.15);
      --blue: #4F8BFF;
      --blue-dim: rgba(79, 139, 255, 0.15);

      /* Text */
      --fg-primary: #F1F5F9;
      --fg-secondary: #94A3B8;
      --fg-muted: #64748B;

      /* Typography */
      --font-display: 'Inter', -apple-system, system-ui, sans-serif;
      --font-body: 'Inter', -apple-system, system-ui, sans-serif;
      --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

      /* Spacing */
      --container: 1280px;
      --section-spacing: clamp(80px, 10vw, 140px);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--bg-deep);
      color: var(--fg-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Utility */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    .mono { font-family: var(--font-mono); }
    .text-green { color: var(--green); }
    .text-purple { color: var(--purple); }
    .text-yellow { color: var(--yellow); }
    .text-red { color: var(--red); }
    .text-blue { color: var(--blue); }
    .text-muted { color: var(--fg-secondary); }

    /* Navigation */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 14, 26, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .nav-logo {
      font-size: 20px;
      font-weight: 700;
      color: var(--fg-primary);
      text-decoration: none;
      letter-spacing: -0.02em;
    }

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

    .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--fg-secondary);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-link:hover {
      color: var(--fg-primary);
    }

    .nav-cta {
      background: var(--green);
      color: var(--bg-deep);
      padding: 8px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s;
    }

    .nav-cta:hover {
      background: #5CFFD2;
      transform: translateY(-1px);
    }

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

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(181, 109, 255, 0.08), transparent);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(circle at 68% 46%, black, transparent 72%);
      pointer-events: none;
      opacity: 0.65;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: var(--green-dim);
      border: 1px solid rgba(25, 230, 167, 0.3);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 24px;
      font-family: var(--font-mono);
    }

    .hero-badge::before {
      content: '●';
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero-title {
      font-size: clamp(40px, 6vw, 64px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 24px;
    }

    .hero-title em {
      font-style: normal;
      background: linear-gradient(135deg, var(--green) 0%, var(--purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: clamp(18px, 2.5vw, 24px);
      font-weight: 600;
      color: var(--fg-secondary);
      margin-bottom: 20px;
    }

    .hero-description {
      font-size: 16px;
      line-height: 1.7;
      color: var(--fg-secondary);
      margin-bottom: 32px;
      max-width: 480px;
    }

    .hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

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

    .btn-primary {
      background: var(--green);
      color: var(--bg-deep);
    }

    .btn-primary:hover {
      background: #5CFFD2;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(25, 230, 167, 0.25);
    }

    .btn-secondary {
      background: var(--bg-card);
      color: var(--fg-primary);
      border: 1px solid var(--border);
    }

    .btn-secondary:hover {
      background: var(--bg-card-hover);
      border-color: var(--border-bright);
    }

    .hero-product-demo {
      position: relative;
      min-width: 0;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 20px;
      background:
        radial-gradient(circle at 86% 8%, rgba(25, 230, 167, 0.16), transparent 28%),
        radial-gradient(circle at 6% 92%, rgba(181, 109, 255, 0.18), transparent 32%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
      box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      overflow: hidden;
    }

    .hero-product-demo::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(180deg, black, transparent 86%);
      pointer-events: none;
    }

    .hero-demo-shell {
      position: relative;
      z-index: 1;
      padding: 18px;
      display: grid;
      gap: 14px;
      font-family: var(--font-mono);
    }

    .hero-demo-top {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
      padding-bottom: 14px;
    }

    .hero-demo-title {
      color: var(--fg-primary);
      font-size: 13px;
      font-weight: 700;
    }

    .hero-demo-status {
      border: 1px solid rgba(25, 230, 167, 0.32);
      border-radius: 999px;
      background: rgba(25, 230, 167, 0.08);
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      padding: 5px 9px;
      white-space: nowrap;
    }

    .hero-task-card,
    .hero-evidence-card {
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.68);
      padding: 15px;
    }

    .hero-task-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
    }

    .hero-task-kicker,
    .hero-card-kicker {
      color: var(--fg-muted);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .hero-task-title {
      color: var(--fg-primary);
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.45;
    }

    .hero-task-badge {
      border: 1px solid rgba(242, 204, 96, 0.32);
      border-radius: 999px;
      background: rgba(242, 204, 96, 0.08);
      color: var(--yellow);
      font-size: 11px;
      font-weight: 700;
      padding: 6px 10px;
      white-space: nowrap;
    }

    .hero-delivery-lane {
      display: grid;
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .hero-product-step {
      min-height: 58px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 12px;
      background: rgba(2, 6, 23, 0.5);
      padding: 10px 12px;
      display: grid;
      grid-template-columns: 12px minmax(116px, 0.45fr) minmax(0, 1fr);
      align-items: center;
      gap: 12px;
    }

    .hero-step-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 16px rgba(25, 230, 167, 0.45);
    }

    .hero-product-step b {
      color: var(--fg-primary);
      font-size: 12px;
      line-height: 1.35;
    }

    .hero-product-step span {
      color: var(--fg-muted);
      font-family: var(--font-sans);
      font-size: 12px;
      line-height: 1.45;
    }

    .hero-evidence-card {
      border-color: rgba(25, 230, 167, 0.3);
      background:
        linear-gradient(135deg, rgba(25, 230, 167, 0.1), rgba(181, 109, 255, 0.06)),
        rgba(15, 23, 42, 0.82);
    }

    .hero-evidence-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .hero-evidence-head strong {
      color: var(--green);
      font-size: 13px;
    }

    .hero-evidence-head span {
      border: 1px solid rgba(25, 230, 167, 0.28);
      border-radius: 999px;
      color: var(--green);
      font-size: 10px;
      font-weight: 700;
      padding: 4px 8px;
      text-transform: uppercase;
    }

    .hero-evidence-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 8px;
    }

    .hero-evidence-item {
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 8px;
      background: rgba(2, 6, 23, 0.45);
      padding: 9px;
    }

    .hero-evidence-item span {
      display: block;
      color: var(--fg-muted);
      font-size: 10px;
      margin-bottom: 5px;
    }

    .hero-evidence-item strong {
      color: var(--fg-primary);
      font-size: 11px;
      line-height: 1.35;
    }

    /* AI Delivery Console */
    .console-container {
      position: relative;
      min-height: 630px;
      display: flex;
      align-items: center;
      perspective: 1400px;
    }

    .console-container::before {
      content: '';
      position: absolute;
      inset: 40px -18px 20px 18px;
      background:
        radial-gradient(circle at 72% 12%, rgba(25, 230, 167, 0.24), transparent 32%),
        radial-gradient(circle at 18% 72%, rgba(181, 109, 255, 0.2), transparent 34%);
      filter: blur(36px);
      opacity: 0.7;
      pointer-events: none;
    }

    .console {
      width: 100%;
      position: relative;
      isolation: isolate;
      background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98)),
        var(--bg-surface);
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 20px;
      overflow: hidden;
      box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(25, 230, 167, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
      transform: rotateX(1deg) rotateY(-2deg);
    }

    .console::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background-image:
        linear-gradient(rgba(25, 230, 167, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 230, 167, 0.035) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: linear-gradient(180deg, black, transparent 78%);
    }

    .console::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: -42%;
      height: 42%;
      background: linear-gradient(180deg, transparent, rgba(25, 230, 167, 0.08), transparent);
      animation: consoleScan 6s linear infinite;
      pointer-events: none;
    }

    @keyframes consoleScan {
      from { transform: translateY(0); }
      to { transform: translateY(340%); }
    }

    .console-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 16px;
      background: rgba(15, 23, 42, 0.92);
      border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    }

    .console-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      color: var(--fg-secondary);
      font-family: var(--font-mono);
      letter-spacing: 0.02em;
    }

    .console-title::before {
      content: '';
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 18px rgba(25, 230, 167, 0.75);
      animation: signalPulse 1.4s ease-in-out infinite;
    }

    @keyframes signalPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(0.72); opacity: 0.55; }
    }

    .console-env {
      color: var(--green);
    }

    .console-slash {
      color: var(--fg-muted);
    }

    .console-status-group {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 10px;
    }

    .console-chip {
      padding: 4px 8px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 999px;
      color: var(--fg-secondary);
      background: rgba(2, 6, 23, 0.55);
    }

    .console-chip.good {
      color: var(--green);
      border-color: rgba(25, 230, 167, 0.32);
      background: var(--green-dim);
    }

    .console-status {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 8px;
      border: 1px solid rgba(25, 230, 167, 0.32);
      border-radius: 999px;
      background: var(--green-dim);
      font-size: 10px;
      font-family: var(--font-mono);
      color: var(--green);
    }

    .console-status::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--green);
      border-radius: 50%;
      animation: pulse 1.5s infinite;
    }

    .console-body {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
      padding: 14px;
      font-family: var(--font-mono);
      font-size: 12px;
    }

    .console-command {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 12px;
      background: rgba(2, 6, 23, 0.72);
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 12px;
    }

    .console-prompt {
      color: var(--fg-secondary);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .console-prompt strong {
      color: var(--green);
      font-weight: 600;
    }

    .console-timer {
      color: var(--fg-muted);
      font-variant-numeric: tabular-nums;
    }

    .console-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .metric {
      min-height: 82px;
      padding: 12px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 12px;
      background: rgba(15, 23, 42, 0.74);
    }

    .console-metrics .metric-label {
      color: var(--fg-muted);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .console-metrics .metric-value {
      color: var(--fg-primary);
      font-size: 22px;
      font-weight: 700;
      line-height: 1;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.02em;
    }

    .console-metrics .metric-value.bump {
      animation: metricBump 0.36s ease;
    }

    @keyframes metricBump {
      0% { transform: translateY(0); color: var(--fg-primary); }
      40% { transform: translateY(-2px); color: var(--green); }
      100% { transform: translateY(0); }
    }

    .metric.live .metric-value {
      color: var(--green);
      text-shadow: 0 0 18px rgba(25, 230, 167, 0.36);
      animation: metricBlink 1.2s ease-in-out infinite;
    }

    @keyframes metricBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.72; }
    }

    .console-metrics .metric-delta {
      margin-top: 8px;
      font-size: 11px;
      color: var(--fg-muted);
    }

    .delivery-board {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(160px, 0.75fr);
      gap: 10px;
    }

    .panel {
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.68);
      overflow: hidden;
    }

    .panel-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
      color: var(--fg-secondary);
      font-size: 11px;
    }

    .panel-heading strong {
      color: var(--fg-primary);
      font-weight: 600;
    }

    .panel-heading span {
      color: var(--fg-muted);
    }

    .pipeline-panel {
      position: relative;
    }

    .pipeline-flow {
      position: relative;
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 8px;
      padding: 18px 14px 12px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.1);
      overflow: hidden;
    }

    .pipeline-flow::before {
      content: '';
      position: absolute;
      left: 24px;
      right: 24px;
      top: 33px;
      height: 2px;
      background: linear-gradient(90deg, rgba(25, 230, 167, 0.45), rgba(181, 109, 255, 0.42), rgba(245, 184, 75, 0.35));
      opacity: 0.55;
    }

    .flow-node {
      position: relative;
      display: grid;
      gap: 7px;
      justify-items: center;
      z-index: 1;
      color: var(--fg-muted);
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      transition: color 0.24s ease, transform 0.24s ease;
    }

    .flow-node::before {
      content: '';
      width: 15px;
      height: 15px;
      border-radius: 999px;
      background: rgba(2, 6, 23, 0.96);
      border: 1px solid rgba(148, 163, 184, 0.3);
      box-shadow: 0 0 0 5px rgba(2, 6, 23, 0.78);
      transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    }

    .flow-node.complete,
    .flow-node.active {
      color: var(--fg-primary);
    }

    .flow-node.complete::before {
      background: var(--green);
      border-color: var(--green);
      box-shadow: 0 0 0 5px rgba(25, 230, 167, 0.11), 0 0 22px rgba(25, 230, 167, 0.4);
    }

    .flow-node.active {
      transform: translateY(-2px);
    }

    .flow-node.active::before {
      background: var(--yellow);
      border-color: var(--yellow);
      box-shadow: 0 0 0 7px rgba(245, 184, 75, 0.12), 0 0 24px rgba(245, 184, 75, 0.5);
      animation: signalPulse 1.05s ease-in-out infinite;
    }

    .flow-packet {
      position: absolute;
      top: 28px;
      left: 18px;
      width: 22px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 16px rgba(25, 230, 167, 0.7);
      opacity: 0.92;
      z-index: 2;
      animation: packetMove 5.7s cubic-bezier(0.42, 0, 0.2, 1) infinite;
    }

    .flow-packet.two {
      background: var(--purple);
      box-shadow: 0 0 16px rgba(181, 109, 255, 0.72);
      animation-delay: 1.8s;
      animation-duration: 6.1s;
    }

    .flow-packet.three {
      background: var(--yellow);
      box-shadow: 0 0 16px rgba(245, 184, 75, 0.62);
      animation-delay: 3.25s;
      animation-duration: 6.6s;
    }

    @keyframes packetMove {
      0% { transform: translateX(0) scaleX(0.72); opacity: 0; }
      8% { opacity: 1; }
      78% { opacity: 1; }
      100% { transform: translateX(clamp(260px, 32vw, 430px)) scaleX(1.08); opacity: 0; }
    }

    .pipeline-stages {
      display: grid;
      gap: 8px;
      padding: 12px;
    }

    .stage {
      display: grid;
      grid-template-columns: 22px minmax(0, 1fr) 58px;
      align-items: center;
      gap: 9px;
      min-height: 34px;
      color: var(--fg-muted);
      transition: color 0.28s ease, transform 0.28s ease;
    }

    .stage.complete,
    .stage.active {
      color: var(--fg-primary);
    }

    .stage.active {
      transform: translateX(3px);
    }

    .stage-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 1px solid rgba(148, 163, 184, 0.32);
      background: rgba(2, 6, 23, 0.86);
    }

    .stage.complete .stage-dot {
      border-color: rgba(25, 230, 167, 0.72);
      background: var(--green);
      box-shadow: 0 0 18px rgba(25, 230, 167, 0.38);
    }

    .stage.active .stage-dot {
      border-color: var(--yellow);
      background: var(--yellow);
      box-shadow: 0 0 18px rgba(245, 184, 75, 0.52);
      animation: signalPulse 1.1s ease-in-out infinite;
    }

    .stage-title {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .stage-state {
      justify-self: end;
      color: var(--fg-muted);
      font-size: 10px;
      text-transform: uppercase;
    }

    .stage.complete .stage-state {
      color: var(--green);
    }

    .stage.active .stage-state {
      color: var(--yellow);
    }

    .stage-bar {
      grid-column: 2 / 4;
      height: 3px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.12);
      overflow: hidden;
    }

    .stage-fill {
      display: block;
      width: 0;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--purple), var(--green));
      transition: width 0.45s ease;
    }

    .stage.complete .stage-fill {
      width: 100%;
    }

    .stage.active .stage-fill {
      width: 62%;
      animation: progressTravel 1.5s ease-in-out infinite alternate;
    }

    @keyframes progressTravel {
      from { width: 42%; }
      to { width: 86%; }
    }

    .agent-list {
      display: grid;
      gap: 8px;
      padding: 12px;
    }

    .agent-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      align-items: center;
      padding: 9px 10px;
      border: 1px solid rgba(148, 163, 184, 0.1);
      border-radius: 10px;
      background: rgba(2, 6, 23, 0.52);
      position: relative;
      overflow: hidden;
    }

    .agent-row::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(25, 230, 167, 0.09), transparent);
      transform: translateX(-120%);
      opacity: 0;
      pointer-events: none;
    }

    .agent-row.active::after,
    .agent-row.warn::after {
      opacity: 1;
      animation: rowSweep 1.7s ease-in-out infinite;
    }

    @keyframes rowSweep {
      to { transform: translateX(120%); }
    }

    .agent-name {
      color: var(--fg-secondary);
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .agent-state {
      color: var(--fg-muted);
      font-size: 10px;
      text-transform: uppercase;
    }

    .agent-row.active .agent-name,
    .agent-row.active .agent-state {
      color: var(--green);
    }

    .agent-row.warn .agent-state {
      color: var(--yellow);
    }

    .agent-progress {
      grid-column: 1 / 3;
      height: 3px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.12);
      overflow: hidden;
    }

    .agent-progress span {
      display: block;
      width: var(--progress, 12%);
      height: 100%;
      border-radius: inherit;
      background: var(--green);
      box-shadow: 0 0 12px rgba(25, 230, 167, 0.32);
      transition: width 0.35s ease;
    }

    .agent-capacity {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 4px;
      padding: 0 12px 12px;
    }

    .capacity-dot {
      height: 6px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.14);
      transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .capacity-dot.on {
      background: var(--green);
      box-shadow: 0 0 14px rgba(25, 230, 167, 0.42);
      transform: translateY(-1px);
    }

    .signal-board {
      display: grid;
      grid-template-columns: 0.85fr 1.1fr 1.05fr;
      gap: 10px;
    }

    .signal-card {
      min-height: 118px;
      padding: 12px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 14px;
      background: rgba(15, 23, 42, 0.68);
      overflow: hidden;
    }

    .signal-label {
      color: var(--fg-muted);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
    }

    .runner-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 7px;
    }

    .runner {
      height: 28px;
      border-radius: 7px;
      border: 1px solid rgba(148, 163, 184, 0.12);
      background: rgba(2, 6, 23, 0.62);
      position: relative;
      overflow: hidden;
    }

    .runner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(25, 230, 167, 0.14), rgba(25, 230, 167, 0.02));
      transform: scaleY(var(--load, 0.15));
      transform-origin: bottom;
      transition: transform 0.35s ease;
    }

    .runner::after {
      content: '';
      position: absolute;
      left: 7px;
      right: 7px;
      bottom: 6px;
      height: 3px;
      border-radius: 999px;
      background: var(--green);
      opacity: 0.42;
      animation: runnerBlink 1.15s ease-in-out infinite;
    }

    @keyframes runnerBlink {
      50% { opacity: 0.92; }
    }

    .throughput-bars {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      align-items: end;
      gap: 5px;
      height: 76px;
    }

    .throughput-bars i {
      display: block;
      height: var(--h, 30%);
      min-height: 8px;
      border-radius: 999px 999px 2px 2px;
      background: linear-gradient(180deg, var(--green), rgba(25, 230, 167, 0.16));
      opacity: 0.82;
      transition: height 0.4s ease, opacity 0.35s ease;
    }

    .gate-card {
      display: grid;
      align-content: start;
    }

    .gate-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 12px;
    }

    .gate-status strong {
      color: var(--fg-primary);
      font-size: 13px;
      font-weight: 600;
    }

    .gate-pill {
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px solid rgba(245, 184, 75, 0.28);
      background: var(--yellow-dim);
      color: var(--yellow);
      font-size: 10px;
      text-transform: uppercase;
    }

    .gate-card.approved .gate-pill {
      border-color: rgba(25, 230, 167, 0.3);
      background: var(--green-dim);
      color: var(--green);
    }

    .gate-line {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--fg-secondary);
      font-size: 11px;
      margin-top: 7px;
    }

    .gate-line::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.28);
    }

    .gate-line.done::before {
      background: var(--green);
      box-shadow: 0 0 14px rgba(25, 230, 167, 0.4);
    }

    .log-panel {
      min-height: 152px;
    }

    .log-stream {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 6px;
      min-height: 118px;
      padding: 12px;
      color: var(--fg-secondary);
    }

    .log-line {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 10px;
      opacity: 0;
      transform: translateY(6px);
      animation: logIn 0.28s ease forwards;
    }

    @keyframes logIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .log-time {
      color: var(--fg-muted);
      font-variant-numeric: tabular-nums;
    }

    .log-text {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .log-text.ok { color: var(--green); }
    .log-text.warn { color: var(--yellow); }
    .log-text.info { color: var(--blue); }

    /* Evidence Card Preview */
    .evidence-preview {
      position: absolute;
      right: -18px;
      bottom: -34px;
      width: min(380px, 76%);
      padding: 15px;
      background: rgba(15, 23, 42, 0.96);
      border: 1px solid rgba(25, 230, 167, 0.32);
      border-radius: 14px;
      box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.46),
        0 0 32px rgba(25, 230, 167, 0.12);
      opacity: 0;
      transform: translateY(18px) scale(0.98);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .evidence-preview.show {
      opacity: 1;
      transform: translateY(0) scale(1);
      animation: evidenceFloat 4s ease-in-out infinite;
    }

    @keyframes evidenceFloat {
      0%, 100% { translate: 0 0; }
      50% { translate: 0 -6px; }
    }

    .evidence-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .evidence-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--green);
      font-family: var(--font-mono);
    }

    .evidence-badge {
      padding: 4px 8px;
      background: var(--green-dim);
      border: 1px solid rgba(25, 230, 167, 0.28);
      border-radius: 4px;
      font-size: 10px;
      font-weight: 600;
      color: var(--green);
      font-family: var(--font-mono);
    }

    .evidence-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      font-size: 11px;
    }

    .evidence-item {
      display: flex;
      justify-content: space-between;
      padding: 6px 8px;
      background: rgba(2, 6, 23, 0.62);
      border: 1px solid rgba(148, 163, 184, 0.08);
      border-radius: 6px;
    }

    .evidence-key {
      color: var(--fg-muted);
    }

    .evidence-value {
      color: var(--fg-secondary);
      font-family: var(--font-mono);
    }

    /* Section base */
    .section {
      padding: var(--section-spacing) 0;
      border-bottom: 1px solid var(--border);
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 600;
      color: var(--fg-muted);
      font-family: var(--font-mono);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 8px;
      height: 1px;
      background: var(--fg-muted);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--fg-secondary);
      max-width: 640px;
      margin-bottom: 48px;
    }

    /* Section 02: Problem */
    .problem-comparison {
      margin-top: 24px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .problem-panel {
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--bg-card);
      padding: 24px;
    }

    .problem-panel.loss {
      border-color: rgba(248, 113, 113, 0.32);
    }

    .problem-panel.win {
      border-color: rgba(25, 230, 167, 0.32);
    }

    .problem-panel strong {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--fg-muted);
      margin-bottom: 12px;
    }

    .problem-panel__title {
      font-size: 18px;
      margin: 4px 0 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .problem-panel__title .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      display: inline-block;
    }

    .problem-panel.loss .problem-panel__title .dot {
      background: #f97373;
    }

    .problem-panel.win .problem-panel__title .dot {
      background: var(--green);
    }

    .problem-list {
      display: grid;
      gap: 10px;
      color: var(--fg-secondary);
      font-size: 14px;
      line-height: 1.6;
    }

    .problem-arrow {
      display: grid;
      place-items: center;
      width: 56px;
      padding-top: 48px;
      color: var(--fg-muted);
      font-size: 28px;
    }

    /* Section 03: Product Matrix */
    .product-matrix {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .product-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--green));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .product-card:hover::before {
      opacity: 1;
    }

    .product-card:hover {
      border-color: var(--border-bright);
      transform: translateY(-2px);
    }

    .product-name {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .product-tagline {
      font-size: 14px;
      color: var(--fg-secondary);
      margin-bottom: 16px;
      font-family: var(--font-mono);
    }

    .product-description {
      font-size: 14px;
      color: var(--fg-secondary);
      line-height: 1.6;
      margin-bottom: 0;
    }

    .product-features {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .feature-tag {
      padding: 4px 10px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      font-size: 11px;
      color: var(--fg-muted);
      font-family: var(--font-mono);
    }

    .product-interface {
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 10px;
      background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(3, 7, 18, 0.9)),
        var(--bg-surface);
      padding: 14px;
      min-height: 188px;
      display: grid;
      gap: 10px;
    }

    .mini-window-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
      color: var(--fg-muted);
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .mini-window-header strong {
      color: var(--green);
      font-weight: 700;
      letter-spacing: 0;
      text-transform: none;
    }

    .mini-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 8px;
      background: rgba(15, 23, 42, 0.58);
      padding: 9px 10px;
      color: var(--fg-secondary);
      font-size: 12px;
    }

    .mini-row span,
    .mini-row small {
      color: var(--fg-muted);
    }

    .mini-row strong {
      color: var(--fg-primary);
      font-weight: 700;
    }

    .mini-row.is-active {
      border-color: rgba(25, 230, 167, 0.34);
      background: rgba(25, 230, 167, 0.08);
    }

    .mini-row.is-warn {
      border-color: rgba(242, 204, 96, 0.34);
      background: rgba(242, 204, 96, 0.08);
    }

    .mini-meter {
      height: 7px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(148, 163, 184, 0.14);
    }

    .mini-meter span {
      display: block;
      width: var(--value, 72%);
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green), var(--blue));
    }

    .repo-mini {
      display: grid;
      grid-template-columns: 0.8fr 1fr;
      gap: 10px;
    }

    .repo-tree,
    .repo-map,
    .registry-list,
    .check-list {
      display: grid;
      gap: 8px;
    }

    .repo-tree div,
    .repo-map div {
      min-height: 26px;
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 7px;
      background: rgba(148, 163, 184, 0.07);
      color: var(--fg-muted);
      font-family: var(--font-mono);
      font-size: 11px;
      padding: 6px 8px;
    }

    .repo-map div {
      color: var(--green);
      border-color: rgba(25, 230, 167, 0.22);
      background: rgba(25, 230, 167, 0.07);
    }

    .check-list .mini-row::before,
    .registry-list .mini-row::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 14px rgba(25, 230, 167, 0.34);
      flex: 0 0 auto;
    }

    .check-list .mini-row.is-warn::before {
      background: var(--yellow);
      box-shadow: 0 0 14px rgba(242, 204, 96, 0.3);
    }

    /* Section 04: Workflow Timeline */
    .workflow-container {
      position: relative;
    }

    .workflow-timeline {
      display: grid;
      grid-template-columns: repeat(6, minmax(170px, 1fr));
      gap: 14px;
      padding: 28px 0;
    }

    .workflow-step {
      text-align: left;
      position: relative;
      opacity: 0.4;
      transition: opacity 0.4s ease;
    }

    .workflow-step.active,
    .workflow-step.completed {
      opacity: 1;
    }

    .workflow-number {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-card);
      border: 2px solid var(--border);
      border-radius: 9px;
      margin: 0 0 12px;
      font-size: 14px;
      font-weight: 600;
      font-family: var(--font-mono);
      color: var(--fg-muted);
      transition: all 0.4s ease;
    }

    .workflow-step.active .workflow-number {
      border-color: var(--purple);
      color: var(--purple);
      background: var(--purple-dim);
    }

    .workflow-step.completed .workflow-number {
      border-color: var(--green);
      color: var(--green);
      background: var(--green-dim);
    }

    .workflow-line {
      position: absolute;
      top: 20px;
      left: 42px;
      width: calc(100% - 22px);
      height: 2px;
      background: var(--border);
      z-index: 0;
    }

    .workflow-step:last-child .workflow-line {
      display: none;
    }

    .workflow-step.completed .workflow-line {
      background: linear-gradient(90deg, var(--green), var(--border));
    }

    .workflow-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .workflow-desc {
      font-size: 12px;
      color: var(--fg-muted);
      line-height: 1.4;
    }

    .workflow-window {
      min-height: 178px;
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.62);
      padding: 14px;
      display: grid;
      gap: 10px;
    }

    .workflow-window__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: var(--fg-muted);
      font-family: var(--font-mono);
      font-size: 11px;
    }

    .workflow-window__body {
      display: grid;
      gap: 8px;
      color: var(--fg-secondary);
      font-size: 12px;
      line-height: 1.45;
    }

    .workflow-pill {
      display: inline-flex;
      width: fit-content;
      border: 1px solid rgba(25, 230, 167, 0.26);
      border-radius: 999px;
      background: rgba(25, 230, 167, 0.08);
      color: var(--green);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      padding: 4px 8px;
    }

    .product-showcase-panel-wrap {
      margin-top: 32px;
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      background: var(--bg-card);
      min-height: 450px;
    }

    .showcase-tabs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid var(--border);
      background: rgba(15, 23, 42, 0.72);
    }

    .showcase-tab {
      border: none;
      border-right: 1px solid var(--border);
      background: transparent;
      padding: 14px 16px;
      color: var(--fg-muted);
      text-align: left;
      font: inherit;
      font-size: 13px;
      cursor: pointer;
    }

    .showcase-tab:last-child {
      border-right: none;
    }

    .showcase-tab.active {
      background: rgba(25, 230, 167, 0.08);
      color: var(--fg-primary);
      box-shadow: inset 0 -2px 0 var(--green);
    }

    .showcase-panel {
      border: none;
      border-radius: 0;
      background: var(--bg-card);
      padding: 20px;
      display: none;
      gap: 14px;
      min-height: 430px;
      overflow: auto;
    }

    .showcase-panel.active {
      display: grid;
    }

    .showcase-panel h3 {
      font-size: 19px;
      margin: 0;
    }

    .showcase-panel p {
      margin: 0;
      color: var(--fg-muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .showcase-app {
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 13px;
      background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(2, 6, 23, 0.76));
      min-height: 292px;
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
    }

    .showcase-app__bar {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
      background: rgba(2, 6, 23, 0.44);
      padding: 0 14px;
      color: var(--fg-muted);
      font-family: var(--font-mono);
      font-size: 11px;
    }

    .showcase-app__bar strong {
      color: var(--green);
      font-size: 11px;
    }

    .showcase-app__body {
      display: grid;
      grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.25fr) minmax(130px, 0.9fr);
      gap: 12px;
      padding: 14px;
    }

    .showcase-pane {
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 10px;
      background: rgba(2, 6, 23, 0.38);
      padding: 12px;
      min-width: 0;
    }

    .showcase-pane__title {
      color: var(--fg-muted);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .showcase-list {
      display: grid;
      gap: 8px;
    }

    .showcase-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      min-height: 34px;
      border: 1px solid rgba(148, 163, 184, 0.12);
      border-radius: 8px;
      background: rgba(15, 23, 42, 0.54);
      padding: 8px 9px;
      color: var(--fg-secondary);
      font-size: 12px;
      line-height: 1.35;
    }

    .showcase-row strong {
      color: var(--fg-primary);
      font-size: 12px;
      font-weight: 700;
      text-align: right;
    }

    .showcase-row.is-active {
      border-color: rgba(25, 230, 167, 0.32);
      background: rgba(25, 230, 167, 0.08);
    }

    .showcase-row.is-warn {
      border-color: rgba(242, 204, 96, 0.32);
      background: rgba(242, 204, 96, 0.08);
    }

    .showcase-map {
      min-height: 100%;
      display: grid;
      gap: 10px;
    }

    .showcase-map__node {
      border: 1px solid rgba(25, 230, 167, 0.2);
      border-radius: 10px;
      background: rgba(25, 230, 167, 0.07);
      padding: 11px;
      color: var(--fg-secondary);
      font-size: 12px;
    }

    .showcase-map__node strong {
      display: block;
      color: var(--green);
      font-family: var(--font-mono);
      font-size: 12px;
      margin-bottom: 4px;
    }

    .showcase-code {
      color: var(--green);
      font-family: var(--font-mono);
      font-size: 11px;
      line-height: 1.7;
      white-space: normal;
    }

    .showcase-progress {
      height: 7px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.13);
      overflow: hidden;
      margin-top: 8px;
    }

    .showcase-progress span {
      display: block;
      width: var(--value, 74%);
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--green), var(--blue));
    }

    /* Section 05: Tech Capabilities */
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .tech-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 24px;
      transition: all 0.3s ease;
    }

    .tech-card:hover {
      border-color: var(--border-bright);
      background: var(--bg-card-hover);
    }

    .tech-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--purple-dim);
      border-radius: 8px;
      margin-bottom: 16px;
      font-size: 18px;
    }

    .tech-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .tech-desc {
      font-size: 13px;
      color: var(--fg-muted);
      line-height: 1.5;
    }

    .engineering-stack {
      display: grid;
      gap: 12px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background:
        radial-gradient(circle at 86% 16%, rgba(181, 109, 255, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.74));
      padding: 22px;
      overflow: hidden;
      position: relative;
    }

    .engineering-stack::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(25, 230, 167, 0.06), transparent);
      transform: translateX(-100%);
      animation: stackSweep 8s ease-in-out infinite;
      pointer-events: none;
    }

    @keyframes stackSweep {
      0%, 18% { transform: translateX(-100%); opacity: 0; }
      42% { opacity: 1; }
      72%, 100% { transform: translateX(100%); opacity: 0; }
    }

    .stack-layer {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 160px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 12px;
      background: rgba(2, 6, 23, 0.44);
      padding: 14px 16px;
    }

    .stack-layer:nth-child(1) { border-color: rgba(25, 230, 167, 0.3); }
    .stack-layer:nth-child(2) { border-color: rgba(79, 139, 255, 0.24); }
    .stack-layer:nth-child(3) { border-color: rgba(242, 204, 96, 0.24); }
    .stack-layer:nth-child(4) { border-color: rgba(181, 109, 255, 0.24); }
    .stack-layer:nth-child(5) { border-color: rgba(248, 113, 113, 0.2); }
    .stack-layer:nth-child(6) { border-color: rgba(25, 230, 167, 0.24); }

    .stack-layer__name {
      color: var(--fg-primary);
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.02em;
    }

    .stack-layer__name span {
      display: block;
      color: var(--fg-muted);
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0;
      margin-top: 4px;
    }

    .stack-layer__items {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .stack-chip {
      border: 1px solid rgba(148, 163, 184, 0.16);
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.72);
      color: var(--fg-secondary);
      font-size: 12px;
      padding: 6px 10px;
      white-space: nowrap;
    }

    .capability-foundation {
      margin-top: 32px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(181, 109, 255, 0.12), rgba(25, 230, 167, 0.05)),
        var(--bg-card);
      padding: 30px;
      overflow: hidden;
      position: relative;
    }

    .capability-foundation::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, transparent 0 49%, rgba(148, 163, 184, 0.08) 50%, transparent 51%),
        linear-gradient(0deg, transparent 0 49%, rgba(148, 163, 184, 0.06) 50%, transparent 51%);
      background-size: 52px 52px;
      opacity: 0.22;
      pointer-events: none;
    }

    .foundation-header,
    .foundation-map,
    .foundation-note {
      position: relative;
      z-index: 1;
    }

    .foundation-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .foundation-kicker {
      color: var(--green);
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .foundation-title {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .foundation-desc {
      color: var(--fg-secondary);
      font-size: 15px;
      line-height: 1.7;
      max-width: 720px;
    }

    .foundation-badge {
      flex: 0 0 auto;
      border: 1px solid rgba(25, 230, 167, 0.32);
      border-radius: 999px;
      background: rgba(25, 230, 167, 0.1);
      color: var(--green);
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 700;
      padding: 8px 12px;
    }

    .foundation-map {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
    }

    .foundation-group-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .foundation-group {
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 12px;
      background: rgba(10, 14, 26, 0.62);
      padding: 18px;
      display: grid;
      gap: 14px;
      min-height: 230px;
    }

    .foundation-group strong {
      color: var(--fg-primary);
      font-size: 15px;
      line-height: 1.35;
    }

    .foundation-group ul {
      display: grid;
      gap: 10px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .foundation-group li {
      color: var(--fg-muted);
      font-size: 12px;
      line-height: 1.45;
      padding-left: 14px;
      position: relative;
    }

    .foundation-group li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.62em;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 14px rgba(25, 230, 167, 0.34);
    }

    .foundation-node {
      min-height: 116px;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: 10px;
      background: rgba(10, 14, 26, 0.62);
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 12px;
    }

    .foundation-node::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 18px rgba(25, 230, 167, 0.56);
    }

    .foundation-node strong {
      display: block;
      color: var(--fg-primary);
      font-size: 14px;
      line-height: 1.35;
    }

    .foundation-node span {
      color: var(--fg-muted);
      font-size: 12px;
      line-height: 1.5;
    }

    .foundation-note {
      margin-top: 18px;
      color: var(--fg-muted);
      font-size: 13px;
      line-height: 1.7;
    }

    /* Section 06: Solutions */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .solution-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 24px;
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .solution-card:hover {
      border-color: var(--purple);
      background: var(--bg-card-hover);
      transform: translateY(-2px);
    }

    .solution-number {
      font-size: 32px;
      font-weight: 800;
      color: var(--fg-muted);
      opacity: 0.3;
      margin-bottom: 8px;
      font-family: var(--font-mono);
    }

    .solution-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .solution-desc {
      font-size: 13px;
      color: var(--fg-muted);
      line-height: 1.5;
    }

    /* Section 07: Trust Metrics */
    .metrics-section {
      background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 50%, var(--bg-deep) 100%);
    }

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

    .metric-item {
      text-align: center;
    }

    .metrics-grid .metric-value {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 800;
      color: var(--green);
      letter-spacing: -0.03em;
      line-height: 1;
      margin-bottom: 8px;
      font-family: var(--font-mono);
    }

    .metrics-grid .metric-label {
      font-size: 14px;
      color: var(--fg-muted);
    }

    .value-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-bottom: 32px;
    }

    .value-metric {
      border: 1px solid var(--border);
      border-radius: 12px;
      background: rgba(21, 27, 43, 0.72);
      padding: 24px;
    }

    .value-metric__value {
      color: var(--green);
      font-family: var(--font-mono);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      line-height: 1;
      margin-bottom: 10px;
    }

    .value-metric__label {
      color: var(--fg-primary);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .value-metric__note {
      color: var(--fg-muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .metrics-note {
      color: var(--fg-muted);
      font-size: 13px;
      line-height: 1.7;
      margin: -14px 0 34px;
    }

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

    .trust-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .trust-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--green-dim);
      border-radius: 10px;
      font-size: 18px;
      flex-shrink: 0;
    }

    .trust-content h3 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .trust-content p {
      font-size: 13px;
      color: var(--fg-muted);
    }

    /* Section 08: Integrations */
    .integration-viz {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .integration-topology {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .integration-flow {
      flex: 1.5;
      display: grid;
      gap: 12px;
    }

    .integration-flow__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      position: relative;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid rgba(25, 230, 167, 0.18);
      background: rgba(25, 230, 167, 0.06);
      color: var(--fg-primary);
      font-size: 12px;
      font-family: var(--font-mono);
    }

    .integration-flow__row::after,
    .integration-flow__row::before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      background: rgba(148, 163, 184, 0.25);
    }

    .integration-flow__row::before {
      top: -12px;
      bottom: 50%;
      height: 12px;
    }

    .integration-flow__row::after {
      top: 50%;
      bottom: -12px;
      height: 12px;
    }

    .integration-flow__row:first-child::before,
    .integration-flow__row:last-child::after {
      display: none;
    }

    .integration-group {
      flex: 1;
    }

    .integration-group-title {
      font-size: 12px;
      font-weight: 600;
      color: var(--fg-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 16px;
      font-family: var(--font-mono);
    }

    .integration-items {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .integration-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 13px;
      color: var(--fg-secondary);
    }

    .integration-item::before {
      content: '→';
      color: var(--fg-muted);
      font-size: 11px;
    }

    .maestro-hub {
      width: 140px;
      height: 140px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--purple), var(--blue));
      border-radius: 50%;
      position: relative;
      flex-shrink: 0;
    }

    .maestro-hub::before,
    .maestro-hub::after {
      content: '';
      position: absolute;
      border: 1px solid rgba(181, 109, 255, 0.3);
      border-radius: 50%;
      animation: ripple 3s infinite;
    }

    .maestro-hub::before {
      width: 180px;
      height: 180px;
    }

    .maestro-hub::after {
      width: 220px;
      height: 220px;
      animation-delay: 1s;
    }

    @keyframes ripple {
      0% {
        transform: scale(0.8);
        opacity: 1;
      }
      100% {
        transform: scale(1.2);
        opacity: 0;
      }
    }

    .maestro-hub-title {
      font-size: 16px;
      font-weight: 700;
      color: white;
      margin-bottom: 4px;
    }

    .maestro-hub-subtitle {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
      font-family: var(--font-mono);
    }

    /* Section 09: Resources */
    .resources-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .resource-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      transition: all 0.3s ease;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
    }

    .resource-card:hover {
      border-color: var(--border-bright);
      background: var(--bg-card-hover);
    }

    .resource-type {
      font-size: 11px;
      font-weight: 600;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-family: var(--font-mono);
      margin-bottom: 12px;
    }

    .resource-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .resource-desc {
      font-size: 14px;
      color: var(--fg-muted);
      margin-bottom: 16px;
    }

    .resource-link {
      font-size: 13px;
      color: var(--purple);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* Section 10: Final CTA */
    .cta-section {
      text-align: center;
      padding: clamp(80px, 12vw, 160px) 0;
    }

    .cta-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      margin-bottom: 16px;
    }

    .cta-subtitle {
      font-size: 18px;
      color: var(--fg-secondary);
      max-width: 560px;
      margin: 0 auto 40px;
    }

    .cta-form {
      max-width: 480px;
      margin: 0 auto;
      text-align: left;
    }

    .form-group {
      margin-bottom: 16px;
    }

    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 6px;
      color: var(--fg-secondary);
    }

    .form-input,
    .form-select {
      width: 100%;
      padding: 12px 16px;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      color: var(--fg-primary);
      font-family: var(--font-body);
      transition: border-color 0.2s;
    }

    .form-input:focus,
    .form-select:focus {
      outline: none;
      border-color: var(--purple);
    }

    .form-input::placeholder {
      color: var(--fg-muted);
    }

    .form-submit {
      width: 100%;
      padding: 14px;
      background: var(--green);
      color: var(--bg-deep);
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      margin-top: 8px;
    }

    .form-submit:hover {
      background: #5CFFD2;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(25, 230, 167, 0.25);
    }

    /* Footer */
    .footer {
      border-top: 1px solid var(--border);
      padding: 48px 0;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-logo {
      font-size: 18px;
      font-weight: 700;
      color: var(--fg-primary);
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-link {
      font-size: 13px;
      color: var(--fg-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-link:hover {
      color: var(--fg-primary);
    }

    .footer-copy {
      font-size: 12px;
      color: var(--fg-muted);
      margin-top: 24px;
      text-align: center;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .console-container {
        min-height: 0;
      }

      .console {
        transform: none;
      }

      .evidence-preview {
        right: 18px;
        bottom: -26px;
      }

      .problem-comparison,
      .showcase-tabs,
      .product-matrix,
	      .trust-cards,
	      .resources-grid {
	        grid-template-columns: 1fr;
	      }

      .tech-grid,
      .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
      }

	      .metrics-grid {
	        grid-template-columns: repeat(2, 1fr);
	      }

	      .workflow-timeline {
	        grid-template-columns: repeat(3, 1fr);
	      }

      .foundation-header {
        align-items: flex-start;
        flex-direction: column;
      }

	      .foundation-map {
	        grid-template-columns: repeat(2, 1fr);
	      }

      .foundation-group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

	      .value-metrics {
	        grid-template-columns: 1fr;
      }

      .integration-topology {
        flex-direction: column;
      }

      .integration-flow {
        width: 100%;
      }

      .showcase-tab {
        width: 100%;
      }

      .maestro-hub {
        margin: 20px 0;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding-top: 84px;
      }

      .hero-ctas {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .console-body {
        padding: 10px;
      }

      .console-header,
      .console-command {
        align-items: flex-start;
        flex-direction: column;
      }

      .console-status-group {
        flex-wrap: wrap;
      }

      .console-metrics,
      .delivery-board,
      .signal-board,
      .evidence-grid {
        grid-template-columns: 1fr;
      }

      .pipeline-flow {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 14px;
      }

      .pipeline-flow::before,
      .flow-packet {
        display: none;
      }

      .metric {
        min-height: auto;
      }

      .stage {
        grid-template-columns: 18px minmax(0, 1fr) 46px;
        gap: 7px;
      }

      .stage-title,
      .log-text,
      .agent-name {
        white-space: normal;
      }

	      .evidence-preview {
	        position: relative;
	        right: auto;
	        bottom: auto;
	        width: 100%;
	        margin-top: 12px;
	      }

      .hero-demo-top,
      .hero-task-card {
        align-items: flex-start;
        grid-template-columns: 1fr;
      }

      .hero-delivery-lane,
      .hero-evidence-grid,
      .showcase-app__body,
      .stack-layer,
      .foundation-group-grid {
        grid-template-columns: 1fr;
      }

      .showcase-panel,
      .showcase-tab {
        min-height: auto;
      }

	      .tech-grid,
	      .solutions-grid {
        grid-template-columns: 1fr;
      }

      .capability-foundation {
        padding: 22px;
      }

      .foundation-map {
        grid-template-columns: 1fr;
      }

      .metrics-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

	      .workflow-timeline {
	        grid-template-columns: 1fr;
	        gap: 24px;
	      }

	      .workflow-step {
	        width: 100%;
      }

	      .workflow-line {
	        display: none;
	      }
	    }

    /* Scroll animations */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto !important;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }
    }
