body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f1116;
  color: #ffffff;
  line-height: 1.6;
}

header.hero {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(145deg, #1e1e2d, #15151f);
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.2em;
  color: #7bc4ff;
}

.subtext {
  font-size: 1em;
  margin-top: 10px;
  max-width: 500px;
  margin-inline: auto;
}

section {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works h2,
.mockups h2,
.privacy h2,
.entitlement h2 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 30px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.step {
  background: #1a1a28;
  padding: 20px;
  border-radius: 12px;
  width: 250px;
}

.caption {
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
}

.privacy p,
.entitlement p {
  margin-bottom: 1em;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

footer.coming-soon {
  text-align: center;
  background-color: #1c1c2b;
  padding: 40px 20px;
}

footer input {
  padding: 10px;
  font-size: 1em;
  border-radius: 6px;
  border: none;
  width: 250px;
  margin-right: 10px;
}

footer button {
  padding: 10px 15px;
  font-size: 1em;
  background-color: #7bc4ff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}

.footer-note {
  margin-top: 20px;
  font-size: 0.85em;
  color: #888;
}

.mockups {
      max-width: 800px;
      width: 100%;
      text-align: center;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 24px;
      padding: 48px 32px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mockups h2 {
      font-size: 2.5rem;
      color: #2d3748;
      margin-bottom: 16px;
      font-weight: 700;
      background: linear-gradient(45deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .mockup-gallery {
      position: relative;
      margin: 40px 0;
    }

    .mockup-gallery img {
      width: 100%;
      max-width: 500px;
      height: auto;
      border-radius: 16px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 3px solid rgba(255, 255, 255, 0.8);
    }

    .mockup-gallery img:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .mockup-frame {
      position: relative;
      display: inline-block;
      padding: 12px;
      background: linear-gradient(145deg, #f8f9fa, #e9ecef);
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }
