/* The public site at salesnerd.live. Values from app/src/styles/tokens.css and the sign-in screen. */
:root {
  --sn-ink: #1d1d1f;
  --sn-ink-2: #6e6e73;
  --sn-canvas: #f5f5f7;
  --sn-blue: #0071e3;
  --sn-blue-hover: #0077ed;
  --sn-blue-ring: rgba(0, 113, 227, 0.1);
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Helvetica, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  background: var(--sn-canvas);
  color: var(--sn-ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  text-align: center;
}

.hero__title {
  margin: 0;
  line-height: 0;
}

.hero__logo {
  display: block;
  height: 46px;
  width: auto;
}

.hero__tagline {
  margin: 0;
  max-width: 440px;
  color: var(--sn-ink-2);
  font-size: 17px;
  text-wrap: pretty;
}

.hero__cta {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--sn-blue);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.15s;
}

.hero__cta:hover {
  background: var(--sn-blue-hover);
}

.hero__cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--sn-blue-ring);
}
