:root {
  color-scheme: light;
  --brand-1: #3CA199;
  --brand-2: #964890;
  --brand-3: #9D9D9E;
  --brand-contrast: #FEFEFE;
  --bg-ink: #FEFEFE;
  --bg-ink-2: #f5f5f6;
  --bg-soft: #f1f1f1;
  --surface: #FEFEFE;
  --surface-2: #f3f4f5;
  --text-primary: #1A1A1C;
  --text-muted: #626364;
  --text-soft: #626364;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
  --shadow: 8px 8px 0 rgba(26, 26, 28, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(circle at 8% 5%, rgba(60, 161, 153, 0.2), transparent 35%),
    radial-gradient(circle at 92% 8%, rgba(150, 72, 144, 0.24), transparent 38%),
    var(--bg-ink);
  color: var(--text-primary);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.bg-app {
  background-color: var(--bg-ink);
}

.app-header {
  background: #fff;
  border-bottom: 4px solid var(--text-primary);
  z-index: 1050;
}

.brand-dot {
  width: 14px;
  height: 14px;
  background: var(--brand-1);
  border: 2px solid var(--text-primary);
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(26, 26, 28, 1);
}

.brand-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.btn {
  border-radius: 0 !important;
  border: 3px solid var(--text-primary) !important;
  box-shadow: 4px 4px 0 rgba(26, 26, 28, 1);
  font-family: "Space Grotesk", "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-weight: 700 !important;
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 rgba(26, 26, 28, 1);
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 rgba(26, 26, 28, 1);
}

.btn-primary {
  background: var(--brand-1) !important;
  color: #fff !important;
  border-color: var(--text-primary) !important;
}

.btn-primary:hover {
  background: var(--text-primary) !important;
}

.form-control,
.input-group-text,
.card {
  border-radius: var(--radius-sm);
  border: 3px solid var(--text-primary);
  background: var(--surface);
  color: var(--text-primary);
  box-shadow: 5px 5px 0 rgba(26, 26, 28, 1);
}

.form-control::placeholder {
  color: var(--text-soft);
}

.form-check-input {
  border-radius: 0;
  background-color: #fff;
  border: 2px solid var(--text-primary);
}

.form-check-input:checked {
  background-color: var(--brand-2);
  border-color: var(--text-primary);
}

.form-check-label {
  color: var(--text-muted);
}

.container {
  max-width: 1140px;
}
