/*
 * The signed-out/signed-in gate page at "/" — the only view rendered through
 * the plain application.html.erb layout (Avo and /dashboard each have their
 * own). Styled by hand to match the Inertia dashboard's design tokens
 * (see DESIGN.md) since this page sits outside the Vite/Tailwind pipeline.
 */

.home {
  display: flex;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.home-card {
  display: flex;
  width: 100%;
  max-width: 340px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.home-brand-mark {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #18181b;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.home-brand-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #18181b;
}

.home-title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #18181b;
}

.home-subtitle {
  margin: 10px 0 22px;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.55;
  color: #71717a;
}

.home-actions {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 8px;
}

.home-btn {
  display: inline-flex;
  height: 42px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid transparent;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease-out,
    border-color 0.15s ease-out,
    transform 0.1s ease-out;
}

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

.home-btn:focus-visible {
  outline: 2px solid #18181b;
  outline-offset: 2px;
}

.home-btn-primary {
  background: #18181b;
  color: #ffffff;
}

.home-btn-primary:hover {
  background: #27272a;
}

.home-btn-lg {
  height: 46px;
  font-size: 15px;
}

.home-btn-outline {
  border-color: #e4e4e7;
  background: #ffffff;
  color: #18181b;
}

.home-btn-outline:hover {
  background: #f4f4f5;
}

@media (prefers-reduced-motion: reduce) {
  .home-btn {
    transition: none;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
