:root {
  color-scheme: dark;
  --ink: #fffaf5;
  --muted: #d9cdea;
  --soft: #a99bbe;
  --night: #08050f;
  --panel: #17102c;
  --panel-strong: #241746;
  --violet: #9f5cff;
  --pink: #f04fb6;
  --amber: #ffb33e;
  --cyan: #55d7ff;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(159, 92, 255, 0.35), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(240, 79, 182, 0.24), transparent 24rem),
    radial-gradient(circle at 48% 46%, rgba(85, 215, 255, 0.08), transparent 38rem),
    linear-gradient(180deg, #090512 0%, #120921 42%, #07040c 100%);
  color: var(--ink);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-width: 320px;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(8, 5, 15, 0.74);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding: 0.85rem clamp(1rem, 4vw, 3.5rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.65rem;
  font-weight: 900;
}

.brand img {
  border-radius: 14px;
  height: 42px;
  width: 42px;
}

nav {
  align-items: center;
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.55rem);
}

nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.header-cta,
.primary-button,
.secondary-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.25rem;
}

.header-cta,
.primary-button {
  background: linear-gradient(100deg, var(--violet), var(--pink) 56%, var(--amber));
  box-shadow: 0 12px 36px rgba(240, 79, 182, 0.3);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid var(--line);
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-backdrop {
  inset: 0;
  position: absolute;
}

.hero-backdrop::after {
  background:
    linear-gradient(90deg, rgba(8, 5, 15, 0.96), rgba(8, 5, 15, 0.78) 46%, rgba(8, 5, 15, 0.38)),
    linear-gradient(0deg, rgba(8, 5, 15, 0.96), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-backdrop img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.8;
  width: 100%;
}

.hero-inner {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  margin: 0 auto;
  max-width: 1280px;
  min-height: 100svh;
  padding: 8.5rem clamp(1.25rem, 4vw, 3rem) 5rem;
  place-items: center;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-copy {
  justify-self: start;
  max-width: 730px;
  min-width: 0;
  width: 100%;
}

.eyebrow {
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.45rem, 7.4vw, 6.75rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2.25rem, 5.4vw, 4.8rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.18rem;
  margin: 0;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.premium-copy p,
.download-section p {
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.2rem);
  line-height: 1.7;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.hero-actions,
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-feature {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(159, 92, 255, 0.2), rgba(240, 79, 182, 0.12)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  box-shadow: var(--shadow);
  justify-self: end;
  overflow: hidden;
  padding: clamp(0.55rem, 1.3vw, 0.9rem);
  width: min(620px, 100%);
}

.hero-feature img {
  aspect-ratio: 1024 / 500;
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
}

.steps-section,
.demo-section,
.features-section,
.premium-section,
.pricing-section,
.faq-section,
.download-section {
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(4rem, 9vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  max-width: 820px;
}

.section-heading.center {
  margin: 0 auto;
  text-align: center;
}

.step-grid,
.premium-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
}

.step-grid article,
.premium-grid article,
.price-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.45rem;
}

.step-grid span {
  color: var(--cyan);
  display: block;
  font-weight: 900;
  margin-bottom: 0.85rem;
}

.step-grid p,
.feature-grid p,
.premium-grid span,
.price-card li,
.faq-list p {
  color: var(--muted);
  line-height: 1.62;
}

.demo-player {
  background: linear-gradient(160deg, rgba(159, 92, 255, 0.22), rgba(240, 79, 182, 0.12));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin-top: 2.5rem;
  overflow: hidden;
  padding: 0.85rem;
  position: relative;
}

.demo-player video {
  aspect-ratio: 16 / 9;
  background: #05020a;
  border-radius: 22px;
  height: auto;
  width: 100%;
}

.demo-badge {
  background: linear-gradient(100deg, var(--violet), var(--pink), var(--amber));
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
  font-weight: 900;
  left: 2rem;
  padding: 0.7rem 1rem;
  position: absolute;
  top: 2rem;
}

.demo-thumbs,
.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.demo-thumbs {
  grid-template-columns: repeat(3, 1fr);
}

.demo-thumbs img {
  aspect-ratio: 9 / 12;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}

.feature-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}

.feature-grid img {
  aspect-ratio: 9 / 12;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.feature-grid h3,
.feature-grid p {
  padding-left: 1rem;
  padding-right: 1rem;
}

.feature-grid h3 {
  margin-top: 1rem;
}

.feature-grid p {
  margin-bottom: 1.2rem;
}

.premium-section {
  align-items: start;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 0.8fr 1.2fr;
}

.premium-copy {
  position: sticky;
  top: 7rem;
}

.premium-grid {
  grid-template-columns: repeat(2, 1fr);
}

.premium-grid strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 410px;
}

.price-card.featured {
  background:
    linear-gradient(160deg, rgba(159, 92, 255, 0.32), rgba(240, 79, 182, 0.2)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 179, 62, 0.38);
  transform: translateY(-1rem);
}

.price-card > p {
  color: var(--amber);
  font-weight: 900;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.price-card h3 {
  font-family: Fredoka, "Nunito Sans", system-ui, sans-serif;
  font-size: 2.6rem;
}

.price-card strong {
  color: var(--muted);
  display: block;
  margin-top: 0.35rem;
}

.price-card ul {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.price-card li::before {
  color: var(--cyan);
  content: "✦ ";
}

.price-card a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-top: auto;
  min-height: 48px;
}

.price-card.featured a {
  background: linear-gradient(100deg, var(--violet), var(--pink), var(--amber));
  border: 0;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
  margin: 2.4rem auto 0;
  max-width: 860px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 0;
}

.download-section {
  align-items: center;
  background:
    linear-gradient(100deg, rgba(159, 92, 255, 0.32), rgba(240, 79, 182, 0.2)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 32px;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: clamp(2rem, 5vw, 3.5rem);
}

.download-section div:first-child {
  max-width: 700px;
}

.download-section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.store-badges {
  margin-top: 0;
}

.store-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--ink);
  display: flex;
  gap: 0.85rem;
  min-height: 72px;
  min-width: 190px;
  opacity: 0.72;
  padding: 0.8rem 1rem;
}

.store-badge small {
  color: var(--soft);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.store-badge span:last-child {
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
}

.play-mark {
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--ink);
  border-top: 14px solid transparent;
  height: 0;
  width: 0;
}

.apple-mark {
  color: var(--ink);
  flex: 0 0 auto;
  fill: currentColor;
  height: 32px;
  width: 32px;
}

.site-footer {
  align-items: flex-start;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 2rem clamp(1rem, 4vw, 3rem) 3rem;
}

.site-footer p {
  line-height: 1.6;
  margin: 1rem 0 0;
  max-width: 520px;
}

.site-footer .footer-copy {
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
  margin-top: 0.65rem;
}

.footer-links {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 540px;
}

.footer-links a {
  white-space: nowrap;
}

.legal-main {
  margin: 0 auto;
  max-width: 980px;
  padding: 8.5rem clamp(1.25rem, 4vw, 3rem) 4rem;
}

.legal-hero {
  margin-bottom: 2rem;
}

.legal-hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.legal-hero p,
.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-top: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.legal-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-section ul {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.legal-section a {
  color: var(--cyan);
  font-weight: 900;
}

@media (max-width: 960px) {
  .site-header {
    position: sticky;
  }

  nav,
  .header-cta {
    display: none;
  }

  .hero-inner,
  .premium-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 4.5rem;
  }

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

  .hero-feature {
    justify-self: center;
    width: min(680px, 100%);
  }

  .step-grid,
  .feature-grid,
  .premium-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-copy {
    position: static;
  }

  .download-section {
    align-items: flex-start;
    display: grid;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-main {
    padding-top: 4rem;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 0.95rem;
  }

  h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.15rem);
    line-height: 1;
  }

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

  .hero-copy,
  .hero-feature {
    max-width: calc(100vw - 2.5rem);
    width: calc(100vw - 2.5rem);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 21rem;
  }

  .hero-actions,
  .store-badges {
    display: grid;
  }

  .primary-button,
  .secondary-button,
  .store-badge {
    width: 100%;
  }

  .step-grid,
  .feature-grid,
  .premium-grid,
  .pricing-grid,
  .demo-thumbs {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .hero-feature {
    border-radius: 24px;
  }

  .hero-feature img {
    border-radius: 18px;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .footer-links {
    display: grid;
    gap: 0.85rem;
  }
}
