body {
  font-family: "Roboto", "Open Sans", "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  min-height: 100vh;
  background: radial-gradient(circle at center, #3b4d59, #2c3840);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h2,
h3,
h4,
h5 {
  color: rgba(255, 255, 255, 0.85);

} 

img {
  object-fit: contain;
  object-position: center;
  display: block;
}

.auth-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.25rem 1rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  color: #fff;
}

.auth-title {
  margin: 0 0 0.5rem;
}

.auth-subtitle {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}

.auth-message {
  display: none;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}

.auth-message.show {
  display: block;
}

.auth-message.success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #86efac;
}

.auth-message.error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.auth-form .btn {
  margin-top: 0.6rem;
}

.auth-form label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.auth-form input {
  /* width: 100%; */
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.auth-form input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.auth-links {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.auth-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.auth-links a:hover {
  color: #fff;
}

.home-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  color: #fff;
}

.home-logo {
  margin-bottom: 1rem;
  opacity: 0;
  filter: blur(14px);
  animation: home-logo-fade-in 4s ease forwards;
  width: 200px;
}

.home-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  opacity: 0;
  filter: blur(14px);
  animation: home-logo-fade-in 900ms ease forwards 4s;
}

@keyframes home-logo-fade-in {
  from {
    opacity: 0;
    filter: blur(14px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

html.ww-first-visit .site-header {
  opacity: 0;
  animation: home-nav-fade-in 700ms ease forwards 5s;
}

@keyframes home-nav-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.home-auth-panel {
  position: fixed;
  top: 4.6rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: min(90vw, 520px);
  color: #fff;
}

#home-message {
  margin: 0 0 0.75rem;
  text-align: right;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 0;
}

#signed-out-actions,
#signed-in-actions {
  justify-content: flex-end;
}

.site-nav {
  position: relative;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1rem;
  background: radial-gradient(circle at center, #3b4d59, #2c3840);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -56px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(44, 56, 64, 1) 0%, rgba(44, 56, 64, 0) 100%);
  pointer-events: none;
}

.site-nav-links {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(84vw, 320px);
  padding: 1rem;
  background: radial-gradient(
    circle at center,
    rgba(54, 69, 79, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  transform: translateX(100%);
  transition: transform 220ms ease;
  pointer-events: none;
  z-index: 31;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-sizing: border-box;
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .site-header {
    padding: 0.7rem;
  }

  .site-nav-links {
    width: 100vw;
    max-width: none;
    left: 0;
    right: 0;
    border-left: 0;
  }
}

.site-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 2rem;
  line-height: 1;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Arial Unicode MS", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
  flex-shrink: 0;
  z-index: 32;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-nav.is-open .site-nav-toggle {
  opacity: 0;
  pointer-events: none;
}

.site-nav.is-open .site-nav-links:not([hidden]) {
  transform: translateX(0);
  pointer-events: auto;
}

.site-nav .site-nav-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Segoe UI Symbol", "Noto Sans Symbols", "Arial Unicode MS", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.site-nav-brand {
  display: inline-flex;
  align-items: center;
}

.site-nav-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.site-nav-links .btn {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.site-nav-links [data-contact-module] {
  margin-top: auto;
}

.contact-module {
  margin-top: 0.25rem;
  padding-top: 0.9rem;
  border-top: 0;
}

.contact-module-title {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-module-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  min-height: 220px;
}

.contact-module-step {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 420ms ease;
}

.contact-module-step.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}

.contact-module-form label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.2rem;
}

.contact-module-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-module-form input,
.contact-module-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 0.25rem;
}

.contact-module-form textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-module-form .btn {
  margin-top: 0.45rem;
}

.contact-module-status {
  min-height: 1.1rem;
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-module-success {
  margin: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(16, 185, 129, 0.45);
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.2);
  color: #86efac;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 420ms ease;
}

.contact-module-success.is-visible {
  opacity: 1;
}

.contact-module-status.is-error {
  color: #fca5a5;
}

.contact-module-status.is-success {
  color: #86efac;
}

.contact-module-form input:focus,
.contact-module-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-module-form .contact-module-field-error {
  border-color: rgba(239, 68, 68, 0.8);
}

.site-nav-status {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;
  padding: 0.55rem 0.25rem;
}

.site-nav.no-logo {
  justify-content: flex-end;
}

.site-nav.no-logo .site-nav-brand {
  display: none;
}