:root {
  color-scheme: light;
  --bg: #f7f7fa;
  --bg-strong: #ffffff;
  --ink: #1f1724;
  --muted: #625a68;
  --soft: #ebe8ef;
  --line: #ded8e4;
  --violet: #714b67;
  --violet-strong: #56364f;
  --plum: #211827;
  --slate: #253145;
  --blue: #45688d;
  --cyan: #4f8aa0;
  --amber: #b8823a;
  --green: #547064;
  --shadow: 0 20px 54px rgba(31, 23, 36, 0.13);
  --shadow-soft: 0 12px 34px rgba(31, 23, 36, 0.09);
  --radius: 18px;
  --container: 1180px;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(120deg, rgba(69, 104, 141, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0, var(--bg) 38%, #eef3f5 100%);
  color: var(--ink);
  font-family: Inter, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(113, 75, 103, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(31, 23, 36, 0.06);
  animation: header-drop 0.62s var(--ease-out) both;
  transition: min-height 0.24s ease, padding 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(31, 23, 36, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--violet), var(--blue));
  color: #fff;
  font-size: 0.88rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(113, 75, 103, 0.22);
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) rotate(-2deg);
  box-shadow: 0 14px 30px rgba(113, 75, 103, 0.28);
}

.brand-text {
  overflow-wrap: anywhere;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a,
.text-link {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--violet);
}

.site-nav a:focus-visible,
.text-link:focus-visible,
.footer-links a:focus-visible {
  outline: 3px solid rgba(79, 138, 160, 0.38);
  outline-offset: 4px;
  border-radius: 8px;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 40px;
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 999px;
  background: #fff;
  padding: 3px;
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 820;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.language-button.is-active {
  background: var(--violet);
  color: #fff;
}

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

.header-action,
.button,
.card-cta,
.details-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.button::after,
.card-cta::after {
  position: absolute;
  inset: -35% auto -35% -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  transition: left 0.48s var(--ease-out);
}

.button:hover::after,
.card-cta:hover::after {
  left: 112%;
}

.header-action,
.button-primary,
.card-cta {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 28px rgba(113, 75, 103, 0.24);
}

.button-secondary {
  background: #fff;
  color: var(--violet);
  border-color: rgba(113, 75, 103, 0.22);
}

.button-ghost,
.details-button {
  background: transparent;
  color: var(--ink);
  border-color: rgba(113, 75, 103, 0.24);
}

.header-action:hover,
.button:hover,
.card-cta:hover,
.details-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(31, 23, 36, 0.14);
}

.header-action:focus-visible,
.button:focus-visible,
.card-cta:focus-visible,
.details-button:focus-visible,
.tab:focus-visible,
.language-button:focus-visible {
  outline: 3px solid rgba(79, 138, 160, 0.38);
  outline-offset: 3px;
}

.is-disabled,
.is-disabled:hover {
  position: relative;
  overflow: hidden;
  background: #e8e3eb;
  color: #8a8190;
  border-color: #e8e3eb;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.is-disabled::after {
  display: none;
}

.catalog-card-pro .card-cta.is-disabled::after {
  display: block;
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: coming-soon-shimmer 3.6s ease-in-out infinite;
}

.section-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(113, 75, 103, 0.08), rgba(69, 104, 141, 0.06) 38%, rgba(84, 112, 100, 0.05) 70%),
    var(--bg);
}

.section-band::before {
  position: absolute;
  inset: -30% -20%;
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.64) 48%, transparent 62% 100%);
  content: "";
  opacity: 0.42;
  pointer-events: none;
  transform: translateX(-38%);
  animation: ambient-sweep 8s var(--ease-out) infinite;
}

.section-band > .container {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 50px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.45rem;
  line-height: 1.03;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--violet-strong);
  font-size: 1.22rem;
  font-weight: 760;
  line-height: 1.35;
}

.hero-body {
  max-width: 660px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.service-actions,
.card-actions,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 22px;
}

.support-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 740px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.support-line span {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(113, 75, 103, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--violet-strong);
  padding: 0 12px;
  font-size: 0.84rem;
  font-weight: 780;
  box-shadow: 0 8px 22px rgba(31, 23, 36, 0.06);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 18px;
}

.assurance-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  border: 1px solid rgba(113, 75, 103, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 250, 0.72)),
    linear-gradient(135deg, rgba(84, 112, 100, 0.12), transparent 58%);
  padding: 14px 16px;
  box-shadow: 0 14px 34px rgba(31, 23, 36, 0.08);
}

.assurance-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--green), var(--blue));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 26px rgba(37, 49, 69, 0.18);
}

.assurance-card:nth-child(2) .assurance-icon {
  background: linear-gradient(145deg, #14a800, #45688d);
}

.assurance-card strong,
.assurance-card small {
  display: block;
}

.assurance-card strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.22;
}

.assurance-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 620;
  line-height: 1.42;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 14px;
}

.trust-stats div {
  min-height: 68px;
  border: 1px solid rgba(113, 75, 103, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 11px 13px;
  box-shadow: 0 12px 30px rgba(31, 23, 36, 0.07);
}

.trust-stats strong {
  display: block;
  color: var(--violet-strong);
  font-size: 1.42rem;
  line-height: 1;
}

.trust-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  background: #17121d;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  animation: hero-float 7s ease-in-out infinite;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.18) 50%, transparent 58% 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-60%);
  transition: opacity 0.24s ease, transform 0.62s var(--ease-out);
}

.hero-media img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.hero-media:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 70px rgba(31, 23, 36, 0.18);
}

.hero-media:hover::after {
  opacity: 1;
  transform: translateX(60%);
}

.section-wrap {
  padding: 78px 0;
}

.section-wrap,
.service-band,
.roadmap-band,
.site-footer {
  scroll-margin-top: 92px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 30px;
}

.section-heading-wide {
  display: flex;
  max-width: none;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.section-heading h2,
.service-band h2,
.roadmap-band h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.12;
}

.section-heading p,
.roadmap-band p {
  margin: 12px 0 0;
  color: var(--muted);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 20px;
}

.featured-card,
.catalog-card {
  border: 1px solid rgba(113, 75, 103, 0.15);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.22s ease;
}

.featured-card:hover,
.catalog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(113, 75, 103, 0.26);
  box-shadow: 0 26px 64px rgba(31, 23, 36, 0.16);
}

.featured-card-link {
  position: relative;
  color: inherit;
  cursor: pointer;
  isolation: isolate;
  outline: 0;
  outline-offset: 5px;
}

.featured-card-link::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(113, 75, 103, 0.34);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.featured-card img {
  width: 100%;
  aspect-ratio: 1.52;
  height: auto;
  object-fit: contain;
  background: linear-gradient(180deg, #f7f9fb 0%, #edf3f6 100%);
  transition: transform 0.42s var(--ease-out), filter 0.42s ease;
}

.featured-card-link:hover::after,
.featured-card-link:focus-visible::after {
  opacity: 1;
}

.featured-card-link:focus-visible {
  outline: 3px solid rgba(113, 75, 103, 0.36);
}

.featured-card-link:hover img,
.catalog-card:hover .card-image {
  transform: scale(1.035);
  filter: saturate(1.06);
}

.featured-copy,
.featured-text-card {
  padding: 22px;
}

.featured-meta {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 780;
}

.featured-card h3,
.catalog-card h3,
.paid-note h3 {
  margin: 12px 0 8px;
  font-size: 1.28rem;
  line-height: 1.24;
}

.featured-card p,
.catalog-card p,
.paid-note p {
  margin: 0;
  color: var(--muted);
}

.featured-link-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  color: var(--violet);
  font-size: 0.92rem;
  font-weight: 820;
  transition: transform 0.24s var(--ease-out), color 0.24s ease;
}

.featured-link-hint::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.featured-card-link:hover .featured-link-hint,
.featured-card-link:focus-visible .featured-link-hint {
  color: var(--violet-strong);
  transform: translateX(4px);
}

.featured-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(69, 104, 141, 0.2);
  background:
    linear-gradient(180deg, rgba(247, 251, 253, 0.96), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(69, 104, 141, 0.12), transparent 58%);
  color: var(--ink);
}

.featured-text-card p {
  color: var(--muted);
}

.featured-text-card .featured-meta {
  color: var(--muted);
}

.featured-text-card .featured-link-hint {
  color: var(--violet);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 11px;
  font-size: 0.78rem;
  font-weight: 800;
}

.badge-free {
  background: rgba(84, 112, 100, 0.16);
  color: #2e5b4b;
}

.badge-pro {
  background: rgba(113, 75, 103, 0.16);
  color: var(--violet-strong);
}

.badge-service {
  background: rgba(69, 104, 141, 0.15);
  color: #294f75;
}

.badge-roadmap {
  background: rgba(184, 130, 58, 0.18);
  color: #79511e;
}

.service-band {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(69, 104, 141, 0.28), transparent 42%),
    var(--plum);
  color: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: 56px;
  align-items: center;
}

.service-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.service-band .assurance-grid {
  max-width: 720px;
  margin-top: 22px;
}

.service-band .assurance-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.service-band .assurance-card strong {
  color: #fff;
}

.service-band .assurance-card small {
  color: rgba(255, 255, 255, 0.72);
}

.service-lead {
  margin-top: 18px;
  font-size: 1.24rem;
  font-weight: 760;
  color: #fff;
}

.service-promise {
  display: grid;
  gap: 4px;
  max-width: 680px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
}

.service-promise strong {
  color: #fff;
}

.service-promise span {
  color: rgba(255, 255, 255, 0.72);
}

.service-list {
  display: grid;
  gap: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 28px;
}

.service-list div {
  display: grid;
  gap: 4px;
}

.service-list a {
  display: grid;
  gap: 4px;
  color: inherit;
}

.service-list a:hover strong {
  color: #fff;
}

.service-list strong {
  font-size: 1.05rem;
}

.service-list span {
  color: rgba(255, 255, 255, 0.68);
}

.how-section {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, #fff 0, rgba(247, 247, 250, 0.88) 58%, rgba(238, 243, 245, 0.92) 100%);
}

.how-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(69, 104, 141, 0.06) 28% 28.4%, transparent 28.4% 100%),
    linear-gradient(115deg, transparent 0 58%, rgba(84, 112, 100, 0.055) 58% 58.35%, transparent 58.35% 100%);
  content: "";
  pointer-events: none;
}

.how-section .section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.workflow-grid::before {
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(113, 75, 103, 0.16), rgba(69, 104, 141, 0.28), rgba(84, 112, 100, 0.18));
  content: "";
}

.workflow-step {
  --step-accent: var(--violet);
  --step-soft: rgba(113, 75, 103, 0.12);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 228px;
  border: 1px solid rgba(113, 75, 103, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, var(--step-soft), transparent 46%);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(31, 23, 36, 0.08);
  overflow: hidden;
  transform: translateY(0);
}

.workflow-step:nth-child(2) {
  --step-accent: var(--blue);
  --step-soft: rgba(69, 104, 141, 0.12);
}

.workflow-step:nth-child(3) {
  --step-accent: var(--green);
  --step-soft: rgba(84, 112, 100, 0.13);
}

.workflow-step::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--step-accent), rgba(255, 255, 255, 0));
  content: "";
}

.workflow-step::after {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 76px;
  height: 50px;
  border: 1px solid color-mix(in srgb, var(--step-accent) 22%, transparent);
  border-radius: 16px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--step-accent) 30%, transparent) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, transparent 0 12px, color-mix(in srgb, var(--step-accent) 18%, transparent) 12px 14px, transparent 14px 25px, color-mix(in srgb, var(--step-accent) 18%, transparent) 25px 27px, transparent 27px 100%),
    rgba(255, 255, 255, 0.62);
  content: "";
  opacity: 0.86;
}

.workflow-index {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid color-mix(in srgb, var(--step-accent) 24%, #fff);
  border-radius: 18px;
  background: #fff;
  color: var(--step-accent);
  font-weight: 860;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--step-accent) 15%, transparent);
}

.workflow-index::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--step-accent);
  content: "";
}

.workflow-step h3 {
  max-width: 86%;
  margin: 24px 0 10px;
  font-size: 1.22rem;
  line-height: 1.24;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.catalog-section {
  position: relative;
  background: var(--bg);
}

.catalog-section::before {
  position: absolute;
  top: -72px;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--bg);
  content: "";
}

.catalog-section > .container {
  position: relative;
  z-index: 1;
}

.tab {
  position: relative;
  min-height: 42px;
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 0 18px;
  font-size: 0.94rem;
  font-weight: 760;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s var(--ease-out), border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.2s ease;
}

.tab.is-active {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
  box-shadow: 0 12px 26px rgba(113, 75, 103, 0.18);
}

.tab:hover {
  transform: translateY(-2px);
  border-color: rgba(113, 75, 103, 0.34);
}

.catalog-count {
  min-height: 24px;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.catalog-grid.is-filtering {
  opacity: 0.72;
  transform: scale(0.992);
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 22px;
}

.catalog-card-with-image {
  min-height: 540px;
}

.card-image {
  width: calc(100% + 44px);
  max-width: none;
  aspect-ratio: 1.52;
  height: auto;
  margin: -22px -22px 18px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #f7f9fb 0%, #edf3f6 100%);
  border-bottom: 1px solid rgba(69, 104, 141, 0.16);
  transition: transform 0.44s var(--ease-out), filter 0.44s ease;
}

.catalog-card-pro {
  background: #fbf8fc;
}

.catalog-card-service {
  border-color: rgba(69, 104, 141, 0.22);
}

.catalog-card-roadmap {
  background: #fffdf8;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 740;
}

.card-meta {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  margin: auto 0 16px;
  padding-top: 16px;
}

.card-meta div,
.dialog-meta div {
  display: grid;
  gap: 2px;
}

.card-meta dt,
.dialog-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 780;
}

.card-meta dd,
.dialog-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.paid-note {
  margin-top: 28px;
  border-radius: var(--radius);
  background: var(--slate);
  color: #fff;
  padding: 28px;
  box-shadow: 0 18px 46px rgba(31, 23, 36, 0.16);
}

.paid-note p {
  color: rgba(255, 255, 255, 0.76);
}

.roadmap-band {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(79, 138, 160, 0.13), rgba(184, 130, 58, 0.08)),
    #e9edf2;
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.roadmap-steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
}

.roadmap-steps::before {
  position: absolute;
  top: 4px;
  bottom: 16px;
  left: 3px;
  width: 2px;
  background: rgba(113, 75, 103, 0.18);
  content: "";
}

.roadmap-steps::after {
  position: absolute;
  top: 4px;
  bottom: 16px;
  left: 3px;
  width: 2px;
  background: linear-gradient(var(--violet), var(--blue));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.86s var(--ease-out);
}

.is-visible .roadmap-steps::after {
  transform: scaleY(1);
}

.roadmap-steps.is-visible::after {
  transform: scaleY(1);
}

.roadmap-steps li {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid rgba(37, 49, 69, 0.14);
  padding: 0 0 14px;
  color: var(--slate);
  font-weight: 700;
}

.roadmap-steps li::before {
  position: absolute;
  top: 0.42em;
  left: -21px;
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(113, 75, 103, 0.14);
  content: "";
}

.roadmap-steps span:first-child {
  min-width: 68px;
  color: var(--violet);
}

.roadmap-steps span:last-child {
  color: var(--slate);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 44px;
}

.faq-heading {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(113, 75, 103, 0.14);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.faq-list details[open] {
  border-color: rgba(113, 75, 103, 0.26);
  box-shadow: 0 14px 32px rgba(31, 23, 36, 0.08);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::after {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  content: "";
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-band {
  background: var(--violet);
  color: #fff;
  padding: 24px 0;
}

.legal-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  align-items: center;
}

.legal-layout span {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 24px 0;
  background: #17121d;
  color: #fff;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-grid p {
  max-width: 660px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.35;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-links span {
  flex-basis: 100%;
  text-align: right;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links a:hover {
  color: #fff;
}

.module-dialog {
  width: min(960px, calc(100% - 28px));
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
}

.module-dialog::backdrop {
  background: rgba(23, 18, 29, 0.62);
  backdrop-filter: blur(4px);
  animation: backdrop-in 0.22s ease both;
}

.module-dialog[open] {
  animation: dialog-in 0.28s var(--ease-spring) both;
}

.dialog-body {
  max-height: calc(100dvh - 32px);
  overflow: auto;
  padding: 34px;
  background: #fff;
  scrollbar-gutter: stable;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.dialog-close::before,
.dialog-close::after {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  background: var(--violet);
  content: "";
}

.dialog-close::before {
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

.module-dialog h2 {
  margin: 16px 46px 8px 0;
  font-size: 2rem;
  line-height: 1.15;
}

.module-dialog p {
  color: var(--muted);
}

.dialog-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.dialog-screenshots {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.dialog-screenshots[hidden] {
  display: none;
}

.dialog-screenshot-link {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(113, 75, 103, 0.16);
  border-radius: 14px;
  background: #f8f5fa;
  box-shadow: 0 12px 32px rgba(31, 23, 36, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dialog-screenshot-link:hover {
  transform: translateY(-1px);
  border-color: rgba(113, 75, 103, 0.28);
  box-shadow: 0 16px 38px rgba(31, 23, 36, 0.12);
}

.dialog-screenshot-link:focus-visible {
  outline: 3px solid rgba(79, 138, 160, 0.38);
  outline-offset: 3px;
}

.dialog-screenshot-link img {
  display: block;
  width: 100%;
  height: auto;
}

.error-page {
  background: var(--plum);
  color: #fff;
}

.error-layout {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 100vh;
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
}

.error-layout h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
}

.error-layout p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.legal-page {
  min-height: 100vh;
  background: var(--bg);
}

.legal-page-main {
  padding: 72px 0 86px;
}

.legal-doc {
  max-width: 860px;
  border: 1px solid rgba(113, 75, 103, 0.14);
  border-radius: 24px;
  background: #fff;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.legal-doc h1 {
  margin: 0;
  font-size: 2.55rem;
  line-height: 1.08;
}

.legal-doc h2 {
  margin: 34px 0 10px;
  font-size: 1.28rem;
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
}

.legal-doc a {
  color: var(--violet);
  font-weight: 760;
}

.content-page-main {
  background:
    linear-gradient(180deg, #fff 0, var(--bg) 38%, #eef3f5 100%);
}

.content-hero {
  padding: 58px 0 54px;
}

.content-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 42px;
  align-items: start;
}

.content-hero h1 {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: 3.05rem;
  line-height: 1.06;
  text-wrap: balance;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.breadcrumb a {
  color: var(--violet);
}

.content-summary,
.aside-panel {
  border: 1px solid rgba(113, 75, 103, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.content-summary dl,
.content-summary p {
  margin: 18px 0 0;
}

.content-summary div {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.content-summary dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.content-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 42px;
  padding-top: 64px;
  padding-bottom: 76px;
}

.content-main {
  display: grid;
  gap: 36px;
  min-width: 0;
}

.rich-section {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid rgba(113, 75, 103, 0.12);
  padding-bottom: 34px;
}

.rich-section h2,
.aside-panel h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.18;
}

.rich-section p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.check-list,
.number-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.check-list li::marker {
  color: var(--violet);
}

.number-list li::marker {
  color: var(--violet);
  font-weight: 860;
}

.content-aside {
  display: grid;
  align-content: start;
  gap: 18px;
}

.related-list,
.mini-card-grid {
  display: grid;
  gap: 14px;
}

.mini-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(113, 75, 103, 0.14);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s var(--ease-out), border-color 0.22s ease, box-shadow 0.22s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(113, 75, 103, 0.26);
  box-shadow: 0 20px 48px rgba(31, 23, 36, 0.12);
}

.mini-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.mini-card-meta,
.meta-strip {
  color: var(--violet);
  font-size: 0.82rem;
  font-weight: 820;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-strip span {
  border: 1px solid rgba(113, 75, 103, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 5px 10px;
}

.image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.image-pair img {
  border: 1px solid rgba(69, 104, 141, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.code-block {
  overflow: auto;
  border: 1px solid rgba(113, 75, 103, 0.16);
  border-radius: 16px;
  background: #17121d;
  color: #f6edf7;
  padding: 18px;
  font-size: 0.92rem;
  line-height: 1.6;
}

.content-cta {
  background: var(--violet);
  color: #fff;
  padding: 24px 0;
}

.content-cta .button-primary {
  background: #fff;
  color: var(--violet);
  box-shadow: none;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(113, 75, 103, 0.22);
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  box-shadow: 0 18px 42px rgba(31, 23, 36, 0.2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.back-to-top::before {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  content: "";
  transform: translateY(3px) rotate(45deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  box-shadow: 0 22px 52px rgba(31, 23, 36, 0.26);
  transform: translateY(-2px);
}

.analytics-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(760px, calc(100% - 32px));
  border: 1px solid rgba(113, 75, 103, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(31, 23, 36, 0.18);
  color: var(--ink);
  padding: 14px 16px 14px 18px;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.analytics-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.analytics-consent .button {
  min-height: 40px;
  padding: 0 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.48s ease, transform 0.48s var(--ease-spring);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ambient-sweep {
  0%,
  38% {
    transform: translateX(-42%);
  }

  72%,
  100% {
    transform: translateX(42%);
  }
}

@keyframes hero-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes coming-soon-shimmer {
  0%,
  62% {
    left: -45%;
  }

  100% {
    left: 110%;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .service-grid,
  .roadmap-layout,
  .faq-grid,
  .content-hero-layout,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    max-width: none;
  }

  .footer-links span {
    text-align: left;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .support-line,
  .trust-row,
  .assurance-grid,
  .trust-stats,
  .featured-grid,
  .workflow-grid,
  .catalog-grid,
  .mini-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-layout {
    padding-top: 46px;
  }

  .workflow-grid::before {
    display: none;
  }

  .service-list {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 24px 0 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
  }

  .header-controls {
    justify-content: end;
    gap: 8px;
  }

  .language-switcher {
    min-height: 38px;
  }

  .language-button {
    min-width: 36px;
    min-height: 30px;
    font-size: 0.78rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    gap: 16px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 42px 0 36px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy h1 {
    font-size: 2.42rem;
  }

  .content-hero h1 {
    font-size: 2.18rem;
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .hero-actions,
  .service-actions,
  .card-actions,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .card-cta,
  .details-button {
    width: 100%;
  }

  .support-line,
  .trust-row,
  .assurance-grid,
  .trust-stats,
  .featured-grid,
  .workflow-grid,
  .catalog-grid,
  .mini-card-grid,
  .image-pair,
  .card-meta,
  .dialog-meta {
    grid-template-columns: 1fr;
  }

  .content-hero {
    padding: 40px 0 38px;
  }

  .content-layout {
    gap: 28px;
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .content-summary,
  .aside-panel,
  .mini-card {
    padding: 18px;
  }

  .rich-section {
    gap: 12px;
    padding-bottom: 28px;
  }

  .rich-section h2,
  .aside-panel h2 {
    font-size: 1.42rem;
  }

  .section-wrap,
  .service-band,
  .roadmap-band {
    padding: 46px 0;
  }

  .how-section .section-heading {
    margin-bottom: 24px;
  }

  .workflow-grid {
    gap: 14px;
  }

  .workflow-step {
    min-height: auto;
    padding: 22px;
  }

  .workflow-step::after {
    top: 22px;
    right: 22px;
    width: 62px;
    height: 42px;
    border-radius: 14px;
    opacity: 0.64;
  }

  .workflow-index {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .workflow-step h3 {
    max-width: none;
    margin-top: 20px;
    font-size: 1.16rem;
  }

  .catalog-section.section-wrap {
    padding-top: 38px;
  }

  .catalog-section .section-heading {
    margin-bottom: 22px;
  }

  .catalog-section .tabs {
    gap: 8px;
    margin-bottom: 14px;
  }

  .catalog-section .catalog-count {
    margin-bottom: 14px;
  }

  .section-wrap,
  .service-band,
  .roadmap-band,
  .site-footer {
    scroll-margin-top: 138px;
  }

  .section-heading-wide {
    display: block;
  }

  .section-heading h2,
  .service-band h2,
  .roadmap-band h2 {
    font-size: 2rem;
  }

  .catalog-card {
    min-height: auto;
    padding: 18px;
  }

  .catalog-card-with-image {
    min-height: auto;
  }

  .card-image {
    width: calc(100% + 36px);
    margin: -18px -18px 16px;
    aspect-ratio: 1.52;
  }

  .catalog-card h3 {
    font-size: 1.2rem;
  }

  .card-meta {
    gap: 10px;
    margin-bottom: 16px;
    padding-top: 18px;
  }

  .roadmap-steps li {
    display: grid;
    gap: 4px;
  }

  .legal-doc {
    padding: 28px 20px;
  }

  .legal-doc h1 {
    font-size: 2rem;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }

  .analytics-consent {
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 24px);
    padding: 14px;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .analytics-consent .button {
    width: 100%;
  }

  .dialog-body {
    padding: 28px 20px 22px;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
