:root {
  --bg: #00adff;
  --ink: #ffffff;
  --muted: #ffffff;
  --line: rgba(255, 255, 255, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

.hero {
  width: min(1080px, 100% - 48px);
  margin: 40px auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
}

h1 {
  margin: 14px 0 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  opacity: 0.92;
}

.store-buttons {
  margin-top: 28px;
  display: inline-flex;
}

.app-store-link {
  display: inline-block;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.app-store-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.app-store-badge {
  width: 210px;
  height: auto;
  display: block;
}

.hero__visual {
  display: grid;
  place-items: center;
}

.character-frame {
  width: min(430px, 100%);
  min-height: 300px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  padding: 20px;
}

.hero__visual img {
  width: min(320px, 100%);
  height: auto;
  display: block;
}

.apple-stats {
  width: min(1080px, 100% - 48px);
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 22px;
  text-align: left;
}

.stat-label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.78;
}

.stat-value {
  margin: 10px 0 6px;
  font-size: clamp(42px, 8vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  opacity: 1;
}

.stat-value-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.rating-star {
  margin-top: 4px;
  font-size: clamp(26px, 4.4vw, 36px);
  line-height: 1;
  color: #ffb531;
}

.stat-subtitle {
  margin: 0;
  font-size: 15px;
  opacity: 0.86;
}

.feature-row {
  width: min(1080px, 100% - 48px);
  margin: 0 auto 56px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.feature-row__content h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.feature-row__content p {
  margin: 0;
  max-width: 560px;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  opacity: 0.92;
}

.feature-row__visual {
  display: grid;
  place-items: center;
}

.feature-row__visual img {
  width: min(260px, 100%);
  height: auto;
  display: block;
}

.testimonial {
  width: min(1080px, 100% - 48px);
  margin: 0 auto 56px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 34px;
}

.testimonial__kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.testimonial h2 {
  margin: 0 0 12px;
  font-size: clamp(16px, 2.5vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.testimonial__body {
  margin: 0;
  max-width: 760px;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.5;
  opacity: 0.92;
}

.testimonial__user {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 800;
  opacity: 1;
}

.bottom-cta {
  width: min(1080px, 100% - 48px);
  margin: 0 auto 56px;
  display: grid;
  place-items: center;
}

@media (max-width: 900px) {
  .hero {
    width: min(1080px, 100% - 24px);
    margin: 18px auto;
    padding: 28px;
    grid-template-columns: 1fr;
  }

  .hero__content {
    text-align: center;
  }

  .hero__content p {
    margin-inline: auto;
  }

  .hero__visual {
    order: -1;
  }

  .app-store-badge {
    width: 200px;
  }

  .apple-stats {
    width: min(1080px, 100% - 24px);
    margin: 0 auto 20px;
    grid-template-columns: 1fr;
  }

  .feature-row {
    width: min(1080px, 100% - 24px);
    margin: 0 auto 24px;
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-row__visual {
    order: -1;
  }

  .testimonial {
    width: min(1080px, 100% - 24px);
    margin: 0 auto 24px;
    padding: 24px;
  }

  .bottom-cta {
    width: min(1080px, 100% - 24px);
    margin: 0 auto 24px;
  }
}
