:root {
  --brand-primary: #2255f5;
  --brand-primary-dark: #011e80;
  --brand-secondary: #00a2ff;
  --brand-bg: #f7f9ff;
  --brand-bg-soft: #ecf0ff;
  --brand-text: #191932;
  --brand-text-muted: #696969;
  --brand-border: #dfe4f3;
  --brand-accent: #bbff00;
  --brand-white: #ffffff;
  --brand-shadow-soft: 0 4px 12px rgba(222, 227, 248, 0.5);
  --brand-shadow-card: 0 10px 24px rgba(34, 85, 245, 0.08);
  --brand-radius-lg: 24px;
  --brand-radius-md: 16px;
  --brand-radius-sm: 12px;
  --brand-radius-pill: 999px;
}

html {
  font-size: 16px;
  background-color: var(--brand-bg);
}

body {
  font-family: var(--font-sans, "Onest", "Segoe UI", system-ui, sans-serif);
  color: var(--brand-text);
  background-color: var(--brand-bg);
  line-height: 1.5;
}

a {
  color: inherit;
}

.brand-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--brand-radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--brand-accent);
  color: #1f1c1c;
}

.brand-section {
  padding: 80px 0;
}

.brand-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-text);
}

.brand-subtitle {
  font-size: 1.1rem;
  color: var(--brand-text-muted);
}

.brand-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--brand-radius-pill);
  border: none;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: var(--brand-primary);
  color: var(--brand-white);
  box-shadow: var(--brand-shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.brand-button:hover {
  transform: translateY(-2px);
  background: #1b49e6;
  box-shadow: 0 14px 30px rgba(34, 85, 245, 0.2);
}

.brand-button--ghost {
  background: var(--brand-white);
  color: var(--brand-primary);
  border: 1px solid var(--brand-border);
  box-shadow: none;
}

.brand-card {
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--brand-radius-lg);
  box-shadow: var(--brand-shadow-card);
}

.brand-glass {
  background: rgba(236, 240, 255, 0.7);
  backdrop-filter: blur(30px);
}

@media (max-width: 768px) {
  .brand-section {
    padding: 60px 0;
  }

.brand-button {
  width: 100%;
}
}
