* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

:root {
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
}

body {
  font-family: "Inter", sans-serif;
  background: #ececec;
  overflow-x: hidden;
}

.outer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #f7f5f7;
  overflow: hidden;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: #f7f5f7;
}

.clouds-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.hero-top {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  padding-bottom: 15%;
  background-image: url(photography/1_clouds.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.logo-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.dl-btn {
  background: #4e1587;
  color: white;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  
}

.dl-btn:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.hero-text {
  position: relative;
  z-index: 3;

  text-align: center;
}

.hero-text h1 {
  position: relative;
  z-index: 3;
  text-align: center;

  font-family: 'Inter', sans-serif;
  font-size: 50px;
  font-weight: 400; /* Medium */

  color: #44146e;

  margin-bottom: 3rem;

  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.tagline {
  font-size:50px;
  font-style: italic;
  font-weight: 600; /* stronger emphasis */

  color: #44146e;

  letter-spacing: -0.01em;
}

.people-img {
  position: relative;
  margin-top: -25px;
  z-index: 2;
  width: 100%;
  margin-bottom: -5px;
}

/* BAND */
.band {
  background: white;
  text-align: center;
  padding: var(--space-md);
  line-height: 1.5;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 15%;
  padding-right: 15%;
  border-top: #44146e 15px solid;
  border-bottom: #44146e 15px solid;
}

.band h1 {
  margin: 0 auto;
  color: #44146e;
  font-family: 'Inter', sans-serif;
  font-size: 35px;
  font-weight: 400; /* Medium */
}

/* HOW */
.how {
  background: #f7f5f7;
}

.how-header {
  position: relative;
  text-align: center;
}

.how-clouds {
  width: 100%;
  opacity: 0.8;
}

.how-title {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #44146e;
  margin-bottom: 25px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

/* BASE STEP LAYOUT */
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

/* IMAGE + TEXT SIZING */
.step-img {
  display: flex;
  justify-content: center;
}

.step-img img {
  width: 100%;
  max-width: 250px;
}

.step-text p {
    font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 400; /* Medium */
  color: #44146e;
  max-width: 520px;
}

/* ROW 1 + 3 → IMAGE LEFT, TEXT RIGHT */
.step.left .step-img {
  grid-column: 1;
}
.step.left .step-text {
  grid-column: 2;
  text-align: left;
}

/* ROW 2 → TEXT LEFT, IMAGE RIGHT */
.step.right .step-text {
  grid-column: 1;
  text-align: right;
}
.step.right .step-img {
  grid-column: 2;
}

.msg-step-img {
  display: flex;
  justify-content: center;
}

.msg-step-img img{
max-height: 300px;
width: auto;
}

/* SEVEN */
.seven {
  text-align: center;
  margin: 0 auto;
  padding: 45px 0 0 0;
}

.seven h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #44146e;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.cta {
  position: relative;
  width: 100%;
}

.cta-img {
  width: 100%;
  height: auto;
  display: block;
}

/* OVERLAY */
.cta-overlay {
  position: absolute;
  inset: 0 0 0 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  gap: 165px;
  padding: 0 15px 0 15px;
}

.cta-overlay h2 {
   font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 400; /* Medium */
  color: #44146e;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.store-btns {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}


.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.store-badge {
  display: inline-block;
  transition: transform 0.2s ease;
}

.store-badge img {
  height: 55px;   /* standard badge height */
  width: auto;
  display: block;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.sub {
  font-size: 10px;
}

.main {
  font-size: 14px;
  font-weight: 600;
}

.footer {
  background: #4e1587;
  position: relative;
  z-index: 1;
}


.footer-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-divider {
  position: relative;
  z-index: 2;

  margin-top: -15%; /* pulls it up over CTA */
  line-height: 0;
  align-items: center;
}

.footer-divider img {
  width: 100%;
  height: auto;
  margin-bottom: -10px;
}

.socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  color: white;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a i {
  font-size: 1.5rem; /* slightly smaller than before for balance */
}

.social-icons a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.footer-copy {
  color: white;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 600px) {

  .step.left,
  .step.right {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step.right .step-text {
    text-align: center;
  }

  .step-img {
    order: 1;
  }

  .step-text {
    order: 2;
  }

  .step-img img {
    max-width: 140px;
  }

  .logo-img {
    width: 58px;
    height: 58px;
  }

  .dl-btn {
    padding: 8px 18px;
    font-size: 13px;
    text-decoration: none;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 1.6rem;
    font-weight: 800;
  }

  .how-title {
  margin-bottom: 0;
}

  .steps {
    gap: 2.5rem;
    padding: 0 1.5rem;
  }

  .step {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }

  /* FORCE ORDER: img → text */
  .step-img {
    order: 1;
  }

  .step-text {
    order: 2;
  }

  /* IMAGE CONTROL */
  .step-img img {
    max-width: 140px;
    width: 100%;
  }

  /* TEXT CONTROL */
  .step-text p {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
  }

  .band h1{
    font-size: 20px;
  }

  .seven h2 {
    font-size: 20px;
  }

  .cta-overlay h2 {
    font-size: 1.5rem;
  }

  .store-badge img {
    height: 35px;
  
}
.cta-overlay {
  gap: 100px;

}

  @media (max-width: 475px) {
.hero-top {
  padding-bottom: 5%;
}
.hero-text {
  margin-bottom: 9%;
}
.hero-text h1 {
  font-size: 20;
  margin: 0 auto;
}
.tagline {
  font-size: 20;
}


  .steps {
    gap: 2rem;
  }

  .step-img img {
    max-width: 120px;
  }

  .step-text p {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .footer-divider {
    margin-top: -80px;
  }
}

@media (max-width: 475px) {
  .footer-divider {
    margin-top: -60px;
  }
}
}