body[data-page-file="solutions-devops.html"] {
      --bg-deep: var(--site-bg);
      --bg-surface: var(--site-surface-solid);
      --bg-card: var(--site-panel);
      --bg-card-hover: var(--bg-card-soft);
      --border: var(--site-border);
      --border-bright: var(--site-border-strong);
      --green: var(--brand);
      --green-dim: var(--brand-soft);
      --purple: var(--accent-4);
      --yellow: var(--accent-3);
      --red: var(--accent-5);
      --blue: var(--accent-2);
      --fg-primary: var(--text-primary);
      --fg-secondary: var(--text-secondary);
      --fg-muted: var(--text-tertiary);
      --container: 1280px;
      --section-spacing: clamp(80px, 10vw, 140px);
    }
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html { scroll-behavior: smooth; }
    body[data-page-file="solutions-devops.html"] {
      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;
    }
    .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;
    }
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .nav-link {
      color: var(--fg-secondary);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
    }
    .nav-link:hover { color: var(--fg-primary); }
    .nav-cta {
      background: var(--green);
      color: var(--bg-deep);
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 12px var(--green-dim);
    }

    /* Hero */
    .hero {
      padding-top: 140px;
      padding-bottom: var(--section-spacing);
    }
    .hero-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-content h1 {
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .hero-content h2 {
      font-size: clamp(20px, 3vw, 28px);
      font-weight: 500;
      color: var(--fg-secondary);
      margin-bottom: 24px;
    }
    .hero-content p {
      font-size: 17px;
      color: var(--fg-secondary);
      margin-bottom: 32px;
      max-width: 520px;
    }
    .hero-badges {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }
    .badge {
      background: var(--bg-card);
      border: 1px solid var(--border);
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 12px;
      color: var(--fg-secondary);
      font-weight: 500;
    }

    /* Console */
    .console {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    }
    .console-header {
      background: var(--bg-card);
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-bottom: 1px solid var(--border);
    }
    .console-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
    }
    .console-dot.red { background: var(--accent-5); }
    .console-dot.yellow { background: var(--accent-3); }
    .console-dot.green { background: var(--brand); }
    .console-title {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--fg-muted);
      margin-left: auto;
      margin-right: auto;
    }
    .console-body {
      padding: 20px;
      font-family: var(--font-mono);
      font-size: 13px;
      line-height: 1.8;
      min-height: 380px;
    }
    .console-line {
      opacity: 0;
      transform: translateX(-8px);
      animation: fadeInLine 0.3s forwards;
    }
    @keyframes fadeInLine {
      to { opacity: 1; transform: translateX(0); }
    }
    .console-line .prefix {
      color: var(--fg-muted);
      margin-right: 12px;
    }
    .console-line .cmd {
      color: var(--green);
      font-weight: 500;
    }
    .console-line .arg {
      color: var(--blue);
    }
    .console-line .output {
      color: var(--fg-secondary);
      margin-left: 24px;
    }
    .console-line .success {
      color: var(--green);
    }
    .console-line .warn {
      color: var(--yellow);
    }
    .console-line .error {
      color: var(--red);
    }

    /* Console visualization */
    .pipeline-viz {
      margin-top: 20px;
      padding: 16px;
      background: var(--bg-card);
      border-radius: 8px;
      border: 1px solid var(--border);
    }
    .pipeline-stage {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }
    .pipeline-stage:last-child {
      border-bottom: none;
    }
    .stage-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 6px;
      font-size: 14px;
    }
    .stage-icon.pending {
      background: var(--bg-surface);
      color: var(--fg-muted);
    }
    .stage-icon.running {
      background: var(--yellow-dim);
      color: var(--yellow);
      animation: pulse 1.5s infinite;
    }
    .stage-icon.done {
      background: var(--green-dim);
      color: var(--green);
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    .stage-info {
      flex: 1;
    }
    .stage-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--fg-primary);
    }
    .stage-desc {
      font-size: 11px;
      color: var(--fg-muted);
      margin-top: 2px;
    }
    .stage-status {
      font-size: 11px;
      font-weight: 500;
    }
    .stage-status.pending { color: var(--fg-muted); }
    .stage-status.running { color: var(--yellow); }
    .stage-status.done { color: var(--green); }

    /* Sections */
    .section {
      padding: var(--section-spacing) 0;
    }
    .section-label {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      margin-bottom: 20px;
    }
    .section-subtitle {
      font-size: 18px;
      color: var(--fg-secondary);
      max-width: 700px;
      margin-bottom: 48px;
    }

    /* Cards */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      transition: border-color 0.3s, background 0.3s;
    }
    .card:hover {
      border-color: var(--border-bright);
      background: var(--bg-card-hover);
    }
    .card-icon {
      width: 48px;
      height: 48px;
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 20px;
    }
    .card-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .card-desc {
      font-size: 15px;
      color: var(--fg-secondary);
      line-height: 1.7;
    }

    /* Architecture */
    .arch-diagram {
      background: var(--bg-surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 48px;
      margin-top: 48px;
    }
    .arch-flow {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      align-items: center;
      text-align: center;
    }
    .arch-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px;
      min-height: 120px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .arch-box.product {
      background: var(--purple-dim);
      border-color: var(--purple);
    }
    .arch-box-icon {
      font-size: 24px;
      margin-bottom: 8px;
    }
    .arch-box-title {
      font-size: 13px;
      font-weight: 600;
    }
    .arch-box-desc {
      font-size: 11px;
      color: var(--fg-muted);
      margin-top: 4px;
    }
    .arch-arrow {
      color: var(--fg-muted);
      font-size: 20px;
    }

    /* Integration */
    .integration-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      margin-top: 48px;
    }
    .integration-logo {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 16px 24px;
      font-size: 14px;
      font-weight: 500;
      color: var(--fg-secondary);
    }

    /* Footer */
    .footer {
      border-top: 1px solid var(--border);
      padding: 48px 0;
      margin-top: var(--section-spacing);
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-logo {
      font-size: 18px;
      font-weight: 700;
    }
    .footer-links {
      display: flex;
      gap: 32px;
    }
    .footer-link {
      color: var(--fg-secondary);
      text-decoration: none;
      font-size: 14px;
    }
    .footer-link:hover { color: var(--fg-primary); }
    .footer-copy {
      font-size: 13px;
      color: var(--fg-muted);
      margin-top: 24px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .arch-flow {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .arch-arrow {
        transform: rotate(90deg);
      }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .cards-grid {
        grid-template-columns: 1fr;
      }
      .hero {
        padding-top: 100px;
      }
    }
