    :root {
      --bg: #050505;
      --text: #f4f4f5;
      --muted: #a1a1aa;
      --soft: #71717a;
      --line: rgba(255, 255, 255, 0.11);
      --accent: #ffffff;
      --panel: rgba(255, 255, 255, 0.055);
    }

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

    a {
      all: unset;
      cursor: pointer;
    }

    html {
      background: var(--bg);
      color: var(--text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      user-select: none;
      -webkit-user-select: none;
    }

    body {
      position: relative;
      height: 100vh;
      height: 100dvh;
      overflow: hidden;
      background:
        linear-gradient(180deg, #000 0%, transparent 18%, transparent 82%, #000 100%),
        linear-gradient(180deg, #000 0%, #070707 24%, #020202 76%, #000 100%);
    }

    body.status-page {
      height: 100vh;
      height: 100dvh;
      overflow: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      pointer-events: none;
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
      mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    }

    body::before {
      inset: 0;
      z-index: 1;
      opacity: 0.12;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/%3E%3C/svg%3E");
      mix-blend-mode: screen;
    }

    .glow-field {
      position: fixed;
      inset: 0;
      z-index: 0;
      overflow: hidden;
      pointer-events: none;
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
      mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    }

    .glow-blob {
      position: absolute;
      opacity: 0;
      background: rgba(255, 255, 255, 0.14);
      filter: blur(54px);
      mix-blend-mode: screen;
      will-change: opacity, filter, transform, border-radius;
    }

    .glow-blob::before,
    .glow-blob::after {
      content: "";
      position: absolute;
      background: inherit;
      border-radius: inherit;
    }

    .glow-blob::before {
      width: 56%;
      height: 68%;
      left: 52%;
      top: -12%;
      transform: rotate(22deg);
    }

    .glow-blob::after {
      width: 48%;
      height: 54%;
      left: -10%;
      top: 48%;
      transform: rotate(-18deg);
    }

    .glow-left {
      width: min(46vw, 34rem);
      height: min(30vw, 22rem);
      left: 4%;
      top: 26%;
      border-radius: 58% 42% 64% 36% / 38% 57% 43% 62%;
      transform: rotate(-10deg) scale(0.92);
      animation:
        blob-in 2400ms cubic-bezier(0.22, 1, 0.36, 1) 420ms forwards,
        blob-left 58s cubic-bezier(0.45, 0, 0.55, 1) 3000ms infinite alternate;
    }

    .glow-right {
      width: min(38vw, 28rem);
      height: min(48vw, 36rem);
      right: 4%;
      top: 42%;
      background: rgba(255, 255, 255, 0.095);
      border-radius: 44% 56% 36% 64% / 62% 34% 66% 38%;
      transform: rotate(14deg) scale(0.95);
      animation:
        blob-in 2600ms cubic-bezier(0.22, 1, 0.36, 1) 560ms forwards,
        blob-right 64s cubic-bezier(0.45, 0, 0.55, 1) 3200ms infinite alternate;
    }

    .page {
      position: relative;
      z-index: 2;
      height: 100vh;
      height: 100dvh;
      display: flex;
      align-items: center;
      padding: clamp(24px, 5vw, 64px);
      overflow: hidden;
    }

    .shell {
      width: min(100%, 760px);
      height: 100%;
      margin: 0 auto;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      align-items: center;
      gap: clamp(28px, 7vh, 84px);
    }

    .topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      color: var(--soft);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #4ade80;
      box-shadow: 0 0 18px rgba(74, 222, 128, 0.78);
    }

    .content {
      display: grid;
      gap: 28px;
    }

    .status-shell {
      width: min(100%, 920px);
      gap: clamp(40px, 7vh, 84px);
    }

    .status-page .page {
      height: 100vh;
      height: 100dvh;
      align-items: center;
      overflow: hidden;
      padding-block: clamp(24px, 5vw, 64px);
    }

    .status-page .shell {
      height: 100%;
      min-height: 0;
      grid-template-rows: auto minmax(0, 1fr) auto;
    }

    .status-content {
      position: relative;
      z-index: 3;
      align-self: stretch;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr);
      height: 100%;
      min-height: 0;
      overflow: hidden;
      gap: 12px;
    }

    .eyebrow {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    h1 {
      font-size: clamp(64px, 16vw, 148px);
      line-height: 0.9;
      letter-spacing: -0.08em;
      font-weight: 720;
    }

    .description {
      max-width: 570px;
      color: var(--muted);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.55;
      letter-spacing: -0.02em;
    }

    .description strong {
      color: var(--text);
      font-weight: 520;
    }

    .status-summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      padding-right: 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .status-updated {
      display: inline-flex;
      align-items: center;
      white-space: nowrap;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 0 10px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 8px;
      color: var(--text);
      background: rgba(255, 255, 255, 0.06);
      white-space: nowrap;
    }

    [data-reveal-group] .status-pill {
      opacity: 0;
      filter: blur(8px);
      transform: translateY(18px);
      animation: item-in 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: var(--group-delay, 0ms);
      will-change: opacity, filter, transform;
    }

    .status-pill.status-operational {
      border-color: rgba(74, 222, 128, 0.24);
      color: #d9ffe6;
      background: rgba(34, 197, 94, 0.1);
    }

    .status-pill.status-degraded {
      border-color: rgba(251, 146, 60, 0.28);
      color: #fdba74;
      background: rgba(251, 146, 60, 0.1);
    }

    .status-pill.status-degraded .status-dot {
      background: #fb923c;
      box-shadow: 0 0 16px rgba(251, 146, 60, 0.75);
    }

    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #4ade80;
      box-shadow: 0 0 16px rgba(74, 222, 128, 0.8);
    }

    .service-grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: max-content;
      align-content: start;
      gap: 12px;
      min-height: 0;
      overflow-y: auto;
      overscroll-behavior: contain;
      padding: 10px 18px 18px 0;
      -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
      mask-image: linear-gradient(180deg, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
    }

    .service-grid::-webkit-scrollbar {
      width: 6px;
    }

    .service-grid::-webkit-scrollbar-track {
      background: transparent;
    }

    .service-grid::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.22);
    }

    .service-card {
      align-self: start;
      min-height: max-content;
      border: 1px solid var(--line);
      border-radius: 8px;
      background:
        linear-gradient(270deg, var(--status-card-tint, transparent) 0%, transparent 15%),
        rgba(255, 255, 255, 0.045);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
    }

    article.service-card,
    .service-card-summary {
      display: grid;
      align-items: center;
      gap: 16px;
      min-height: 86px;
      box-sizing: border-box;
    }

    article.service-card {
      grid-template-columns: minmax(0, 1fr) auto minmax(104px, auto) 18px;
      padding: 18px;
    }

    .service-card-summary {
      grid-template-columns: minmax(0, 1fr) auto minmax(104px, auto) 18px;
      padding: 18px;
    }

    .service-card-summary {
      cursor: pointer;
      list-style: none;
    }

    .service-card-summary::-webkit-details-marker {
      display: none;
    }

    .service-card-expandable {
      position: relative;
    }

    .service-card-expandable[open] {
      background:
        linear-gradient(270deg, var(--status-card-tint, transparent) 0%, transparent 15%),
        rgba(255, 255, 255, 0.06);
    }

    article.service-card:has(> .state-operational),
    .service-card:has(.service-card-summary > .state-operational) {
      --status-card-tint: rgba(74, 222, 128, 0.1);
    }

    article.service-card:has(> .state-degraded),
    .service-card:has(.service-card-summary > .state-degraded) {
      --status-card-tint: rgba(251, 146, 60, 0.12);
    }

    article.service-card:has(> .state-compromised),
    .service-card:has(.service-card-summary > .state-compromised) {
      --status-card-tint: rgba(251, 146, 60, 0.13);
    }

    article.service-card:has(> .state-maintenance),
    .service-card:has(.service-card-summary > .state-maintenance) {
      --status-card-tint: rgba(96, 165, 250, 0.13);
    }

    article.service-card:has(> .state-offline),
    .service-card:has(.service-card-summary > .state-offline) {
      --status-card-tint: rgba(255, 45, 45, 0.14);
    }

    [data-reveal-group] .service-card {
      opacity: 0;
      filter: blur(8px);
      transform: translateY(18px);
      animation: item-in 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: calc(var(--group-delay, 0ms) + (var(--item-index, 0) * 85ms));
      will-change: opacity, filter, transform;
    }

    .service-main {
      display: grid;
      gap: 4px;
    }

    .service-expand {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      color: var(--soft);
      line-height: 0;
    }

    .service-expand-placeholder {
      width: 18px;
      height: 18px;
    }

    .service-expand::after {
      content: "";
      width: 6px;
      height: 6px;
      border-right: 1px solid currentColor;
      border-bottom: 1px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 180ms ease;
    }

    .service-card[open] .service-expand::after {
      transform: rotate(225deg) translate(-1px, -1px);
    }

    .subservice-list {
      display: grid;
      gap: 8px;
      margin: 0 18px 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, 0.09);
      max-height: 190px;
      overflow-y: auto;
      overscroll-behavior: contain;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
    }

    .subservice-list::-webkit-scrollbar {
      width: 5px;
    }

    .subservice-list::-webkit-scrollbar-track {
      background: transparent;
    }

    .subservice-list::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.18);
    }

    .subservice-tree {
      gap: 6px;
    }

    .subservice-node {
      display: grid;
      gap: 6px;
      position: relative;
    }

    .subservice-children {
      position: relative;
      display: grid;
      gap: 6px;
      margin-left: 0;
      padding-left: 0;
    }

    .subservice-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(104px, auto) 18px;
      align-items: center;
      gap: 12px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .subservice-row::after {
      content: "";
      width: 18px;
      height: 1px;
    }

    .subservice-row > span:first-child {
      min-width: 0;
    }

    .subservice-label {
      display: inline-flex;
      align-items: center;
      min-width: 0;
      gap: 6px;
    }

    .tree-connector {
      flex: 0 0 auto;
      width: 18px;
      height: 18px;
      color: rgba(255, 255, 255, 0.44);
      margin-left: 2px;
      background: currentColor;
      mask: url("../icons/tree-corner.svg") center / contain no-repeat;
      -webkit-mask: url("../icons/tree-corner.svg") center / contain no-repeat;
    }

    .service-history {
      display: grid;
      grid-template-columns: repeat(20, 5px);
      justify-content: center;
      align-items: center;
      gap: 4px;
      min-width: 176px;
      height: 34px;
    }

    .history-bar {
      position: relative;
      width: 5px;
      height: 26px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
    }

    .history-tooltip {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 20;
      width: max-content;
      min-width: 150px;
      max-width: 220px;
      display: grid;
      gap: 3px;
      padding: 10px 11px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 8px;
      color: var(--text);
      background: rgba(8, 8, 9, 0.96);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
      font-size: 12px;
      line-height: 1.45;
      text-align: left;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateY(4px);
      transition: opacity 140ms ease, transform 140ms ease;
    }

    .history-tooltip::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: var(--tooltip-arrow-left, 50%);
      width: 8px;
      height: 8px;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(8, 8, 9, 0.96);
      transform: translateX(-50%) rotate(45deg);
    }

    .history-tooltip-date {
      color: var(--soft);
      font-size: 11px;
    }

    .history-tooltip-status {
      font-size: 12px;
      font-weight: 560;
    }

    .history-tooltip-detail {
      color: var(--muted);
      font-size: 11px;
    }

    .history-tooltip-status.day-operational {
      color: #4ade80;
    }

    .history-tooltip-status.day-partial {
      color: #fb923c;
    }

    .history-tooltip-status.day-major {
      color: #ff2d2d;
    }

    .history-tooltip.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .history-bar.day-operational {
      background: #4ade80;
      box-shadow: 0 0 10px rgba(74, 222, 128, 0.34);
    }

    .history-bar.day-partial {
      background: #fb923c;
      box-shadow: 0 0 10px rgba(251, 146, 60, 0.36);
    }

    .history-bar.day-major {
      background: #ff2d2d;
      box-shadow: 0 0 10px rgba(255, 45, 45, 0.42);
    }

    .service-name {
      color: var(--text);
      font-size: 14px;
      font-weight: 520;
      line-height: 1.35;
    }

    .service-scope {
      color: var(--soft);
      font-size: 12px;
      line-height: 1.4;
    }

    .service-state {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--muted);
      font-size: 12px;
      white-space: nowrap;
      align-self: center;
      justify-self: end;
    }

    .service-state::after {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #f4f4f5;
      box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
    }

    .service-state.state-operational {
      color: #b8f7cb;
    }

    .service-state.state-operational::after {
      background: #4ade80;
      box-shadow: 0 0 14px rgba(74, 222, 128, 0.75);
    }

    .service-state.state-degraded {
      color: #fde68a;
    }

    .service-state.state-degraded::after {
      background: #fb923c;
      box-shadow: 0 0 14px rgba(251, 146, 60, 0.7);
    }

    .service-state.state-compromised {
      color: #fdba74;
    }

    .service-state.state-compromised::after {
      background: #fb923c;
      box-shadow: 0 0 14px rgba(251, 146, 60, 0.72);
    }

    .service-state.state-maintenance {
      color: #93c5fd;
    }

    .service-state.state-maintenance::after {
      background: #60a5fa;
      box-shadow: 0 0 14px rgba(96, 165, 250, 0.72);
    }

    .service-state.state-offline {
      color: #ff6b6b;
    }

    .service-state.state-offline::after {
      background: #ff2d2d;
      box-shadow: 0 0 16px rgba(255, 45, 45, 0.9);
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding-top: 8px;
    }

    .button {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 16px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 520;
      overflow: hidden;
      isolation: isolate;
      transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, color 260ms ease;
    }

    .button::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: 0;
      opacity: 0;
      pointer-events: none;
      background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.34) 42%, transparent 66%);
      transform: translateX(-120%);
      transition: opacity 260ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .button:hover::before {
      opacity: 1;
      transform: translateX(120%);
    }

    .button.primary {
      background: var(--accent);
      color: #050505;
    }

    .button.primary::before {
      background: linear-gradient(110deg, transparent 18%, rgba(0, 0, 0, 0.14) 42%, transparent 66%);
    }

    .button.primary:hover {
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.42), 0 14px 40px rgba(255, 255, 255, 0.16);
    }

    .button.secondary {
      border: 1px solid var(--line);
      color: var(--text);
      background: var(--panel);
      backdrop-filter: blur(18px);
    }

    .button.secondary:hover {
      border-color: rgba(255, 255, 255, 0.26);
      background: rgba(255, 255, 255, 0.085);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 40px rgba(255, 255, 255, 0.08);
    }

    .footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      color: var(--soft);
      font-size: 12px;
      line-height: 1.5;
    }

    .footer-links {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .footer-separator {
      color: var(--soft);
    }

    .footer a {
      color: var(--muted);
      text-decoration: none;
    }

    .footer a:hover {
      color: var(--text);
    }

    .reveal-word {
      display: inline-block;
      opacity: 0;
      filter: blur(8px);
      transform: translateY(14px);
      animation: word-in 860ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: calc(var(--group-delay, 0ms) + (var(--word-index, 0) * 38ms));
      will-change: opacity, filter, transform;
    }

    [data-reveal-group] .button {
      opacity: 0;
      filter: blur(8px);
      transform: translateY(18px);
      animation: item-in 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: calc(var(--group-delay, 0ms) + (var(--item-index, 0) * 110ms));
      will-change: opacity, filter, transform;
    }

    [data-reveal-group] .dot {
      opacity: 0;
      filter: blur(8px);
      transform: translateY(14px);
      animation: item-in 860ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: calc(var(--group-delay, 0ms) + 45ms);
      will-change: opacity, filter, transform;
    }

    @keyframes word-in {
      to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
      }
    }

    @keyframes item-in {
      to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
      }
    }

    @keyframes blob-in {
      0% {
        opacity: 0;
        filter: blur(72px);
      }

      62% {
        opacity: 1;
      }

      100% {
        opacity: 0.9;
        filter: blur(54px);
      }
    }

    @keyframes blob-left {
      0% {
        transform: translate3d(0, 0, 0) rotate(-10deg) scale(0.92);
        border-radius: 58% 42% 64% 36% / 38% 57% 43% 62%;
      }

      50% {
        transform: translate3d(9vw, 5vh, 0) rotate(4deg) scale(1.08);
        border-radius: 40% 60% 48% 52% / 56% 34% 66% 44%;
      }

      100% {
        transform: translate3d(3vw, 11vh, 0) rotate(-18deg) scale(1.02);
        border-radius: 64% 36% 42% 58% / 44% 68% 32% 56%;
      }
    }

    @keyframes blob-right {
      0% {
        transform: translate3d(0, 0, 0) rotate(14deg) scale(0.95);
        border-radius: 44% 56% 36% 64% / 62% 34% 66% 38%;
      }

      50% {
        transform: translate3d(-11vw, -4vh, 0) rotate(-6deg) scale(1.06);
        border-radius: 62% 38% 58% 42% / 36% 58% 42% 64%;
      }

      100% {
        transform: translate3d(-4vw, -10vh, 0) rotate(20deg) scale(1.12);
        border-radius: 38% 62% 46% 54% / 54% 42% 58% 46%;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .glow-blob {
        opacity: 1;
        filter: blur(54px);
        animation: none;
      }

      .reveal-word,
      [data-reveal-group] .dot,
      [data-reveal-group] .status-pill,
      [data-reveal-group] .service-card,
      [data-reveal-group] .button {
        opacity: 1;
        filter: none;
        transform: none;
        animation: none;
      }
    }

    @media (max-width: 720px) {
      .page {
        padding: 20px;
      }

      .shell {
        gap: clamp(24px, 7vh, 56px);
      }

      .footer {
        width: 100%;
      }

      .topline {
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
      }

      .button {
        width: 100%;
      }

      .status-shell {
        gap: 32px;
      }

      .status-content {
        gap: 12px;
      }

      .status-summary {
        flex-wrap: wrap;
        padding-right: 18px;
      }

      .service-grid {
        gap: 8px;
        padding-bottom: 22px;
      }

      .service-card {
        row-gap: 10px;
      }

      article.service-card,
      .service-card-summary {
        grid-template-columns: minmax(0, 1fr) auto 18px;
        grid-template-rows: minmax(20px, auto) 24px;
        min-height: 90px;
        padding: 12px;
      }

      .subservice-list {
        margin: 0 12px 12px;
        max-height: 150px;
      }

      .subservice-row {
        grid-template-columns: minmax(0, 1fr) auto 18px;
      }

      .service-main {
        grid-column: 1;
        grid-row: 1;
      }

      article.service-card > .service-state,
      .service-card-summary > .service-state {
        grid-column: 2;
        grid-row: 1;
      }

      .service-expand,
      .service-expand-placeholder {
        grid-column: 3;
        grid-row: 1;
      }

      .service-history {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: stretch;
        grid-template-columns: repeat(20, 1fr);
        min-width: 0;
        height: 24px;
      }

      .subservice-row .service-state {
        grid-column: auto;
        grid-row: auto;
      }

      .history-bar {
        width: 100%;
        height: 20px;
        border-radius: 5px;
      }
    }
