/* [project]/src/app/globals.css [app-client] (css) */
:root, [data-theme="dark"] {
  --bg: #0a0a0a;
  --fg: #ededed;
  --muted: #888;
  --card: #161616;
  --border: #2a2a2a;
  --accent: #3b82f6;
  --accent-fg: #fff;
  --hero-glow: #3b82f62e;
}

[data-theme="light"] {
  --bg: #fff;
  --fg: #18181b;
  --muted: #5a5a5a;
  --card: #f6f6f7;
  --border: #e2e2e5;
  --accent: #2563eb;
  --accent-fg: #fff;
  --hero-glow: #2563eb1f;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--bg);
  color: var(--fg);
  margin: 0;
  padding: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.5;
  transition: background-color .2s, color .2s;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

@media (min-width: 640px) {
  main {
    padding: 3rem 1.5rem 4rem;
  }
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--fg);
  font: inherit;
  cursor: pointer;
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  padding: .45rem .8rem;
  font-size: .875rem;
  transition: border-color .2s, background-color .2s;
  display: inline-flex;
}

.theme-toggle:hover {
  border-color: var(--accent);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-header {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  display: flex;
}

.site-header__brand {
  letter-spacing: -.01em;
  font-weight: 600;
}

.hero {
  text-align: center;
  border: 1px solid var(--border);
  background: radial-gradient(120% 120% at 50% 0%,
      var(--hero-glow) 0%,
      transparent 60%),
    var(--card);
  border-radius: 16px;
  padding: 3rem 1rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.hero__eyebrow {
  border: 1px solid var(--border);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 999px;
  margin-bottom: 1rem;
  padding: .25rem .75rem;
  font-size: .75rem;
  display: inline-block;
}

.hero__title {
  letter-spacing: -.02em;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.1;
}

.hero__subtitle {
  max-width: 38ch;
  color: var(--muted);
  margin: 0 auto 2rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.hero__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  display: flex;
}

.btn {
  font: inherit;
  border: 1px solid #0000;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: .65rem 1.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform .1s, opacity .2s, border-color .2s;
  display: inline-flex;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-fg);
}

.btn--primary:hover {
  opacity: .9;
}

.btn--secondary {
  color: var(--fg);
  border-color: var(--border);
  background: none;
}

.btn--secondary:hover {
  border-color: var(--accent);
}

.section {
  margin-top: 3rem;
}

.section__title {
  margin-bottom: .25rem;
  font-size: 1.25rem;
}

.user-list {
  gap: .5rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
}

.user-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  padding: .75rem 1rem;
}

.callout {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  margin-top: 1.5rem;
  padding: 1rem;
}

@media (max-width: 480px) {
  .site-header {
    margin-bottom: 1.75rem;
  }

  .theme-toggle__label {
    display: none;
  }

  .hero {
    padding: 2.25rem 1rem 2.5rem;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/