:root {
  --landing-ink: #0f172a;
  --landing-muted: #64748b;
  --landing-blue: #1d4ed8;
  --landing-blue-soft: #3b82f6;
  --landing-gold: #eab308;
  --landing-surface: #ffffff;
  --landing-line: #e2e8f0;
  --landing-font: "Manrope", system-ui, sans-serif;
  --landing-display: "Source Serif 4", Georgia, serif;
}

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

body {
  margin: 0;
}

.landing-body {
  font-family: var(--landing-font);
  color: var(--landing-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(59, 130, 246, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(234, 179, 8, 0.12), transparent 50%),
    linear-gradient(180deg, #f4f7fb 0%, #eef2f7 40%, #f8fafc 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.landing-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
}

.landing-logo {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.landing-logo-brand {
  color: var(--landing-ink);
}

.landing-logo-74 {
  color: var(--landing-gold);
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.landing-nav-link {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 4px;
}

.landing-nav-link:hover {
  color: var(--landing-blue);
}

.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
}

.landing-btn:active {
  transform: scale(0.98);
}

.landing-btn-sm {
  padding: 9px 16px;
  font-size: 0.875rem;
}

.landing-btn-lg {
  padding: 14px 24px;
  font-size: 1rem;
}

.landing-btn-primary {
  background: var(--landing-blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.22);
}

.landing-btn-primary:hover {
  background: #1e40af;
}

.landing-btn-ghost {
  background: #fff;
  color: var(--landing-blue);
  border: 1px solid #cbd5e1;
}

.landing-btn-ghost:hover {
  background: #eff6ff;
}

/* —— Hero —— */
.landing-hero {
  position: relative;
  padding: clamp(40px, 8vw, 88px) 0 clamp(48px, 7vw, 72px);
  overflow: hidden;
}

.landing-hero-glow {
  position: absolute;
  inset: 8% 5% auto auto;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent 68%);
  pointer-events: none;
  animation: landing-glow 8s ease-in-out infinite alternate;
}

@keyframes landing-glow {
  from {
    transform: translate(0, 0) scale(1);
    opacity: 0.85;
  }
  to {
    transform: translate(-12px, 18px) scale(1.06);
    opacity: 1;
  }
}

.landing-hero-grid {
  position: relative;
  display: grid;
  gap: 40px;
  align-items: center;
}

.landing-brand-mark {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  animation: landing-rise 0.7s ease both;
}

.landing-beta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  padding: 5px 10px;
  border: 1px solid rgba(234, 179, 8, 0.45);
  border-radius: 6px;
  background: rgba(234, 179, 8, 0.12);
  color: #a16207;
  font-family: var(--landing-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.landing-hero h1 {
  margin: 0 0 18px;
  font-family: var(--landing-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  animation: landing-rise 0.75s ease 0.06s both;
}

.landing-hero-line {
  display: block;
}

.landing-hero-line--accent {
  color: var(--landing-blue-soft);
}

.landing-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #475569;
  max-width: 34rem;
  margin: 0 0 28px;
  animation: landing-rise 0.75s ease 0.12s both;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  animation: landing-rise 0.75s ease 0.18s both;
}

.landing-hero-note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--landing-muted);
  animation: landing-rise 0.75s ease 0.22s both;
}

.landing-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--landing-blue);
  margin: 0 0 10px;
  text-align: center;
}

.landing-section-title {
  text-align: center;
  font-family: var(--landing-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.landing-section-title--left {
  text-align: left;
}

.landing-section-lead {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 32px;
  color: #64748b;
  line-height: 1.6;
  font-size: 1.02rem;
}

.landing-section-lead--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

@keyframes landing-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero product visual */
.landing-hero-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  animation: landing-rise 0.9s ease 0.15s both;
}

.landing-device {
  position: absolute;
  border-radius: 28px;
  background: #0a1628;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.28);
  border: 3px solid #1e293b;
  overflow: hidden;
}

.landing-device--back {
  width: min(180px, 38vw);
  aspect-ratio: 472 / 1024;
  height: auto;
  transform: rotate(-10deg) translate(-28%, 8%);
  opacity: 0.95;
}

.landing-device--front {
  width: min(210px, 44vw);
  aspect-ratio: 472 / 1024;
  height: auto;
  transform: rotate(6deg) translate(18%, -2%);
  z-index: 2;
}

.landing-device-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.landing-screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 40px;
  align-items: end;
}

.landing-screen {
  margin: 0;
  text-align: center;
}

.landing-screen img {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  height: auto;
  border-radius: 22px;
  border: 3px solid #1e293b;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.2);
  background: #0a1628;
}

.landing-screen figcaption {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--landing-ink);
}

/* Features */
.landing-features {
  padding: 24px 0 56px;
}

.landing-feature-grid {
  display: grid;
  gap: 14px;
}

.landing-feature {
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(6px);
}

.landing-feature h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.landing-feature p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
  font-size: 0.9375rem;
}

.landing-feature-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 12px;
  font-size: 1.125rem;
  margin-bottom: 12px;
}

/* QR band */
.landing-qr-band {
  padding: 8px 0 48px;
}

.landing-qr-band-inner {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--landing-line);
}

.landing-qr-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  max-width: 240px;
  margin: 0 auto;
}

.landing-qr-title {
  font-weight: 600;
  margin-bottom: 16px;
}

.landing-qr-img {
  display: block;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: #fff;
}

.landing-qr-url {
  font-weight: 700;
  color: var(--landing-blue);
  margin: 0 0 6px;
}

.landing-qr-hint {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
}

.landing-install {
  padding: 56px 0 40px;
}

.landing-install-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 8px auto 36px;
  max-width: 200px;
}

.landing-install-icon {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 26px;
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.18),
    0 2px 6px rgba(15, 23, 42, 0.08);
}

.landing-install-preview-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.landing-install-preview-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--landing-ink);
  letter-spacing: -0.01em;
}

.landing-install-preview-note {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--landing-muted);
}

.landing-install-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 40px;
  margin-top: 8px;
}

.landing-install-block h3 {
  margin: 0 0 14px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--landing-ink);
}

.landing-install-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: #334155;
  line-height: 1.55;
}

.landing-install-steps li + li {
  margin-top: 10px;
}

.landing-install-hint {
  margin: 16px 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--landing-muted);
}

/* Catalog / shared */
.landing-catalog-section {
  padding: 24px 0 48px;
}

.landing-catalog-lead {
  max-width: 42rem;
}

.landing-catalog-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #1e3a5f;
  margin: 0 0 28px;
}

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

.landing-catalog-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}

.landing-catalog-item--paid {
  border-color: #93c5fd;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}

.landing-catalog-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--landing-blue);
  color: #fff;
  margin-bottom: 12px;
}

.landing-catalog-badge--free {
  background: #f1f5f9;
  color: #64748b;
}

.landing-catalog-item h2,
.landing-catalog-item h3 {
  font-size: 1.0625rem;
  margin: 0 0 8px;
}

.landing-catalog-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--landing-blue);
  margin: 0 0 4px;
  line-height: 1.1;
}

.landing-catalog-period {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0 0 12px;
}

.landing-catalog-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
  margin: 0 0 12px;
}

.landing-catalog-features {
  margin: 0 0 16px;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.landing-catalog-features li {
  margin-bottom: 4px;
}

.landing-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.landing-catalog-account {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}

.landing-catalog-account h2 {
  font-size: 1.125rem;
  margin: 0 0 10px;
}

.landing-catalog-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.landing-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
}

.landing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.landing-table th,
.landing-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e2e8f0;
}

.landing-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #0f172a;
}

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

.landing-table-caption {
  caption-side: top;
  text-align: left;
  font-weight: 600;
  padding: 12px 16px;
  color: #0f172a;
}

.landing-compare {
  padding: 72px 0 40px;
}

.landing-compare-wrap {
  margin-top: 8px;
  overflow: hidden;
  padding: 0;
}

.landing-compare-caption {
  margin: 0;
  padding: 12px 16px;
  font-weight: 600;
  color: #0f172a;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.landing-compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.landing-compare-table {
  width: 100%;
  min-width: 100%;
  table-layout: fixed;
  font-size: 0.875rem;
  border-collapse: separate;
  border-spacing: 0;
}

.landing-compare-table th,
.landing-compare-table td {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  background: #fff;
}

.landing-compare-table thead th {
  background: #f8fafc;
}

.landing-compare-table thead th:first-child,
.landing-compare-table tbody th {
  text-align: left;
  white-space: normal;
  width: 22%;
  font-weight: 600;
  color: var(--landing-ink);
  background: #f8fafc;
  position: sticky;
  left: 0;
  z-index: 3;
  box-shadow: 1px 0 0 #e2e8f0;
}

.landing-compare-table thead th:first-child {
  z-index: 5;
}

.landing-compare-table th.landing-compare-pilot,
.landing-compare-table td.landing-compare-pilot {
  position: sticky;
  right: 0;
  z-index: 3;
  width: 16%;
  background: #edf3ff;
  color: var(--landing-ink);
  font-weight: 700;
  box-shadow: -1px 0 0 #bfdbfe;
}

.landing-compare-table thead th.landing-compare-pilot {
  z-index: 5;
  background: #dbeafe;
  color: var(--landing-blue);
}

.landing-compare-table thead th:not(:first-child):not(.landing-compare-pilot),
.landing-compare-table tbody td:not(.landing-compare-pilot) {
  width: 15.5%;
  padding-left: 12px;
  padding-right: 12px;
}

.landing-cmp {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.landing-cmp--yes {
  color: #15803d;
}

.landing-cmp--no {
  color: #94a3b8;
  font-weight: 600;
}

.landing-compare-note {
  margin: 14px 0 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--landing-muted);
  max-width: 52rem;
}

.landing-legal-strip {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 16px;
}

.landing-legal-strip a {
  color: var(--landing-blue);
}

.landing-corporate {
  padding: 64px 0 40px;
}

.landing-corporate-list {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
  max-width: 40rem;
}

.landing-corporate-list li {
  position: relative;
  padding: 14px 0 14px 1.1rem;
  border-bottom: 1px solid var(--landing-line);
  color: #334155;
  line-height: 1.55;
}

.landing-corporate-list li:first-child {
  border-top: 1px solid var(--landing-line);
}

.landing-corporate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--landing-gold);
}

.landing-corporate-list strong {
  color: var(--landing-ink);
  font-weight: 700;
}

.landing-corporate-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.landing-corporate-contact {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--landing-muted);
  line-height: 1.45;
}

.landing-corporate-contact a {
  color: var(--landing-blue);
  font-weight: 600;
  text-decoration: none;
}

.landing-corporate-contact a:hover {
  text-decoration: underline;
}

.landing-feedback {
  padding: 64px 0 40px;
}

.landing-feedback-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  max-width: 36rem;
  display: grid;
  gap: 10px;
}

.landing-feedback-list li {
  position: relative;
  padding-left: 1.1rem;
  color: #334155;
  line-height: 1.45;
}

.landing-feedback-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--landing-gold);
}

.landing-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-bottom: 20px;
}

.landing-feedback-mail {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.landing-feedback-mail a {
  color: var(--landing-blue);
  text-decoration: none;
}

.landing-feedback-mail a:hover {
  text-decoration: underline;
}

.landing-feedback-publish {
  margin: 0 0 24px;
  max-width: 40rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--landing-ink);
}

.landing-feedback-board {
  border-top: 1px solid var(--landing-line);
  padding-top: 20px;
}

.landing-feedback-board-empty {
  margin: 0;
  font-size: 0.875rem;
  color: var(--landing-muted);
  line-height: 1.5;
}

.landing-cta {
  padding: 0 0 56px;
}

.landing-cta-inner {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 140%);
  color: #fff;
  border-radius: 24px;
  padding: 36px 24px;
  text-align: center;
}

.landing-cta-inner h2 {
  font-family: var(--landing-display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0 0 10px;
}

.landing-cta-inner p {
  color: #cbd5e1;
  margin: 0 0 20px;
  line-height: 1.5;
}

.landing-footer {
  border-top: 1px solid #e2e8f0;
  padding: 20px 0 28px;
  color: #64748b;
  font-size: 0.875rem;
}

.landing-footer a {
  color: var(--landing-blue);
  text-decoration: none;
}

.landing-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 12px;
}

.landing-footer-meta {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.landing-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Doc / secondary pages */
.landing-page-main {
  padding: 40px 0 56px;
}

.landing-doc {
  max-width: 720px;
}

.landing-doc h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.landing-doc h2 {
  font-size: 1.125rem;
  margin: 28px 0 10px;
}

.landing-doc p,
.landing-doc li {
  line-height: 1.65;
  color: #334155;
}

.landing-doc-updated {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 20px;
}

.landing-doc-list {
  padding-left: 1.25rem;
  margin: 0 0 12px;
}

.landing-doc-list li {
  margin-bottom: 8px;
}

.landing-requisites-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 20px 0;
}

.landing-dl {
  margin: 0;
}

.landing-dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 8px 16px;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.landing-dl > div:last-child {
  border-bottom: none;
}

.landing-dl dt {
  font-weight: 600;
  color: #64748b;
  font-size: 0.875rem;
}

.landing-dl dd {
  margin: 0;
  color: #0f172a;
}

.landing-pricing-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.landing-pricing-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
}

.landing-pricing-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.landing-pricing-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--landing-blue);
  margin-bottom: 12px;
}

.landing-pricing-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.landing-pricing-card li {
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .landing-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
  }

  .landing-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .landing-screens {
    gap: 20px;
    margin-bottom: 48px;
  }

  .landing-screen img {
    max-width: none;
  }

  .landing-install-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-qr-band-inner {
    grid-template-columns: 1fr auto;
    padding: 32px 36px;
  }

  .landing-qr-card {
    margin: 0;
  }

  .landing-cta-inner {
    padding: 44px 48px;
  }

  .landing-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-catalog-section .landing-catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-catalog-section .landing-catalog-item--paid {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .landing-nav-link {
    display: none;
  }

  .landing-hero-visual {
    min-height: 300px;
  }

  .landing-screens {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-compare-caption {
    padding: 10px 12px;
    font-size: 0.875rem;
  }

  .landing-compare-table {
    min-width: 0;
    font-size: 0.75rem;
  }

  .landing-compare-table th,
  .landing-compare-table td {
    padding: 10px 6px;
  }

  .landing-compare-table thead th:first-child,
  .landing-compare-table tbody th {
    min-width: 4.75rem;
    max-width: 5.25rem;
    width: 5rem;
    padding-left: 8px;
    padding-right: 6px;
    font-size: 0.6875rem;
    line-height: 1.25;
    hyphens: auto;
  }

  .landing-compare-table thead th:not(:first-child):not(.landing-compare-pilot),
  .landing-compare-table tbody td:not(.landing-compare-pilot) {
    min-width: 3.35rem;
    width: 3.35rem;
    max-width: 3.6rem;
    padding-left: 4px;
    padding-right: 4px;
    white-space: normal;
    line-height: 1.2;
  }

  .landing-compare-table th.landing-compare-pilot,
  .landing-compare-table td.landing-compare-pilot {
    min-width: 3.6rem;
    width: 3.6rem;
    padding-left: 4px;
    padding-right: 6px;
    white-space: normal;
    line-height: 1.2;
  }

  .landing-cmp {
    font-size: 0.6875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-hero-glow,
  .landing-brand-mark,
  .landing-hero h1,
  .landing-lead,
  .landing-hero-actions,
  .landing-hero-note,
  .landing-hero-visual {
    animation: none !important;
  }
}
