/* Base reset and layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: #e5e7eb;
  background-color: #020617;
  background-image:
    radial-gradient(circle at 0% 50%, rgba(249, 115, 22, 0.32), transparent 55%),
    radial-gradient(circle at 100% 50%, rgba(249, 115, 22, 0.32), transparent 55%),
    linear-gradient(to right, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: auto, auto, 80px 80px, 80px 80px;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-position: center, center, center, center;
}

body {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.page::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -180px;
  height: 320px;
  background:
    radial-gradient(circle at 10% 0, rgba(34, 197, 94, 0.2), transparent 60%),
    radial-gradient(circle at 90% 0, rgba(56, 189, 248, 0.18), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}

/* Header */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .brand-logo {
    height: 56px;
  }
}

.brand-text-main {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 14px;
}

.brand-text-sub {
  font-size: 12px;
  color: #6b7280;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.28);
  color: #e5e7eb;
  font-size: 12px;
  opacity: 0.9;
  animation: fadeCardIn 0.6s ease-out 0.05s forwards;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.status-pill--warning {
  background: rgba(249, 115, 22, 0.28);
}

.status-pill--warning .status-dot {
  background: #fb923c;
}

/* Main layout */
.content {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 13px;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.eyebrow-badge {
  padding: 2px 6px;
  border-radius: 999px;
  background: #22c55e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  margin: 0 0 14px;
}

.title span.accent {
  color: #fb923c;
}

.subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #9ca3af;
  max-width: 520px;
  margin-bottom: 24px;
}

.note {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out,
    background 0.12s ease-out;
}

.btn-primary {
  background: #fb923c;
  color: #0f172a;
  box-shadow: 0 18px 45px rgba(248, 148, 56, 0.6);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(248, 148, 56, 0.8);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
}

.btn-icon {
  font-size: 16px;
}

.helper-links {
  font-size: 12px;
  color: #9ca3af;
}

.helper-links a {
  color: #38bdf8;
  text-decoration: none;
}

.helper-links a:hover {
  text-decoration: underline;
}

/* Fade-in animation for cards and status pills */
@keyframes fadeCardIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero visual side */
.hero-visual {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 20px 18px 18px;
  border-radius: 26px;
  background: radial-gradient(circle at top left, #111827 0, #020617 55%, #020617 100%);
  border: 1px solid rgba(15, 23, 42, 0.7);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  opacity: 0;
  animation: fadeCardIn 0.7s ease-out 0.15s forwards;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hero-card-title {
  font-size: 13px;
  color: #e5e7eb;
}

.hero-card-status {
  font-size: 11px;
  color: #a3e635;
}

.hero-card-status--error {
  color: #fb7185;
}

.hero-graphic-main {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.hero-floating {
  position: absolute;
  width: 130px;
  bottom: -4px;
  right: -12px;
}

.hero-floating-left {
  position: absolute;
  width: 130px;
  left: -18px;
  top: 32%;
}

.hero-floating-top {
  position: absolute;
  width: 130px;
  right: -10px;
  top: 12%;
}

/* Floating animation */
@keyframes floatSoft {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.hero-graphic-main {
  animation: floatSoft 9s ease-in-out infinite;
}

.hero-floating {
  animation: floatSoft 7s ease-in-out infinite;
}

.hero-floating-left {
  animation: floatSoft 6s ease-in-out infinite;
}

.hero-floating-top {
  animation: floatSoft 8s ease-in-out infinite;
}

/* Suspended specific tweaks */
.page--suspended .status-pill {
  background: rgba(239, 68, 68, 0.12);
}

.page--suspended .status-dot {
  background: #fb7185;
}

.page--suspended .title span.accent {
  color: #fb7185;
}

.page--suspended .eyebrow-badge {
  background: #fb7185;
}

/* Footer */
.page-footer {
  margin-top: 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.6);
  padding-top: 16px;
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
}

/* Responsive */
@media (max-width: 920px) {
  .content {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .page-header {
    margin-bottom: 28px;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px 14px 18px;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .content {
    gap: 24px;
  }

  .hero-copy {
    max-width: none;
  }

  .title {
    font-size: clamp(32px, 8vw, 40px);
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 220px;
  }

  .hero-card {
    max-width: 100%;
  }

  .hero-floating,
  .hero-floating-left,
  .hero-floating-top {
    width: 90px;
  }
}



