:root {
  --bg: #F5F5F5;
  --text: #656565;
  --muted: #6b6b6b;
  --accent: #ed5d04;
  --border: #656565;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
main {
  max-width: 850px;
  width: 100%;
}
.logo {
  display: block;
  width: min(320px, 80vw);
  height: auto;
  margin: 0 auto 2.5rem;
}
h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
h1 .accent {
  color: var(--accent);
}
p {
  color: var(--muted);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 30em;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.lang-dropdown {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
}
.lang-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}
.lang-dropdown__chevron {
  width: 12px;
  height: 8px;
  transition: transform 0.2s ease;
}
.lang-dropdown__trigger[aria-expanded="true"] .lang-dropdown__chevron {
  transform: rotate(180deg);
}
.lang-dropdown__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 100%;
  margin: 0;
  padding: 0.25rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.lang-dropdown[data-open="true"] .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown__menu button {
  display: block;
  width: 100%;
  padding: 0.4rem 0.75rem;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
}
.lang-dropdown__menu button:hover,
.lang-dropdown__menu button:focus-visible {
  background: var(--bg);
  outline: none;
}
.lang-dropdown__menu button[aria-selected="true"] {
  color: var(--accent);
  font-weight: 600;
}
.contact {
  margin-top: 2rem;
  font-size: 0.9rem;
}
.contact a {
  color: var(--accent);
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
  .dot {
    animation: none;
  }
}
