:root {
  --ink: #0f1016;
  --muted: #666976;
  --line: #e8e8ef;
  --paper: #ffffff;
  --soft: #f5f5f8;
  --violet: #8b65ff;
  --magenta: #b24dff;
  --coral: #ff7a59;
  --amber: #ffba23;
  --mint: #28c47a;
  --shadow: 0 22px 70px rgba(17, 19, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-ready .hero-copy {
  animation: fade-up 720ms ease both;
}

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: 18px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(232, 232, 239, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(139, 101, 255, 0.26);
}

.nav-links,
.footer-links,
.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a,
.footer-links a,
.social-links a,
.text-link {
  transition: color 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.social-links a:hover,
.text-link:hover {
  color: var(--violet);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(139, 101, 255, 0.28);
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: 82vh;
  padding: clamp(56px, 9vw, 112px) clamp(18px, 6vw, 92px) 56px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 101, 255, 0.14), rgba(255, 186, 35, 0.1) 48%, rgba(255, 255, 255, 0) 72%),
    #fbfbfd;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-text,
.section-copy p,
.steps p,
.site-footer p,
.review-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
}

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

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 22px;
  border-radius: 999px;
  color: #fff;
  background: #0a0b0f;
  font-weight: 850;
  box-shadow: var(--shadow);
}

.app-store-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.app-store-button span {
  display: grid;
  gap: 1px;
  font-size: 21px;
  line-height: 1;
}

.app-store-button small {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.text-link {
  color: var(--ink);
  font-weight: 800;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-stats span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.shot {
  position: absolute;
  width: min(47vw, 300px);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(8, 8, 12, 0.24);
}

.shot-primary {
  top: 0;
  right: 24%;
  transform: rotate(-5deg);
  animation: float-left 7s ease-in-out infinite;
}

.shot-secondary {
  right: 0;
  bottom: 0;
  transform: rotate(6deg);
  animation: float-right 7.6s ease-in-out infinite;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 92px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transform: translateY(-24px);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-band div {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: #fff;
}

.trust-band strong {
  font-size: 18px;
}

.trust-band span {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(18px, 6vw, 92px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.section-copy {
  max-width: 700px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--violet));
  box-shadow: 0 0 0 5px rgba(40, 196, 122, 0.12);
}

.feature-panel {
  display: grid;
  place-items: center;
  min-height: 620px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(139, 101, 255, 0.18), rgba(255, 122, 89, 0.16)),
    #f2f2f7;
  overflow: hidden;
}

.feature-panel img {
  width: min(82%, 330px);
  border-radius: 32px;
  box-shadow: 0 30px 78px rgba(15, 16, 22, 0.22);
}

.process {
  background: #101116;
  color: #fff;
}

.process .eyebrow,
.final-cta .eyebrow {
  color: #d9c8ff;
}

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

.process .section-heading p,
.process .steps p {
  color: rgba(255, 255, 255, 0.7);
}

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

.steps article,
.review-card {
  border-radius: 8px;
  padding: 28px;
}

.steps article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.gallery-section {
  background: var(--soft);
}

.screenshot-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 14px;
}

.screenshot-row img {
  width: 100%;
  min-width: 220px;
  border-radius: 32px;
  box-shadow: 0 18px 44px rgba(15, 16, 22, 0.16);
}

.reviews {
  background: #fff;
}

.reviews-slider {
  position: relative;
}

.review-track {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 18px;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 286px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(17, 19, 29, 0.08);
  scroll-snap-align: start;
}

.review-card p {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 20px;
}

.review-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border-radius: 999px;
  color: #111318;
  background: linear-gradient(135deg, #ffe195, #ffba23);
  font-size: 13px;
  font-weight: 850;
}

.review-card a {
  color: var(--violet);
  font-weight: 850;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(17, 19, 29, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease;
}

.slider-button:hover {
  color: var(--violet);
  border-color: rgba(139, 101, 255, 0.35);
  transform: translateY(-50%) scale(1.04);
}

.slider-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.slider-button-prev {
  left: -22px;
}

.slider-button-next {
  right: -22px;
}

.socials-section {
  background:
    linear-gradient(135deg, rgba(139, 101, 255, 0.1), rgba(255, 122, 89, 0.08)),
    #fff;
}

.social-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-card {
  display: grid;
  gap: 16px;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  background: #111318;
  box-shadow: 0 24px 70px rgba(17, 19, 29, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(17, 19, 29, 0.14);
}

.social-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-card strong {
  align-self: end;
  font-size: clamp(24px, 3vw, 38px);
}

.social-icon {
  width: 46px;
  height: 46px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tiktok .social-icon {
  fill: currentColor;
  stroke: none;
}

.social-card.instagram {
  background:
    radial-gradient(circle at 18% 18%, #ffd76d 0 14%, transparent 30%),
    radial-gradient(circle at 88% 18%, #7b2cff 0 18%, transparent 34%),
    linear-gradient(135deg, #ffb000 0%, #ff3d7f 42%, #8a2be2 74%, #3b35ff 100%);
}

.social-card.youtube {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(135deg, #ff0000 0%, #c40000 48%, #5b0000 100%);
}

.social-card.tiktok {
  background:
    radial-gradient(circle at 24% 22%, #25f4ee 0 18%, transparent 35%),
    radial-gradient(circle at 82% 76%, #fe2c55 0 20%, transparent 38%),
    linear-gradient(135deg, #050505 0%, #101116 55%, #191a22 100%);
}

.developer-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background: #101116;
  color: #fff;
}

.developer-copy {
  max-width: 760px;
}

.developer-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.developer-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 12px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 850;
}

.developer-mark {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(139, 101, 255, 0.22), rgba(255, 122, 89, 0.18)),
    rgba(255, 255, 255, 0.06);
}

.developer-mark span {
  font-size: 84px;
  font-weight: 900;
  line-height: 0.9;
}

.developer-mark strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 24px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(72px, 10vw, 124px) clamp(18px, 6vw, 92px) clamp(72px, 10vw, 124px);
  padding: clamp(34px, 6vw, 70px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(139, 101, 255, 0.96), rgba(178, 77, 255, 0.9) 48%, rgba(255, 122, 89, 0.9)),
    #8b65ff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.final-cta .app-store-button {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(10, 11, 15, 0.18);
}

.final-cta .app-store-button small {
  color: rgba(15, 16, 22, 0.62);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 32px;
  align-items: start;
  padding: 40px clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  margin: 14px 0 0;
  font-size: 14px;
}

.site-footer p a {
  color: var(--violet);
  font-weight: 750;
}

.footer-links,
.social-links {
  align-items: flex-start;
  flex-direction: column;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mini-social-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  font-size: 10px;
  font-weight: 900;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(42px, 8vw, 86px) 20px;
}

.legal-page h1 {
  font-size: clamp(42px, 7vw, 72px);
}

.legal-page h2 {
  margin-top: 36px;
  font-size: 28px;
  line-height: 1.15;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-page a {
  color: var(--violet);
  font-weight: 750;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 19, 29, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 850;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
}

.support-card {
  margin-top: 34px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
}

.support-card p {
  color: rgba(255, 255, 255, 0.78);
}

.support-card a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-left {
  0%, 100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-3deg) translateY(-16px);
  }
}

@keyframes float-right {
  0%, 100% {
    transform: rotate(6deg) translateY(0);
  }
  50% {
    transform: rotate(4deg) translateY(18px);
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .shot {
    width: min(58vw, 290px);
  }

  .trust-band,
  .steps,
  .social-card-grid,
  .developer-section {
    grid-template-columns: 1fr;
  }

  .review-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .final-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .screenshot-row {
    grid-template-columns: repeat(6, minmax(230px, 1fr));
  }

  .developer-mark {
    min-height: 220px;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-text,
  .section-copy p,
  .steps p,
  .review-card p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .shot {
    width: min(68vw, 250px);
  }

  .shot-primary {
    right: 28%;
  }

  .app-store-button {
    width: 100%;
    justify-content: center;
  }

  .review-track {
    grid-auto-columns: 100%;
  }

  .review-card {
    min-height: 260px;
  }

  .slider-button-prev {
    left: -10px;
  }

  .slider-button-next {
    right: -10px;
  }

  .trust-band {
    transform: none;
    margin-top: 16px;
  }

  .section {
    padding-block: 68px;
  }

  .feature-panel {
    min-height: 500px;
  }

  .screenshot-row {
    grid-template-columns: repeat(6, minmax(220px, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
