@font-face {
  font-family: "Geist Pixel Circle";
  src: url("fonts/GeistPixel-Circle.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #8e8e8e;
  --nav-text: #2e2e2e;
  --pill-dark: #28282a;
  --sign-in-text: #c8c8c8;
  --nav-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  --trust-bg: #28282a;
  --trust-border: rgba(255, 255, 255, 0.4);
  --trust-text: #c4c2c3;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "BubbledotICG-FinePos", "Geist Pixel Circle", monospace;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

.bg {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--bg);
}

.bg-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  padding: clamp(16px, 2.4vh, 28px) clamp(14px, 3vw, 32px);
  overflow: hidden;
}

.header,
.hero,
.stats,
.mobile-menu {
  position: relative;
  z-index: 1;
}

.header {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  animation: slideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 720px;
  margin: 0 auto;
  gap: clamp(18px, 2.8vw, 28px);
}

.logo {
  display: grid;
  flex: 0 0 auto;
  width: clamp(40px, 4.4vw, 46px);
  height: clamp(40px, 4.4vw, 46px);
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.logo:hover {
  transform: scale(1.04);
}

.logo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.desktop-nav {
  position: relative;
  display: flex;
  flex: 1 1 430px;
  align-items: stretch;
  justify-content: space-around;
  width: 100%;
  max-width: 430px;
  height: clamp(44px, 5.2vw, 48px);
  padding: 4px 8px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(8, 8, 10, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05),
    0 8px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(11px) saturate(80%);
  -webkit-backdrop-filter: blur(10px) saturate(80%);
}

.desktop-nav::before {
  position: absolute;
  top: -28px;
  left: 9%;
  width: 58%;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  filter: blur(8px);
  content: "";
  pointer-events: none;
}

.nav-slider {
  position: absolute;
  z-index: 0;
  top: 4px;
  bottom: 4px;
  left: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 4px 14px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  transition:
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, width;
}

.nav-slider.no-transition {
  transition: none;
}

.nav-link {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 0 clamp(7px, 1vw, 12px);
  color: #fff;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.38);
  transition: opacity 0.25s ease;
}

.nav-link:hover {
  opacity: 0.75;
}

.nav-link.active {
  opacity: 1;
}

.nav-link.active::after,
.mobile-link.active::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -5px 0 currentColor, 5px 0 currentColor;
  content: "";
  transform: translateX(-50%);
}

.sign-in {
  display: grid;
  flex: 0 0 auto;
  height: clamp(44px, 5.2vw, 48px);
  padding: 0 clamp(19px, 2.2vw, 24px);
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 10, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.18);
  color: #e0e0e0;
  backdrop-filter: blur(24px) saturate(165%);
  -webkit-backdrop-filter: blur(24px) saturate(165%);
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sign-in:hover {
  transform: translateY(-1px);
  background: rgba(52, 52, 55, 0.78);
  color: #fff;
}

.menu-toggle {
  display: none;
}

.hero {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 900px;
  text-align: center;
}

.trust-row {
  --trust-size: clamp(36px, 4.5vw, 42px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(16px, 2.5vh, 26px);
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  position: relative;
  display: grid;
  width: var(--trust-size);
  height: var(--trust-size);
  padding: 5px;
  place-items: center;
  border: 1px solid var(--trust-border);
  border-radius: 50%;
  background: var(--trust-bg);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.avatar + .avatar {
  margin-left: calc(var(--trust-size) * -0.42);
}

.avatar-1 {
  z-index: 1;
}

.avatar-2 {
  z-index: 2;
}

.avatar-3 {
  z-index: 4;
}

.avatar-1:hover,
.avatar-3:hover {
  transform: translateY(-2px);
}

.avatar-2:hover {
  transform: translateY(-4px);
}

.avatar-inner {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.avatar i {
  font-size: calc(var(--trust-size) * 0.34);
}

.trust-pill {
  z-index: 3;
  display: flex;
  align-items: center;
  height: var(--trust-size);
  margin-left: calc(var(--trust-size) * -0.42);
  padding-right: calc(var(--trust-size) * 0.42);
  padding-left: calc(var(--trust-size) * 0.58);
  border: 1px solid var(--trust-border);
  border-radius: 999px;
  background: var(--trust-bg);
  color: var(--trust-text);
  font-size: clamp(12px, 1.4vw, 13.5px);
  font-weight: 500;
  white-space: nowrap;
}

.headline {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(28px, 6.2vw, 80px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.headline.anim {
  opacity: 1;
  filter: none;
  transform: none;
  animation: none;
}

.headline-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(14px);
  animation: headlineFade 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.headline-line.line-1 {
  animation-delay: 0.12s;
}

.headline-line.line-2 {
  animation-delay: 0.3s;
}

.subhead {
  --final-opacity: 0.8;
  width: min(500px, 92%);
  max-width: 100%;
  margin: clamp(14px, 2.2vh, 22px) 0 0;
  color: #d0d0d0;
  font-size: clamp(calc(13.5px + 2pt), calc(1.55vw + 2pt), calc(16.5px + 2pt));
  font-weight: 400;
  line-height: 1.55;
  opacity: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(15px, 2.5vh, 24px);
  padding: clamp(11px, 1.6vh, 13px) clamp(22px, 3vw, 28px);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 22px rgba(255, 255, 255, 0.32),
    0 0 44px rgba(255, 255, 255, 0.12);
  color: #000;
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta.anim {
  animation-name: revealPulse;
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 28px rgba(255, 255, 255, 0.5),
    0 0 54px rgba(255, 255, 255, 0.2);
}

.stats {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  max-width: 920px;
}

.stat {
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.stat-icon {
  height: 1.12em;
  margin-bottom: clamp(2px, 0.5vh, 5px);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 33px);
  line-height: 1;
}

.stat-value {
  color: #fff;
  font-size: clamp(18px, 2.2vw, 26px);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.stat-label {
  margin-top: 3px;
  color: var(--muted);
  font-size: clamp(11px, 1.2vw, 12.5px);
  line-height: 1.25;
}

.anim {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(22px) scale(0.98);
  animation: reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}

.mobile-menu {
  position: fixed;
  z-index: 10;
  inset: 0;
}

.mobile-menu[hidden] {
  display: none;
}

.menu-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  animation: overlayIn 0.28s ease both;
}

.menu-sheet {
  position: absolute;
  top: clamp(80px, 11vh, 104px);
  left: 50%;
  display: flex;
  flex-direction: column;
  width: min(calc(100% - 28px), 440px);
  padding: 22px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background: rgba(20, 20, 22, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 60px rgba(0, 0, 0, 0.45);
  color: #fff;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transform: translateX(-50%);
  animation: menuIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile-link {
  position: relative;
  display: grid;
  height: 48px;
  place-items: center;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  animation: linkIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mobile-link.active::after {
  bottom: 8px;
}

.mobile-link:nth-child(1) {
  animation-delay: 0.08s;
}

.mobile-link:nth-child(2) {
  animation-delay: 0.12s;
}

.mobile-link:nth-child(3) {
  animation-delay: 0.16s;
}

.mobile-link:nth-child(4) {
  animation-delay: 0.2s;
}

.mobile-sign-in {
  display: grid;
  height: 48px;
  margin-top: 12px;
  place-items: center;
  border-radius: 999px;
  background: var(--pill-dark);
  color: var(--sign-in-text);
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  animation: linkIn 0.42s 0.24s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .header {
  z-index: 11;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(22px) scale(0.98);
  }
  to {
    opacity: var(--final-opacity, 1);
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes revealPulse {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(22px) scale(0.98);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 0 rgba(255, 255, 255, 0),
      0 0 0 rgba(255, 255, 255, 0);
  }
  72% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-1px) scale(1.025);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2),
      0 0 30px rgba(255, 255, 255, 0.45),
      0 0 50px rgba(255, 255, 255, 0.18);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.15),
      0 0 22px rgba(255, 255, 255, 0.32),
      0 0 44px rgba(255, 255, 255, 0.12);
  }
}

@keyframes headlineFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes overlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translate(-50%, -12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes linkIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .page {
    padding-right: clamp(14px, 4vw, 24px);
    padding-left: clamp(14px, 4vw, 24px);
  }

  .header-inner {
    justify-content: space-between;
    max-width: none;
  }

  .desktop-nav,
  .desktop-sign-in {
    display: none;
  }

  .logo,
  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    padding: 0;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(30, 30, 32, 0.62);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] {
    z-index: 11;
    background: #fff;
  }

  .menu-toggle[aria-expanded="true"] span {
    background: #000;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .headline {
    font-size: clamp(28px, 8.8vw, 60px);
    letter-spacing: -0.08em;
    line-height: 1.05;
  }

  .subhead {
    width: min(500px, 94%);
  }

  .desktop-break {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(9px, 1.8vh, 15px);
  }
}

@media (max-width: 420px) {
  .trust-row {
    --trust-size: 34px;
    margin-bottom: clamp(13px, 2vh, 18px);
  }

  .trust-pill {
    font-size: 12px;
  }

  .headline {
    font-size: clamp(26px, 8vw, 34px);
    letter-spacing: -0.09em;
    line-height: 1.04;
  }

  .subhead {
    width: 96%;
    font-size: calc(13.5px + 2pt);
  }
}

@media (max-height: 700px) {
  .page {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .trust-row {
    margin-bottom: 11px;
  }

  .subhead {
    margin-top: 10px;
    line-height: 1.42;
  }

  .cta {
    margin-top: 12px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .stat-icon {
    margin-bottom: 1px;
  }
}

@media (max-height: 590px) and (max-width: 720px) {
  .hero {
    transform: scale(0.92);
  }

  .stats {
    row-gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .anim,
  .headline-line,
  .mobile-link,
  .mobile-sign-in {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .headline,
  .headline-line {
    color: #fff;
  }

  .subhead {
    opacity: 0.8;
  }
}

.auth-dialog {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 18px;
  place-items: center;
  overflow-x: hidden;
  overflow-y: auto;
}

.auth-dialog[hidden] {
  display: none;
}

.auth-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(10px);
  cursor: default;
  animation: overlayIn 0.25s ease both;
}

.auth-panel {
  position: relative;
  width: min(100%, 440px);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
  animation: authIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes authIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
  cursor: pointer;
}

.auth-mark {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
}

.auth-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.auth-copy {
  margin: 9px 0 24px;
  color: #8d8d8d;
  font-size: 13px;
  line-height: 1.55;
}

.auth-form {
  display: grid;
  gap: 10px;
}

.auth-providers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.auth-provider,
.auth-create {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: #e8e8e8;
  font: 500 12px var(--font-sans);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.auth-provider:hover,
.auth-create:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.auth-provider svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.auth-provider-note {
  margin: 9px 0 -5px;
  color: #c7a56c;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 18px 0;
  gap: 12px;
  color: #686868;
  font-size: 10px;
  text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.09);
  content: "";
}

.auth-form label {
  color: #bcbcbc;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  outline: none;
  background: #191919;
  color: #fff;
  font: 400 14px var(--font-sans);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.auth-submit,
.auth-signout {
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.auth-create {
  width: 100%;
  border-radius: 999px;
}

.auth-status {
  min-height: 15px;
  margin: 2px 0 0;
  color: #a8c6a8;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.auth-status.is-error {
  color: #e0a5a5;
}

.auth-form button:disabled,
.auth-form input:disabled,
.auth-provider:disabled {
  cursor: wait;
  opacity: 0.55;
}

.auth-submit:hover,
.auth-signout:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}

.auth-note {
  margin: 2px 0 0;
  color: #666;
  font-size: 10px;
  line-height: 1.45;
  text-align: center;
}

.auth-account {
  display: grid;
  gap: 18px;
}

.auth-account-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.auth-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.auth-account-row strong,
.auth-account-row small {
  display: block;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-account-row strong {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.auth-account-row small {
  margin-top: 3px;
  color: #777;
  font-size: 11px;
}

.auth-signout {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: #ddd;
}

body.auth-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .auth-panel {
    padding: 25px 20px 21px;
    border-radius: 22px;
  }

  .auth-providers {
    grid-template-columns: 1fr;
  }
}
