/* ================= Reset & Base ================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.5;
  font-weight: 400;
}

/* ================= Font weights ================= */

.font-regular { font-weight: 400; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* ================= Header ================= */

.header {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}

/* SVG logo */
img.logo {
  width: 72px !important;
  max-width: 72px !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

/* Text logo under SVG */
.logo-text {
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 2.8rem);
  margin-top: 0.75rem;
  color: #111;
  text-align: center;
  line-height: 1.1;
}

/* ================= Main Container ================= */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
}

/* ================= Sections ================= */

section {
  text-align: center;
  margin-bottom: 3rem;
}

/* ================= Hero Text ================= */

.hero {
  padding: 2rem 1.5rem;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.hero p + p {
  margin-top: 1.75rem;
}

/* ================= Coming Soon ================= */

.coming-soon {
  text-align: center;
  margin: 3rem 0 2rem;
}

.title {
  font-weight: 900;
  font-size: 1.8rem;
}

.coming-subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #555;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= Video ================= */

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  max-width: 680px;
  width: 100%;
  margin: 0 auto 3rem;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ================= Description ================= */

.description p {
  margin-bottom: 0.5rem;
}

/* ================= Store Badges ================= */

.stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stores img {
  width: 160px;
  height: auto;
  display: block;
}

/* ================= Email ================= */

.email-icon img {
  width: 24px;
  height: 24px;
  margin: 0 auto 0.75rem;
  display: block;
}

.email-icon p {
  margin-bottom: 0.25rem;
}

/* ================= Social Icons ================= */

.features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 3rem auto;
}

.features img {
  width: 32px;
  height: 32px;
  display: block;
}

/* ================= Footer ================= */

.footer {
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}

.footer-line {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.footer a {
  color: #777;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

footer {
  border: none;
}

/* ================= Privacy Page ================= */

.privacy h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.privacy p {
  max-width: 720px;
  margin: 0.5rem auto;
  line-height: 1.6;
}

/* ================= Safety ================= */

/* Ensure nothing accidentally adds backgrounds */
.hero,
.hero * {
  background: transparent !important;
}
