﻿:root {
  --bg: #050816;
  --bg-soft: #0a1534;
  --card: rgba(9, 20, 48, 0.72);
  --card-border: rgba(142, 183, 255, 0.28);
  --ink: #edf5ff;
  --muted: #93add6;
  --accent: #33e1ff;
  --accent-2: #7dffb3;
  --danger: #ff6f91;
  --ok: #8dff8a;
  --radius: 18px;
  --shadow: 0 25px 50px rgba(4, 10, 24, 0.55);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  background: radial-gradient(circle at 10% 10%, #15316e 0, transparent 28%), radial-gradient(circle at 90% 0%, #0b874f 0, transparent 20%), var(--bg);
  color: var(--ink);
  min-height: 100vh;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(120deg, rgba(100, 143, 235, 0.06) 0, rgba(100, 143, 235, 0.06) 1px, transparent 1px, transparent 30px);
  opacity: 0.35;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  padding: 18px;
}

.hero {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.kicker {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.75rem;
}

h1 {
  margin: 10px 0;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
}

h3 {
  margin-top: 0;
  font-size: 1rem;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.stats {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.stat {
  border-radius: 14px;
  border: 1px solid rgba(140, 173, 248, 0.25);
  padding: 12px;
  background: rgba(9, 16, 40, 0.65);
}

.stat small {
  color: var(--muted);
  display: block;
}

.stat strong {
  margin-top: 6px;
  display: block;
  font-size: 1.5rem;
}

.grid {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px;
}

.metric {
  border-radius: 12px;
  border: 1px solid rgba(125, 255, 179, 0.28);
  padding: 10px;
  background: rgba(9, 17, 32, 0.58);
}

.metric span {
  font-size: 0.76rem;
  color: var(--muted);
}

.metric strong {
  display: block;
  margin-top: 5px;
  font-size: 1.2rem;
}

.timeline {
  display: grid;
  gap: 8px;
  max-height: 230px;
  overflow: auto;
}

.timeline-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
}

.timeline-bar {
  height: 9px;
  border-radius: 20px;
  background: rgba(140, 169, 240, 0.18);
  overflow: hidden;
}

.timeline-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

form {
  display: grid;
  gap: 10px;
}

input,
textarea,
button {
  border-radius: 10px;
  border: 1px solid rgba(138, 170, 238, 0.45);
  padding: 10px;
  font: inherit;
  color: var(--ink);
  background: rgba(7, 16, 40, 0.76);
}

input::placeholder,
textarea::placeholder {
  color: rgba(163, 191, 238, 0.7);
}

button {
  cursor: pointer;
  font-weight: 700;
  border: 0;
  background: linear-gradient(120deg, #1da9d2, #2ad684);
  color: #071220;
}

button.ghost {
  background: rgba(99, 142, 224, 0.22);
  color: var(--ink);
  border: 1px solid rgba(125, 174, 255, 0.5);
}

.list {
  max-height: 320px;
  overflow: auto;
  display: grid;
  gap: 8px;
}

.list-item {
  border: 1px solid rgba(142, 174, 245, 0.34);
  border-radius: 12px;
  padding: 10px;
  background: rgba(8, 15, 34, 0.74);
}

.badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 4px 9px;
  border: 1px solid rgba(126, 177, 255, 0.45);
  background: rgba(18, 37, 79, 0.68);
}

.notice {
  margin-top: 8px;
  font-size: 0.84rem;
}

.notice.ok {
  color: var(--ok);
}

.notice.error {
  color: var(--danger);
}

@media (max-width: 720px) {
  .container {
    padding: 14px;
  }

  .hero {
    flex-direction: column;
  }

  .hero-badges {
    justify-content: flex-start;
  }
}
