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

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

body {
  font-family: 'Poppins', sans-serif;
  background: #111113;
  color: #fdfdfd;
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url("sodo-landing.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 4vw, 3rem);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.content {
  position: relative;
  max-width: 900px;
  z-index: 2;
  width: 100%;
}

.logo {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #FFFD81;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

img.logo {
  display: block;
  margin: 0 auto clamp(0.75rem, 1.5vw, 1.25rem);
  max-width: min(800px, 88vw);
  height: auto;
}

.tagline {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: clamp(0.25rem, 0.8vw, 0.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.75rem);
}

.description {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  color: #e0e0e0;
}

.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
  row-gap: clamp(0.75rem, 2vw, 1.5rem);
}

.coming-soon {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 253, 129, 0.85);
  margin-top: clamp(-0.5rem, -1vw, -0.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
}

.store-btn {
  text-decoration: none;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  transition: 0.3s ease;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  display: inline-flex;
  align-items: center;
  height: clamp(44px, 7vw, 60px);
}

.google {
  background: transparent;
  color: inherit;
}

.apple {
  background: transparent;
  color: inherit;
}

.store-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.store-btn img {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.store-btn.google img {
  transform: scale(1.46);
  transform-origin: center;
}

.extra-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
  margin-top: clamp(1.5rem, 3.5vw, 2.75rem);
}

.extra-content-title {
  color: #fffbd1;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  margin-bottom: clamp(0.5rem, 1vw, 0.85rem);
}

.extra-content-item .description {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .extra-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
  }

  img.logo {
    max-width: 75vw;
  }

  .extra-content {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: #0b0b0d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-title {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: #fffbd1;
  margin-bottom: clamp(0.5rem, 1vw, 0.9rem);
}

.footer-description {
  color: #cfcfcf;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.75rem);
}

.footer-links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0 clamp(0.25rem, 1.5vw, 0.75rem);
}

.footer-legal {
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: rgba(253, 253, 253, 0.7);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.35rem clamp(0.75rem, 2vw, 1.5rem);
  width: min(100%, 900px);
  margin-left: auto;
  margin-right: auto;
}

.footer-legal .company-name {
  color: rgba(255, 251, 209, 0.9);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.05rem;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fffbd1;
  border-bottom-color: #fffbd1;
}

.footer-link {
  color: #fdfdfd;
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.2s ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #111113;
  background: #fffbd1;
  border-color: #fffbd1;
}
