/* Inter font - Latin subset */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfAZ9hiJ-Ek-_EeA.woff2') format('woff2');
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --background: #fff;
  --foreground: #171717;
}

body, html {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Main layout */
.main {
  padding: 56px;
  width: 100%;
  max-width: 550px;
  text-align: left;
  box-sizing: border-box;
  color: #222;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Logo */
.main .logo {
  margin-bottom: 8px;
}

/* Inline images */
.main .inline-image {
  display: inline-block;
  margin: 0;
  transform: translateY(1px);
}

.main .inline-wand {
  display: inline-block;
  margin: 0;
  transform: translateY(-2px);
}

.main .inline-emoji {
  display: inline-block;
  font-size: 22px;
  transform: translateY(2px);
}

/* Paragraphs */
.main p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.08px;
  margin: 28px 0 0;
  padding: 0;
}

/* Light text variant */
.main .text-light {
  color: #4b5563;
}

.main .text-light strong {
  font-weight: 600;
  color: #222;
}

.main .text-light a {
  color: #222;
  font-weight: 600;
  text-decoration: underline;
}

/* Member link chip */
.main .member-link {
  background-color: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  height: 30px;
  justify-content: center;
  padding: 0 8px 0 3px;
  font-size: 17px;
  font-weight: 600;
  transform: translateY(4px);
}

.main .member-link img {
  transform: translateY(5px);
  margin-right: 4px;
}

.main .member-link span {
  transform: translateY(2px);
}

/* Footer */
.main .footer {
  display: flex;
  flex: 1 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.main .footer p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.08px;
  padding: 0;
  margin: 8px 0 0;
  color: #4b5563;
}

.main .footer a {
  color: #3474ff;
}
