@font-face {
  font-family: "Inter";
  src: local("Inter"), local("Arial");
}

:root {
  color-scheme: dark;
  --ink: #f8f8ff;
  --muted: #c9cbe7;
  --purple: #9b4dff;
  --purple-bright: #bb72ff;
  --night: #0a1028;
  --night-deep: #060b1d;
  --line: rgba(237, 240, 255, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--night-deep);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(52, 107, 248, 0.72), transparent 32rem),
    radial-gradient(circle at 12% 88%, rgba(129, 33, 203, 0.56), transparent 33rem),
    linear-gradient(125deg, #2b0c4e 0%, #1a1a4a 48%, #07152f 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(6, 11, 29, 0.2), transparent 55%);
}

.site-header,
.hero-layout,
.statement,
.features,
.showcase,
.closing,
footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  align-self: flex-end;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-wordmark {
  font-size: 2.05rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.brand-subtitle {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1;
}

.platform-label,
.eyebrow {
  color: #d7b7ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.platform-label {
  padding: 7px 10px;
  border: 1px solid rgba(231, 211, 255, 0.36);
  border-radius: 4px;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: 3.5rem;
  min-height: 620px;
  padding: 54px 0 48px;
}

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

h1,
h2,
p { margin-top: 0; }

h1 {
  max-width: 620px;
  margin: 15px 0 22px;
  font-size: clamp(2.6rem, 5vw, 5.15rem);
  font-weight: 820;
  letter-spacing: 0;
  line-height: 0.98;
}

.intro {
  max-width: 510px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.15rem;
}

.actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.play-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  background: #111728;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 720;
  line-height: 1.05;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

.play-button:hover,
.play-button:focus-visible { background: #252c47; transform: translateY(-2px); }

.play-button small { display: block; margin-bottom: 3px; color: #c6cae0; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.08em; }

.play-triangle {
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ad69ff;
}

.price { color: #d6d8ea; font-size: 0.83rem; }
.availability { margin: 16px 0 0; color: #b9bdd6; font-size: 0.85rem; }

.hero-media {
  position: relative;
  justify-self: center;
  width: min(100%, 350px);
  aspect-ratio: 795 / 1401;
  overflow: hidden;
  border-radius: 18px;
  filter: drop-shadow(0 35px 35px rgba(0, 0, 0, 0.42));
}

.hero-media img {
  display: block;
  width: 136%;
  max-width: none;
  transform: translate(-13.25%, -24.7%);
}

.statement {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 4rem;
  padding: 78px 0;
}

.statement h2,
.closing h2 { margin: 13px 0 0; font-size: clamp(2rem, 3.5vw, 3.25rem); font-weight: 790; line-height: 1.05; }
.statement > p { align-self: end; max-width: 480px; margin: 0; color: #b9bdd3; font-size: 1.15rem; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.features article { min-height: 260px; padding: 34px 36px 36px 0; border-bottom: 1px solid var(--line); }
.features article + article { padding-left: 36px; border-left: 1px solid var(--line); }
.feature-number { color: var(--purple-bright); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; }
.features h2 { margin: 44px 0 10px; font-size: 1.35rem; line-height: 1.15; }
.features p { margin: 0; color: #afb4ca; font-size: 0.96rem; }

.showcase { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; padding: 78px 0; }
.showcase figure { margin: 0; }
.showcase img { display: block; width: 100%; border: 1px solid rgba(226, 215, 255, 0.18); border-radius: 8px; }
.closing {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 64px 0 78px;
}

.closing .play-button { margin-top: 28px; }
.ios-note { margin: 18px 0 0; color: #aeb4ce; font-size: 0.9rem; }
.ios-note a { color: #d7b7ff; }

footer { display: flex; gap: 18px; justify-content: space-between; padding: 24px 0 34px; border-top: 1px solid var(--line); color: #9ba3c2; font-size: 0.74rem; }
footer a { color: #d8dcf0; text-decoration: none; }

@media (max-width: 800px) {
  .site-header,
  .hero-layout,
  .statement,
  .features,
  .showcase,
  .closing,
  footer { width: min(100% - 36px, 620px); }

  .site-header { padding-top: 20px; }
  .brand img { width: 38px; height: 38px; }
  .brand-wordmark { font-size: 1.7rem; }
  .brand-subtitle { font-size: 0.68rem; }
  .platform-label { font-size: 0.62rem; }
  .hero-layout { grid-template-columns: 1fr; gap: 34px; min-height: 0; padding: 48px 0 44px; }
  .hero-media { width: min(86vw, 350px); }
  .statement { grid-template-columns: 1fr; gap: 22px; padding: 70px 0; }
  .statement > p { font-size: 1.05rem; }
  .features { grid-template-columns: 1fr; }
  .features article, .features article + article { min-height: 0; padding: 28px 0; border-left: 0; }
  .features h2 { margin-top: 24px; }
  .showcase { grid-template-columns: 1fr; gap: 50px; padding: 70px 0; }
  .closing { padding: 62px 0 76px; }
  footer { flex-wrap: wrap; justify-content: flex-start; }
}

@media (max-width: 430px) {
  .brand { gap: 7px; }
  .platform-label { display: none; }
  h1 { font-size: 2.55rem; }
  .intro { font-size: 1.05rem; }
}
