: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-rgb: 25, 230, 167;
      --green-dim: color-mix(in srgb, var(--green) 15%, transparent);
      --brand: var(--green);
      --brand-rgb: 25, 230, 167;
      --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;

      /* 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: var(--brand-strong);
      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: var(--page-bg-glow);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--page-bg-grid);
      background-size: var(--page-bg-grid-size);
      mask-image: var(--page-bg-grid-mask);
      pointer-events: none;
      opacity: var(--page-bg-grid-opacity);
    }

    .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 color-mix(in srgb, var(--brand) 30%, transparent);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      margin-bottom: 24px;
      font-family: var(--site-font);
    }

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

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

    @keyframes heroDevopsCreditSpin {
      to { transform: rotate(360deg); }
    }

    @keyframes heroDevopsCreditSpinnerOut {
      to {
        opacity: 0;
        transform: scale(0.72);
      }
    }

    @keyframes heroDevopsCreditCheckBase {
      to {
        background: var(--brand);
        box-shadow: 0 0 14px color-mix(in srgb, var(--brand) 34%, transparent);
      }
    }

    @keyframes heroDevopsCreditCheckIn {
      to {
        opacity: 1;
        transform: rotate(45deg) scale(1);
      }
    }

    .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(--brand) 0%, var(--title-highlight-gradient-end) 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: var(--brand-strong);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px color-mix(in srgb, var(--brand) 25%, transparent);
    }

    .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);
    }

    body .hero.hero-home {
      min-height: calc(100svh - 72px);
      display: flex;
      align-items: center;
      padding-top: clamp(72px, 8vh, 104px);
      padding-bottom: clamp(58px, 7vh, 86px);
    }

    .hero-devops-credit {
      position: absolute;
      top: 24px;
      left: max(24px, calc((100% - var(--site-container)) / 2));
      z-index: 2;
      max-width: min(calc(100% - 48px), 720px);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text-secondary);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
    }

    .hero-devops-credit__spinner {
      position: relative;
      width: 13px;
      height: 13px;
      flex: 0 0 auto;
      border-radius: 50%;
      animation: heroDevopsCreditCheckBase 0.22s var(--ease-out) 3s forwards;
    }

    .hero-devops-credit__spinner::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: conic-gradient(var(--accent-2) 0 76%, transparent 76% 100%);
      -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), currentColor calc(100% - 2px));
      mask: radial-gradient(farthest-side, transparent calc(100% - 3px), currentColor calc(100% - 2px));
      animation:
        heroDevopsCreditSpin 0.9s linear infinite,
        heroDevopsCreditSpinnerOut 0.18s var(--ease-out) 3s forwards;
    }

    .hero-devops-credit__spinner::after {
      content: "";
      position: absolute;
      left: 4px;
      top: 2px;
      width: 5px;
      height: 8px;
      border-right: 2px solid var(--bg-deep);
      border-bottom: 2px solid var(--bg-deep);
      opacity: 0;
      transform: rotate(45deg) scale(0.7);
      transform-origin: center;
      animation: heroDevopsCreditCheckIn 0.22s var(--ease-out) 3.02s forwards;
    }

    .hero-devops-credit > span:last-child {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    body .hero.hero-home .hero-inner {
      grid-template-columns: minmax(0, 0.84fr) minmax(620px, 1.16fr);
      gap: clamp(42px, 5vw, 72px);
      align-items: center;
    }

    body .hero.hero-home .hero-content {
      max-width: 600px;
    }

    body .hero.hero-home .hero-subtitle {
      color: var(--text-secondary);
      font-size: clamp(18px, 1.8vw, 20px);
      font-weight: 600;
      line-height: 1.62;
      margin-bottom: 18px;
    }

    body .hero.hero-home .hero-description {
      max-width: 580px;
      font-size: 17px;
      font-weight: 500;
      line-height: 1.78;
      margin-bottom: 28px;
    }

    body .hero.hero-home .hero-proof-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      width: min(100%, 620px);
      margin: 0 0 18px;
    }

    .hero-proof-item {
      min-width: 0;
      border: 1px solid rgba(148, 163, 184, 0.18);
      border-radius: var(--site-radius);
      background: rgba(13, 30, 42, 0.62);
      padding: 12px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .hero-proof-item strong {
      display: block;
      color: var(--text-primary);
      font-size: clamp(19px, 1.32vw, 20px);
      line-height: 1.1;
      font-weight: 900;
    }

    .hero-proof-item span {
      display: block;
      margin-top: 6px;
      color: var(--text-tertiary);
      font-size: 12px;
      line-height: 1.35;
    }

    body .hero.hero-home .hero-ctas {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
      width: min(100%, 620px);
      margin: 0;
    }

    body .hero.hero-home .hero-ctas .btn-primary {
      width: 100%;
      min-height: 46px;
      height: 46px;
      padding: 0 18px;
    }

    .hero-delivery-carousel {
      position: relative;
      isolation: isolate;
      width: 100%;
      min-width: 0;
      min-height: 700px;
      justify-self: stretch;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.2);
      border-radius: 28px;
      background:
        radial-gradient(circle at 84% 8%, color-mix(in srgb, var(--card-glow) 16%, transparent), transparent 30%),
        radial-gradient(circle at 8% 88%, rgba(79, 157, 255, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(13, 30, 42, 0.96), rgba(5, 11, 16, 0.98));
      box-shadow:
        0 34px 96px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .hero-delivery-carousel::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, black, rgba(0, 0, 0, 0.74) 62%, transparent 100%);
    }

    .hero-delivery-carousel::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      z-index: 1;
      height: 128px;
      pointer-events: none;
      background: linear-gradient(180deg, transparent, rgba(5, 11, 16, 0.92));
    }

    .hero-carousel-topline {
      position: relative;
      z-index: 4;
      min-height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
      background: rgba(5, 11, 16, 0.54);
      padding: 0 18px;
    }

    .hero-carousel-title {
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-secondary);
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 800;
    }

    .hero-carousel-title::before {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 18px color-mix(in srgb, var(--brand) 60%, transparent);
    }

    .hero-carousel-title strong {
      color: var(--text-primary);
    }

    .hero-carousel-title span,
    .hero-carousel-status strong {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .hero-carousel-status {
      min-width: 0;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--site-border-strong);
      background: var(--brand-soft);
      border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent);
      border-radius: 999px;
      background: color-mix(in srgb, var(--brand) 8%, transparent);
      color: var(--brand-strong);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 800;
      padding: 5px 9px;
    }

    .hero-carousel-status span {
      width: 7px;
      height: 7px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: currentColor;
    }

    .hero-carousel-tabs {
      position: relative;
      z-index: 4;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      padding: 10px 12px 0;
    }

    .hero-carousel-tab {
      position: relative;
      min-width: 0;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      overflow: hidden;
      border: 1px solid var(--site-border-strong);
      background: var(--site-surface);
      border: 1px solid color-mix(in srgb, var(--site-border-strong) 72%, transparent);
      border-radius: var(--site-radius);
      background:
        linear-gradient(180deg, color-mix(in srgb, var(--site-surface-solid) 66%, transparent), color-mix(in srgb, var(--bg-deep) 58%, transparent)),
        color-mix(in srgb, var(--site-surface) 42%, transparent);
      color: var(--text-secondary);
      font-family: var(--site-font);
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      cursor: pointer;
      padding: 0 44px 0 10px;
      -webkit-backdrop-filter: blur(18px) saturate(1.35);
      backdrop-filter: blur(18px) saturate(1.35);
      box-shadow:
        inset 0 1px 0 color-mix(in srgb, var(--text-primary) 5%, transparent),
        0 10px 30px color-mix(in srgb, var(--bg-deep) 26%, transparent);
    }

    .hero-carousel-tab span {
      color: var(--text-tertiary);
      font-family: var(--font-mono);
      font-size: 11px;
    }

    .hero-carousel-tab::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      transform: scaleX(0);
      transform-origin: left center;
      background: linear-gradient(90deg, var(--card-glow), var(--accent-2));
    }

    .hero-carousel-tab::before {
      content: "✓";
      position: absolute;
      right: 10px;
      top: 50%;
      z-index: 2;
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--brand-strong), var(--brand));
      color: var(--site-bg);
      font-size: 13px;
      font-weight: 900;
      line-height: 1;
      opacity: 0;
      transform: translateY(-50%) scale(0.72);
      box-shadow: 0 0 18px var(--brand-soft);
      box-shadow:
        0 0 0 1px color-mix(in srgb, var(--brand-strong) 36%, transparent),
        0 0 18px color-mix(in srgb, var(--brand) 38%, transparent);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .hero-carousel-tab.is-active {
      border-color: var(--card-glow);
      background: var(--site-surface);
      border-color: color-mix(in srgb, var(--card-glow) 38%, transparent);
      background:
        radial-gradient(circle at 84% 12%, color-mix(in srgb, var(--card-glow) 14%, transparent), transparent 38%),
        linear-gradient(180deg, color-mix(in srgb, var(--site-surface-solid) 72%, transparent), color-mix(in srgb, var(--bg-deep) 62%, transparent)),
        color-mix(in srgb, var(--card-glow) 10%, transparent);
      color: var(--text-primary);
    }

    .hero-carousel-tab.is-active::after {
      animation: heroCarouselProgress var(--hero-carousel-duration, 5.8s) linear forwards;
    }

    .hero-delivery-carousel.is-paused .hero-carousel-tab.is-active::after {
      animation-play-state: paused;
    }

    .hero-carousel-tab.is-complete::after {
      animation: none;
      transform: scaleX(1);
    }

    .hero-carousel-tab.is-complete::before {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }

    .hero-carousel-stage {
      position: relative;
      z-index: 2;
      min-height: 600px;
    }

    .hero-carousel-scene {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transform: translateY(16px) scale(0.985);
      transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
    }

    .hero-carousel-scene.is-active {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }

    .hero-scene-label-cloud {
      position: absolute;
      inset: 38px 20px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 14px 24px;
      color: rgba(169, 188, 200, 0.14);
      font-size: 22px;
      font-weight: 900;
      line-height: 1;
      user-select: none;
    }

    .hero-scene-label-cloud span:nth-child(2n) {
      transform: translateY(10px);
    }

    .hero-app-window,
    .hero-floating-card,
    .hero-metric-ribbon,
    .hero-orchestration-board,
    .hero-code-panel,
    .hero-pipeline-panel,
    .hero-test-matrix,
    .hero-deploy-card {
      border: 1px solid var(--site-border-strong);
      box-shadow: 0 22px 54px var(--bg-deep);
      border: 1px solid color-mix(in srgb, var(--site-border-strong) 42%, transparent);
      border-radius: var(--site-radius);
      box-shadow: 0 22px 54px color-mix(in srgb, var(--bg-deep) 34%, transparent);
    }

    .hero-floating-card,
    .hero-metric-ribbon,
    .hero-orchestration-board,
    .hero-code-panel,
    .hero-pipeline-panel,
    .hero-test-matrix,
    .hero-deploy-card,
    .hero-agent-node {
      background:
        radial-gradient(circle at 22% 0%, var(--card-glow-soft), transparent 46%),
        linear-gradient(180deg, var(--site-surface), var(--bg-deep)),
        var(--site-surface);
      background:
        radial-gradient(circle at 22% 0%, color-mix(in srgb, var(--card-glow) 12%, transparent), transparent 46%),
        linear-gradient(180deg, color-mix(in srgb, var(--site-surface-solid) 48%, transparent), color-mix(in srgb, var(--bg-deep) 46%, transparent)),
        color-mix(in srgb, var(--site-surface) 36%, transparent);
      -webkit-backdrop-filter: blur(22px) saturate(1.28);
      backdrop-filter: blur(22px) saturate(1.28);
    }

    .hero-app-window {
      position: absolute;
      left: 50%;
      top: 74px;
      width: min(72%, 500px);
      min-height: 322px;
      overflow: hidden;
      background: #f8fafc;
      color: #0f172a;
      transform: translateX(-50%);
    }

    .hero-carousel-scene.is-active .hero-app-window,
    .hero-carousel-scene.is-active .hero-orchestration-board {
      animation: heroSceneLift 0.8s var(--ease-out) both;
    }

    .hero-window-chrome {
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid #dbe3ef;
      background: #eef4fb;
      padding: 0 12px;
    }

    .hero-chrome-dots {
      display: inline-flex;
      gap: 5px;
    }

    .hero-chrome-dots span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #94a3b8;
    }

    .hero-window-title {
      min-width: 0;
      color: #475569;
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 800;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .hero-requirements-app {
      display: grid;
      grid-template-columns: 118px minmax(0, 1fr);
      min-height: 286px;
    }

    .hero-pm-sidebar {
      background: #0f172a;
      color: #cbd5e1;
      padding: 14px 12px;
    }

    .hero-pm-sidebar strong {
      display: block;
      color: #f8fafc;
      font-size: 13px;
      line-height: 1.25;
    }

    .hero-pm-nav {
      display: grid;
      gap: 8px;
      margin-top: 16px;
    }

    .hero-pm-nav span {
      border-radius: 6px;
      background: rgba(148, 163, 184, 0.12);
      color: #94a3b8;
      font-size: 11px;
      font-weight: 700;
      padding: 7px 8px;
    }

    .hero-pm-nav span:first-child {
      background: color-mix(in srgb, var(--card-glow) 16%, transparent);
      color: var(--text-primary);
    }

    .hero-requirement-main {
      padding: 14px;
    }

    .hero-requirement-head,
    .hero-agent-map-head,
    .hero-code-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .hero-requirement-head {
      margin-bottom: 12px;
    }

    .hero-requirement-head h3,
    .hero-agent-map-head h3,
    .hero-pipeline-panel h3,
    .hero-test-matrix h3,
    .hero-deploy-card h3 {
      margin: 0;
      color: inherit;
      font-size: 15px;
      line-height: 1.25;
      font-weight: 800;
    }

    .hero-requirement-head span {
      border-radius: 999px;
      background: #ccfbf1;
      color: #115e59;
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 800;
      padding: 5px 7px;
      white-space: nowrap;
    }

    .hero-req-table {
      display: grid;
      gap: 7px;
    }

    .hero-req-row {
      display: grid;
      grid-template-columns: 62px minmax(0, 1fr) 68px;
      gap: 8px;
      align-items: center;
      border: 1px solid #e2e8f0;
      border-radius: 7px;
      background: #ffffff;
      font-size: 11px;
      line-height: 1.35;
      padding: 9px;
    }

    .hero-req-row.is-active {
      border-color: #67e8f9;
      background: #ecfeff;
    }

    .hero-req-row.is-active.is-pass {
      border-color: color-mix(in srgb, var(--brand) 42%, transparent);
      background: color-mix(in srgb, var(--brand) 10%, transparent);
      box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand) 16%, transparent);
    }

    .hero-req-row.is-active.is-warn {
      border-color: color-mix(in srgb, var(--accent-3) 48%, transparent);
      background: color-mix(in srgb, var(--accent-3) 11%, transparent);
      box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent-3) 16%, transparent);
    }

    .hero-req-row.is-active.is-fail {
      border-color: color-mix(in srgb, var(--red) 50%, transparent);
      background: color-mix(in srgb, var(--red) 10%, transparent);
      box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--red) 16%, transparent);
    }

    .hero-req-id {
      color: #0f766e;
      font-family: var(--font-mono);
      font-weight: 800;
    }

    .hero-req-name {
      min-width: 0;
      color: #1e293b;
      font-weight: 800;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .hero-req-status {
      justify-self: end;
      border-radius: 999px;
      background: #f1f5f9;
      color: #475569;
      font-size: 10px;
      font-weight: 800;
      padding: 4px 6px;
    }

    .hero-req-row.is-active .hero-req-status {
      background: #ccfbf1;
      color: #115e59;
    }

    .hero-req-row.is-active.is-pass .hero-req-status {
      background: color-mix(in srgb, var(--brand) 16%, transparent);
      color: var(--brand);
    }

    .hero-req-row.is-active.is-warn .hero-req-status {
      background: color-mix(in srgb, var(--accent-3) 16%, transparent);
      color: var(--accent-3);
    }

    .hero-req-row.is-active.is-fail .hero-req-status {
      background: color-mix(in srgb, var(--red) 14%, transparent);
      color: var(--red);
    }

    .hero-floating-card {
      position: absolute;
      z-index: 3;
      width: 220px;
      color: var(--text-primary);
      opacity: 0;
      translate: var(--hero-card-enter-x, 0) var(--hero-card-enter-y, 16px);
      transform: translateY(0);
      will-change: opacity, translate, transform;
      padding: 14px;
    }

    .hero-floating-card h3 {
      margin: 0 0 10px;
      color: var(--text-primary);
      font-size: 15px;
      line-height: 1.25;
    }

    .hero-floating-card p {
      margin: 0;
      color: var(--text-secondary);
      font-size: 12px;
      line-height: 1.55;
      transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .hero-floating-card.is-review-updating [data-review-summary],
    .hero-floating-card.is-review-updating [data-review-detail] {
      opacity: 0;
      transform: translateY(4px);
    }

    .hero-floating-card.is-left {
      --hero-card-enter-x: -42px;
      --hero-card-enter-y: 8px;
      --hero-card-delay: 0.18s;
      left: 12px;
      top: 152px;
    }

    .hero-floating-card.is-right {
      --hero-card-enter-x: 42px;
      --hero-card-enter-y: 8px;
      --hero-card-delay: 0.28s;
      right: 12px;
      top: 134px;
    }

    .hero-floating-card.is-bottom-left {
      --hero-card-enter-x: -34px;
      --hero-card-enter-y: 16px;
      --hero-card-delay: 0.26s;
      left: 18px;
      bottom: 92px;
    }

    .hero-scene-agents .hero-floating-card.is-right {
      right: -4px;
      top: 44px;
      width: 236px;
    }

    .hero-scene-agents .hero-floating-card.is-bottom-left {
      left: 20px;
      bottom: 172px;
      width: min(56%, 420px);
      padding: 12px;
    }

    .hero-scene-agents .hero-floating-card.is-bottom-left h3 {
      margin-bottom: 8px;
      font-size: 14px;
    }

    .hero-scene-agents .hero-floating-card.is-bottom-left .hero-agent-list {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 6px;
      margin-top: 8px;
    }

    .hero-carousel-scene.is-active .hero-floating-card,
    .hero-carousel-scene.is-active .hero-pipeline-panel,
    .hero-carousel-scene.is-active .hero-test-matrix,
    .hero-carousel-scene.is-active .hero-deploy-card {
      animation: heroCardConverge 0.92s cubic-bezier(0.16, 1, 0.3, 1) var(--hero-card-delay, 0.2s) both;
    }

    .hero-review-list,
    .hero-agent-list {
      display: grid;
      gap: 8px;
      margin-top: 10px;
    }

    .hero-review-list span,
    .hero-agent-list span {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 7px;
      background: rgba(5, 11, 16, 0.48);
      color: var(--text-secondary);
      font-size: 11px;
      font-weight: 700;
      padding: 7px 8px;
    }

    .hero-scene-agents .hero-agent-list span {
      align-items: flex-start;
      flex-direction: column;
      border-color: color-mix(in srgb, var(--site-border-strong) 26%, transparent);
      background:
        radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--card-glow) 10%, transparent), transparent 52%),
        color-mix(in srgb, var(--bg-deep) 26%, transparent);
      -webkit-backdrop-filter: blur(14px) saturate(1.18);
      backdrop-filter: blur(14px) saturate(1.18);
      gap: 4px;
      min-height: 48px;
      padding: 9px 10px;
    }

    .hero-review-list strong,
    .hero-agent-list strong {
      color: var(--brand-strong);
      font-family: var(--font-mono);
      font-size: 10px;
      white-space: nowrap;
    }

    .hero-risk-score {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 10px;
      align-items: center;
      margin-top: 12px;
    }

    .hero-risk-ring {
      --hero-risk-progress: 0%;
      --hero-risk-tone: var(--accent-3);
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: conic-gradient(
        var(--hero-risk-tone) 0 var(--hero-risk-progress),
        color-mix(in srgb, var(--site-border-strong) 26%, transparent) var(--hero-risk-progress) 100%
      );
      color: var(--text-primary);
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 800;
    }

    .hero-risk-ring.is-pass {
      --hero-risk-tone: var(--brand);
    }

    .hero-risk-ring.is-warn {
      --hero-risk-tone: var(--accent-3);
    }

    .hero-risk-ring.is-fail {
      --hero-risk-tone: var(--red);
    }

    .hero-risk-ring span {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: color-mix(in srgb, var(--bg-deep) 84%, var(--card-glow) 8%);
    }

    .hero-metric-ribbon {
      position: absolute;
      z-index: 4;
      left: 50%;
      bottom: 30px;
      width: min(78%, 540px);
      display: grid;
      grid-template-columns: 136px minmax(0, 1fr);
      gap: 20px;
      align-items: center;
      color: var(--text-primary);
      overflow: hidden;
      isolation: isolate;
      opacity: 0;
      transform: translateX(-50%);
      translate: 0 38px;
      padding: 18px 20px;
      border-color: var(--card-glow);
      background:
        radial-gradient(ellipse at 50% 112%, var(--card-glow-soft), transparent 56%),
        linear-gradient(180deg, var(--site-surface), var(--bg-deep)),
        var(--site-surface);
      border-color: color-mix(in srgb, var(--card-glow) 44%, transparent);
      background:
        radial-gradient(ellipse at 50% 112%, color-mix(in srgb, var(--card-glow) 30%, transparent), transparent 56%),
        radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--card-glow) 12%, transparent), transparent 46%),
        linear-gradient(180deg, color-mix(in srgb, var(--site-surface-solid) 42%, transparent), color-mix(in srgb, var(--bg-deep) 34%, transparent)),
        color-mix(in srgb, var(--site-surface) 28%, transparent);
      -webkit-backdrop-filter: blur(24px) saturate(1.32);
      backdrop-filter: blur(24px) saturate(1.32);
      box-shadow:
        inset 0 -1px 0 var(--card-glow-soft),
        0 22px 54px var(--bg-deep),
        0 30px 86px var(--card-glow-soft);
      box-shadow:
        inset 0 1px 0 color-mix(in srgb, var(--text-primary) 7%, transparent),
        inset 0 -1px 0 color-mix(in srgb, var(--card-glow) 54%, transparent),
        inset 0 -48px 72px color-mix(in srgb, var(--card-glow) 16%, transparent),
        0 22px 54px color-mix(in srgb, var(--bg-deep) 36%, transparent),
        0 30px 86px color-mix(in srgb, var(--card-glow) 20%, transparent);
      will-change: opacity, translate, filter;
    }

    .hero-metric-ribbon::before {
      content: "";
      position: absolute;
      left: -12%;
      right: -12%;
      bottom: -54%;
      z-index: 0;
      height: 92%;
      background:
        radial-gradient(ellipse at center bottom, var(--card-glow-soft), transparent 74%);
      background:
        radial-gradient(ellipse at center bottom, color-mix(in srgb, var(--card-glow) 58%, transparent), color-mix(in srgb, var(--card-glow) 22%, transparent) 34%, transparent 74%);
      filter: blur(2px);
      pointer-events: none;
    }

    .hero-metric-ribbon::after {
      content: "";
      position: absolute;
      left: 12%;
      right: 12%;
      bottom: 0;
      z-index: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--card-glow-soft), transparent);
      box-shadow: 0 -10px 30px var(--card-glow-soft);
      background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--card-glow) 66%, transparent), transparent);
      box-shadow:
        0 -10px 30px color-mix(in srgb, var(--card-glow) 28%, transparent),
        0 -24px 56px color-mix(in srgb, var(--card-glow) 16%, transparent);
      pointer-events: none;
    }

    @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
      .hero-floating-card,
      .hero-metric-ribbon,
      .hero-orchestration-board,
      .hero-code-panel,
      .hero-pipeline-panel,
      .hero-test-matrix,
      .hero-deploy-card,
      .hero-agent-node {
        background:
          radial-gradient(circle at 22% 0%, var(--card-glow-soft), transparent 46%),
          linear-gradient(180deg, var(--site-surface-solid), var(--bg-deep)),
          var(--site-surface-solid);
      }

      .hero-metric-ribbon {
        background:
          radial-gradient(ellipse at 50% 112%, var(--card-glow-soft), transparent 56%),
          linear-gradient(180deg, var(--site-surface-solid), var(--bg-deep)),
          var(--site-surface-solid);
      }
    }

    html.is-legacy-edge body .hero.hero-home .hero-proof-item {
      padding-inline: 10px;
    }

    html.is-legacy-edge body .hero.hero-home .hero-proof-item strong {
      font-size: 18px;
      line-height: 1.08;
    }

    html.is-legacy-edge body .hero.hero-home .hero-delivery-carousel {
      background:
        radial-gradient(circle at 84% 8%, var(--card-glow-soft), transparent 30%),
        radial-gradient(circle at 8% 88%, var(--blue-dim), transparent 34%),
        linear-gradient(180deg, var(--bg-surface), var(--bg-deep));
    }

    html.is-legacy-edge body .hero.hero-home .hero-delivery-carousel::after {
      height: 108px;
      background: linear-gradient(180deg, transparent, var(--bg-deep));
      opacity: 0.84;
    }

    html.is-legacy-edge body .hero.hero-home .hero-carousel-tab,
    html.is-legacy-edge body .hero.hero-home .hero-floating-card,
    html.is-legacy-edge body .hero.hero-home .hero-metric-ribbon,
    html.is-legacy-edge body .hero.hero-home .hero-orchestration-board,
    html.is-legacy-edge body .hero.hero-home .hero-code-panel,
    html.is-legacy-edge body .hero.hero-home .hero-pipeline-panel,
    html.is-legacy-edge body .hero.hero-home .hero-test-matrix,
    html.is-legacy-edge body .hero.hero-home .hero-deploy-card,
    html.is-legacy-edge body .hero.hero-home .hero-agent-node {
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      background:
        radial-gradient(circle at 22% 0%, var(--card-glow-soft), transparent 48%),
        linear-gradient(180deg, var(--site-surface-solid), var(--bg-deep)),
        var(--site-surface-solid);
      border-color: var(--site-border-strong);
      box-shadow:
        inset 0 1px 0 var(--border-subtle),
        0 22px 54px var(--bg-deep);
    }

    html.is-legacy-edge body .hero.hero-home .hero-carousel-tab.is-active {
      border-color: var(--card-glow);
      background:
        radial-gradient(circle at 84% 12%, var(--card-glow-soft), transparent 38%),
        linear-gradient(180deg, var(--site-surface-solid), var(--bg-deep)),
        var(--site-surface-solid);
    }

    html.is-legacy-edge body .hero.hero-home .hero-metric-ribbon {
      border-color: var(--card-glow);
      background:
        radial-gradient(ellipse at 50% 112%, var(--card-glow-soft), transparent 62%),
        radial-gradient(circle at 20% 0%, var(--card-glow-soft), transparent 48%),
        linear-gradient(180deg, var(--site-surface-solid), var(--bg-deep)),
        var(--site-surface-solid);
      box-shadow:
        inset 0 1px 0 var(--border-subtle),
        inset 0 -1px 0 var(--card-glow-soft),
        0 22px 54px var(--bg-deep),
        0 22px 58px var(--card-glow-soft);
    }

    html.is-legacy-edge body .hero.hero-home .hero-metric-ribbon::before {
      bottom: -42%;
      height: 72%;
      background: radial-gradient(ellipse at center bottom, var(--card-glow-soft), transparent 72%);
      filter: none;
      opacity: 0.58;
    }

    html.is-legacy-edge body .hero.hero-home .hero-metric-ribbon::after {
      background: linear-gradient(90deg, transparent, var(--card-glow-soft), transparent);
      box-shadow: 0 -10px 28px var(--card-glow-soft);
      opacity: 0.88;
    }

    .hero-metric-ribbon > * {
      position: relative;
      z-index: 1;
    }

    .hero-carousel-scene.is-active .hero-metric-ribbon {
      animation: heroRibbonRise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
    }

    .hero-metric-ribbon strong {
      display: block;
      color: var(--brand-strong);
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
    }

    .hero-metric-ribbon strong span {
      display: inline;
      margin-top: 0;
      color: inherit;
      font-size: inherit;
    }

    .hero-metric-count {
      color: var(--brand-strong);
      font-variant-numeric: tabular-nums;
      transition: color 0.28s ease;
    }

    .hero-metric-count [data-count-current] {
      color: inherit;
      transition: color 0.28s ease;
    }

    .hero-metric-count.is-counting [data-count-current] {
      color: var(--accent-3);
    }

    .hero-metric-count.is-complete,
    .hero-metric-count.is-complete [data-count-current] {
      color: var(--brand-strong);
    }

    .hero-metric-ribbon span {
      display: block;
      margin-top: 7px;
      color: var(--text-tertiary);
      font-size: 12px;
    }

    .hero-metric-ribbon p {
      margin: 0;
      border-left: 1px solid rgba(148, 163, 184, 0.22);
      color: var(--text-secondary);
      font-size: 16px;
      line-height: 1.55;
      padding-left: 20px;
    }

    .hero-metric-ribbon b {
      color: var(--text-primary);
    }

    .hero-orchestration-board {
      position: absolute;
      left: 50%;
      top: 66px;
      width: min(76%, 520px);
      min-height: 360px;
      overflow: hidden;
      color: var(--text-primary);
      transform: translateX(-50%);
    }

    .hero-agent-map-head {
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
      padding: 14px 16px;
    }

    .hero-agent-map-head span {
      color: var(--accent-2);
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 800;
    }

    .hero-agent-map {
      position: relative;
      min-height: 302px;
    }

    .hero-scene-agents .hero-orchestration-board,
    .hero-scene-agents .hero-floating-card,
    .hero-scene-agents .hero-agent-node {
      background:
        radial-gradient(circle at 24% 0%, color-mix(in srgb, var(--card-glow) 16%, transparent), transparent 48%),
        linear-gradient(180deg, color-mix(in srgb, var(--site-surface-solid) 34%, transparent), color-mix(in srgb, var(--bg-deep) 30%, transparent)),
        color-mix(in srgb, var(--site-surface) 20%, transparent);
      box-shadow:
        inset 0 1px 0 color-mix(in srgb, var(--text-primary) 7%, transparent),
        inset 0 -1px 0 color-mix(in srgb, var(--card-glow) 10%, transparent),
        0 24px 62px color-mix(in srgb, var(--bg-deep) 34%, transparent);
    }

    .hero-scene-agents .hero-floating-card {
      z-index: 2;
    }

    .hero-scene-agents .hero-agent-node {
      z-index: 3;
    }

    .hero-graph-lines {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      color: rgba(79, 157, 255, 0.56);
    }

    .hero-graph-lines path {
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-carousel-scene.is-active .hero-graph-lines path {
      stroke-dasharray: 8 10;
      animation: heroGraphFlow 1.8s linear infinite;
    }

    .hero-agent-node {
      --hero-card-enter-y: 14px;
      position: absolute;
      z-index: 1;
      width: 122px;
      min-height: 78px;
      display: grid;
      gap: 6px;
      border: 1px solid color-mix(in srgb, var(--site-border-strong) 38%, transparent);
      border-radius: var(--site-radius);
      opacity: 0;
      translate: var(--hero-card-enter-x, 0) var(--hero-card-enter-y, 14px);
      padding: 10px;
    }

    .hero-agent-node.is-core {
      --hero-card-enter-y: 18px;
      --hero-card-delay: 0.18s;
      left: calc(50% - 61px);
      top: 112px;
      border-color: color-mix(in srgb, var(--card-glow) 46%, transparent);
      background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--card-glow) 28%, transparent), transparent 58%),
        color-mix(in srgb, var(--card-glow) 12%, transparent);
    }

    .hero-scene-agents .hero-agent-node.is-core {
      background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--card-glow) 30%, transparent), transparent 58%),
        linear-gradient(180deg, color-mix(in srgb, var(--card-glow) 14%, transparent), color-mix(in srgb, var(--bg-deep) 24%, transparent)),
        color-mix(in srgb, var(--site-surface) 18%, transparent);
    }

    .hero-agent-node.is-planner { --hero-card-enter-x: -28px; --hero-card-delay: 0.28s; left: 28px; top: 36px; }
    .hero-agent-node.is-context { --hero-card-enter-x: 28px; --hero-card-delay: 0.34s; right: 28px; top: 36px; }
    .hero-agent-node.is-executor { --hero-card-enter-x: -28px; --hero-card-delay: 0.42s; left: 40px; bottom: 34px; }
    .hero-agent-node.is-verifier { --hero-card-enter-x: 28px; --hero-card-delay: 0.48s; right: 40px; bottom: 34px; }

    .hero-carousel-scene.is-active .hero-agent-node {
      animation: heroCardConverge 0.78s cubic-bezier(0.16, 1, 0.3, 1) var(--hero-card-delay, 0.2s) both;
    }

    .hero-agent-node strong {
      color: var(--text-primary);
      font-size: 13px;
      line-height: 1.25;
    }

    .hero-agent-node span {
      color: var(--text-tertiary);
      font-size: 11px;
      line-height: 1.35;
    }

    .hero-agent-badge {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      background: rgba(79, 157, 255, 0.14);
      color: var(--accent-2);
      font-family: var(--font-mono);
      font-weight: 800;
    }

    .hero-agent-node.is-core .hero-agent-badge {
      background: color-mix(in srgb, var(--card-glow) 18%, transparent);
      color: var(--text-primary);
    }

    .hero-run-wave {
      display: grid;
      gap: 5px;
      margin-top: 12px;
    }

    .hero-run-wave span {
      width: var(--wave-target, 100%);
      height: 7px;
      border-radius: 999px;
      background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 20%, transparent), var(--brand));
      transform: scaleX(0);
      transform-origin: left center;
    }

    .hero-carousel-scene.is-active .hero-run-wave span {
      animation: heroFillTrack 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .hero-carousel-scene.is-active .hero-run-wave span:nth-child(1) { animation-delay: 0.78s; }
    .hero-carousel-scene.is-active .hero-run-wave span:nth-child(2) { animation-delay: 0.9s; }
    .hero-carousel-scene.is-active .hero-run-wave span:nth-child(3) { animation-delay: 1.02s; }

    .hero-code-panel {
      --hero-card-enter-x: -30px;
      position: absolute;
      left: 30px;
      top: 68px;
      width: min(58%, 420px);
      min-height: 336px;
      overflow: hidden;
      color: var(--text-primary);
    }

    .hero-carousel-scene.is-active .hero-code-panel {
      animation: heroSceneSlide 0.8s var(--ease-out) both;
    }

    .hero-code-head {
      border-bottom: 1px solid rgba(148, 163, 184, 0.14);
      background: rgba(13, 30, 42, 0.88);
      padding: 12px 14px;
    }

    .hero-code-head strong {
      color: var(--text-primary);
      font-family: var(--font-mono);
      font-size: 12px;
    }

    .hero-code-head span {
      color: var(--brand-strong);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 800;
    }

    .hero-code-lines {
      display: grid;
      gap: 7px;
      padding: 14px;
      font-family: var(--font-mono);
      font-size: 11px;
      line-height: 1.45;
    }

    .hero-code-lines div {
      min-width: 0;
      color: #94a3b8;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .hero-code-lines span {
      color: var(--accent-2);
    }

    .hero-code-lines b {
      color: var(--brand-strong);
      font-weight: 600;
    }

    .hero-pipeline-panel {
      --hero-card-enter-x: 42px;
      --hero-card-enter-y: 10px;
      --hero-card-delay: 0.28s;
      position: absolute;
      right: 20px;
      top: 100px;
      z-index: 3;
      width: 260px;
      color: var(--text-primary);
      opacity: 0;
      translate: var(--hero-card-enter-x) var(--hero-card-enter-y);
      transform: translateY(0);
      will-change: opacity, translate, transform;
      padding: 14px;
    }

    .hero-pipeline-steps {
      display: grid;
      gap: 8px;
      margin-top: 12px;
    }

    .hero-pipeline-step {
      display: grid;
      grid-template-columns: 18px minmax(0, 1fr) 64px;
      gap: 8px;
      align-items: center;
      border: 1px solid color-mix(in srgb, var(--site-border-strong) 28%, transparent);
      border-radius: 7px;
      background: color-mix(in srgb, var(--site-surface) 54%, transparent);
      color: var(--text-secondary);
      font-size: 11px;
      font-weight: 700;
      padding: 8px;
      transition: border-color 0.32s ease, background 0.32s ease, color 0.32s ease;
    }

    .hero-pipeline-step::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: color-mix(in srgb, var(--site-border-strong) 44%, transparent);
      box-shadow: none;
      transition: background 0.32s ease, box-shadow 0.32s ease;
    }

    .hero-pipeline-step.is-passed {
      border-color: color-mix(in srgb, var(--brand) 26%, transparent);
      background: color-mix(in srgb, var(--brand) 7%, var(--site-surface) 93%);
      color: var(--text-secondary);
    }

    .hero-pipeline-step.is-passed::before {
      background: var(--brand);
      box-shadow: 0 0 14px color-mix(in srgb, var(--brand) 44%, transparent);
    }

    .hero-pipeline-step.is-running {
      border-color: color-mix(in srgb, var(--accent-3) 34%, transparent);
      background: color-mix(in srgb, var(--accent-3) 8%, var(--site-surface) 92%);
      color: var(--text-primary);
    }

    .hero-pipeline-step.is-running::before {
      background: var(--accent-3);
      box-shadow: 0 0 14px color-mix(in srgb, var(--accent-3) 44%, transparent);
    }

    .hero-pipeline-step strong {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 5px;
      color: var(--text-primary);
      font-family: var(--font-mono);
      font-size: 10px;
      text-align: right;
      white-space: nowrap;
    }

    .hero-pipeline-step.is-waiting strong {
      color: var(--text-tertiary);
    }

    .hero-pipeline-step.is-running strong {
      color: var(--accent-3);
    }

    .hero-pipeline-step.is-running strong::before {
      content: "";
      width: 10px;
      height: 10px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: conic-gradient(var(--accent-3) 0 78%, transparent 78% 100%);
      -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), currentColor calc(100% - 2px));
      mask: radial-gradient(farthest-side, transparent calc(100% - 3px), currentColor calc(100% - 2px));
      animation: heroPipelineSpinner 0.92s linear infinite;
    }

    .hero-test-matrix {
      --hero-card-enter-x: 36px;
      --hero-card-enter-y: 16px;
      --hero-card-delay: 0.44s;
      position: absolute;
      right: 32px;
      top: 336px;
      z-index: 2;
      width: 312px;
      color: var(--text-primary);
      opacity: 0;
      translate: var(--hero-card-enter-x) var(--hero-card-enter-y);
      transform: translateY(0);
      will-change: opacity, translate, transform;
      padding: 14px;
    }

    .hero-test-grid {
      display: grid;
      grid-template-columns: repeat(8, minmax(0, 1fr));
      gap: 6px;
      margin-top: 12px;
    }

    .hero-test-grid span {
      position: relative;
      min-height: 28px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(148, 163, 184, 0.14);
      border-radius: 6px;
      background: rgba(13, 30, 42, 0.86);
      color: var(--text-tertiary);
      font-family: var(--font-mono);
      font-size: 10px;
      font-weight: 800;
      transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, color 0.24s ease, transform 0.24s ease;
    }

    .hero-test-grid span.is-running {
      border-color: color-mix(in srgb, var(--accent-3) 34%, transparent);
      background: color-mix(in srgb, var(--accent-3) 8%, transparent);
      color: var(--accent-3);
    }

    .hero-test-grid span.is-lit {
      border-color: color-mix(in srgb, var(--brand) 34%, transparent);
      background:
        radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--brand) 18%, transparent), transparent 62%),
        color-mix(in srgb, var(--brand) 10%, transparent);
      box-shadow: 0 0 18px color-mix(in srgb, var(--brand) 20%, transparent);
      color: var(--brand-strong);
      transform: translateY(-1px);
    }

    .hero-deploy-card {
      --hero-card-enter-x: -36px;
      --hero-card-enter-y: 16px;
      --hero-card-delay: 0.36s;
      position: absolute;
      left: 68px;
      bottom: 134px;
      z-index: 3;
      width: 210px;
      color: var(--text-primary);
      opacity: 0;
      translate: var(--hero-card-enter-x) var(--hero-card-enter-y);
      transform: translateY(0);
      will-change: opacity, translate, transform;
      padding: 14px;
    }

    .hero-deploy-meter {
      position: relative;
      height: 9px;
      border-radius: 999px;
      background: rgba(148, 163, 184, 0.14);
      margin-top: 12px;
    }

    .hero-deploy-meter::before,
    .hero-deploy-meter::after {
      content: "";
      position: absolute;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.24s ease, transform 0.24s ease;
    }

    .hero-deploy-meter::after {
      right: -6px;
      top: 50%;
      z-index: 2;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 18px color-mix(in srgb, var(--brand) 44%, transparent);
      transform: translateY(-50%) scale(0.68);
    }

    .hero-deploy-meter::before {
      right: -1px;
      top: 50%;
      z-index: 3;
      width: 5px;
      height: 9px;
      border-right: 2px solid var(--bg-deep);
      border-bottom: 2px solid var(--bg-deep);
      transform: translateY(-60%) rotate(45deg) scale(0.68);
    }

    .hero-deploy-meter.is-complete::before,
    .hero-deploy-meter.is-complete::after {
      opacity: 1;
      transform: translateY(-50%) scale(1);
    }

    .hero-deploy-meter.is-complete::before {
      transform: translateY(-60%) rotate(45deg) scale(1);
    }

    .hero-deploy-meter span {
      display: block;
      width: 100%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent-2), var(--brand));
      transform: scaleX(0);
      transform-origin: left center;
    }

    .hero-deploy-card p {
      margin: 10px 0 0;
      color: var(--text-secondary);
      font-size: 12px;
      line-height: 1.5;
    }

    @keyframes heroCarouselProgress {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    @keyframes heroSceneLift {
      from {
        opacity: 0;
        transform: translateX(-50%) translateY(22px) scale(0.97);
      }
      to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
      }
    }

    @keyframes heroSceneSlide {
      from {
        opacity: 0;
        transform: translateY(22px) scale(0.97);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes heroCardConverge {
      from {
        opacity: 0;
        translate: var(--hero-card-enter-x, 0) var(--hero-card-enter-y, 16px);
        filter: blur(6px);
      }
      62% {
        opacity: 1;
        filter: blur(0);
      }
      to {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
      }
    }

    @keyframes heroRibbonRise {
      from {
        opacity: 0;
        translate: 0 38px;
        filter: blur(8px);
      }
      68% {
        opacity: 1;
        filter: blur(0);
      }
      to {
        opacity: 1;
        translate: 0 0;
        filter: blur(0);
      }
    }

    @keyframes heroFillTrack {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    @keyframes heroPipelineSpinner {
      to { transform: rotate(360deg); }
    }

    @keyframes heroGraphFlow {
      to { stroke-dashoffset: -36; }
    }

    /* 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%, color-mix(in srgb, var(--card-glow) 20%, transparent), 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 color-mix(in srgb, var(--card-glow) 6%, transparent),
        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(color-mix(in srgb, var(--card-glow) 4.5%, transparent) 1px, transparent 1px),
        linear-gradient(90deg, color-mix(in srgb, var(--card-glow) 3.5%, transparent) 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, color-mix(in srgb, var(--card-glow) 8%, transparent), 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 color-mix(in srgb, var(--brand) 75%, transparent);
      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: color-mix(in srgb, var(--brand) 32%, transparent);
      background: var(--green-dim);
    }

    .console-status {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 8px;
      border: 1px solid color-mix(in srgb, var(--brand) 32%, transparent);
      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 color-mix(in srgb, var(--brand) 36%, transparent);
      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, color-mix(in srgb, var(--brand) 45%, transparent), 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 color-mix(in srgb, var(--brand) 11%, transparent), 0 0 22px color-mix(in srgb, var(--brand) 40%, transparent);
    }

    .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 color-mix(in srgb, var(--brand) 70%, transparent);
      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: color-mix(in srgb, var(--brand) 72%, transparent);
      background: var(--green);
      box-shadow: 0 0 18px color-mix(in srgb, var(--brand) 38%, transparent);
    }

    .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, color-mix(in srgb, var(--card-glow) 9%, transparent), 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 color-mix(in srgb, var(--brand) 32%, transparent);
      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 color-mix(in srgb, var(--brand) 42%, transparent);
      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, color-mix(in srgb, var(--brand) 14%, transparent), color-mix(in srgb, var(--brand) 2%, transparent));
      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), color-mix(in srgb, var(--brand) 16%, transparent));
      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: color-mix(in srgb, var(--brand) 30%, transparent);
      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 color-mix(in srgb, var(--brand) 40%, transparent);
    }

    .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 color-mix(in srgb, var(--brand) 32%, transparent);
      border-radius: 14px;
      box-shadow:
        0 22px 56px rgba(0, 0, 0, 0.46),
        0 0 32px color-mix(in srgb, var(--brand) 12%, transparent);
      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 color-mix(in srgb, var(--brand) 28%, transparent);
      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(--site-font);
      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: color-mix(in srgb, var(--brand) 32%, transparent);
    }

    .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(--site-font);
    }

    .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(--site-font);
    }

    .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: color-mix(in srgb, var(--brand) 34%, transparent);
      background: color-mix(in srgb, var(--brand) 8%, transparent);
    }

    .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: color-mix(in srgb, var(--brand) 22%, transparent);
      background: color-mix(in srgb, var(--brand) 7%, transparent);
    }

    .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 color-mix(in srgb, var(--brand) 34%, transparent);
      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 color-mix(in srgb, var(--brand) 26%, transparent);
      border-radius: 999px;
      background: color-mix(in srgb, var(--brand) 8%, transparent);
      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: color-mix(in srgb, var(--brand) 8%, transparent);
      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: color-mix(in srgb, var(--brand) 32%, transparent);
      background: color-mix(in srgb, var(--brand) 8%, transparent);
    }

    .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 color-mix(in srgb, var(--brand) 20%, transparent);
      border-radius: 10px;
      background: color-mix(in srgb, var(--brand) 7%, transparent);
      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, color-mix(in srgb, var(--card-glow) 6%, transparent), 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: color-mix(in srgb, var(--brand) 30%, transparent); }
    .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: color-mix(in srgb, var(--brand) 24%, transparent); }

    .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), color-mix(in srgb, var(--card-glow) 6%, transparent)),
        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(--site-font);
      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 color-mix(in srgb, var(--brand) 32%, transparent);
      border-radius: 999px;
      background: color-mix(in srgb, var(--brand) 10%, transparent);
      color: var(--green);
      font-family: var(--site-font);
      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 color-mix(in srgb, var(--brand) 34%, transparent);
    }

    .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 color-mix(in srgb, var(--brand) 56%, transparent);
    }

    .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 color-mix(in srgb, var(--brand) 18%, transparent);
      background: color-mix(in srgb, var(--brand) 6%, transparent);
      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(--site-font);
    }

    /* 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(--site-font);
      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-submit {
      width: 100%;
      margin-top: 8px;
    }

    /* 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: 1180px) {
      body .hero.hero-home .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
      }

      body .hero.hero-home .hero-content {
        max-width: 760px;
      }

      body .hero.hero-home .hero-delivery-carousel {
        max-width: 780px;
        margin: 0 auto;
      }
    }

    @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: 900px) {
      body .hero.hero-home .hero-delivery-carousel {
        min-height: 720px;
      }

      body .hero.hero-home .hero-carousel-stage {
        min-height: 620px;
      }

      body .hero.hero-home .hero-app-window,
      body .hero.hero-home .hero-orchestration-board {
        width: min(82%, 520px);
      }

      body .hero.hero-home .hero-floating-card.is-left,
      body .hero.hero-home .hero-floating-card.is-bottom-left {
        left: 14px;
      }

      body .hero.hero-home .hero-floating-card.is-right {
        right: 14px;
      }
    }

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

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

      .btn {
        width: 100%;
      }

      body .hero.hero-home {
        min-height: auto;
        padding-top: 92px;
        padding-bottom: 64px;
      }

      body .hero.hero-home .hero-devops-credit {
        top: 20px;
        left: 16px;
        max-width: calc(100% - 32px);
        font-size: 11px;
      }

      body .hero.hero-home .hero-inner {
        gap: 34px;
      }

      body .hero.hero-home .hero-content,
      body .hero.hero-home .hero-subtitle,
      body .hero.hero-home .hero-description {
        width: 100% !important;
        max-width: 100% !important;
      }

      body .hero.hero-home .hero-subtitle {
        font-size: 18px;
      }

      body .hero.hero-home .hero-description {
        font-size: 16px;
      }

      body .hero.hero-home .hero-proof-strip,
      body .hero.hero-home .hero-ctas {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
      }

      body .hero.hero-home .hero-proof-item {
        padding: 13px 14px;
      }

      body .hero.hero-home .hero-delivery-carousel {
        width: min(100%, calc(100vw - 32px));
        min-height: 0;
        max-width: calc(100vw - 32px);
        border-radius: 24px;
      }

      body .hero.hero-home .hero-carousel-topline {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        padding: 14px;
      }

      body .hero.hero-home .hero-carousel-status {
        width: 100%;
      }

      body .hero.hero-home .hero-carousel-tabs {
        grid-template-columns: 1fr;
      }

      body .hero.hero-home .hero-carousel-tab {
        justify-content: flex-start;
        width: 100%;
      }

      body .hero.hero-home .hero-carousel-stage {
        min-height: 0;
        padding: 14px;
      }

      body .hero.hero-home .hero-carousel-scene {
        position: relative;
        inset: auto;
        display: none;
        min-height: 0;
        transform: none;
      }

      body .hero.hero-home .hero-carousel-scene.is-active {
        display: grid;
        gap: 12px;
        transform: none;
      }

      body .hero.hero-home .hero-scene-label-cloud,
      body .hero.hero-home .hero-graph-lines {
        display: none;
      }

      body .hero.hero-home .hero-app-window,
      body .hero.hero-home .hero-floating-card,
      body .hero.hero-home .hero-metric-ribbon,
      body .hero.hero-home .hero-orchestration-board,
      body .hero.hero-home .hero-code-panel,
      body .hero.hero-home .hero-pipeline-panel,
      body .hero.hero-home .hero-test-matrix,
      body .hero.hero-home .hero-deploy-card {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        min-height: 0;
        opacity: 1;
        translate: 0 0;
        transform: none;
      }

      body .hero.hero-home .hero-carousel-scene.is-active .hero-app-window,
      body .hero.hero-home .hero-carousel-scene.is-active .hero-orchestration-board,
      body .hero.hero-home .hero-carousel-scene.is-active .hero-code-panel,
      body .hero.hero-home .hero-carousel-scene.is-active .hero-floating-card,
      body .hero.hero-home .hero-carousel-scene.is-active .hero-metric-ribbon,
      body .hero.hero-home .hero-carousel-scene.is-active .hero-pipeline-panel,
      body .hero.hero-home .hero-carousel-scene.is-active .hero-test-matrix,
      body .hero.hero-home .hero-carousel-scene.is-active .hero-deploy-card,
      body .hero.hero-home .hero-carousel-scene.is-active .hero-agent-node {
        animation: none;
      }

      body .hero.hero-home .hero-agent-node {
        opacity: 1;
        translate: 0 0;
      }

      body .hero.hero-home .hero-requirements-app {
        grid-template-columns: 1fr;
      }

      body .hero.hero-home .hero-pm-sidebar {
        display: none;
      }

      body .hero.hero-home .hero-req-row {
        grid-template-columns: 56px minmax(0, 1fr);
      }

      body .hero.hero-home .hero-req-status {
        grid-column: 2;
        justify-self: start;
      }

      body .hero.hero-home .hero-risk-score,
      body .hero.hero-home .hero-metric-ribbon {
        grid-template-columns: 1fr;
      }

      body .hero.hero-home .hero-metric-ribbon p {
        border-left: 0;
        border-top: 1px solid rgba(148, 163, 184, 0.22);
        padding-top: 12px;
        padding-left: 0;
      }

      body .hero.hero-home .hero-agent-map {
        min-height: 470px;
      }

      body .hero.hero-home .hero-agent-node {
        width: min(100%, 150px);
      }

      body .hero.hero-home .hero-agent-node.is-core {
        left: calc(50% - 75px);
        top: 188px;
      }

      body .hero.hero-home .hero-agent-node.is-planner { left: 12px; top: 22px; }
      body .hero.hero-home .hero-agent-node.is-context { right: 12px; top: 22px; }
      body .hero.hero-home .hero-agent-node.is-executor { left: 12px; bottom: 22px; }
      body .hero.hero-home .hero-agent-node.is-verifier { right: 12px; bottom: 22px; }

      body .hero.hero-home .hero-scene-agents .hero-floating-card.is-bottom-left .hero-agent-list {
        grid-template-columns: 1fr;
      }

      body .hero.hero-home .hero-scene-agents .hero-agent-list span {
        min-height: 0;
        align-items: center;
        flex-direction: row;
      }

      .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;
      }
    }
