/* ─── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --bg:           #0f1012;
  --bg-2:         #1a1c1f;
  --bg-card:      rgba(255,255,255,0.03);
  --border:       rgba(255,255,255,0.08);
  --border-accent: rgba(108,70,255,0.22);
  --accent:       #7b4dff;
  --accent-2:     #a78bfa;
  --accent-glow:  rgba(108,70,255,0.18);
  --pink:         #d458ff;
  --blue:         #516fff;
  --text:         #f3f3f4;
  --muted:        #a5a7ad;
  --muted-2:      #c4c6cc;
  --green:        #67d7a6;
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.5);
  --shadow-accent: 0 8px 40px rgba(108,70,255,0.18);
  --r-sm:         10px;
  --r-md:         16px;
  --r-lg:         24px;
  --r-xl:         32px;
  --max:          1160px;
  --font:         "Inter", system-ui, -apple-system, sans-serif;
}

/* ─── Base ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(81,111,255,0.12), transparent),
    radial-gradient(ellipse 60% 40% at 74% 44%,  rgba(212,88,255,0.08), transparent),
    radial-gradient(ellipse 50% 60% at 10% 80%,  rgba(108,70,255,0.06), transparent);
  min-height: 100vh;
}


a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── Layout utilities ──────────────────────────────────────────────────────── */
.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section--tight {
  padding: 64px 0;
}

.section__header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__header h2 {
  margin-top: 14px;
}

/* ─── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

p { color: var(--muted-2); line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(108,70,255,0.1);
  border: 1px solid rgba(108,70,255,0.25);
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-gold { color: var(--accent); }
.text-pink { color: #d67fff; }
.text-muted { color: var(--muted); }

strong { font-weight: 600; color: var(--text); }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 130ms ease, box-shadow 130ms ease, background 130ms ease, border-color 130ms ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn--primary {
  background: linear-gradient(135deg, #516fff 0%, #7b4dff 60%, #c058ff 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 40px rgba(108,70,255,0.32);
}

.btn--primary:hover {
  box-shadow: 0 16px 48px rgba(108,70,255,0.48);
}

.btn--purple {
  background: linear-gradient(135deg, #7b4dff 0%, #c058ff 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 40px rgba(192,88,255,0.3);
}

.btn--purple:hover {
  box-shadow: 0 16px 48px rgba(192,88,255,0.44);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
}

.btn--sm {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.btn--lg {
  min-height: 60px;
  padding: 0 32px;
  font-size: 1.08rem;
}

.btn__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* ─── Header / Nav ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(15,16,18,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand__name {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand__pro {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  vertical-align: middle;
  background: linear-gradient(135deg, rgba(108,70,255,0.42) 0%, rgba(53,113,255,0.26) 100%);
  border: 1px solid rgba(108,70,255,0.4);
  color: #f4f1ff;
  margin-left: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 130ms, background 130ms;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle__bars {
  display: grid;
  gap: 4px;
}

.nav-toggle__bars span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 200ms, opacity 200ms;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}

.hero__content {
  max-width: 580px;
}

.hero__content h1 {
  margin: 16px 0 22px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
}

.hero__content > p {
  font-size: 1.15rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__trust {
  margin-top: 20px;
  font-size: 0.85rem !important;
  color: var(--muted) !important;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero__trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  display: inline-block;
}

/* ─── Hero canvas visualization ─────────────────────────────────────────────── */
.hero__visual {
  position: relative;
  height: 380px;
}

.hero__canvas {
  width: 100%;
  height: 100%;
  border-radius: var(--r-xl);
  background: var(--bg-2);
  border: 1px solid var(--border);
}

.hero__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  padding: 14px 20px;
  border-radius: var(--r-md);
  background: rgba(6,8,16,0.88);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__badge-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero__badge-from {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--muted);
  letter-spacing: -0.03em;
}

.hero__badge-arrow {
  font-size: 1.2rem;
  color: var(--muted);
}

.hero__badge-num {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
  transition: opacity 0.3s ease;
}

.hero__badge-num.fade { opacity: 0; }

.hero__badge-unit {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: 4px;
}

.hero__badge-tag {
  position: absolute;
  top: -11px;
  right: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #516fff, #7b4dff);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── App compat bar ────────────────────────────────────────────────────────── */
.compat-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.compat-bar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.compat-bar__label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}

.compat-bar__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.compat-bar__app {
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted-2);
  font-weight: 500;
}

/* ─── Steps ─────────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.step {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}

.step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.step:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }

.step::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--border-accent), transparent);
}

.step:last-child::after { display: none; }

.step__num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(214,127,255,0.4);
  margin-bottom: 20px;
}

.step h3 { margin-bottom: 10px; color: var(--text); }
.step p  { font-size: 0.95rem; }

/* ─── Features ──────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 200ms, background 200ms;
}

.feature-card:hover {
  border-color: rgba(108,70,255,0.22);
  background: rgba(108,70,255,0.03);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(108,70,255,0.1);
  border: 1px solid rgba(108,70,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.feature-card h3 { margin-bottom: 8px; color: var(--text); }
.feature-card p  { font-size: 0.92rem; line-height: 1.6; }

/* ─── Presets ───────────────────────────────────────────────────────────────── */
.presets-block {
  padding: 56px;
  border-radius: var(--r-xl);
  background: var(--bg-2);
  border: 1px solid var(--border-accent);
  text-align: center;
  box-shadow: 0 0 80px rgba(108,70,255,0.06);
}

.presets-block h2 { margin-bottom: 14px; }
.presets-block > p { max-width: 500px; margin: 0 auto 36px; }

.preset-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.preset-pill {
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(108,70,255,0.08);
  border: 1px solid rgba(108,70,255,0.22);
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 600;
}

.preset-pill--custom {
  background: rgba(212,88,255,0.1);
  border-color: rgba(212,88,255,0.25);
  color: #d89eff;
}

/* ─── Comparison table ─────────────────────────────────────────────────────── */
.compare-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--muted-2);
}

.compare-table thead th {
  background: var(--bg-2);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

.compare-table .compare-highlight {
  background: rgba(108,70,255,0.04);
  color: var(--text);
  font-weight: 600;
}

.compare-table thead .compare-highlight {
  background: rgba(108,70,255,0.1);
  color: #d67fff;
}

@media (max-width: 768px) {
  .compare-table th,
  .compare-table td {
    padding: 10px 14px;
    font-size: 0.88rem;
  }
}

/* ─── Reviews ──────────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card__stars {
  color: #d67fff;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted-2);
  font-style: italic;
  flex: 1;
}

.review-card__author {
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

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

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 2px;
}

.faq__item {
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 200ms;
}

.faq__item[open] {
  border-color: rgba(108,70,255,0.22);
}

.faq__item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 130ms;
}

.faq__item summary:hover { background: rgba(255,255,255,0.02); }
.faq__item summary::-webkit-details-marker { display: none; }

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
}

.faq__item[open] .faq__chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__body {
  padding: 0 24px 20px;
  color: var(--muted-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq__body a { color: var(--accent); }

/* ─── Pricing cards ─────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  padding: 36px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(81,111,255,0.3);
  box-shadow: 0 0 0 1px rgba(81,111,255,0.12), 0 32px 80px rgba(0,0,0,0.4), 0 0 60px rgba(81,111,255,0.08);
}

.pricing-card--elite {
  border-color: rgba(192,88,255,0.3);
  box-shadow: 0 0 0 1px rgba(192,88,255,0.12), 0 32px 80px rgba(0,0,0,0.4), 0 0 60px rgba(192,88,255,0.08);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-badge--gold {
  background: linear-gradient(135deg, #516fff, #7b4dff);
  color: #fff;
}

.pricing-badge--purple {
  background: linear-gradient(135deg, #7b4dff, #c058ff);
  color: #fff;
}

.pricing-card__tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-card__price {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.pricing-card__price sup {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: super;
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-card__alt {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-card__features {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--muted-2);
}

.pricing-feature__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--green);
}

/* ─── Download cards ────────────────────────────────────────────────────────── */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.download-card {
  padding: 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.download-card__platform {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.download-card__platform svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--muted-2);
}

.download-card__platform h3 {
  font-size: 1rem;
  color: var(--text);
}

.download-card p {
  font-size: 0.88rem;
  margin-bottom: 16px;
  min-height: 36px;
}

/* ─── Content cards (install/support) ──────────────────────────────────────── */
.content-stack {
  display: grid;
  gap: 16px;
  padding-bottom: 80px;
}

.content-card {
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.content-card h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text);
}

.content-card h3 {
  font-size: 1rem;
  margin: 20px 0 8px;
  color: var(--text);
}

.content-card p,
.content-card li {
  font-size: 0.95rem;
  color: var(--muted-2);
  line-height: 1.7;
}

.content-card ul,
.content-card ol {
  padding-left: 20px;
  display: grid;
  gap: 8px;
  margin-top: 8px;
  list-style: revert;
}

.content-card a:not(.btn) { color: var(--accent); text-decoration: none; }
.content-card a:not(.btn):hover { text-decoration: underline; }

.content-card .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ─── CTA section ───────────────────────────────────────────────────────────── */
.cta-block {
  margin: 0 0 100px;
  padding: 72px 56px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(81,111,255,0.08) 0%, rgba(192,88,255,0.08) 100%);
  border: 1px solid rgba(108,70,255,0.18);
  text-align: center;
}

.cta-block h2 { margin-bottom: 16px; }
.cta-block p  { margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }

.cta-block__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-block__sub {
  margin-top: 18px !important;
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  margin-bottom: 0 !important;
}

/* ─── Page hero (inner pages) ───────────────────────────────────────────────── */
.page-hero {
  padding: 72px 0 48px;
  max-width: 680px;
}

.page-hero h1 { margin: 14px 0 16px; font-size: clamp(2rem, 5vw, 3.4rem); }
.page-hero p  { font-size: 1.1rem; max-width: 540px; }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.site-footer__brand img {
  width: 28px;
  height: 28px;
}

.site-footer__copy {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.site-footer__nav a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--muted-2);
  text-decoration: none;
  transition: color 130ms, background 130ms;
}

.site-footer__nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

/* ─── Utility: checklist ────────────────────────────────────────────────────── */
.checklist {
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted-2) !important;
  padding: 0 !important;
  list-style: none !important;
}

.checklist li::before {
  content: '✓';
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__visual { height: 300px; max-width: 560px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step { border-radius: var(--r-lg) !important; }
  .step::after { display: none; }
  .download-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .wrap { width: min(calc(100% - 24px), var(--max)); }
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 56px; }

  .site-nav { display: none; position: absolute; top: calc(100% + 6px); left: 12px; right: 12px;
    flex-direction: column; padding: 12px; border-radius: var(--r-lg);
    background: rgba(15,16,18,0.97); border: 1px solid var(--border);
    box-shadow: var(--shadow-lg); align-items: stretch; gap: 4px; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px 14px; border-radius: var(--r-md); }
  .site-header__inner { position: relative; flex-wrap: wrap; }
  .site-header__cta .btn--ghost { display: none; }
  .nav-toggle { display: inline-flex; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .features-grid { grid-template-columns: 1fr; }
  .presets-block { padding: 36px 24px; }
  .cta-block { padding: 48px 24px; }
  .content-card .split { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.1rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-block__actions { flex-direction: column; align-items: center; }
  .cta-block__actions .btn { width: 100%; max-width: 320px; }
  .compat-bar__inner { flex-direction: column; align-items: flex-start; }
}
