:root {
  --bg: #020617;
  --bg-elevated: #020617;
  --surface: #020617;
  --border: rgba(148, 163, 184, 0.35);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --brand: #22c55e;
  --brand-soft: rgba(34, 197, 94, 0.12);
  --danger: #f97373;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.85);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #0b1120 0, #020617 45%, #000 100%);
  color: var(--text-main);
}

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

a:hover {
  text-decoration: underline;
}

.shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.82));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.shell-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(15, 23, 42, 0.9));
}

.brand-word {
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.shell-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.shell-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text-muted);
}

.shell-nav a:hover {
  border-color: rgba(148, 163, 184, 0.35);
  color: var(--text-main);
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.04), transparent 60%);
}

.shell-main {
  flex: 1;
}

.shell-main-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 18px 40px;
}

.shell-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 12px 18px 18px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.shell-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: center;
}

.hero-panel {
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.08), transparent 60%);
  border-radius: 22px;
  padding: 22px 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: var(--shadow-soft);
}

.hero-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-title {
  font-size: 1.7rem;
  font-weight: 650;
  margin: 8px 0 4px;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}

.hero-badge {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 65%);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.btn-primary {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.82rem;
  border: none;
  background: linear-gradient(to right, #22c55e, #4ade80);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  cursor: pointer;
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.7);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

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

.card {
  border-radius: 18px;
  padding: 16px 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.35), rgba(15, 23, 42, 0.95));
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 550;
}

.card-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card-body {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 0.76rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.72rem;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

.form-card {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 18px;
  padding: 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.96);
}

.form-field {
  margin-bottom: 10px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 3px;
}

.form-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  padding: 6px 8px;
  font-size: 0.8rem;
}

.form-input:focus {
  outline: none;
  border-color: #22c55e;
}

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

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  margin-top: 12px;
}

.table th,
.table td {
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  padding: 6px 4px;
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.badge-green {
  border-color: rgba(34, 197, 94, 0.8);
  color: #bbf7d0;
}

.badge-red {
  border-color: rgba(248, 113, 113, 0.8);
  color: #fecaca;
}

.badge-amber {
  border-color: rgba(251, 191, 36, 0.8);
  color: #facc15;
}

.brand-logo {
  height: 30px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(15, 23, 42, 0.9));
}

.shell-search {
  display: flex;
  align-items: center;
  margin-right: 6px;
}

.shell-search-input {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  padding: 4px 10px;
  font-size: 0.75rem;
  min-width: 180px;
}

.shell-search-input::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

.shell-search-input:focus {
  outline: none;
  border-color: #22c55e;
}

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

.brand-logo-main {
  height: 34px;      /* make logo bigger & visible */
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(15, 23, 42, 0.9));
}

.brand-tagline-only {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.98);
  letter-spacing: 0.03em;
  text-transform: none;
}

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

/* Light pill behind your dark logo so it stands out */
.brand-logo-box {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(249, 250, 251, 0.96); /* very light */
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.75),
    0 8px 18px rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-main {
  height: 24px;
  width: auto;
  display: block;
}

/* tagline text next to the logo */
.brand-tagline-only {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.98);
  letter-spacing: 0.02em;
}

/* Slightly larger base font for readability */
body {
  font-size: 15px;
}

/* Make nav links and buttons a bit bigger */
.shell-nav a {
  font-size: 0.9rem;
}

.btn-primary,
.btn-ghost,
.btn-pill {
  font-size: 0.9rem;
}

/* Make card text a touch larger */
.card-body {
  font-size: 0.9rem;
}

/* Hero title slightly bigger */
.hero-title {
  font-size: 1.6rem;
}
.shell-nav a.btn-primary {
  color: #ffffff;
}
.shell-nav a.btn-primary:hover {
  color: #ffffff;
}
