/**
 * Inscricoes SaaS - Base + Tokens
 * Importa tokens e aplica reset/base
 */

@import 'theme.tokens.css';

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg-0);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 92, 255, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(79, 140, 255, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(124, 92, 255, 0.04), transparent);
  min-height: 100vh;
  line-height: 1.6;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
