:root {
  --bg: #09131b;
  --bg-deep: #050d13;
  --surface: rgba(10, 21, 29, 0.82);
  --surface-strong: rgba(13, 25, 35, 0.96);
  --line: rgba(153, 186, 206, 0.16);
  --text: #edf5fb;
  --muted: #9fb0bf;
  --muted-strong: #c8d4df;
  --accent: #8de4c3;
  --accent-strong: #47d8a7;
  --accent-blue: #8ab9ff;
  --success: #68f1be;
  --shadow: 0 28px 80px rgba(1, 6, 10, 0.42);
  --shadow-soft: 0 16px 44px rgba(1, 6, 10, 0.22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-mono: "JetBrains Mono", "Consolas", monospace;
}

* {
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}


html {
  scroll-behavior: smooth;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
}


body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(71, 216, 167, 0.16), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(138, 185, 255, 0.16), transparent 28%),
    radial-gradient(circle at 50% 110%, rgba(71, 216, 167, 0.08), transparent 32%),
    linear-gradient(180deg, #0a141c 0%, #09131b 42%, #050d13 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: -0.012em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  scrollbar-width: none;
  -ms-overflow-style: none;
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.84), transparent 82%);
  pointer-events: none;
  opacity: 0.4;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-family: var(--font-mono);
}

.health-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.status-panel,
.details-card {
  border: 1px solid rgba(153, 186, 206, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20%),
    var(--surface-strong);
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.4),
    inset 0 1px 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}


.status-panel {
  padding: 28px;
}

.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-tag {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(104, 241, 190, 0.18);
  background: rgba(104, 241, 190, 0.08);
  color: #dffbf0;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(104, 241, 190, 0.12);
  animation: pulse 1.8s ease-in-out infinite;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 24px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.panel-copy h1,
.details-card h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.panel-copy h1 {
  max-width: 700px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.details-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.lead {
  margin: 0;
  max-width: 720px;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.meta-grid,
.check-grid,
.details-grid {
  display: grid;
  gap: 16px;
}

.meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.meta-card,
.check-card,
.details-block,
.terminal-card {
  border: 1px solid rgba(153, 186, 206, 0.14);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.meta-card,
.check-card,
.details-block {
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(153, 186, 206, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.meta-card:hover,
.check-card:hover,
.details-block:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(141, 228, 195, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
}


.meta-label,
.check-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-card strong {
  font-size: 1rem;
}

.meta-card code {
  color: var(--text);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #b7f5db 100%);
  color: #061219;
  box-shadow: 0 18px 34px rgba(71, 216, 167, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(153, 186, 206, 0.2);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(141, 228, 195, 0.42);
  background: rgba(141, 228, 195, 0.08);
}

.terminal-card {
  border-radius: 24px;
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(153, 186, 206, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.terminal-dots span:nth-child(1) {
  background: #ff7e7e;
}

.terminal-dots span:nth-child(2) {
  background: #ffd36b;
}

.terminal-dots span:nth-child(3) {
  background: #68f1be;
}

.terminal-title {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.terminal-body {
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(141, 228, 195, 0.08), transparent 36%),
    rgba(4, 12, 18, 0.82);
}

.terminal-line {
  color: var(--muted-strong);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.8;
  word-break: break-word;
}

.prompt {
  color: var(--accent);
  margin-right: 10px;
}

.success-line {
  color: #dffbf0;
}

.muted-line {
  color: #8eb2c9;
}

.check-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.check-card p,
.details-block li {
  margin: 0;
  color: var(--muted-strong);
}

.details-panel {
  padding-top: 22px;
}

.details-card {
  padding: 26px;
}

.details-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.details-block h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.details-block ul {
  margin: 0;
  padding-left: 18px;
}

.details-block li + li {
  margin-top: 10px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(104, 241, 190, 0.12);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 9px rgba(104, 241, 190, 0.08);
  }
}

@media (max-width: 960px) {
  .panel-grid,
  .details-grid,
  .meta-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .health-shell {
    width: min(1180px, calc(100% - 24px));
    padding: 24px 0 42px;
  }

  .status-panel,
  .details-card {
    padding: 20px;
  }

  .status-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .panel-copy h1 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .button {
    width: 100%;
  }
}
