@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;800&family=Manrope:wght@400;600&display=swap");

:root {
  --bg: #0f1a1f;
  --card: rgba(18, 28, 33, 0.92);
  --muted: #9bb0bd;
  --text: #f4f6f7;
  --accent: #ffb64a;
  --accent-2: #3de1c9;
  --danger: #ff6b6b;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at top, rgba(61, 225, 201, 0.2), transparent 55%),
    radial-gradient(circle at 20% 30%, rgba(255, 182, 74, 0.18), transparent 45%);
}

.glow {
  position: absolute;
  filter: blur(80px);
  opacity: 0.65;
}

.glow-one {
  width: 320px;
  height: 320px;
  background: rgba(61, 225, 201, 0.35);
  top: -80px;
  left: 10%;
}

.glow-two {
  width: 360px;
  height: 360px;
  background: rgba(255, 182, 74, 0.28);
  bottom: -140px;
  right: 5%;
}

.hero {
  padding: 24px 18px 12px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #0f1a1f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow);
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  font-family: "Unbounded", sans-serif;
}

.brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pro-card {
  background: var(--card);
  border-radius: 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow);
}

.pro-status {
  font-weight: 600;
  font-size: 13px;
}

.tabs {
  display: flex;
  gap: 8px;
  padding: 0 18px 12px;
  flex-wrap: wrap;
}

.tab {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s ease;
}

.tab.active {
  color: var(--text);
  border-color: var(--accent-2);
  background: rgba(61, 225, 201, 0.12);
}

.views {
  padding: 0 18px 40px;
}

.view {
  display: none;
  animation: fadeIn 0.5s ease;
}

.view.active {
  display: grid;
  gap: 16px;
}

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

.card h2 {
  margin: 0 0 12px;
  font-size: 16px;
  font-family: "Unbounded", sans-serif;
}

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

.label {
  font-size: 12px;
  color: var(--muted);
}

.value {
  font-size: 18px;
  font-weight: 600;
}

.form {
  display: grid;
  gap: 12px;
}

.form.inline {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.row {
  display: grid;
  gap: 6px;
}

label {
  font-size: 12px;
  color: var(--muted);
}

input,
select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn {
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 13px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0f1a1f;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.list {
  display: grid;
  gap: 10px;
}

.list-item {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.bars {
  display: grid;
  gap: 10px;
}

.bar {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: center;
}

.bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  border-radius: 999px;
}

.pro-lock {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 107, 107, 0.12);
  color: var(--danger);
  font-size: 12px;
  margin-bottom: 10px;
  display: none;
}

.dev {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .views {
    padding: 0 24px 60px;
  }
}
