/* Base reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #e5e7eb;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 6vh 16px;
  padding-inline: clamp(32px, 8vw, 120px);
}

.hero-content {
  width: max-content;
  max-width: 92vw;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 8px;
  transform: translateX(6px);
}

.brand {
  margin: 0 0 4px;
  line-height: 1;
  overflow: visible;
  padding-right: clamp(8px, 1.2vw, 20px);
}

.brand span {
  display: inline-block;
  font-weight: 800;
  font-size: clamp(40px, 8vw, 80px);
  font-style: italic;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding-right: 0.25em; /* breathing room for italic R */
  -webkit-text-stroke: 0.01px transparent; /* fix rare clipping with background-clip text */
  text-shadow: 0 0 1px rgba(0,0,0,0); /* nudge rasterization to avoid edge cut */
  background: linear-gradient(90deg, #f0abfc 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin: 2px 0 0;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #ffffff;
  opacity: 1;
  display: block;
  width: 100%;
  white-space: nowrap;
  text-align: justify;
  text-align-last: justify;
}

.tagline::after { content: ""; display: inline-block; width: 100%; }

.store-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-top: clamp(80px, 20vh, 240px);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 64px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.store-badge img { width: 100%; height: 100%; object-fit: contain; border-radius: 12px; }
.store-badge:hover { transform: translateY(-2px) scale(1.01); }
.store-badge:active { transform: translateY(0); }

.site-footer {
  display: grid;
  gap: 16px;
  font-weight: 600;
  padding: 28px 16px 40px;
  background: #111827;
  color: #9ca3af;
}

.legal-links {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.legal-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.legal-links a:hover { color: #e5e7eb; text-decoration: underline; text-underline-offset: 3px; }



/* Responsive spacing for very tall viewports */
@media (min-height: 900px) {
  .hero { padding-top: 16vh; }
}


