:root {
  --bg: #07090d;
  --panel: #0d1118;
  --panel2: #111721;
  --line: #202936;
  --line2: #18202b;
  --text: #edf2f8;
  --muted: #778292;
  --blue: #2da8ff;
  --cyan: #43e6ff;
  --green: #48d597;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, sans-serif;
  line-height: 1.55;
}
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(
      rgba(50, 100, 150, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(50, 100, 150, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}
a {
  color: inherit;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.topbar {
  width: min(1320px, calc(100% - 48px));
  height: 78px;
  margin: auto;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font:
    600 13px IBM Plex Mono,
    monospace;
  letter-spacing: 1px;
}
.brand-symbol {
  color: var(--cyan);
  font-size: 19px;
  font-weight: 600;
}
.topbar nav {
  display: flex;
  height: 100%;
}
.topbar nav a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  text-decoration: none;
  color: var(--muted);
  font:
    500 12px IBM Plex Mono,
    monospace;
  border-bottom: 1px solid transparent;
}
.topbar nav a:hover,
.topbar nav a.active {
  color: var(--text);
  border-color: var(--blue);
  background: linear-gradient(to top, rgba(45, 168, 255, 0.07), transparent);
}
.system-state {
  font: 500 9px IBM Plex Mono;
  color: var(--muted);
  letter-spacing: 1px;
}
.system-state i,
.live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 7px;
}
.hero {
  min-height: 640px;
  padding: 112px 0 80px;
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 80px;
  align-items: center;
}
.terminal-label,
.index,
.breadcrumb,
.code {
  font:
    500 10px IBM Plex Mono,
    monospace;
  letter-spacing: 1.5px;
  color: var(--blue);
}
.terminal-label span {
  color: #4f5b69;
}
.hero h1,
.page-intro h1 {
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -5px;
  margin: 24px 0 30px;
}
.hero h1 strong {
  font-weight: 600;
  color: #718096;
}
.hero-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}
.actions {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.btn {
  border: 1px solid var(--line);
  padding: 13px 18px;
  text-decoration: none;
  font: 500 11px IBM Plex Mono;
  border-radius: 3px;
  display: inline-flex;
  gap: 28px;
  align-items: center;
}
.btn:hover {
  border-color: #3d5269;
}
.btn.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #03101a;
}
.system-panel {
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(17, 23, 33, 0.9),
    rgba(8, 12, 18, 0.9)
  );
  padding: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
}
.panel-head {
  display: flex;
  justify-content: space-between;
  color: #697686;
  font: 500 9px IBM Plex Mono;
  letter-spacing: 1px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line2);
}
.radar {
  width: 240px;
  aspect-ratio: 1;
  margin: 35px auto;
  border: 1px solid #243141;
  border-radius: 50%;
  position: relative;
  background: repeating-radial-gradient(
      circle,
      transparent 0 38px,
      #172231 39px 40px
    ),
    linear-gradient(90deg, transparent 49.7%, #1a2735 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, #1a2735 50%, transparent 50.3%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.radar b {
  font: 600 31px IBM Plex Mono;
  color: var(--cyan);
}
.radar-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0 80%,
    rgba(45, 168, 255, 0.2)
  );
  animation: spin 5s linear infinite;
}
.point {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}
.p1 {
  top: 52px;
  left: 78px;
}
.p2 {
  right: 54px;
  bottom: 70px;
}
.p3 {
  left: 55px;
  bottom: 48px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line2);
}
.metrics div {
  padding: 16px 5px 0;
  border-right: 1px solid var(--line2);
}
.metrics div:last-child {
  border: 0;
}
.metrics span {
  display: block;
  font: 500 20px IBM Plex Mono;
}
.metrics small {
  font: 8px IBM Plex Mono;
  color: var(--muted);
}
.module-section,
.activity {
  padding: 105px 0;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}
.section-head h2 {
  font-size: 46px;
  letter-spacing: -2px;
  margin: 6px 0 0;
}
.section-head > p {
  max-width: 420px;
  color: var(--muted);
  font-size: 14px;
}
.module-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 12px;
}
.module {
  position: relative;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(13, 17, 24, 0.82);
  text-decoration: none;
  transition: 0.25s;
}
.module:hover {
  transform: translateY(-3px);
  border-color: #3a4c62;
  background: var(--panel2);
}
.module.featured {
  background: linear-gradient(
    145deg,
    rgba(16, 28, 41, 0.95),
    rgba(9, 15, 22, 0.95)
  );
  border-color: #29435a;
}
.module-top {
  display: flex;
  justify-content: space-between;
  font: 500 9px IBM Plex Mono;
  color: #5f6b7b;
  letter-spacing: 1px;
}
.module-icon {
  position: absolute;
  right: 25px;
  top: 75px;
  color: #1c3347;
  font: 500 70px IBM Plex Mono;
}
.featured .module-icon {
  color: #17364d;
  font-size: 110px;
}
.module-bottom {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}
.module h3 {
  font-size: 28px;
  margin: 0 0 10px;
}
.module p {
  color: var(--muted);
  font-size: 13px;
  min-height: 44px;
}
.open {
  display: block;
  margin-top: 28px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #8190a0;
  font: 500 9px IBM Plex Mono;
  letter-spacing: 1px;
}
.module:hover .open {
  color: var(--cyan);
}
.activity {
  padding-top: 30px;
}
.activity-table {
  border: 1px solid var(--line);
}
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.7fr;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line2);
  font-size: 12px;
  align-items: center;
}
.table-row:last-child {
  border: 0;
}
.table-row:not(.table-head):hover {
  background: rgba(45, 168, 255, 0.025);
}
.table-head {
  font: 500 9px IBM Plex Mono;
  color: #596575;
  letter-spacing: 1px;
}
.table-row > span {
  color: var(--muted);
}
.status {
  font-family: IBM Plex Mono !important;
}
.active-status {
  color: var(--green) !important;
}
.dim {
  color: #4b5664 !important;
}
footer {
  width: min(1320px, calc(100% - 48px));
  margin: 100px auto 0;
  min-height: 110px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #576170;
  font: 500 9px IBM Plex Mono;
  letter-spacing: 1px;
}
footer a {
  text-decoration: none;
}
.footer-end {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lab-trigger {
  border: 0;
  border-left: 1px solid #252f3b;
  background: transparent;
  color: #3f4955;
  padding: 2px 0 2px 14px;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color 0.2s;
}
.lab-trigger:hover,
.lab-trigger:focus-visible {
  color: var(--cyan);
  outline: none;
}
.lab-layer {
  position: fixed;
  inset: 0;
  z-index: 50;
}
.lab-layer[hidden] {
  display: none;
}
.lab-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(2, 5, 8, 0.75);
  opacity: 0;
  transition: opacity 0.24s;
  cursor: default;
}
.lab-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100%;
  border-left: 1px solid #294156;
  background: linear-gradient(160deg, #101821, #080c11 60%);
  padding: 34px;
  box-shadow: -30px 0 100px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 0.24s ease;
}
.lab-layer.open .lab-backdrop {
  opacity: 1;
}
.lab-layer.open .lab-drawer {
  transform: translateX(0);
}
.lab-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.lab-head span,
.lab-project span,
.lab-empty {
  color: #536171;
  font: 500 9px "IBM Plex Mono", monospace;
  letter-spacing: 1.2px;
}
.lab-head h2 {
  margin: 8px 0 0;
  font: 600 42px "IBM Plex Mono", monospace;
  color: var(--cyan);
}
.lab-close {
  border: 1px solid var(--line);
  background: transparent;
  color: #788696;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 20px;
}
.lab-drawer > p {
  margin: 26px 0;
  color: var(--muted);
  font-size: 13px;
}
.lab-project {
  position: relative;
  display: grid;
  gap: 7px;
  border: 1px solid #293847;
  background: rgba(20, 31, 42, 0.7);
  padding: 20px;
  text-decoration: none;
}
.lab-project:hover {
  border-color: var(--cyan);
}
.lab-project strong {
  font-size: 20px;
}
.lab-project small {
  color: var(--muted);
}
.lab-project i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--cyan);
  font-style: normal;
}
.lab-empty {
  margin-top: 12px;
  padding: 18px;
  border: 1px dashed #242f3b;
  text-align: center;
}
body.lab-open {
  overflow: hidden;
}
.subpage {
  padding-top: 55px;
}
.breadcrumb {
  color: #465362;
}
.breadcrumb span {
  color: #7f8b99;
}
.page-intro {
  padding: 90px 0 85px;
  border-bottom: 1px solid var(--line);
}
.page-intro h1 {
  margin: 15px 0 25px;
}
.accent {
  color: var(--cyan);
}
.page-intro p {
  max-width: 670px;
  font-size: 18px;
  color: var(--muted);
}
.dashboard-preview {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 12px;
  margin: 70px 0;
}
.dash-main,
.dash-side article {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px;
}
.big-stat {
  margin-top: 35px;
}
.big-stat strong {
  font: 500 72px IBM Plex Mono;
  color: var(--cyan);
  display: block;
}
.big-stat span,
.dash-side span,
.dash-side small {
  font: 500 9px IBM Plex Mono;
  color: var(--muted);
  letter-spacing: 1px;
}
.chart-lines {
  height: 110px;
  display: flex;
  align-items: end;
  gap: 10px;
  margin-top: 25px;
}
.chart-lines i {
  flex: 1;
  background: linear-gradient(to top, var(--blue), rgba(45, 168, 255, 0.1));
  border-top: 1px solid var(--cyan);
}
.dash-side {
  display: grid;
  gap: 12px;
}
.dash-side article {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dash-side strong {
  font: 500 38px IBM Plex Mono;
  margin: 12px 0;
  color: #d8e5f0;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.feature-list article {
  padding: 30px;
  border-right: 1px solid var(--line);
}
.feature-list article:last-child {
  border: 0;
}
.feature-list span {
  font: 500 10px IBM Plex Mono;
  color: var(--blue);
}
.feature-list h3 {
  font-size: 20px;
}
.feature-list p {
  font-size: 13px;
  color: var(--muted);
}
.notice {
  margin-top: 60px;
  border-left: 2px solid var(--blue);
  padding: 8px 22px;
  background: rgba(45, 168, 255, 0.04);
  display: flex;
  gap: 30px;
  align-items: center;
}
.notice span {
  font: 500 9px IBM Plex Mono;
  color: var(--blue);
}
.notice p {
  color: var(--muted);
  font-size: 13px;
}
.project-list {
  margin: 70px 0;
  border-top: 1px solid var(--line);
}
.project-list > a,
.project-list > article {
  display: grid;
  grid-template-columns: 0.5fr 2fr 0.8fr 30px;
  align-items: center;
  padding: 28px 15px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.project-list > a:hover {
  background: rgba(45, 168, 255, 0.04);
}
.project-id,
.project-state {
  font: 500 9px IBM Plex Mono;
  color: var(--muted);
  letter-spacing: 1px;
}
.project-list h3 {
  margin: 0 0 4px;
  font-size: 19px;
}
.project-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.profile-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  margin-top: 70px;
}
.identity-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--panel);
}
.avatar-tech {
  aspect-ratio: 1;
  background: repeating-linear-gradient(
      0deg,
      transparent 0 10px,
      rgba(45, 168, 255, 0.04) 11px
    ),
    #0a0f16;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
}
.avatar-tech span {
  font: 500 74px IBM Plex Mono;
  color: #1e3447;
}
.avatar-tech i {
  position: absolute;
  inset: 18px;
  border: 1px solid #1b2937;
}
.identity-card dl {
  margin: 20px 0 0;
}
.identity-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line2);
}
dt,
dd {
  font: 500 9px IBM Plex Mono;
  margin: 0;
}
dt {
  color: #526071;
}
dd {
  color: #aab5c1;
}
.profile-copy {
  padding: 40px 0;
}
.profile-copy h2 {
  font-size: 50px;
  line-height: 1.05;
  letter-spacing: -2px;
}
.profile-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
}
.skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.skill-grid span {
  border: 1px solid var(--line);
  padding: 9px 12px;
  font: 500 9px IBM Plex Mono;
  color: #7c8998;
}
@media (max-width: 850px) {
  .topbar nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 85px;
  }
  .system-panel {
    max-width: 430px;
  }
  .module-grid {
    grid-template-columns: 1fr;
  }
  .module {
    min-height: 330px;
  }
  .dashboard-preview,
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 560px) {
  .shell,
  .topbar,
  footer {
    width: calc(100% - 28px);
  }
  .system-state {
    display: none;
  }
  .hero h1,
  .page-intro h1 {
    font-size: 50px;
    letter-spacing: -3px;
  }
  .hero {
    gap: 45px;
  }
  .radar {
    width: 200px;
  }
  .actions {
    flex-direction: column;
    align-items: start;
  }
  .section-head h2 {
    font-size: 38px;
  }
  .table-row {
    grid-template-columns: 1.7fr 1fr;
  }
  .table-row > :nth-child(2),
  .table-row > :nth-child(4) {
    display: none;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .feature-list article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .project-list > a,
  .project-list > article {
    grid-template-columns: 1fr 35px;
    gap: 12px;
  }
  .project-id,
  .project-state {
    display: none;
  }
  .profile-copy h2 {
    font-size: 40px;
  }
  footer {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .page-intro {
    padding: 65px 0;
  }
}
