@font-face {
  font-family: "Fredoka";
  src: url("assets/Fredoka-Bold.ttf") format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Nunito";
  src: url("assets/Nunito-ExtraBold.ttf") format("truetype");
  font-weight: 800;
}

:root {
  --ink: #10205c;
  --muted: #5d6c95;
  --blue: #1677ff;
  --blue-deep: #0d48c7;
  --gold: #ffc329;
  --green: #35b957;
  --panel: rgba(255, 255, 255, 0.82);
  --line: rgba(45, 93, 160, 0.16);
  --shadow: 0 24px 70px rgba(20, 65, 140, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 212, 73, 0.25), transparent 26rem),
    radial-gradient(circle at 92% 14%, rgba(58, 190, 94, 0.18), transparent 24rem),
    linear-gradient(180deg, #eaf7ff 0%, #f7fbff 42%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(239, 249, 255, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: min(190px, 42vw);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: #244075;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(32px, 5vw, 76px) clamp(18px, 5vw, 72px) 44px;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fredoka", "Nunito", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  font-size: 1.5rem;
}

.hero-text {
  max-width: 580px;
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.store-button {
  display: inline-flex;
  align-items: center;
  min-width: 184px;
  min-height: 62px;
  gap: 12px;
  padding: 10px 18px 10px 12px;
  color: white;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(17, 24, 39, 0.24);
}

.store-button small {
  display: block;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 700;
}

.store-button--play {
  background: linear-gradient(135deg, #132044, #1268de);
}

.store-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #111827;
  background: white;
  border-radius: 8px;
  font-family: "Fredoka", sans-serif;
  font-size: 1.25rem;
}

.availability {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-shot {
  width: min(780px, 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 16px 44px rgba(18, 74, 150, 0.1);
}

.stats-band div {
  min-height: 112px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.stats-band strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.features,
.showcase,
.cta {
  padding: clamp(62px, 8vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article {
  min-height: 260px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(18, 74, 150, 0.11);
}

.feature-token {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border-radius: 8px;
  font-weight: 800;
}

.feature-grid p,
.showcase-copy p,
.cta p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: linear-gradient(180deg, rgba(227, 246, 255, 0.65), rgba(255, 255, 255, 0.9));
}

.showcase-copy {
  position: sticky;
  top: 104px;
}

.screen-grid {
  display: grid;
  gap: 18px;
}

figure {
  margin: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figure img {
  width: 100%;
}

figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-weight: 800;
}

.cta {
  display: grid;
  grid-template-columns: 150px minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
  margin: clamp(18px, 5vw, 72px);
  padding: clamp(24px, 5vw, 44px);
  background: linear-gradient(135deg, #ffffff, #eaf7ff);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta img {
  width: 150px;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px) 36px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.mora-signature {
  color: var(--muted);
}

.mora-signature strong {
  font-family: "Fredoka", "Nunito", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0;
  background: linear-gradient(100deg, #6538ff 0%, #a531d4 46%, #ff315f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 22px rgba(136, 43, 215, 0.2);
}

.is-visible {
  animation: rise 520ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero,
  .showcase,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: auto;
  }

  .showcase-copy {
    position: static;
  }

  .cta {
    margin: 24px 18px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .site-header nav {
    gap: 12px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 22px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.1rem);
  }

  .download-row,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

  .store-button {
    width: 100%;
  }

  .stats-band,
  .feature-grid {
    grid-template-columns: 1fr;
  }

}
