:root {
  --bg-top: #7a5cf2;
  --bg-mid: #6e57e8;
  --bg-bottom: #17131f;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.84);
  --surface-dark: rgba(17, 13, 24, 0.9);
  --text: #191522;
  --text-light: #ffffff;
  --muted: #5f5a74;
  --muted-light: rgba(255, 255, 255, 0.8);
  --line: rgba(25, 21, 34, 0.1);
  --line-light: rgba(255, 255, 255, 0.14);
  --accent: #a88cff;
  --accent-deep: #5b43d6;
  --shadow: 0 30px 80px rgba(20, 10, 40, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 42%, var(--bg-bottom) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 88%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1160px, calc(100% - 24px));
  margin: 0 auto;
  padding: 6px 0 36px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(12, 8, 24, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

main {
  display: grid;
  gap: 28px;
}

.hero-shell,
.feature-section,
.screenshot-section,
.support-card,
.policy-block {
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 34px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 78px 42px 56px;
  border-radius: 38px;
  color: var(--text-light);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 28%),
    radial-gradient(circle at 86% 28%, rgba(220, 208, 255, 0.28), transparent 18%),
    linear-gradient(180deg, rgba(124, 99, 243, 0.98) 0%, rgba(116, 89, 234, 0.98) 100%);
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 66%);
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.93;
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 800;
}

.lead {
  max-width: 54ch;
  margin: 20px 0 0;
  color: var(--muted-light);
  line-height: 1.85;
  font-size: 1.03rem;
}

.hero-second-line {
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: #fff;
  color: #1b1628;
  box-shadow: 0 16px 30px rgba(10, 10, 20, 0.16);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.store-badge {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 168px;
  min-height: 64px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #090909;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.store-badge-small {
  font-size: 0.72rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.store-badge-large {
  margin-top: 4px;
  font-size: 1.52rem;
  line-height: 1;
  font-weight: 800;
}

.store-badge-note {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.store-badge-disabled {
  opacity: 0.82;
  cursor: default;
}

.hero-media {
  display: grid;
  place-items: center;
}

.hero-screenshot {
  display: block;
  width: min(100%, 480px);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(18, 10, 36, 0.34);
  transform: rotate(-2deg);
}

.section {
  margin-top: 2px;
}

.feature-section,
.support-card,
.faq-section {
  background: var(--surface);
  color: var(--text);
}

.feature-section {
  padding: 34px 34px 36px;
  border-radius: 34px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.title-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-deep);
  flex: 0 0 auto;
}

.feature-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.feature-image {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(24, 14, 45, 0.16);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.faq-section {
  padding: 34px 34px 36px;
  border-radius: 34px;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--bg-top), var(--accent-deep));
  color: #fff;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(91, 67, 214, 0.26);
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.feature-item p,
.support-card p,
.policy-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.screenshot-section {
  padding: 34px 34px 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, #18131f 0%, #110d18 100%);
  color: #fff;
}

.section-title-light {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.section-title-light p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.title-dot-light {
  background: #fff;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
}

.support-section {
  display: grid;
  place-items: start;
}

.support-card {
  width: min(100%, 720px);
  padding: 28px 28px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 241, 255, 0.94));
}

.support-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

.support-card p + p {
  margin-top: 10px;
}

.seo-link-section {
  padding: 34px;
  border-radius: 34px;
  background: var(--surface);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.seo-link-card {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.seo-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 67, 214, 0.3);
}

.seo-link-card strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.05rem;
}

.seo-link-card span {
  color: var(--muted);
  line-height: 1.65;
}

.landing-page {
  padding: 28px 0 36px;
}

.landing-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  padding-top: 64px;
}

.landing-hero h1 {
  max-width: 11ch;
}

.landing-section {
  padding: 34px;
  border-radius: 34px;
  background: var(--surface);
}

.landing-copy {
  display: grid;
  gap: 16px;
}

.landing-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.landing-copy h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

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

.landing-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #faf8ff 100%);
}

.landing-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.landing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0 0;
}

.page-nav a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.site-footer {
  margin-top: 28px;
}

.policy-page {
  padding: 72px 0 36px;
}

.policy-heading {
  margin-bottom: 18px;
}

.policy-heading h1,
.policy-meta,
.policy-heading .eyebrow {
  color: #fff;
}

.policy-heading h1 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.policy-meta {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.policy-content {
  display: grid;
  gap: 16px;
}

.policy-block {
  padding: 24px;
  border-radius: 28px;
  background: var(--surface);
}

.legal-render {
  display: grid;
  gap: 12px;
}

.legal-paragraph,
.legal-subheading,
.legal-bullet {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
}

.legal-subheading {
  margin-top: 10px;
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.legal-bullet {
  padding-left: 18px;
  position: relative;
}

.legal-bullet::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-deep);
}

@media (max-width: 980px) {
  .hero-shell,
  .feature-content,
  .screenshot-grid,
  .seo-link-grid,
  .landing-hero,
  .landing-columns {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding: 62px 24px 36px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-screenshot {
    width: min(100%, 420px);
  }

  .feature-section,
  .screenshot-section,
  .faq-section,
  .seo-link-section,
  .landing-section {
    padding: 26px 20px 28px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, 1160px);
  }

  .hero-shell {
    gap: 24px;
    border-radius: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.7rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-item {
    padding: 16px;
  }

  .support-card,
  .policy-block {
    padding: 20px;
  }
}
