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

    #products .product-subtitle-highlight {
      color: var(--brand);
      font-weight: 700;
    }

    /* Section 02: Customer Practice */
    .section.customer-practice-section {
      --customer-practice-copy-y: 0px;
      --customer-practice-copy-opacity: 1;
      --customer-practice-evidence-y: 0px;
      --customer-practice-evidence-opacity: 0.78;
      --customer-practice-logo-y: 0px;
      --customer-practice-logo-opacity: 0.92;
      --customer-practice-front-y: 0px;
      --customer-practice-front-opacity: 1;
      --customer-practice-focus: 0.86;
      position: relative;
      overflow: hidden;
      padding: clamp(32px, 2vw, 40px) 0 clamp(44px, 4vw, 56px);
      background:
        radial-gradient(circle at 88% 26%, color-mix(in srgb, var(--card-glow) 18%, transparent), transparent 28%),
        radial-gradient(circle at 12% 78%, color-mix(in srgb, var(--brand) 11%, transparent), transparent 32%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-deep) 88%, transparent), var(--bg-deep));
    }

    .customer-practice-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, color-mix(in srgb, var(--accent-2) 16%, transparent) 1px, transparent 1px),
        linear-gradient(color-mix(in srgb, var(--accent-2) 14%, transparent) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at 62% 48%, black, transparent 68%);
      opacity: 0.28;
      pointer-events: none;
    }

    .customer-practice-section::after {
      content: '';
      position: absolute;
      inset: auto 0 0;
      height: 34%;
      background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--accent-4) 7%, transparent));
      pointer-events: none;
    }

    .customer-practice-section .container {
      position: relative;
      z-index: 1;
    }

    .customer-practice-header {
      width: 100%;
      max-width: none;
      margin: 0 0 12px;
      display: grid;
      justify-items: center;
      text-align: center;
    }

    .customer-practice-label {
      justify-self: start;
      color: var(--brand);
    }

    .customer-practice-label::before {
      background: var(--brand);
    }

    .customer-practice-title {
      max-width: 1080px;
      font-size: clamp(30px, 3.4vw, 42px);
      line-height: 1.16;
      letter-spacing: 0;
      opacity: var(--customer-practice-copy-opacity);
      transform: translate3d(0, var(--customer-practice-copy-y), 0);
      will-change: transform, opacity;
    }

    .customer-practice-subtitle {
      max-width: 840px;
      margin-bottom: 0;
      line-height: 1.68;
      opacity: var(--customer-practice-copy-opacity);
      transform: translate3d(0, var(--customer-practice-copy-y), 0);
      will-change: transform, opacity;
    }

    .customer-practice-board {
      position: relative;
      display: grid;
      gap: 12px;
    }

    .customer-practice-evidence-layer {
      position: absolute;
      inset: -22px -18px auto;
      height: 380px;
      pointer-events: none;
      z-index: 0;
      opacity: var(--customer-practice-evidence-opacity);
      transform: translate3d(0, var(--customer-practice-evidence-y), 0);
      will-change: transform, opacity;
    }

    .customer-practice-evidence-chip {
      position: absolute;
      display: grid;
      gap: 5px;
      min-width: 152px;
      padding: 12px 14px;
      border: 1px solid color-mix(in srgb, var(--site-border) 68%, transparent);
      border-radius: 8px;
      background: color-mix(in srgb, var(--bg-surface) 48%, transparent);
      color: var(--text-tertiary);
      font-family: var(--font-mono);
      font-size: 12px;
      line-height: 1.45;
      opacity: 0.5;
      box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text-primary) 5%, transparent);
    }

    .customer-practice-evidence-chip strong {
      color: color-mix(in srgb, var(--accent-2) 54%, var(--text-tertiary));
      font-family: var(--site-font);
      font-size: 14px;
      font-weight: 700;
    }

    .customer-practice-evidence-chip em {
      font-style: normal;
    }

    .customer-practice-evidence-chip.is-left-top { left: -12px; top: 100px; }
    .customer-practice-evidence-chip.is-mid-top { right: 360px; top: 26px; }
    .customer-practice-evidence-chip.is-right-top { right: 170px; top: -10px; }
    .customer-practice-evidence-chip.is-right-mid { right: 34px; top: 92px; }
    .customer-practice-evidence-chip.is-right-bottom { right: -6px; top: 190px; }

    .customer-practice-logo-wall {
      position: relative;
      z-index: 4;
      margin: 0;
      padding: 5px 0 24px;
      isolation: isolate;
      overflow: hidden;
      opacity: var(--customer-practice-logo-opacity);
      transform: translate3d(0, var(--customer-practice-logo-y), 0);
      will-change: transform, opacity;
    }

    .customer-practice-logo-wall img {
      position: relative;
      z-index: 1;
      display: block;
      width: min(100%, 1230px);
      height: auto;
      margin: 0 auto;
      opacity: 0.92;
      filter: drop-shadow(0 20px 40px color-mix(in srgb, var(--bg-deep) 78%, transparent));
    }

    .customer-practice-logo-wall figcaption {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    .customer-practice-front-layer {
      position: relative;
      z-index: 2;
      opacity: var(--customer-practice-front-opacity);
      transform: translate3d(0, var(--customer-practice-front-y), 0);
      filter: drop-shadow(0 18px 26px color-mix(in srgb, var(--card-glow) calc(var(--customer-practice-focus) * 12%), transparent));
      will-change: transform, opacity, filter;
      isolation: isolate;
    }

    .customer-practice-front-glow {
      position: absolute;
      z-index: 0;
      bottom: calc(100% + 10px);
      left: clamp(16px, 6vw, 92px);
      right: clamp(16px, 6vw, 92px);
      height: clamp(158px, 14vw, 208px);
      pointer-events: none;
      opacity: calc(0.72 + var(--customer-practice-focus) * 0.24);
      transform-origin: 50% 100%;
    }

    .customer-practice-front-glow::before,
    .customer-practice-front-glow::after {
      content: '';
      position: absolute;
      pointer-events: none;
    }

    .customer-practice-front-glow::before {
      inset: 0;
      background: radial-gradient(
        ellipse 58% 86% at 50% 100%,
        color-mix(in srgb, var(--card-glow) 76%, transparent) 0%,
        color-mix(in srgb, var(--card-glow) 44%, transparent) 32%,
        color-mix(in srgb, var(--card-glow) 16%, transparent) 58%,
        transparent 80%
      );
      filter: blur(2px);
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, var(--text-primary) 28%, var(--text-primary) 100%);
      mask-image: linear-gradient(180deg, transparent 0%, var(--text-primary) 28%, var(--text-primary) 100%);
    }

    .customer-practice-front-glow::after {
      left: 18%;
      right: 18%;
      bottom: 0;
      height: 46px;
      background: radial-gradient(
        ellipse 50% 100% at 50% 100%,
        color-mix(in srgb, var(--card-glow) 96%, transparent) 0%,
        color-mix(in srgb, var(--card-glow) 58%, transparent) 36%,
        transparent 78%
      );
      filter: blur(8px);
      opacity: 0.98;
    }

    .customer-practice-case-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }

    .customer-practice-case {
      --practice-card-pad: 14px;
      --practice-card-gap: 10px;
      --practice-head-min: 92px;
      --practice-stage-height: 92px;
      --practice-detail-height: 136px;
      --case-accent: var(--brand);
      --case-accent-strong: var(--brand-strong);
      --case-glow: var(--card-glow);
      --practice-pointer-x: 50%;
      --practice-pointer-y: 20%;
      position: relative;
      display: grid;
      grid-template-rows:
        minmax(var(--practice-head-min), auto)
        var(--practice-stage-height)
        var(--practice-detail-height);
      gap: var(--practice-card-gap);
      min-height: calc(
        var(--practice-card-pad) * 2 +
        var(--practice-head-min) +
        var(--practice-stage-height) +
        var(--practice-detail-height) +
        var(--practice-card-gap) * 2
      );
      padding: var(--practice-card-pad);
      border: 1px solid color-mix(in srgb, var(--case-accent) 38%, var(--site-border));
      border-radius: 8px;
      background:
        linear-gradient(135deg, color-mix(in srgb, var(--case-accent) 9%, transparent), transparent 42%),
        color-mix(in srgb, var(--bg-surface) 82%, transparent);
      box-shadow:
        0 18px 42px color-mix(in srgb, var(--bg-deep) 58%, transparent),
        0 0 28px color-mix(in srgb, var(--case-accent) 10%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--text-primary) 7%, transparent);
      backdrop-filter: blur(22px) saturate(1.26);
      -webkit-backdrop-filter: blur(22px) saturate(1.26);
      overflow: hidden;
      cursor: pointer;
      transform: translate3d(0, 0, 0);
      transition:
        border-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
    }

    .customer-practice-case::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(
          circle at var(--practice-pointer-x) var(--practice-pointer-y),
          color-mix(in srgb, var(--case-accent) 24%, transparent),
          transparent 34%
        ),
        linear-gradient(90deg, color-mix(in srgb, var(--case-accent) 13%, transparent) 1px, transparent 1px),
        linear-gradient(color-mix(in srgb, var(--case-accent) 10%, transparent) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: linear-gradient(180deg, black, transparent 76%);
      opacity: 0.18;
      pointer-events: none;
    }

    .customer-practice-case:focus-visible {
      outline: 2px solid color-mix(in srgb, var(--case-accent) 76%, var(--text-primary));
      outline-offset: 4px;
    }

    .customer-practice-case.is-pointer-active::before {
      opacity: 0.32;
    }

    .customer-practice-case.is-practice-active,
    .customer-practice-case.is-practice-hovered,
    .customer-practice-case.is-practice-replay {
      border-color: color-mix(in srgb, var(--case-accent) 72%, var(--site-border));
      box-shadow:
        0 24px 54px color-mix(in srgb, var(--bg-deep) 62%, transparent),
        0 0 36px color-mix(in srgb, var(--case-accent) 20%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--text-primary) 10%, transparent);
      transform: translate3d(0, -4px, 0);
    }

    .customer-practice-case.is-practice-replay::before {
      opacity: 0.38;
    }

    .customer-practice-case::after {
      content: '';
      position: absolute;
      inset: auto 16px 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--case-accent), transparent);
      opacity: 0.86;
      box-shadow: 0 0 18px color-mix(in srgb, var(--case-accent) 42%, transparent);
    }

    .customer-practice-case--aviation {
      --case-accent: var(--accent-2);
      --case-accent-strong: color-mix(in srgb, var(--accent-2) 72%, var(--text-primary));
    }

    .customer-practice-case--game {
      --case-accent: var(--accent-4);
      --case-accent-strong: color-mix(in srgb, var(--accent-4) 70%, var(--text-primary));
    }

    .customer-practice-case > * {
      position: relative;
      z-index: 1;
    }

    .customer-practice-case-head {
      position: relative;
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr);
      column-gap: 12px;
      align-items: start;
      min-height: var(--practice-head-min);
      margin-bottom: 0;
    }

    .customer-practice-case-icon {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border: 1px solid color-mix(in srgb, var(--case-accent) 46%, transparent);
      border-radius: 8px;
      background:
        radial-gradient(circle at 42% 30%, color-mix(in srgb, var(--case-accent-strong) 22%, transparent), transparent 62%),
        color-mix(in srgb, var(--case-accent) 12%, transparent);
      box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text-primary) 9%, transparent);
    }

    .customer-practice-case-icon img {
      width: 40px;
      height: 40px;
      opacity: 0.95;
    }

    .customer-practice-case h3 {
      margin: 0;
      color: var(--text-primary);
      font-size: 23px;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .customer-practice-case-copy {
      min-width: 0;
    }

    .customer-practice-case-summary {
      max-width: 100%;
      margin-top: 8px;
    }

    .customer-practice-case p {
      margin: 0;
      color: var(--text-secondary);
      font-size: 13.5px;
      line-height: 1.48;
    }

    .customer-practice-case p.customer-practice-case-summary {
      margin-top: 7px;
    }

    .customer-practice-keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 6px;
      color: var(--case-accent-strong);
      font-size: 12.5px;
      font-weight: 700;
    }

    .customer-practice-keywords span + span::before {
      content: '/';
      margin-right: 6px;
      color: color-mix(in srgb, var(--case-accent) 62%, transparent);
    }

    .customer-practice-status {
      position: absolute;
      top: 0;
      right: 0;
      justify-self: end;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      min-height: 28px;
      padding: 4px 9px;
      border: 1px solid color-mix(in srgb, var(--case-accent) 34%, transparent);
      border-radius: 8px;
      color: color-mix(in srgb, var(--text-primary) 84%, transparent);
      background: color-mix(in srgb, var(--bg-deep) 48%, transparent);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
      transition:
        border-color 180ms ease,
        color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
    }

    .customer-practice-case.is-practice-active .customer-practice-status,
    .customer-practice-case.is-practice-hovered .customer-practice-status,
    .customer-practice-case.is-practice-replay .customer-practice-status {
      border-color: color-mix(in srgb, var(--case-accent) 58%, transparent);
      color: color-mix(in srgb, var(--text-primary) 94%, transparent);
      background: color-mix(in srgb, var(--case-accent) 12%, var(--bg-deep));
      box-shadow: 0 0 18px color-mix(in srgb, var(--case-accent) 18%, transparent);
    }

    .customer-practice-status::after {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--case-accent);
      box-shadow: 0 0 12px color-mix(in srgb, var(--case-accent) 52%, transparent);
    }

    .customer-practice-mini-panel,
    .customer-practice-stage {
      border: 1px solid color-mix(in srgb, var(--case-accent) 22%, var(--site-border));
      border-radius: 8px;
      background: color-mix(in srgb, var(--bg-deep) 46%, transparent);
      box-shadow: inset 0 1px 0 color-mix(in srgb, var(--text-primary) 5%, transparent);
    }

    .customer-practice-stage {
      display: grid;
      align-content: start;
      gap: 5px;
      padding: 7px 10px;
      margin-bottom: 0;
      overflow: hidden;
    }

    .customer-practice-stage-title,
    .customer-practice-mini-panel strong {
      display: block;
      margin-bottom: 8px;
      color: color-mix(in srgb, var(--text-primary) 86%, transparent);
      font-size: 13px;
      font-weight: 800;
    }

    .customer-practice-stage-title {
      line-height: 1.18;
      margin-bottom: 0;
    }

    .customer-practice-ledger-grid,
    .customer-practice-gate-rail,
    .customer-practice-release-lanes {
      display: grid;
      gap: 7px;
    }

    .customer-practice-ledger-grid {
      grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.86fr)) minmax(0, 1fr);
    }

    .customer-practice-ledger-grid span {
      position: relative;
      display: grid;
      align-content: center;
      gap: 3px;
      min-height: 44px;
      padding: 4px 7px 4px 9px;
      border: 1px solid color-mix(in srgb, var(--case-accent) 24%, transparent);
      border-radius: 7px;
      background:
        linear-gradient(135deg, color-mix(in srgb, var(--case-accent) 13%, transparent), transparent 70%),
        color-mix(in srgb, var(--bg-card) 52%, transparent);
      overflow: hidden;
    }

    .customer-practice-ledger-grid span::before {
      content: '';
      position: absolute;
      inset: 8px auto 8px 0;
      width: 2px;
      background: var(--case-accent);
      box-shadow: 0 0 12px color-mix(in srgb, var(--case-accent) 45%, transparent);
      opacity: 0.72;
    }

    .customer-practice-ledger-grid span::after {
      content: '';
      position: absolute;
      inset: auto 8px 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--case-accent), transparent);
      opacity: 0.46;
    }

    .customer-practice-ledger-grid .is-ledger-anchor {
      background:
        radial-gradient(circle at 86% 28%, color-mix(in srgb, var(--case-accent) 22%, transparent), transparent 45%),
        linear-gradient(135deg, color-mix(in srgb, var(--case-accent) 18%, transparent), transparent 72%),
        color-mix(in srgb, var(--bg-card) 56%, transparent);
    }

    .customer-practice-gate-rail {
      position: relative;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      align-items: start;
      gap: 0;
      padding: 2px 2px 0;
    }

    .customer-practice-gate-rail::before {
      content: '';
      position: absolute;
      left: 11%;
      right: 11%;
      top: 14px;
      height: 1px;
      background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--case-accent) 74%, transparent), transparent);
      box-shadow: 0 0 14px color-mix(in srgb, var(--case-accent) 38%, transparent);
    }

    .customer-practice-gate-rail span {
      position: relative;
      display: grid;
      justify-items: center;
      gap: 3px;
      min-width: 0;
      color: var(--text-secondary);
      font-size: 10.5px;
      line-height: 1.08;
      text-align: center;
    }

    .customer-practice-gate-rail span::before {
      content: '';
      position: relative;
      z-index: 1;
      width: 20px;
      height: 20px;
      border: 1px solid color-mix(in srgb, var(--case-accent) 66%, transparent);
      border-radius: 999px;
      background:
        radial-gradient(circle, var(--case-accent) 0 30%, transparent 32%),
        color-mix(in srgb, var(--case-accent) 16%, var(--bg-deep));
      box-shadow:
        0 0 16px color-mix(in srgb, var(--case-accent) 34%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--text-primary) 10%, transparent);
    }

    .customer-practice-gate-rail span:last-child::before {
      background:
        radial-gradient(circle, var(--text-primary) 0 9%, transparent 11%),
        var(--case-accent);
    }

    .customer-practice-release-lanes {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 7px;
    }

    .customer-practice-release-lanes span {
      --release-progress: 76%;
      position: relative;
      display: grid;
      align-content: center;
      gap: 3px;
      min-height: 44px;
      padding: 5px 7px;
      border: 1px solid color-mix(in srgb, var(--case-accent) 24%, transparent);
      border-radius: 7px;
      background:
        linear-gradient(135deg, color-mix(in srgb, var(--case-accent) 14%, transparent), transparent 72%),
        color-mix(in srgb, var(--bg-card) 52%, transparent);
      overflow: hidden;
    }

    .customer-practice-release-lanes span:nth-child(2) { --release-progress: 88%; }
    .customer-practice-release-lanes span:nth-child(3) { --release-progress: 64%; }
    .customer-practice-release-lanes span:nth-child(4) { --release-progress: 82%; }

    .customer-practice-release-lanes i {
      grid-column: 1 / -1;
      height: 3px;
      border-radius: 999px;
      background:
        linear-gradient(90deg, var(--case-accent-strong) var(--release-progress), color-mix(in srgb, var(--case-accent) 14%, transparent) 0);
      box-shadow: 0 0 10px color-mix(in srgb, var(--case-accent) 28%, transparent);
    }

    .customer-practice-ledger-grid em,
    .customer-practice-gate-rail em,
    .customer-practice-release-lanes em {
      color: var(--case-accent-strong);
      font-family: var(--font-mono);
      font-size: 11px;
      font-style: normal;
      font-weight: 800;
      line-height: 1;
    }

    .customer-practice-ledger-grid b,
    .customer-practice-gate-rail b,
    .customer-practice-release-lanes b {
      color: var(--text-secondary);
      font-size: 11px;
      font-weight: 700;
      line-height: 1.16;
    }

    .customer-practice-gate-rail b,
    .customer-practice-release-lanes b {
      color: color-mix(in srgb, var(--text-primary) 82%, transparent);
    }

    .customer-practice-mini-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
      gap: 10px;
      min-height: var(--practice-detail-height);
    }

    .customer-practice-mini-panel {
      min-height: 0;
      padding: 11px;
      overflow: hidden;
    }

    .customer-practice-check-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      align-items: center;
      min-height: 23px;
      color: var(--text-secondary);
      font-size: 12px;
      line-height: 1.3;
    }

    .customer-practice-check-row + .customer-practice-check-row {
      margin-top: 4px;
    }

    .customer-practice-check-row b {
      display: inline-flex;
      align-items: center;
      min-height: 20px;
      padding: 2px 7px;
      border: 1px solid color-mix(in srgb, var(--case-accent) 38%, transparent);
      border-radius: 6px;
      color: var(--case-accent-strong);
      background: color-mix(in srgb, var(--case-accent) 10%, transparent);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0;
    }

    .customer-practice-proof-panel {
      display: grid;
      align-content: start;
      gap: 4px;
      padding-bottom: 14px;
    }

    .customer-practice-proof-panel strong,
    .customer-practice-throughput-panel strong {
      margin-bottom: 6px;
    }

    .customer-practice-proof-icon {
      width: 34px;
      height: 36px;
      border: 2px solid color-mix(in srgb, var(--case-accent) 70%, transparent);
      border-radius: 8px;
      position: relative;
      margin-top: 0;
      box-shadow: 0 0 18px color-mix(in srgb, var(--case-accent) 16%, transparent);
    }

    .customer-practice-proof-icon::before,
    .customer-practice-proof-icon::after {
      content: '';
      position: absolute;
      left: 10px;
      right: 10px;
      height: 2px;
      background: var(--case-accent);
    }

    .customer-practice-proof-icon::before { top: 12px; }
    .customer-practice-proof-icon::after { top: 21px; }

    .customer-practice-proof-panel p,
    .customer-practice-metric-panel p,
    .customer-practice-throughput-panel p {
      margin: 0;
      color: var(--text-primary);
      font-size: 13px;
      line-height: 1.35;
    }

    .customer-practice-proof-panel span,
    .customer-practice-throughput-panel span {
      color: var(--text-secondary);
      font-size: 12px;
    }

    .customer-practice-proof-panel p,
    .customer-practice-proof-panel span {
      font-size: 12px;
      line-height: 1.32;
    }

    .customer-practice-sparkline {
      height: 40px;
      margin-top: 2px;
    }

    .customer-practice-sparkline svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }

    .customer-practice-sparkline path {
      fill: none;
      stroke: var(--case-accent);
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 7px color-mix(in srgb, var(--case-accent) 50%, transparent));
    }

    .customer-practice-sparkline circle {
      fill: var(--case-accent-strong);
      transform-box: fill-box;
      transform-origin: center;
    }

    .customer-practice-metric-panel p {
      margin-top: 3px;
      color: color-mix(in srgb, var(--case-accent-strong) 88%, var(--text-primary));
      font-size: 34px;
      font-weight: 800;
      line-height: 1;
    }

    .customer-practice-metric-panel p sup {
      position: relative;
      top: -0.38em;
      margin-left: 2px;
      color: var(--case-accent-strong);
      font-size: 0.36em;
      font-weight: 900;
      line-height: 1;
    }

    .customer-practice-game-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
      gap: 10px;
      min-height: var(--practice-detail-height);
    }

    .customer-practice-test-matrix {
      display: grid;
      grid-template-columns: repeat(8, 12px);
      justify-content: space-between;
      gap: 8px 10px;
      align-content: start;
      width: min(100%, 174px);
      min-height: 74px;
      padding-top: 2px;
    }

    .customer-practice-test-matrix span {
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--case-accent) 70%, var(--accent-2));
      box-shadow: 0 0 12px color-mix(in srgb, var(--case-accent) 34%, transparent);
      opacity: 0.86;
    }

    .customer-practice-test-matrix span:nth-child(3n) {
      background: color-mix(in srgb, var(--accent-2) 78%, var(--case-accent));
    }

    .customer-practice-test-matrix span:nth-child(4n) {
      opacity: 0.46;
    }

    .customer-practice-throughput-panel {
      display: grid;
      align-content: start;
      padding-bottom: 14px;
    }

    .customer-practice-throughput-panel p {
      margin: 3px 0 1px;
      font-size: 30px;
      font-weight: 800;
      line-height: 1;
    }

    .customer-practice-throughput-panel span {
      line-height: 1.25;
    }

    .customer-practice-bars {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      align-items: end;
      gap: 4px;
      height: 24px;
      margin-top: 5px;
    }

    .customer-practice-bars i {
      display: block;
      height: 30%;
      border-radius: 999px 999px 0 0;
      background: linear-gradient(180deg, var(--case-accent-strong), color-mix(in srgb, var(--case-accent) 58%, transparent));
      box-shadow: 0 0 10px color-mix(in srgb, var(--case-accent) 28%, transparent);
    }

    .customer-practice-bars i:nth-child(2) { height: 42%; }
    .customer-practice-bars i:nth-child(3) { height: 28%; }
    .customer-practice-bars i:nth-child(4) { height: 58%; }
    .customer-practice-bars i:nth-child(5) { height: 48%; }
    .customer-practice-bars i:nth-child(6) { height: 72%; }
    .customer-practice-bars i:nth-child(7) { height: 60%; }
    .customer-practice-bars i:nth-child(8) { height: 88%; }

    .customer-practice-case-icon {
      position: relative;
      overflow: hidden;
    }

    .customer-practice-case-icon img {
      transform-origin: 50% 50%;
      transition: filter 180ms ease;
    }

    .customer-practice-case--aviation .customer-practice-case-icon::after {
      content: '';
      position: absolute;
      left: 10px;
      right: 10px;
      top: 33px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--case-accent) 76%, transparent), transparent);
      opacity: 0;
      transform: translate3d(-14px, 8px, 0) rotate(-28deg) scaleX(0.2);
      transform-origin: 100% 50%;
      pointer-events: none;
    }

    .customer-practice-case--finance.is-icon-cue .customer-practice-case-icon img {
      animation: customer-practice-shield-confirm 520ms ease both;
    }

    .customer-practice-case--aviation.is-icon-cue .customer-practice-case-icon img {
      animation: customer-practice-plane-nudge 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .customer-practice-case--aviation.is-icon-cue .customer-practice-case-icon::after {
      animation: customer-practice-plane-trail 520ms ease both;
    }

    .customer-practice-case--game.is-icon-cue .customer-practice-case-icon img {
      animation: customer-practice-gamepad-wobble 560ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    }

    .customer-practice-case--game.is-practice-replay.is-icon-cue .customer-practice-case-icon img {
      animation-name: customer-practice-gamepad-click-wobble;
      animation-duration: 660ms;
    }

    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-ledger-grid span {
      animation: customer-practice-step-confirm 1500ms ease both;
    }

    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-ledger-grid span:nth-child(1) { animation-delay: 60ms; }
    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-ledger-grid span:nth-child(2) { animation-delay: 240ms; }
    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-ledger-grid span:nth-child(3) { animation-delay: 430ms; }
    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-ledger-grid span:nth-child(4) { animation-delay: 620ms; }

    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-check-row b {
      animation: customer-practice-pass-badge 1100ms ease both;
    }

    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-check-row:nth-child(2) b { animation-delay: 760ms; }
    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-check-row:nth-child(3) b { animation-delay: 940ms; }
    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-hovered, .customer-practice-case--finance.is-practice-replay) .customer-practice-check-row:nth-child(4) b { animation-delay: 1120ms; }

    :is(.customer-practice-section.practice-phase-finance .customer-practice-case--finance, .customer-practice-case--finance.is-practice-replay) .customer-practice-proof-icon {
      animation: customer-practice-proof-stamp 1200ms ease 1160ms both;
    }

    .customer-practice-gate-rail::after {
      content: '';
      position: absolute;
      left: 11%;
      right: 11%;
      top: 14px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--case-accent), transparent);
      box-shadow: 0 0 16px color-mix(in srgb, var(--case-accent) 50%, transparent);
      transform: scaleX(0);
      transform-origin: 0 50%;
      pointer-events: none;
    }

    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-gate-rail::after {
      animation: customer-practice-gate-sweep 1420ms ease both;
    }

    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-gate-rail span::before {
      animation: customer-practice-gate-node 1200ms ease both;
    }

    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-gate-rail span:nth-child(1)::before { animation-delay: 80ms; }
    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-gate-rail span:nth-child(2)::before { animation-delay: 300ms; }
    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-gate-rail span:nth-child(3)::before { animation-delay: 520ms; }
    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-gate-rail span:nth-child(4)::before { animation-delay: 760ms; }

    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-metric-panel .customer-practice-check-row b {
      animation: customer-practice-pass-badge 1000ms ease both;
    }

    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-mini-panel:first-child .customer-practice-check-row b {
      animation: customer-practice-pass-badge 1050ms ease both;
    }

    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-sparkline path {
      animation: customer-practice-sparkline-draw 1400ms ease both;
    }

    :is(.customer-practice-section.practice-phase-aviation .customer-practice-case--aviation, .customer-practice-case--aviation.is-practice-hovered, .customer-practice-case--aviation.is-practice-replay) .customer-practice-sparkline circle {
      animation: customer-practice-metric-dot 1200ms ease 960ms both;
    }

    .customer-practice-release-lanes i {
      position: relative;
      overflow: hidden;
    }

    .customer-practice-release-lanes i::after {
      content: '';
      position: absolute;
      inset: -2px auto -2px 0;
      width: 34px;
      background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--text-primary) 72%, transparent), transparent);
      opacity: 0;
      transform: translateX(-120%);
    }

    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-release-lanes i::after {
      animation: customer-practice-lane-sheen 1380ms ease both;
    }

    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-release-lanes span {
      animation: customer-practice-release-lane 1350ms ease both;
    }

    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-release-lanes span:nth-child(1) { animation-delay: 60ms; }
    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-release-lanes span:nth-child(2) { animation-delay: 220ms; }
    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-release-lanes span:nth-child(3) { animation-delay: 380ms; }
    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-release-lanes span:nth-child(4) { animation-delay: 540ms; }

    .customer-practice-test-matrix span {
      --matrix-delay: 0ms;
      transform: scale(1);
      transition: opacity 180ms ease;
    }

    .customer-practice-test-matrix span:nth-child(1) { --matrix-delay: 360ms; }
    .customer-practice-test-matrix span:nth-child(2) { --matrix-delay: 80ms; }
    .customer-practice-test-matrix span:nth-child(3) { --matrix-delay: 520ms; }
    .customer-practice-test-matrix span:nth-child(4) { --matrix-delay: 220ms; }
    .customer-practice-test-matrix span:nth-child(5) { --matrix-delay: 700ms; }
    .customer-practice-test-matrix span:nth-child(6) { --matrix-delay: 300ms; }
    .customer-practice-test-matrix span:nth-child(7) { --matrix-delay: 880ms; }
    .customer-practice-test-matrix span:nth-child(8) { --matrix-delay: 460ms; }
    .customer-practice-test-matrix span:nth-child(9) { --matrix-delay: 620ms; }
    .customer-practice-test-matrix span:nth-child(10) { --matrix-delay: 160ms; }
    .customer-practice-test-matrix span:nth-child(11) { --matrix-delay: 780ms; }
    .customer-practice-test-matrix span:nth-child(12) { --matrix-delay: 400ms; }
    .customer-practice-test-matrix span:nth-child(13) { --matrix-delay: 960ms; }
    .customer-practice-test-matrix span:nth-child(14) { --matrix-delay: 560ms; }
    .customer-practice-test-matrix span:nth-child(15) { --matrix-delay: 1040ms; }
    .customer-practice-test-matrix span:nth-child(16) { --matrix-delay: 680ms; }
    .customer-practice-test-matrix span:nth-child(17) { --matrix-delay: 260ms; }
    .customer-practice-test-matrix span:nth-child(18) { --matrix-delay: 840ms; }
    .customer-practice-test-matrix span:nth-child(19) { --matrix-delay: 120ms; }
    .customer-practice-test-matrix span:nth-child(20) { --matrix-delay: 920ms; }
    .customer-practice-test-matrix span:nth-child(21) { --matrix-delay: 500ms; }
    .customer-practice-test-matrix span:nth-child(22) { --matrix-delay: 1080ms; }
    .customer-practice-test-matrix span:nth-child(23) { --matrix-delay: 640ms; }
    .customer-practice-test-matrix span:nth-child(24) { --matrix-delay: 1140ms; }
    .customer-practice-test-matrix span:nth-child(25) { --matrix-delay: 740ms; }
    .customer-practice-test-matrix span:nth-child(26) { --matrix-delay: 340ms; }
    .customer-practice-test-matrix span:nth-child(27) { --matrix-delay: 1000ms; }
    .customer-practice-test-matrix span:nth-child(28) { --matrix-delay: 600ms; }
    .customer-practice-test-matrix span:nth-child(29) { --matrix-delay: 1120ms; }
    .customer-practice-test-matrix span:nth-child(30) { --matrix-delay: 440ms; }
    .customer-practice-test-matrix span:nth-child(31) { --matrix-delay: 1180ms; }
    .customer-practice-test-matrix span:nth-child(32) { --matrix-delay: 820ms; }

    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-test-matrix span {
      animation: customer-practice-matrix-cell 900ms ease both;
      animation-delay: var(--matrix-delay);
    }

    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-bars i {
      transform-origin: 50% 100%;
      animation: customer-practice-bar-rise 1180ms ease both;
    }

    :is(.customer-practice-section.practice-phase-game .customer-practice-case--game, .customer-practice-case--game.is-practice-hovered, .customer-practice-case--game.is-practice-replay) .customer-practice-throughput-panel p {
      animation: customer-practice-count-glow 1280ms ease both;
    }

    @keyframes customer-practice-step-confirm {
      0% { transform: translateY(0); border-color: color-mix(in srgb, var(--case-accent) 18%, transparent); }
      36% {
        transform: translateY(-2px);
        border-color: color-mix(in srgb, var(--case-accent) 78%, transparent);
        box-shadow: 0 0 18px color-mix(in srgb, var(--case-accent) 22%, transparent);
      }
      100% { transform: translateY(0); }
    }

    @keyframes customer-practice-pass-badge {
      0% { transform: scale(0.96); opacity: 0.72; }
      42% {
        transform: scale(1.05);
        opacity: 1;
        box-shadow: 0 0 16px color-mix(in srgb, var(--case-accent) 34%, transparent);
      }
      100% { transform: scale(1); }
    }

    @keyframes customer-practice-proof-stamp {
      0%, 45% { transform: translateY(0) scale(1); }
      62% {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 0 26px color-mix(in srgb, var(--case-accent) 34%, transparent);
      }
      78% { transform: translateY(1px) scale(0.98); }
      100% { transform: translateY(0) scale(1); }
    }

    @keyframes customer-practice-shield-confirm {
      0% { transform: scale(1); filter: none; }
      42% { transform: scale(1.07); filter: drop-shadow(0 0 10px color-mix(in srgb, var(--case-accent) 64%, transparent)); }
      100% { transform: scale(1); filter: none; }
    }

    @keyframes customer-practice-gate-sweep {
      0% { transform: scaleX(0); opacity: 0.1; }
      64% { transform: scaleX(1); opacity: 1; }
      100% { transform: scaleX(1); opacity: 0.74; }
    }

    @keyframes customer-practice-gate-node {
      0%, 12% { transform: scale(0.86); filter: none; }
      44% { transform: scale(1.12); filter: drop-shadow(0 0 10px color-mix(in srgb, var(--case-accent) 70%, transparent)); }
      100% { transform: scale(1); filter: none; }
    }

    @keyframes customer-practice-sparkline-draw {
      0% { stroke-dasharray: 190; stroke-dashoffset: 190; opacity: 0.45; }
      70% { stroke-dashoffset: 0; opacity: 1; }
      100% { stroke-dasharray: 190; stroke-dashoffset: 0; }
    }

    @keyframes customer-practice-metric-dot {
      0%, 42% { transform: scale(0.8); opacity: 0.7; }
      68% { transform: scale(1.34); opacity: 1; }
      100% { transform: scale(1); }
    }

    @keyframes customer-practice-plane-nudge {
      0% { transform: translate3d(0, 0, 0); }
      48% { transform: translate3d(5px, -5px, 0); }
      100% { transform: translate3d(0, 0, 0); }
    }

    @keyframes customer-practice-plane-trail {
      0% { opacity: 0; transform: translate3d(-14px, 8px, 0) rotate(-28deg) scaleX(0.2); }
      44% { opacity: 0.72; transform: translate3d(-4px, 3px, 0) rotate(-28deg) scaleX(1); }
      100% { opacity: 0; transform: translate3d(8px, -3px, 0) rotate(-28deg) scaleX(0.45); }
    }

    @keyframes customer-practice-release-lane {
      0% { transform: translateY(0); border-color: color-mix(in srgb, var(--case-accent) 22%, transparent); }
      36% {
        transform: translateY(-2px);
        border-color: color-mix(in srgb, var(--case-accent) 62%, transparent);
        box-shadow: 0 0 14px color-mix(in srgb, var(--case-accent) 18%, transparent);
      }
      100% { transform: translateY(0); }
    }

    @keyframes customer-practice-lane-sheen {
      0% { opacity: 0; transform: translateX(-120%); }
      24% { opacity: 0.68; }
      100% { opacity: 0; transform: translateX(260%); }
    }

    @keyframes customer-practice-matrix-cell {
      0% { transform: scale(0.72); opacity: 0.34; }
      46% {
        transform: scale(1.18);
        opacity: 1;
        box-shadow: 0 0 16px color-mix(in srgb, var(--case-accent) 48%, transparent);
      }
      100% { transform: scale(1); }
    }

    @keyframes customer-practice-bar-rise {
      0% { transform: scaleY(0.42); opacity: 0.62; }
      62% { transform: scaleY(1.08); opacity: 1; }
      100% { transform: scaleY(1); }
    }

    @keyframes customer-practice-count-glow {
      0% { text-shadow: none; }
      48% { text-shadow: 0 0 18px color-mix(in srgb, var(--case-accent) 42%, transparent); }
      100% { text-shadow: none; }
    }

    @keyframes customer-practice-gamepad-wobble {
      0% { transform: rotate(0deg); }
      24% { transform: rotate(-3deg); }
      52% { transform: rotate(3deg); }
      76% { transform: rotate(-1deg); }
      100% { transform: rotate(0deg); }
    }

    @keyframes customer-practice-gamepad-click-wobble {
      0% { transform: rotate(0deg); }
      22% { transform: rotate(-5deg); }
      50% { transform: rotate(5deg); }
      76% { transform: rotate(-2deg); }
      100% { transform: rotate(0deg); }
    }

    /* 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 {
      position: relative;
      margin-top: 36px;
      border: 1px solid color-mix(in srgb, var(--site-border-strong) 72%, transparent);
      border-radius: 18px;
      overflow: hidden;
      background:
        radial-gradient(circle at 14% 0%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 30%),
        radial-gradient(circle at 92% 18%, color-mix(in srgb, var(--card-glow) 20%, transparent), transparent 34%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-card) 94%, transparent), color-mix(in srgb, var(--bg-deep) 94%, transparent));
      box-shadow:
        0 28px 80px color-mix(in srgb, var(--bg-deep) 46%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--fg-primary) 4%, transparent);
      min-height: 560px;
    }

    .product-showcase-panel-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, color-mix(in srgb, var(--fg-primary) 6%, transparent), transparent 26%, transparent 72%, color-mix(in srgb, var(--fg-primary) 3.5%, transparent));
      pointer-events: none;
      z-index: 1;
    }

    .showcase-tabs,
    .showcase-panels {
      position: relative;
      z-index: 2;
    }

    .showcase-tabs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid color-mix(in srgb, var(--site-border-strong) 62%, transparent);
      background: color-mix(in srgb, var(--bg-deep) 66%, transparent);
      backdrop-filter: blur(18px) saturate(1.2);
      -webkit-backdrop-filter: blur(18px) saturate(1.2);
    }

    .showcase-tab {
      --showcase-tab-accent: var(--brand);
      position: relative;
      border: none;
      border-right: 1px solid color-mix(in srgb, var(--site-border-strong) 56%, transparent);
      background: transparent;
      padding: 18px 18px 18px 42px;
      color: var(--fg-muted);
      text-align: left;
      font: inherit;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0;
      cursor: pointer;
      transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    #showcase-score-tab {
      --showcase-tab-accent: var(--accent-2);
    }

    #showcase-cadence-tab {
      --showcase-tab-accent: var(--accent-3);
    }

    #showcase-opus-tab {
      --showcase-tab-accent: var(--accent-4);
    }

    .showcase-tab::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 18px;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--showcase-tab-accent);
      box-shadow: 0 0 18px color-mix(in srgb, var(--showcase-tab-accent) 42%, transparent);
      transform: translateY(-50%);
      opacity: 0.72;
    }

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

    .showcase-tab:hover {
      color: var(--fg-secondary);
      background: color-mix(in srgb, var(--showcase-tab-accent) 7%, transparent);
    }

    .showcase-tab.active {
      background:
        linear-gradient(180deg, color-mix(in srgb, var(--showcase-tab-accent) 14%, transparent), color-mix(in srgb, var(--showcase-tab-accent) 5%, transparent));
      color: var(--fg-primary);
      box-shadow:
        inset 0 -3px 0 var(--showcase-tab-accent),
        inset 0 1px 0 color-mix(in srgb, var(--fg-primary) 4%, transparent);
    }

    .showcase-tab.active::before {
      opacity: 1;
    }

    #showcase-maestro {
      --showcase-accent: var(--brand);
    }

    #showcase-score {
      --showcase-accent: var(--accent-2);
    }

    #showcase-cadence {
      --showcase-accent: var(--accent-3);
    }

    #showcase-opus {
      --showcase-accent: var(--accent-4);
    }

    .showcase-panel {
      border: none;
      border-radius: 0;
      background:
        radial-gradient(circle at 82% 8%, color-mix(in srgb, var(--showcase-accent, var(--brand)) 16%, transparent), transparent 32%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-card) 90%, transparent), color-mix(in srgb, var(--bg-surface) 88%, transparent));
      padding: clamp(24px, 2.2vw, 32px);
      display: none;
      gap: 18px;
      min-height: 520px;
      overflow: auto;
    }

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

    .showcase-panel h3 {
      color: var(--fg-primary);
      font-size: clamp(22px, 2.2vw, 28px);
      line-height: 1.18;
      margin: 0;
      letter-spacing: 0;
    }

    .showcase-panel p {
      max-width: 760px;
      margin: 0;
      color: var(--fg-secondary);
      font-size: 15px;
      font-weight: 500;
      line-height: 1.7;
    }

    .showcase-app {
      position: relative;
      border: 1px solid color-mix(in srgb, var(--showcase-accent, var(--brand)) 22%, var(--site-border));
      border-radius: 18px;
      background:
        radial-gradient(circle at 22% 0%, color-mix(in srgb, var(--showcase-accent, var(--brand)) 12%, transparent), transparent 30%),
        linear-gradient(180deg, color-mix(in srgb, var(--bg-deep) 94%, transparent), color-mix(in srgb, var(--bg-surface) 90%, transparent));
      min-height: 380px;
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
      box-shadow:
        0 22px 56px color-mix(in srgb, var(--bg-deep) 40%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--fg-primary) 5%, transparent);
    }

    .showcase-app::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(140deg, color-mix(in srgb, var(--fg-primary) 7%, transparent), transparent 22%, transparent 72%, color-mix(in srgb, var(--showcase-accent, var(--brand)) 7%, transparent));
      pointer-events: none;
    }

    .showcase-app__bar {
      position: relative;
      min-height: 54px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-bottom: 1px solid color-mix(in srgb, var(--site-border-strong) 54%, transparent);
      background: color-mix(in srgb, var(--bg-surface) 58%, transparent);
      padding: 0 20px;
      color: var(--fg-secondary);
      font-family: var(--font-mono);
      font-size: 13px;
      z-index: 1;
    }

    .showcase-app__bar strong {
      color: var(--showcase-accent, var(--brand));
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .showcase-app__body {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.34fr) minmax(0, 1fr);
      gap: 16px;
      padding: 18px;
    }

    #showcase-cadence .showcase-app__body,
    #showcase-opus .showcase-app__body {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .showcase-pane {
      min-width: 0;
      border: 1px solid color-mix(in srgb, var(--site-border-strong) 54%, transparent);
      border-radius: 14px;
      background:
        linear-gradient(180deg, color-mix(in srgb, var(--bg-card) 76%, transparent), color-mix(in srgb, var(--bg-deep) 72%, transparent));
      padding: 16px;
      box-shadow:
        inset 0 1px 0 color-mix(in srgb, var(--fg-primary) 4%, transparent),
        0 14px 30px color-mix(in srgb, var(--bg-deep) 34%, transparent);
    }

    .showcase-pane__title {
      color: var(--showcase-accent, var(--brand));
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

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

    .showcase-row {
      --showcase-row-status: color-mix(in srgb, var(--fg-secondary) 72%, transparent);
      --showcase-row-ring: color-mix(in srgb, var(--fg-secondary) 9%, transparent);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 46px;
      border: 1px solid color-mix(in srgb, var(--site-border-strong) 46%, transparent);
      border-radius: 11px;
      background: color-mix(in srgb, var(--bg-card) 64%, transparent);
      padding: 11px 12px 11px 34px;
      color: var(--fg-secondary);
      font-size: 14px;
      line-height: 1.38;
    }

    .showcase-row::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 14px;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--showcase-row-status);
      box-shadow:
        0 0 0 5px var(--showcase-row-ring),
        0 0 18px color-mix(in srgb, var(--showcase-row-status) 24%, transparent);
      transform: translateY(-50%);
    }

    .showcase-row span {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .showcase-row strong {
      color: var(--fg-primary);
      font-size: 14px;
      font-weight: 800;
      text-align: right;
      white-space: nowrap;
    }

    #product-interfaces .showcase-row.is-active {
      --showcase-row-status: var(--brand);
      --showcase-row-ring: color-mix(in srgb, var(--brand) 16%, transparent);
      border-color: color-mix(in srgb, var(--brand) 34%, var(--site-border)) !important;
      background: color-mix(in srgb, var(--brand) 7%, var(--bg-card)) !important;
    }

    #product-interfaces .showcase-row.is-warn {
      --showcase-row-status: var(--accent-3);
      --showcase-row-ring: color-mix(in srgb, var(--accent-3) 16%, transparent);
      border-color: color-mix(in srgb, var(--accent-3) 34%, var(--site-border)) !important;
      background: color-mix(in srgb, var(--accent-3) 7%, var(--bg-card)) !important;
    }

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

    .showcase-map__node {
      border: 1px solid color-mix(in srgb, var(--showcase-accent, var(--brand)) 26%, transparent);
      border-radius: 14px;
      background:
        radial-gradient(circle at 16% 0%, color-mix(in srgb, var(--showcase-accent, var(--brand)) 14%, transparent), transparent 42%),
        color-mix(in srgb, var(--bg-card) 66%, transparent);
      padding: 16px;
      color: var(--fg-secondary);
      font-size: 14px;
      line-height: 1.45;
    }

    .showcase-map__node strong {
      display: block;
      color: var(--showcase-accent, var(--brand));
      font-family: var(--font-mono);
      font-size: 14px;
      margin-bottom: 6px;
    }

    .showcase-code {
      border: 1px solid color-mix(in srgb, var(--showcase-accent, var(--brand)) 24%, transparent);
      border-radius: 13px;
      background: color-mix(in srgb, var(--bg-surface) 54%, transparent);
      color: var(--showcase-accent, var(--brand));
      font-family: var(--font-mono);
      font-size: 13px;
      line-height: 1.9;
      padding: 14px;
      white-space: normal;
    }

    .showcase-progress {
      height: 9px;
      border-radius: 999px;
      background: color-mix(in srgb, var(--fg-secondary) 15%, transparent);
      overflow: hidden;
      margin-top: 10px;
    }

    .showcase-progress span {
      display: block;
      width: var(--value, 74%);
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--showcase-accent, var(--brand)), var(--brand));
      box-shadow: 0 0 18px color-mix(in srgb, var(--showcase-accent, var(--brand)) 34%, transparent);
    }

    /* 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);
    }

    body #solutions .solution-number {
      position: relative;
      isolation: isolate;
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border: 1px solid color-mix(in srgb, var(--brand) 46%, var(--site-border));
      border-radius: 16px;
      background:
        radial-gradient(circle at 32% 24%, color-mix(in srgb, var(--brand-strong) 24%, transparent), transparent 42%),
        linear-gradient(180deg, color-mix(in srgb, var(--brand) 16%, transparent), color-mix(in srgb, var(--brand-soft) 72%, transparent)) !important;
      box-shadow:
        inset 0 1px 0 color-mix(in srgb, var(--brand-strong) 26%, transparent),
        0 14px 32px color-mix(in srgb, var(--brand) 12%, transparent);
      color: var(--brand-strong) !important;
      font-family: var(--font-mono);
      font-size: 14px;
      font-weight: 900;
      line-height: 1;
      margin-bottom: 4px;
      opacity: 1;
      transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
    }

    body #solutions .solution-number::before {
      content: "";
      position: absolute;
      inset: 8px;
      z-index: -1;
      border: 1px dashed color-mix(in srgb, var(--brand) 30%, transparent);
      border-radius: 11px;
      opacity: 0.68;
    }

    body #solutions .solution-card:hover .solution-number {
      border-color: color-mix(in srgb, var(--brand-strong) 68%, var(--site-border));
      box-shadow:
        inset 0 1px 0 color-mix(in srgb, var(--brand-strong) 34%, transparent),
        0 16px 38px color-mix(in srgb, var(--brand) 18%, transparent);
      transform: translateY(-1px);
    }

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

    /* 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;
    }

    @media (max-width: 1180px) {
      .customer-practice-case-grid {
        grid-template-columns: 1fr;
      }

      .customer-practice-case {
        grid-template-rows: auto;
        min-height: 0;
      }

      .customer-practice-logo-wall img {
        width: 100%;
      }

    }

    @media (max-width: 760px) {
      .section.customer-practice-section {
        padding-top: clamp(72px, 16vw, 92px);
      }

      .customer-practice-title {
        font-size: clamp(28px, 8vw, 36px);
      }

      .customer-practice-subtitle {
        font-size: 15px;
        line-height: 1.72;
      }

      .customer-practice-evidence-layer {
        display: none;
      }

      .customer-practice-logo-wall {
        padding: 10px 0;
      }

      .customer-practice-front-glow {
        bottom: calc(100% + 8px);
        left: 0;
        right: 0;
        height: clamp(112px, 34vw, 148px);
      }

      .customer-practice-case {
        padding: 14px;
      }

      .customer-practice-case-head {
        grid-template-columns: 54px minmax(0, 1fr);
      }

      .customer-practice-case-icon {
        width: 48px;
        height: 48px;
      }

      .customer-practice-case-icon img {
        width: 36px;
        height: 36px;
      }

      .customer-practice-case h3 {
        font-size: 21px;
      }

      .customer-practice-status {
        position: static;
        top: auto;
        right: auto;
        grid-column: 2;
        justify-self: start;
      }

      .customer-practice-case-summary {
        grid-column: 2;
      }

      .customer-practice-mini-grid,
      .customer-practice-game-grid {
        grid-template-columns: 1fr;
      }

    }

    /* 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;
	      }
	    }

    @media (max-width: 1024px) {
      #product-interfaces .showcase-app__body,
      #showcase-cadence .showcase-app__body,
      #showcase-opus .showcase-app__body {
        grid-template-columns: 1fr;
      }

      #product-interfaces .showcase-panel,
      #product-interfaces .showcase-app,
      #product-interfaces .product-showcase-panel-wrap {
        min-height: 0;
      }
    }

    @media (max-width: 760px) {
      #product-interfaces .product-showcase-panel-wrap {
        margin-top: 28px;
        border-radius: 16px;
      }

      #product-interfaces .showcase-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      #product-interfaces .showcase-tab {
        min-height: 54px;
        padding: 13px 12px 13px 34px;
        font-size: 12px;
        line-height: 1.35;
      }

      #product-interfaces .showcase-tab::before {
        left: 14px;
        width: 8px;
        height: 8px;
      }

      #product-interfaces .showcase-panel {
        padding: 20px;
      }

      #product-interfaces .showcase-panel p {
        font-size: 14px;
      }

      #product-interfaces .showcase-app {
        border-radius: 14px;
      }

      #product-interfaces .showcase-app__bar {
        min-height: 48px;
        padding: 0 12px;
        font-size: 11px;
      }

      #product-interfaces .showcase-app__bar strong {
        font-size: 11px;
      }

      #product-interfaces .showcase-app__body {
        gap: 12px;
        padding: 12px;
      }

      #product-interfaces .showcase-pane {
        padding: 14px;
      }

      #product-interfaces .showcase-pane__title {
        font-size: 11px;
        margin-bottom: 12px;
      }

      #product-interfaces .showcase-row {
        min-height: 44px;
        font-size: 13px;
        padding: 10px 11px 10px 32px;
      }

      #product-interfaces .showcase-row::before {
        left: 13px;
        width: 8px;
        height: 8px;
      }

      #product-interfaces .showcase-row strong,
      #product-interfaces .showcase-map__node strong {
        font-size: 13px;
      }

      #product-interfaces .showcase-map__node,
      #product-interfaces .showcase-code {
        font-size: 13px;
      }
    }

    /* 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;
      }

      .customer-practice-title,
      .customer-practice-subtitle,
      .customer-practice-evidence-layer,
      .customer-practice-logo-wall,
      .customer-practice-front-layer,
      .customer-practice-front-glow,
      .customer-practice-case-grid {
        opacity: 1 !important;
        transform: none !important;
      }

      .customer-practice-case-grid {
        filter: none !important;
      }
    }
