:root {
  color-scheme: dark;
  --bg: #111318;
  --panel: #191f27;
  --text: #f4f7fb;
  --muted: #aab4c0;
  --line: #2b3440;
  --accent: #4fc3a1;
  --accent-2: #f2c14e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(79, 195, 161, 0.18), transparent 28rem),
    linear-gradient(135deg, #111318 0%, #17202a 50%, #101318 100%);
}

.shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 48px;
  padding: 64px 0;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  margin: 28px 0 0;
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.125rem, 2.4vw, 1.5rem);
  line-height: 1.55;
}

.actions {
  width: fit-content;
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #0e1713;
  background: var(--accent);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 5px rgba(242, 193, 78, 0.28);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.details article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(25, 31, 39, 0.82);
  backdrop-filter: blur(10px);
}

.details h2 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.details p {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  font-weight: 750;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, 1120px);
    gap: 32px;
    padding: 40px 0;
  }

  .details {
    grid-template-columns: 1fr;
  }

  .actions {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
