* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #faf7f5;
  color: #1c1917;
  text-align: center;
  padding: 2rem 1.25rem;
}

.lang-switch {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  gap: .25rem;
  font-size: .9rem;
}

.lang-switch a {
  color: #78716c;
  text-decoration: none;
  padding: .3rem .6rem;
  border-radius: 999px;
}

.lang-switch a[aria-current] {
  color: #fff;
  background: #E44E53;
  font-weight: 600;
}

.logo-video {
  width: min(330px, 84vw);
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  box-shadow: 0 8px 24px rgba(228, 78, 83, .25);
  object-fit: cover;
}

h1 { font-size: 2.25rem; letter-spacing: -0.02em; }

.tagline { font-size: 1.125rem; color: #57534e; max-width: 26rem; }

.soon {
  margin-top: .5rem;
  display: inline-block;
  background: #E44E53;
  color: #fff;
  font-weight: 600;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  font-size: .95rem;
}

footer {
  position: fixed;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  font-size: .85rem;
  color: #78716c;
}

footer a { color: inherit; }
