/* [project]/apps/web/src/app/globals.css [app-client] (css) */
:root {
  --bg: #fff;
  --panel: #fff;
  --border: #e1e4ea;
  --text: #2c313c;
  --muted: #6b7280;
  --accent: #3b6fed;
  --accent-2: #d1373c;
  --radius: 4px;
  --radius-lg: 6px;
  --mono: "IBM Plex Mono", "SFMono-Regular", ui-monospace, Menlo, monospace;
  --surface-alt: #eef1f5;
  --surface-sunken: #f7f8fa;
  --surface-active: #e6edfd;
  --surface-ai: #e8f5e9;
  --accent-ai: #16a34a;
  --docs-text: #3c4250;
  --status-good-bg: #e6f4ea;
  --status-good-text: #1a7f37;
  --status-bad-bg: #fdeaea;
  --status-bad-text: #c62828;
  --accent-telegram: #229ed9;
  --accent-discord: #5865f2;
  --gutter: clamp(24px, 4vw, 64px);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-section: 96px;
  --content-max: 1200px;
  --hero-max: 1080px;
}

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

:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}

img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

html, body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: neue-haas-grotesk-text, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

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

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent-2);
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.swiss-rule {
  background: var(--accent-2);
  border: none;
  width: 48px;
  height: 3px;
  margin: 0 0 16px;
}

/* [project]/apps/web/src/components/ui/Toaster/Toaster.module.css [app-client] (css) */
.Toaster-module__yCf1Nq__toast {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  gap: 10px;
  min-width: 280px;
  max-width: 380px;
  padding: 12px 14px;
  display: flex;
  box-shadow: 0 8px 24px #0f172a24;
}

.Toaster-module__yCf1Nq__icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.Toaster-module__yCf1Nq__success .Toaster-module__yCf1Nq__icon {
  color: #1a7f37;
}

.Toaster-module__yCf1Nq__error .Toaster-module__yCf1Nq__icon {
  color: var(--accent-2);
}

.Toaster-module__yCf1Nq__warning .Toaster-module__yCf1Nq__icon {
  color: #c98500;
}

.Toaster-module__yCf1Nq__info .Toaster-module__yCf1Nq__icon {
  color: var(--accent);
}

.Toaster-module__yCf1Nq__body {
  flex: 1;
  min-width: 0;
}

.Toaster-module__yCf1Nq__title {
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
}

.Toaster-module__yCf1Nq__description {
  color: var(--muted);
  margin-top: 2px;
  font-size: 11px;
}

.Toaster-module__yCf1Nq__close {
  color: var(--muted);
  cursor: pointer;
  border-radius: var(--radius);
  background: none;
  border: none;
  flex-shrink: 0;
  padding: 2px;
}

.Toaster-module__yCf1Nq__close:hover {
  background: var(--surface-alt);
  color: var(--text);
}

/*# sourceMappingURL=apps_web_src_1m--06f._.css.map*/