:root {
  font-family: Inter, Arial, sans-serif;
  color: #17191d;
  background: #fbfbfb;
  font-synthesis: none;
  --ink: #050505;
  --blue: #009bff;
  --line: #e3e6e9;
  --muted: #69717b;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  border: 1px solid var(--line);
  background: #fff;
  padding: 11px 17px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #151515;
}
button:hover {
  border-color: #98a5b0;
  background: #f4f7f9;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
button.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
button.primary:hover {
  background: #28343d;
}
button.blue {
  background: var(--blue);
  color: #050505;
  border-color: var(--blue);
}
button.danger {
  color: #af3131;
  border-color: #ebcaca;
}
a {
  color: #0563c1;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.shell {
  display: grid;
  grid-template-columns: 244px 1fr;
  min-height: 100vh;
}
.sidebar {
  background: #050505;
  color: #fff;
  padding: 35px 23px;
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  width: 244px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 650;
  font-size: 24px;
  letter-spacing: -1px;
}
.brand img {
  width: 36px;
  height: 39px;
  filter: invert(1);
}
.product {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: #858b90;
  margin: 14px 0 45px 48px;
}
.nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav button {
  background: none;
  border: 0;
  color: #9b9da0;
  text-align: left;
  font-weight: 500;
  padding: 13px 14px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav button.active {
  color: white;
  background: #1a1e21;
  box-shadow: inset 3px 0 var(--blue);
}
.nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.side-bottom {
  margin-top: auto;
  padding-top: 45px;
  font-size: 12px;
  color: #8e949a;
}
.side-bottom strong {
  display: block;
  color: #ddd;
  font-size: 14px;
  margin: 10px 0;
}
.side-bottom p {
  line-height: 1.7;
}
.side-bottom button {
  padding: 0;
  border: 0;
  background: none;
  color: #a1a7ad;
  font-size: 12px;
}
.main {
  grid-column: 2;
  padding: 0 48px 55px;
  min-width: 0;
}
.topbar {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  margin-bottom: 42px;
  gap: 20px;
}
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb span {
  color: #141719;
  padding-left: 8px;
}
.account {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf1fb;
  color: #1462a0;
  font-size: 11px;
  font-weight: 600;
}
.eyebrow {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
h1 {
  font-family: Domine, Georgia, serif;
  font-size: 36px;
  letter-spacing: -1.2px;
  margin: 0;
  font-weight: 700;
}
h2 {
  font-size: 18px;
  letter-spacing: -0.3px;
  margin: 0 0 12px;
}
h3 {
  font-size: 15px;
  margin: 0 0 8px;
}
p {
  line-height: 1.6;
}
.sub {
  color: var(--muted);
  font-size: 14px;
  margin: 11px 0 0;
}
.summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: white;
  margin: 0 0 32px;
  border-radius: 7px;
}
.metric {
  padding: 23px 27px;
  border-right: 1px solid var(--line);
}
.metric:last-child {
  border: 0;
}
.metric .value {
  font-size: 30px;
  letter-spacing: -1px;
  margin: 10px 0 7px;
  font-weight: 500;
}
.metric .label {
  font-size: 12px;
  color: var(--muted);
}
.metric .foot {
  font-size: 11px;
  color: var(--muted);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}
.section-head h2 {
  margin: 0;
}
.filter {
  display: flex;
  gap: 10px;
}
.filter select {
  padding: 8px 28px 8px 10px;
  width: auto;
  font-size: 13px;
}
.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
th {
  background: #f5f7f9;
  padding: 14px 19px;
  font-weight: 500;
  color: #6a7480;
  white-space: nowrap;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
td {
  padding: 21px 19px;
  border-top: 1px solid #edf0f2;
  vertical-align: middle;
}
td .meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
td strong {
  font-weight: 600;
}
td button.link {
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  color: #161b20;
}
.badge {
  font-size: 11px;
  border-radius: 4px;
  padding: 5px 8px;
  display: inline-block;
  background: #f1f2f3;
  color: #626b75;
  white-space: nowrap;
}
.badge.running,
.badge.provisioning {
  background: #e6f4ff;
  color: #0563a1;
}
.badge.completed {
  background: #eaf6ed;
  color: #286e3b;
}
.badge.failed,
.badge.critical,
.badge.high {
  background: #fff0ed;
  color: #ae402c;
}
.badge.stopped,
.badge.medium {
  background: #fff6df;
  color: #855c13;
}
.empty {
  padding: 58px 24px;
  text-align: center;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
}
.empty img {
  width: 42px;
  opacity: 0.22;
  margin-bottom: 20px;
}
.empty h2 {
  font-family: Domine, Georgia, serif;
  font-size: 24px;
  margin-bottom: 12px;
}
.empty p {
  max-width: 400px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: 14px;
}
.notice {
  background: #eef7ff;
  border: 1px solid #d4e9fa;
  border-radius: 5px;
  padding: 15px 18px;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #225c85;
}
.notice.warn {
  background: #fff9e9;
  border-color: #f3e6bd;
  color: #775f25;
}
.notice.error {
  background: #fff1f0;
  border-color: #f0cdca;
  color: #942c24;
}
.panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  margin-bottom: 22px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-size: 13px;
  font-weight: 550;
}
.field small,
.help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.field input,
.field textarea,
.field select,
select {
  border: 1px solid #d7dce0;
  border-radius: 4px;
  background: white;
  padding: 11px 12px;
  width: 100%;
  color: #24282e;
  font-size: 14px;
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.6;
  margin: 14px 0;
}
.check input {
  margin-top: 4px;
  accent-color: #009bff;
}
.steps {
  display: flex;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}
.steps button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}
.steps button.active {
  border-color: var(--blue);
  color: #111;
}
.steps .number {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef0f2;
  margin-right: 8px;
  font-size: 11px;
}
.steps .active .number {
  background: #009bff;
  color: #050505;
}
.wizard {
  max-width: 970px;
}
.wizard-section[hidden] {
  display: none;
}
.actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0;
}
.actions .right {
  display: flex;
  gap: 10px;
}
.inline {
  display: flex;
  gap: 10px;
  align-items: center;
}
.inline select {
  flex: 1;
}
.inline button {
  white-space: nowrap;
}
.preset {
  border-left: 3px solid var(--blue);
  padding: 18px 22px;
  background: #f0f8ff;
  border-radius: 3px;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preset strong {
  font-size: 14px;
}
.preset p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #617381;
}
.upload-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.upload-list li {
  margin: 7px 0;
}
.details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.detail-list {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 14px;
  font-size: 13px;
  line-height: 1.6;
}
.detail-list dt {
  color: var(--muted);
}
.detail-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.finding {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.finding:last-child {
  border: 0;
}
.finding summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 550;
}
.finding pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font:
    13px/1.7 Inter,
    Arial,
    sans-serif;
  color: #52606c;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 12px;
}
progress {
  height: 7px;
  width: 100%;
  accent-color: var(--blue);
}
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  font-size: 13px;
}
.review-grid div {
  background: #f6f8f9;
  padding: 14px;
  border-radius: 4px;
}
.review-grid small {
  display: block;
  color: var(--muted);
  margin-bottom: 6px;
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.client-card {
  border: 1px solid var(--line);
  padding: 24px;
  background: white;
  border-radius: 6px;
}
.client-card h2 {
  font-family: Domine, Georgia, serif;
  font-size: 21px;
}
.client-card p {
  color: var(--muted);
  font-size: 13px;
}
.client-card button {
  margin-top: 12px;
}
.login {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.login-brand {
  background: #050505;
  color: #fff;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.login-brand h1 {
  font-size: 54px;
  line-height: 1.25;
  max-width: 430px;
}
.login-brand h1 span {
  color: var(--blue);
}
.login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.login-body > div {
  max-width: 365px;
}
.login-body h2 {
  font-family: Domine, Georgia, serif;
  font-size: 30px;
}
.login-body .signin {
  display: block;
  background: #050505;
  color: white;
  padding: 15px 22px;
  margin: 28px 0;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
}
.login-body p {
  font-size: 14px;
  color: var(--muted);
}
.login-body small {
  font-size: 12px;
  color: var(--muted);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  width: min(500px, 90vw);
  box-shadow: 0 25px 80px #0003;
}
dialog::backdrop {
  background: #05050566;
}
dialog h2 {
  font-family: Domine, Georgia, serif;
  font-size: 24px;
  margin-bottom: 25px;
}
#toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  max-width: 480px;
  background: #050505;
  color: #fff;
  border-radius: 5px;
  padding: 16px 22px;
  z-index: 100;
  display: none;
  font-size: 14px;
  box-shadow: 0 6px 30px #0002;
}
.loading {
  padding: 60px;
  color: var(--muted);
}
.footer {
  font-size: 11px;
  color: #89919a;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
}
.error-text {
  color: #af3131;
  font-size: 13px;
  margin: 10px 0;
}
.muted {
  color: var(--muted);
}
.settings {
  max-width: 1000px;
}
.settings .panel h2 {
  margin-bottom: 22px;
}
@media (min-width: 1600px) {
  .main {
    padding-left: 70px;
    padding-right: 70px;
  }
  .heading {
    margin-top: 50px;
  }
  .summary {
    margin-bottom: 40px;
  }
}
@media (max-width: 1100px) {
  .shell {
    grid-template-columns: 200px 1fr;
  }
  .sidebar {
    width: 200px;
    padding: 30px 16px;
  }
  .main {
    padding: 0 25px 40px;
  }
  .details {
    grid-template-columns: 1fr;
  }
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metric {
    padding: 20px 17px;
  }
  .steps {
    gap: 12px;
  }
  .steps button {
    font-size: 12px;
  }
  .brand {
    font-size: 21px;
  }
}
@media (max-width: 760px) {
  .shell {
    display: block;
  }
  .sidebar {
    position: static;
    width: auto;
    padding: 20px;
  }
  .product,
  .side-bottom {
    display: none;
  }
  .brand {
    margin-bottom: 20px;
  }
  .nav {
    flex-direction: row;
    overflow: auto;
  }
  .nav button {
    white-space: nowrap;
    padding: 10px;
  }
  .nav svg {
    display: none;
  }
  .main {
    padding: 0 18px 35px;
  }
  .topbar {
    height: 64px;
    margin-bottom: 28px;
  }
  .account span {
    display: none;
  }
  .heading {
    align-items: flex-start;
    gap: 15px;
  }
  h1 {
    font-size: 29px;
  }
  .heading button {
    padding: 10px;
    font-size: 12px;
  }
  .summary {
    grid-template-columns: 1fr 1fr;
  }
  .metric:nth-child(2) {
    border: 0;
  }
  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .grid2,
  .grid3,
  .client-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .client-grid {
    gap: 15px;
  }
  .steps {
    gap: 18px;
    overflow: auto;
  }
  .steps button {
    white-space: nowrap;
  }
  .panel {
    padding: 20px;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .filter {
    width: 100%;
  }
  .filter select {
    width: 100%;
  }
  .login {
    display: block;
  }
  .login-brand {
    padding: 30px;
  }
  .login-brand h1 {
    font-size: 34px;
    margin: 30px 0;
  }
  .login-brand .eyebrow {
    display: none;
  }
  .login-body {
    padding: 40px 25px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer {
    flex-direction: column;
    gap: 8px;
  }
  .detail-list {
    grid-template-columns: 100px 1fr;
  }
}
