:root {
  color-scheme: light;
  --bg: #eef5f7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --ink: #122030;
  --muted: #5d6d7f;
  --stroke: rgba(18, 32, 48, 0.08);
  --primary: #0059ff;
  --primary-deep: #0037a6;
  --accent: #12a57d;
  --shadow: 0 28px 50px rgba(18, 32, 48, 0.09);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 89, 255, 0.14), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(18, 165, 125, 0.16), transparent 22%),
    linear-gradient(180deg, #fdfefe 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.plan-card,
.download-card,
.step-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 2rem;
}

.hero-panel {
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(0, 89, 255, 0.1), rgba(18, 165, 125, 0.08)),
    var(--surface-strong);
}

.eyebrow,
.panel-label,
.platform-label,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.panel-label,
.platform-label {
  background: rgba(0, 89, 255, 0.08);
  color: var(--primary-deep);
}

.hero h1,
.section-head h2 {
  margin: 1rem 0 0.8rem;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.94;
}

.hero p,
.hero-panel p,
.plan-copy,
.download-card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero p {
  max-width: 44rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.primary-button,
.ghost-button,
.inline-link,
.soon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.primary-button {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 89, 255, 0.24);
}

.primary-button.compact {
  min-height: 2.9rem;
}

.ghost-button,
.inline-link,
.soon-pill {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.7);
}

.soon-pill {
  width: fit-content;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.plans-grid,
.downloads-grid,
.steps-grid {
  display: grid;
  gap: 1rem;
}

.plans-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.downloads-grid,
.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.plan-card,
.download-card,
.step-card {
  padding: 1.4rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.footer-copy strong {
  display: block;
  font-size: 1rem;
}

.footer-copy p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--primary-deep);
  font-weight: 800;
  text-decoration: none;
}

.plan-name {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.plan-price {
  display: block;
  margin: 0.9rem 0 0.55rem;
  font-size: 2.4rem;
  letter-spacing: -0.05em;
}

.step-number {
  margin-bottom: 1rem;
  background: rgba(18, 165, 125, 0.12);
  color: var(--accent);
}

.hero-panel strong,
.download-card strong,
.step-card strong {
  display: block;
  margin: 1rem 0 0.65rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100%, calc(100% - 1rem));
    padding-top: 1rem;
  }

  .hero-copy,
  .hero-panel,
  .plan-card,
  .download-card,
  .step-card {
    border-radius: 24px;
  }

  .hero-actions,
  .section-head {
    flex-direction: column;
    align-items: stretch;
  }

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

  .soon-pill {
    width: 100%;
  }
}
