:root {
  --bg: #ffffff;
  --panel: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --heading-color: #020617;
  --line: #e5e7eb;
  --brand: #f97316;
  --brand-secondary: #1e293b;
  --accent: #0ea5e9;
  --link-color: #0284c7;
  --button-bg: #0f172a;
  --button-text: #ffffff;
  --hero-overlay: #0f172a;
}

body {
  font-family: Manrope, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.brand-text {
  color: var(--heading-color);
  font-family: Manrope, sans-serif;
}

a {
  color: var(--link-color);
}

.container {
  width: min(1200px, calc(100% - 2rem));
}

.card {
  border-radius: 18px;
}

.btn,
.burger-btn,
.menu-popover,
.sidebar-link,
input[type='text'],
input[type='email'],
input[type='password'],
input[type='number'],
input[type='url'],
input[type='date'],
select,
textarea {
  border-radius: 10px;
}

.btn-primary,
a.btn-primary {
  background: var(--button-bg);
  color: var(--button-text);
}

.btn-primary:hover,
a.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-ghost,
a.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.btn-ghost:hover,
a.btn-ghost:hover {
  background: #f8fafc;
  color: var(--text);
}

.brand-logo-image {
  height: 42px;
  max-width: 220px;
  min-width: 42px;
  width: auto;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text--fallback[hidden] {
  display: none !important;
}

