:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f8f8fb;
  --panel: #ffffff;
  --panel-strong: #f4f4f7;
  --text: #17131b;
  --muted: #625967;
  --dim: #8a8390;
  --pink: #e52679;
  --line: rgba(23, 19, 27, 0.12);
  --shadow: 0 18px 48px rgba(23, 19, 27, 0.1);
  --btn: #a05de2;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
  border-bottom: 1px solid #eee;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(23, 19, 27, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta,
.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta {
  padding: 10px 18px;
  color: #fff;
  background: var(--btn);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  align-items: center;
  justify-content: center;
  width: min(1180px, calc(100% - 40px));
  min-height: min(760px, calc(100vh - 76px));
  margin: 0 auto;
  padding: 78px 0 96px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 8vw, 5.1rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-text {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 800;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--btn);
  box-shadow: var(--shadow);
}

.button.secondary {
  background: #fff;
  color: var(--text);
}

.store-strip,
.section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.store-strip {
  display: grid;
  grid-template-columns: 180px 180px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
}

.store-strip div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 8px;
  background: var(--panel);
}

.store-strip div > span:not(.store-icon) {
  display: grid;
  gap: 4px;
}

.store-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
}

.store-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.store-icon.play svg {
  width: 24px;
  height: 24px;
}

.store-strip span,
.store-strip p,
.section-heading p,
.feature-card p,
.steps p,
.faq-list p,
.legal-section p,
.site-footer span,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.store-strip small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.2;
}

.store-strip p {
  margin: 0;
}

.section {
  padding: 110px 0 0;
}

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

.section-heading p {
  font-size: 1.03rem;
}

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

.feature-card,
.steps article,
.faq-list details,
.contact-panel,
.legal-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-card {
  min-height: 236px;
  padding: 26px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--btn);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 18px;
  padding: 24px;
}

.steps article span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  grid-row: span 2;
  border-radius: 50%;
  background: var(--panel-strong);
  color: var(--pink);
  font-weight: 900;
}

.steps h3,
.steps p {
  margin-bottom: 0;
}

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

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 22px;
}

.contact-section {
  padding-bottom: 40px;
}

.contact-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.contact-panel div {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-panel div:last-child {
  border-bottom: 0;
}

.contact-panel span {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel strong,
.contact-panel a {
  overflow-wrap: anywhere;
  line-height: 1.5;
}

.contact-panel a {
  color: var(--pink);
  font-weight: 800;
}

.legal-section {
  border: 0;
  background: transparent;
  padding-top: 110px;
}

.legal-section h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

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

.legal-links a {
  display: grid;
  gap: 12px;
  min-height: 158px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(23, 19, 27, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.legal-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 19, 27, 0.28);
  box-shadow: var(--shadow);
}

.legal-links span {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-links strong {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.5;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 54px 0 34px;
  color: var(--muted);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a:hover {
  color: var(--text);
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    position: relative;
    z-index: 30;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    padding-top: 38px;
  }

  .store-strip,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .store-strip,
  .feature-grid,
  .split-section,
  .legal-links,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 78px;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(2.9rem, 15vw, 4.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .feature-card {
    min-height: auto;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .steps article span {
    grid-row: auto;
    margin-bottom: 16px;
  }
}
