:root {
  --tb-bg: #ffffff;
  --tb-text: #111827;
  --tb-muted: #667085;
  --tb-border: #e5e7eb;
  --tb-primary: #635bff;
  --tb-content: min(1120px, calc(100vw - 40px));
}

body {
  margin: 0;
  background: var(--tb-bg);
  color: var(--tb-text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.titanbase-site-header,
.titanbase-site-footer {
  border-color: var(--tb-border);
}

.titanbase-site-header {
  border-bottom: 1px solid var(--tb-border);
}

.titanbase-container {
  width: var(--tb-content);
  margin: 0 auto;
}

.titanbase-header-inner,
.titanbase-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.titanbase-brand {
  font-weight: 800;
  text-decoration: none;
}

.titanbase-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.titanbase-menu a {
  text-decoration: none;
  color: var(--tb-muted);
  font-weight: 650;
}

.titanbase-menu a:hover,
.titanbase-menu a:focus {
  color: var(--tb-primary);
}

.titanbase-main {
  min-height: 55vh;
}

.titanbase-content {
  width: var(--tb-content);
  margin: 0 auto;
  padding: 56px 0;
}

.titanbase-site-footer {
  border-top: 1px solid var(--tb-border);
  color: var(--tb-muted);
}