/* ====== RESET / BASIC ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* no sideways wobble */
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ====== HEADER ====== */
.site-header {
  width: 100%;
  padding: 2rem 1rem;
}

.brand {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* ====== SCREEN STRIP ====== */
.screens {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
}

.screen {
  width: clamp(180px, 19vw, 240px);
  flex: 0 0 auto;
  scroll-snap-align: center;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ====== CTA SECTION ====== */
.cta {
	display: flex;
    flex-direction: row;
    align-items: center;
    margin: 2rem auto 2rem;
    gap: 1.5rem;
    justify-content: center;
    flex-grow: 1;
}

.cta__logo {
  width: clamp(160px, 30vw, 220px);
  margin-bottom: 2rem;
}

.cta__store img {
  width: clamp(140px, 26vw, 200px);
  transition: transform .2s ease;
}

.cta__store:hover img {
  transform: scale(1.05);
}

/* ====== FOOTER / SOCIAL ====== */
.site-footer {
  padding: 2rem 1rem 3rem;
  text-align: center;
}

.social {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.social__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: #000;
  transition: opacity .2s ease;
}

.social__link:hover {
  opacity: .7;
}

.social__link img {
  width: 24px;
  height: 24px;
}

.legal {
  padding-top: 2rem;
  padding-bottom: 1rem;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  border-top: 1px solid #e5e5e5;
}
.links {
  padding-left: 3rem;
  padding-right: 3rem;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
}
