:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #ffffff;
  background-color: #0d0d0d;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 0 12px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 8vw, 56px) clamp(16px, 5vw, 24px) 32px;
}

.nav {
  display: flex;
  justify-content: flex-end;
}

.nav__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
}

.nav__link:hover {
  color: #f97316;
}

.hero {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 16px;
}

.hero__eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f97316;
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin: 0;
}

.hero__tagline {
  font-size: 1.2rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero__subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(360px, 100%);
  margin-top: 16px;
}

.hero__badge {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.hero__badge img {
  display: block;
  max-width: 100%;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid transparent;
}

.button--primary {
  background-color: #f97316;
  color: #0d0d0d;
}

.button--primary:hover {
  background-color: #e5660f;
}

.button--secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(249, 115, 22, 0.6);
}

.button--secondary:hover {
  border-color: rgba(249, 115, 22, 0.9);
}

.button__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  object-fit: contain;
}

.privacy {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy--standalone {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.privacy h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.privacy h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.privacy p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
}

.privacy__updated {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
}

.privacy ul {
  padding-left: 20px;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
}

.privacy a {
  color: #f97316;
  text-decoration: none;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.footer__link {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    width: 100%;
  }

  .button {
    flex: 1;
  }
}

@media (max-width: 639px) {
  body {
    justify-content: flex-start;
    padding: 0 16px;
  }

  .page {
    padding: 32px 16px 24px;
  }

  .hero {
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero__logo {
    width: 56px;
    height: 56px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero__tagline {
    font-size: 1.05rem;
  }

  .hero__subtext {
    font-size: 0.95rem;
  }

  .button {
    width: 100%;
  }

  .button__icon {
    margin-right: 8px;
  }

  .hero__badge {
    margin-top: 16px;
  }
}
