:root {
  --font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #ffffff;
  --bg-soft: #f8f4ff;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-strong: #f6efff;
  --text: #231a33;
  --text-muted: #6f6586;
  --border: rgba(125, 100, 173, 0.16);
  --accent: #8f79b8;
  --accent-soft: #b8a6d8;
  --shadow: 0 28px 64px rgba(77, 55, 112, 0.12);
  --radius-xl: 3.6rem;
  --radius-lg: 2.6rem;
  --radius-md: 1.8rem;
  --pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(184, 166, 216, 0.18), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(143, 121, 184, 0.12), transparent 20%),
    linear-gradient(180deg, #ffffff, var(--bg-soft));
  font: 1.6rem/1.6 var(--font-family);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.page {
  min-height: 100vh;
  padding: 1.4rem 0 4.8rem;
}

.container {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  position: sticky;
  top: 1.2rem;
  z-index: 20;
  margin-bottom: 2rem;
}

.header-shell,
.hero-shell,
.section-panel,
.stat-card,
.note-card,
.download-card,
.feature-card,
.pricing-card,
.faq-item,
.final-card {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  min-height: 7.2rem;
  padding: 1.2rem 1.6rem;
  border-radius: 2rem;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.brand-icon {
  display: inline-grid;
  place-items: center;
  width: 4.8rem;
  height: 4.2rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(143, 121, 184, 0.18);
  background: var(--surface-strong);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 1.8rem;
  line-height: 1.1;
}

.brand-copy span,
.eyebrow,
.pricing-badge {
  color: var(--text-muted);
}

.brand-copy span {
  font-size: 1.25rem;
}

.main-nav,
.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.main-nav {
  justify-content: center;
}

.main-nav a {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

.main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.4rem;
  padding: 1.4rem 2rem;
  border-radius: var(--pill);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.main-button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 0 1px rgba(143, 121, 184, 0.14), 0 10px 24px rgba(143, 121, 184, 0.22);
}

.main-button.secondary {
  border: 1px solid rgba(143, 121, 184, 0.16);
  background: rgba(143, 121, 184, 0.08);
  color: var(--text);
}

.header-button {
  min-height: 4.8rem;
  padding-inline: 1.8rem;
}

.hero-section,
.section {
  padding-top: 1rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 2rem;
  padding: 3.4rem;
  border-radius: var(--radius-xl);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.final-card h2,
.download-card h3,
.pricing-card h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 6vw, 6.4rem);
  line-height: 0.96;
}

.hero-description,
.section-head p,
.note-card p,
.stat-card span,
.download-card p,
.feature-card p,
.pricing-card p,
.faq-item p,
.final-card p {
  margin: 0;
  color: var(--text-muted);
}

.hero-description {
  max-width: 60rem;
  margin-top: 1.6rem;
  font-size: 1.8rem;
}

.hero-actions {
  margin-top: 2rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.8rem;
  border-radius: var(--radius-md);
}

.stat-card strong {
  font-size: 1.8rem;
}

.hero-side {
  display: grid;
  gap: 1.4rem;
}

.note-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.note-card strong,
.feature-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  letter-spacing: -0.03em;
}

.section-panel {
  padding: 3rem;
  border-radius: var(--radius-xl);
}

.section-head {
  max-width: 70rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(3rem, 4.2vw, 4.6rem);
  line-height: 1.02;
}

.section-head p {
  margin-top: 1.1rem;
  font-size: 1.7rem;
}

.downloads-grid,
.benefits-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.download-card,
.feature-card,
.pricing-card {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.download-card-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: start;
}

.download-icon-frame {
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(143, 121, 184, 0.16);
  background: var(--surface-strong);
}

.download-icon-frame-tv {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--accent);
}

.download-icon {
  width: 2.3rem;
  height: 2.3rem;
  object-fit: contain;
}

.download-card h3,
.pricing-card h3 {
  font-size: 2.2rem;
  line-height: 1.05;
}

.download-card p {
  margin-top: 0.6rem;
  font-size: 1.5rem;
}

.download-actions {
  margin-top: auto;
}

.feature-card p {
  font-size: 1.5rem;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  min-height: 3.2rem;
  padding: 0.6rem 1rem;
  border-radius: var(--pill);
  background: rgba(143, 121, 184, 0.08);
  font-size: 1.2rem;
  font-weight: 700;
}

.pricing-card p {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
}

.section-actions {
  margin-top: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 2rem 2.2rem;
  border-radius: var(--radius-md);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.7rem;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 1rem;
  font-size: 1.5rem;
}

.final-section {
  padding-top: 1.6rem;
}

.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  border-radius: var(--radius-xl);
}

.final-card h2 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.final-card p {
  margin-top: 1rem;
  max-width: 58rem;
  font-size: 1.7rem;
}

.full-width {
  width: 100%;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .hero-shell,
  .downloads-grid,
  .benefits-grid,
  .pricing-grid,
  .stats-row {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

@media (max-width: 720px) {
  .container {
    padding: 0 1.4rem;
  }

  .header-shell,
  .section-panel,
  .hero-shell,
  .download-card,
  .feature-card,
  .pricing-card,
  .note-card,
  .final-card {
    border-radius: 2.2rem;
  }

  .header-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero-shell,
  .section-panel,
  .final-card {
    padding: 2.4rem 2rem;
  }
}
