:root {
  color-scheme: dark;
  --brand-primary: #7c4dff;
  --brand-secondary: #1a1a3e;
  --page-background: #0d1117;
  --page-foreground: #fff;
  --surface: rgba(39, 39, 42, 0.46);
  --surface-solid: #17191f;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.11);
  --muted: rgba(255, 255, 255, 0.58);
  --muted-strong: rgba(255, 255, 255, 0.72);
  --container: 1152px;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page-background);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--page-foreground);
  background:
    radial-gradient(circle at 50% -10%, color-mix(in srgb, var(--brand-secondary) 18%, transparent), transparent 34rem),
    var(--page-background);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  border-radius: 10px;
  background: #fff;
  color: #111;
  padding: 10px 14px;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  position: relative;
  padding: 40px 0;
  scroll-margin-top: 92px;
}

.muted {
  color: var(--muted);
}

.eyebrow,
.primary-text {
  color: var(--brand-primary);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  pointer-events: none;
}

.nav-shell {
  display: flex;
  width: fit-content;
  max-width: calc(100vw - 48px);
  min-height: 54px;
  margin: 0 auto;
  align-items: center;
  gap: 17px;
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.74);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(1.4);
  pointer-events: auto;
}

.brand-link {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.brand-logo-wrap {
  display: grid;
  width: 34px;
  height: 34px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 17px;
}

.nav-links a,
.mobile-menu a {
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.mobile-menu a:hover {
  color: #fff;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    opacity 160ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.period-tabs button:focus-visible,
.step:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 3px;
}

.button-nav,
.button-soft {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button-light {
  min-width: 164px;
  background: #fff;
  color: #111319;
}

.button-outline {
  min-width: 164px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.button-outline span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.button-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 12px 28px color-mix(in srgb, var(--brand-primary) 24%, transparent);
}

.button.is-disabled {
  cursor: default;
  opacity: 0.45;
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.mobile-menu {
  width: min(80vw, 360px);
  margin: 10px auto 0;
  padding: 17px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(17, 19, 24, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.mobile-menu:not([hidden]) {
  display: grid;
  gap: 16px;
  animation: menuIn 180ms ease-out;
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--page-background);
}

.hero::before {
  position: absolute;
  inset: -25% 0 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse 58% 42% at 52% 53%,
      rgba(255, 255, 255, 0.085) 0%,
      rgba(255, 255, 255, 0.052) 30%,
      rgba(255, 255, 255, 0.018) 57%,
      transparent 78%
    ),
    radial-gradient(
      ellipse 42% 27% at 66% 31%,
      rgba(255, 255, 255, 0.035) 0%,
      rgba(255, 255, 255, 0.012) 46%,
      transparent 76%
    ),
    radial-gradient(
      ellipse 38% 25% at 34% 25%,
      rgba(255, 255, 255, 0.026) 0%,
      transparent 74%
    );
  content: "";
  transform: scale(1.25);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 1024px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 140px 32px 0;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 14px;
}

.hero-badge span:last-child {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
}

.hero h1 {
  margin: 0;
  background: linear-gradient(91deg, #fff 32.88%, rgba(255, 255, 255, 0.4) 99.12%);
  background-clip: text;
  color: transparent;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.2;
  text-wrap: wrap;
  animation: heroIn 800ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero-description {
  width: min(100%, 466px);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
  animation: heroIn 800ms 120ms cubic-bezier(.22, 1, .36, 1) both;
}

.hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  animation: heroIn 800ms 220ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; filter: blur(12px); transform: translateY(18px); }
  to { opacity: 1; filter: blur(0); transform: none; }
}

.hero-visual {
  position: absolute;
  z-index: 2;
  top: 40%;
  left: 0;
  width: 100%;
  animation: browserIn 1.4s 100ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes browserIn {
  from { opacity: 0; filter: blur(16px); transform: translateY(300px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.hero-browser-svg {
  display: block;
  width: 100%;
}

.hero-fade {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 128px;
  background: linear-gradient(transparent, var(--page-background));
  pointer-events: none;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #141519;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.feature-card::after {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(
    450px circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
    color-mix(in srgb, var(--brand-primary) 22%, transparent),
    transparent 70%
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-image {
  height: 240px;
  -webkit-mask-image: linear-gradient(#000 68%, transparent 100%);
  mask-image: linear-gradient(#000 68%, transparent 100%);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  position: relative;
  z-index: 1;
  padding: 16px 24px 32px;
}

.feature-copy h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.steps-panel {
  width: 100%;
  min-width: 0;
  max-width: 384px;
}

.analytics-card {
  width: 100%;
  min-width: 0;
  grid-column: span 2;
}

.steps-panel > h2 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 560;
}

.steps-panel > p {
  margin: 0 0 20px;
  font-size: 14px;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  color: var(--muted-strong);
  font-size: 13px;
}

.progress-track {
  height: 8px;
  margin: 8px 0 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand-primary);
  transition: width 240ms ease;
}

.steps {
  position: relative;
  display: grid;
}

.steps::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 15px;
  width: 1px;
  background: var(--border);
  content: "";
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 11px 0;
  text-align: left;
  cursor: pointer;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--page-background);
  color: var(--muted);
  font-size: 12px;
}

.step.is-active .step-number {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #fff;
}

.step.is-complete .step-number {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: transparent;
}

.step.is-complete .step-number::after {
  position: absolute;
  color: #fff;
  content: "✓";
  font-size: 18px;
  font-weight: 600;
}

.step-main {
  display: grid;
  gap: 3px;
}

.step-main strong {
  font-size: 15px;
  font-weight: 580;
}

.step-main > span {
  color: var(--muted);
  font-size: 13px;
}

.step-details {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    padding 220ms ease;
}

.step.is-active .step-details {
  max-height: 130px;
  padding-top: 8px;
  opacity: 1;
}

.support-card {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 560;
}

.support-avatars {
  display: flex;
  padding-left: 8px;
}

.support-avatars img {
  width: 27px;
  height: 27px;
  margin-left: -8px;
  border: 2px solid var(--page-background);
  border-radius: 50%;
  object-fit: cover;
}

.support-chat {
  display: grid;
  width: 32px;
  height: 32px;
  margin-left: auto;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  color: transparent;
}

.support-chat::before {
  width: 16px;
  height: 16px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999ba3' stroke-width='2'%3E%3Cpath d='M20 11.5a8 8 0 0 1-8.5 8L5 21l1.7-4.4A8 8 0 1 1 20 11.5Z'/%3E%3Ccircle cx='9' cy='12' r='1' fill='%23999ba3' stroke='none'/%3E%3Ccircle cx='12' cy='12' r='1' fill='%23999ba3' stroke='none'/%3E%3Ccircle cx='15' cy='12' r='1' fill='%23999ba3' stroke='none'/%3E%3C/svg%3E");
  content: "";
}

.analytics-card {
  min-height: 570px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 0, color-mix(in srgb, var(--brand-primary) 13%, transparent), transparent 43%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.analytics-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analytics-head > div {
  display: grid;
  gap: 5px;
}

.analytics-head strong {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.045em;
}

.growth,
.discount {
  border-radius: 999px;
  background: rgba(23, 201, 100, 0.12);
  color: #45d483;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 650;
}

.period-tabs {
  display: flex;
  gap: 5px;
  margin: 30px 0 20px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.period-tabs button {
  flex: 1;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  padding: 8px;
  cursor: pointer;
  font-size: 12px;
}

.period-tabs button.is-active {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.chart {
  position: relative;
  height: 320px;
}

.chart-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 25%;
}

.chart svg {
  position: absolute;
  inset: 20px 0 0;
  width: 100%;
  height: calc(100% - 20px);
  overflow: visible;
}

.chart-area {
  fill: url("#chartFill");
  transition: d 350ms ease;
}

.chart-line {
  fill: none;
  stroke: var(--brand-primary);
  stroke-linecap: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--brand-primary) 50%, transparent));
  transition: d 350ms ease;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.pricing-section {
  overflow: hidden;
  padding-block: 40px;
}

.pricing-glow {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 900px;
  height: 500px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, rgba(255, 113, 215, 0.2), rgba(201, 169, 233, 0.14));
  filter: blur(95px);
  clip-path: polygon(74% 44%, 100% 62%, 98% 27%, 86% 0, 73% 33%, 60% 62%, 52% 68%, 45% 35%, 28% 77%, 0 65%, 18% 100%, 76% 98%);
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  width: min(100%, 576px);
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading .eyebrow {
  display: block;
  font-weight: 500;
  line-height: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 40px;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.price-card {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: rgba(22, 24, 29, 0.76);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(14px);
}

.price-card.is-popular {
  border-color: color-mix(in srgb, var(--brand-primary) 58%, transparent);
}

.popular-label {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  background: var(--brand-primary);
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 650;
}

.price-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.price-card header p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.price-card header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
}

.card-rule {
  height: 1px;
  margin: 0;
  background: var(--border);
}

.price {
  min-height: 56px;
  padding-top: 20px;
}

.price del {
  color: var(--muted);
}

.price strong {
  display: block;
  margin-top: 7px;
  background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.6));
  background-clip: text;
  color: transparent;
  font-size: 36px;
  line-height: 28px;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 24px;
}

.price-card li span {
  color: var(--brand-primary);
  font-size: 24px;
}

.price-card > .button {
  width: 100%;
  margin-top: auto;
}

.discount-copy {
  position: relative;
  z-index: 1;
  margin: 48px 0 0;
  padding: 8px 0;
  color: var(--muted);
  line-height: 24px;
  text-align: center;
}

.discount-copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reviews-heading {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin-bottom: 24px;
}

.reviews-heading h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.reviews-heading .star,
.review-stars {
  color: #f5a524;
}

.reviews-heading .star {
  font-size: 24px;
  line-height: 24px;
}

.reviews-heading strong {
  font-size: 20px;
  line-height: 28px;
}

.reviews-heading a {
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}

.review-card {
  min-height: 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #18181b;
}

.review-card header {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 8px;
  align-items: center;
}

.review-card header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card header div {
  display: grid;
}

.review-card header strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.review-card time {
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.review-stars {
  max-width: 116px;
  overflow: hidden;
  font-size: 20px;
  letter-spacing: 4px;
  line-height: 20px;
  white-space: nowrap;
}

.review-card h3 {
  margin: 16px 0 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.faq-section {
  padding-block: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 48px;
  align-items: start;
}

.faq-grid > h2 {
  margin: 0;
}

.faq-grid > h2 span {
  display: none;
}

.faq-grid > h2 b {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.32));
  background-clip: text;
  color: transparent;
  font-size: 50px;
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 560;
  list-style: none;
}

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

.faq-item summary i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--muted);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0);
}

.faq-item > div {
  padding: 0 44px 22px 0;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 48px 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}

.footer-rule {
  height: 1px;
  margin: 0;
  background: var(--border);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 580;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.system-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.system-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17c964;
  box-shadow: 0 0 0 4px rgba(23, 201, 100, 0.12);
}

.company-info,
.copyright {
  color: rgba(255, 255, 255, 0.38);
  text-align: center;
  font-size: 12px;
  line-height: 16px;
}

.company-info {
  margin-top: 0;
}

.company-info p,
.copyright {
  margin: 0;
}

.content-page {
  width: min(calc(100% - 48px), 800px);
  min-height: 72svh;
  margin: 0 auto;
  padding: 122px 0 70px;
}

.content-page > h1 {
  margin: 0 0 34px;
  font-size: clamp(34px, 5vw, 46px);
  letter-spacing: -0.04em;
}

.content-page section {
  margin-bottom: 38px;
}

.content-page h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-size: 21px;
  font-weight: 620;
}

.section-icon {
  color: var(--brand-primary);
}

.content-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  background: var(--surface-soft);
  color: var(--muted-strong);
}

.content-card p {
  margin: 0;
}

.content-card p + p {
  margin-top: 15px;
}

.content-card strong {
  color: #fff;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-line a {
  color: var(--brand-primary);
  font-weight: 620;
}

.small-copy {
  color: rgba(255, 255, 255, 0.38) !important;
  font-size: 12px;
}

.content-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.content-card dt {
  color: var(--muted);
  font-size: 12px;
}

.content-card dd {
  margin: 3px 0 0;
  color: var(--muted-strong);
  font-weight: 550;
}

.legal-page .content-card {
  line-height: 1.68;
}

.legal-page ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
}

.page-updated {
  margin-top: 20px;
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.not-found h1 {
  margin: 6px 0 10px;
}

.not-found p {
  margin: 0 0 24px;
  color: var(--muted);
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }

  .setup-grid {
    min-height: 1215px;
    grid-template-columns: 1fr;
  }

  .analytics-card {
    grid-column: auto;
  }

  .steps-panel {
    max-width: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-grid > h2 b {
    display: none;
  }

  .faq-grid > h2 span {
    display: inline;
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 16px 0;
  }

  .nav-shell {
    width: fit-content;
    max-width: calc(100vw - 40px);
    min-height: 54px;
    justify-content: flex-start;
    gap: 16px;
    padding: 0 8px;
  }

  .menu-toggle {
    width: 24px;
    height: 52px;
    margin-left: 8px;
  }

  .brand-link {
    width: 40vw;
    min-width: 0;
    flex: 0 0 40vw;
    margin-right: 8px;
  }

  .brand-link > span:last-child {
    white-space: nowrap;
  }

  .button-nav {
    min-width: 80px;
    min-height: 40px;
    margin-left: 8px;
    padding-inline: 16px;
  }

  .container {
    width: 100%;
    padding-inline: 24px;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-inner {
    width: 100%;
    min-height: 100dvh;
    padding: 140px 32px 0;
  }

  .hero-badge {
    max-width: 100%;
    margin-bottom: 18px;
    padding-inline: 18px;
    font-size: 14px;
    line-height: 20px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-description {
    width: 290px;
    max-width: 100%;
    margin-top: 24px;
    font-size: 16px;
    line-height: 28px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 163px;
    min-width: 163px;
    height: 40px;
    min-height: 40px;
    padding: 8px 16px;
  }

  .hero-actions .button-outline span {
    width: 22px;
    height: 22px;
  }

  .feature-grid,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .feature-image {
    height: 240px;
  }

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

  .steps-panel {
    min-height: 605px;
  }

  .steps {
    gap: 12px;
  }

  .steps::before {
    display: none;
  }

  .step {
    min-height: 76px;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: transparent;
  }

  .step:not(.is-active) {
    height: 76px;
    padding-block: 8px;
  }

  .step.is-active {
    min-height: 166px;
    background: rgba(255, 255, 255, 0.08);
  }

  .step-number {
    width: 34px;
    height: 34px;
    align-self: start;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
  }

  .step.is-active .step-number {
    border-color: var(--brand-primary);
    background: transparent;
    color: var(--brand-primary);
  }

  .step.is-complete .step-number {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: transparent;
  }

  .step-main strong {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .step-main > span {
    font-size: 12px;
    line-height: 16px;
  }

  .step.is-active .step-details {
    max-height: 80px;
    padding: 12px 12px 0 1px;
  }

  .support-card {
    min-height: 58px;
    margin-top: 16px;
    padding: 8px;
  }

  .analytics-card {
    min-height: 520px;
  }

  .analytics-card {
    min-height: 586px;
    padding: 20px;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: #18181b;
  }

  .analytics-head {
    align-items: flex-end;
  }

  .analytics-head strong {
    font-size: 36px;
  }

  .period-tabs {
    overflow-x: auto;
  }

  .period-tabs button {
    min-width: 70px;
  }

  .chart {
    height: 235px;
  }

  .chart-labels span:nth-child(even) {
    display: none;
  }

  .pricing-grid .price-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .section-heading {
    min-height: 181px;
    margin-bottom: 33px;
  }

  .section-heading h2 {
    font-size: 36px;
    line-height: 40px;
  }

  .section-heading p {
    font-size: 18px;
    line-height: 28px;
  }

  .price-card {
    padding: 24px;
  }

  .price-card:nth-child(1) {
    min-height: 365px;
  }

  .price-card:nth-child(2) {
    min-height: 495px;
  }

  .price-card:nth-child(3) {
    min-height: 461px;
  }

  .reviews-heading {
    align-items: center;
  }

  .reviews-heading h2 {
    width: auto;
    text-align: center;
  }

  .review-card {
    min-height: 0;
  }

  .faq-section {
    padding-block: 40px;
  }

  .faq-grid {
    gap: 24px;
  }

  .faq-grid > h2 {
    padding-inline: 8px;
    line-height: 28px;
  }

  .faq-grid > h2 span {
    font-size: 30px;
    line-height: 28px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item summary {
    min-height: 0;
    padding: 24px 0;
    font-size: 16px;
    line-height: 24px;
  }

  .footer-brand-row {
    flex-wrap: wrap;
  }

  .content-page {
    width: min(calc(100% - 32px), var(--container));
    padding-top: 110px;
  }

  .content-card {
    padding: 20px;
  }
}

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

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