@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Vazirmatn:wght@400;500;600;700;800&display=swap");

:root {
  --ink-950: #1b0d36;
  --ink-900: #26114f;
  --ink-800: #382064;
  --ink-700: #543e73;
  --ink-600: #75678f;
  --ink-500: #9389a8;
  --paper: #fff;
  --paper-violet: #fbf9ff;
  --paper-deep: #f5f0ff;
  --line: #e7ddf6;
  --line-strong: #d7c7ef;
  --primary: #6d3df5;
  --primary-strong: #5422d6;
  --primary-soft: #ede7ff;
  --blue: #087eea;
  --cyan: #00a8f4;
  --success: #16835a;
  --success-soft: #e8f7f0;
  --warning: #9a5a04;
  --warning-soft: #fff4d9;
  --danger: #b52b4a;
  --dark: #140924;
  --dark-soft: #25103f;
  --gradient: linear-gradient(125deg, #087eea 0%, #6d3df5 54%, #9b4ae6 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(8, 126, 234, .09), rgba(109, 61, 245, .12));
  --shadow-xs: 0 1px 2px rgba(38, 17, 79, .05);
  --shadow-sm: 0 10px 30px rgba(56, 32, 100, .08);
  --shadow-md: 0 22px 60px rgba(56, 32, 100, .12);
  --shadow-lg: 0 38px 90px rgba(46, 20, 87, .18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --shell: 1200px;
  --header-height: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 28px);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink-950);
  background:
    radial-gradient(circle at 84% 5%, rgba(109, 61, 245, .07), transparent 26rem),
    var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: "Vazirmatn", "Plus Jakarta Sans", Tahoma, sans-serif;
}

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

img {
  height: auto;
}

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

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

button,
select,
[role="button"],
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button,
.button,
select,
summary,
[data-filter],
[data-demo-tab] {
  cursor: pointer;
}

button {
  border: 0;
}

button:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .55;
}

button:disabled:hover,
.button:disabled:hover {
  transform: none;
  box-shadow: var(--shadow-xs);
}

:focus-visible {
  outline: 3px solid rgba(109, 61, 245, .36);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--primary);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  inset-inline-start: 12px;
  padding: 11px 16px;
  color: #fff;
  background: var(--ink-950);
  border-radius: 10px;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.narrow {
  width: min(100%, 820px);
}

.scroll-progress {
  position: fixed;
  z-index: 1300;
  top: 0;
  inset-inline: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
}

html[dir="rtl"] .scroll-progress i {
  transform-origin: right;
}

.site-header {
  position: fixed;
  z-index: 1200;
  top: 0;
  inset-inline: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px) saturate(150%);
  transition: height .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  height: 70px;
  border-color: rgba(215, 199, 239, .78);
  box-shadow: 0 8px 30px rgba(38, 17, 79, .07);
}

.nav-shell {
  width: calc(100% - 32px);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 16px;
}

html[dir="rtl"] .nav-shell {
  grid-template-areas: "brand nav actions";
}

.brand {
  grid-area: brand;
  justify-self: start;
  flex: 0 0 auto;
  width: 178px;
}

.brand img {
  width: 100%;
}

.brand.plavia-lockup {
  width: auto;
  min-width: 174px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-950);
}

.plavia-lockup .plavia-lockup-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
}

.plavia-lockup-type {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.plavia-lockup-type strong {
  color: #0f071c;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .17em;
}

.plavia-lockup-type small {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #6f667e;
  font-size: 5.8px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.plavia-lockup-type i {
  width: 2px;
  height: 2px;
  display: block;
  background: var(--primary);
  border-radius: 50%;
}

.main-nav {
  grid-area: nav;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-inline: 0;
}

.main-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--ink-700);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  inset-inline: 12px;
  height: 2px;
  background: var(--gradient);
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-strong);
  background: var(--primary-soft);
}

.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 0;
}

.nav-actions .language-select {
  width: 78px;
  min-width: 78px;
  flex: 0 0 78px;
}

.nav-actions .button.compact {
  min-width: 94px;
  min-height: 44px;
  padding: 9px 15px;
  border-radius: 8px;
  white-space: nowrap;
}

.language-select {
  min-width: 66px;
  min-height: 44px;
  padding: 7px 28px 7px 11px;
  color: var(--ink-800);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
}

html[dir="rtl"] .language-select {
  padding: 7px 11px 7px 28px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
  background: var(--paper-violet);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  overflow: hidden;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  box-shadow: var(--shadow-xs);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: #baa4df;
  box-shadow: var(--shadow-sm);
}

.button:active,
.main-nav a:active,
.text-link:active {
  filter: brightness(.96);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(109, 61, 245, .22);
}

.button.primary:hover {
  box-shadow: 0 16px 38px rgba(109, 61, 245, .3);
}

.button.secondary {
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-color: #d7c8ff;
}

.button.ghost {
  background: rgba(255, 255, 255, .6);
}

.button.compact {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 11px;
  font-size: 12px;
}

.button.light {
  color: var(--ink-950);
  background: #fff;
  border-color: #fff;
}

.button.inverse {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  box-shadow: none;
}

.app-panel p + .button {
  margin-block-start: 16px;
}

.button svg,
.text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-actions,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-actions {
  margin-block-start: clamp(24px, 2.6vw, 36px);
}

.page-hero .page-actions,
.closing-grid > .page-actions,
.logo-cloud-copy .page-actions {
  margin-block-start: 0;
}

:where(.card-grid, .feature-grid, .module-grid, .edition-grid, .template-grid, .customer-grid, .customer-portfolio, .demo-grid, .pricing-grid, .workflow-grid, .contact-cards, .resource-grid, .stats-grid, .included-grid, .surface-grid, .commercial-grid, .process-line, .architecture-flow, .update-flow, .compare-table, .table-wrap, .estimator) + .page-actions {
  margin-block-start: clamp(36px, 4vw, 52px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--primary-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gradient);
  border-radius: 10px;
}

.eyebrow.light {
  color: #e9e0ff;
}

.eyebrow.light::before {
  background: #c8b4ff;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink-950);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 76px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 52px);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 26px);
}

p {
  color: var(--ink-700);
}

.lead {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.75;
}

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

.gradient-text {
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, gap .2s var(--ease);
}

.text-link:hover {
  color: var(--blue);
  gap: 11px;
}

.home-hero,
.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-hero {
  min-height: 880px;
  display: flex;
  align-items: center;
  padding: 152px 0 98px;
  background:
    radial-gradient(circle at 16% 18%, rgba(8, 126, 234, .1), transparent 24rem),
    radial-gradient(circle at 86% 38%, rgba(109, 61, 245, .12), transparent 31rem),
    linear-gradient(180deg, #fff 0%, #fbf9ff 100%);
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(109, 61, 245, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 61, 245, .055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 5vw, 78px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
}

.hero-badge,
.pill,
.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--ink-800);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-badge i,
.status::before {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(215, 199, 239, .85);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 34%;
  bottom: -7%;
  inset-inline-start: 14%;
  background: rgba(109, 61, 245, .22);
  filter: blur(45px);
  border-radius: 50%;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.visual-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(14px);
  animation: softFloat 5s ease-in-out infinite;
}

.visual-float.top {
  top: 7%;
  inset-inline-start: -4%;
}

.visual-float.bottom {
  bottom: 8%;
  inset-inline-end: -4%;
  animation-delay: -2.4s;
}

.visual-float .icon-box {
  width: 34px;
  height: 34px;
}

.page-hero {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 150px 0 86px;
  background:
    radial-gradient(circle at 80% 25%, rgba(109, 61, 245, .13), transparent 28rem),
    linear-gradient(180deg, #fff, var(--paper-violet));
}

.page-hero.center {
  text-align: center;
}

.page-hero.center .page-copy {
  max-width: 880px;
  margin-inline: auto;
}

.page-hero .page-copy > p {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: 19px;
}

.page-hero.center .page-copy > p,
.page-hero.center .page-actions {
  margin-inline: auto;
  justify-content: center;
}

.page-hero-grid,
.split-grid,
.about-grid,
.contact-layout,
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.page-visual {
  position: relative;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.page-visual img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 8px);
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
}

.section.compact {
  padding-block: 64px;
}

.section.paper,
.section.alt {
  background: var(--paper-violet);
  border-block: 1px solid rgba(231, 221, 246, .7);
}

.section.deep {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(109, 61, 245, .38), transparent 28rem),
    linear-gradient(135deg, var(--dark), #21113a 64%, #171026);
}

.section.deep h2,
.section.deep h3,
.section.deep h4,
.section.deep p,
.section.deep .muted {
  color: #fff;
}

.section.deep p,
.section.deep .muted {
  opacity: .74;
}

.section.deep :is(.module-card, .feature-card) h3,
.section.deep :is(.module-card, .feature-card) h4 {
  color: var(--ink-950);
}

.section.deep :is(.module-card, .feature-card) p {
  color: var(--ink-700);
  opacity: 1;
}

.section-head {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head p {
  margin-bottom: 0;
  font-size: 18px;
}

.section-head.split-head {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 42px;
}

.section-head.split-head > * {
  margin-bottom: 0;
}

.logo-cloud {
  position: relative;
  padding: clamp(42px, 5vw, 64px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 14%, rgba(0, 168, 244, .11), transparent 19rem),
    radial-gradient(circle at 92% 84%, rgba(155, 74, 230, .1), transparent 20rem),
    #fff;
  border-block: 1px solid var(--line);
}

.logo-cloud-inner {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.logo-cloud-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  gap: 14px;
}

.logo-cloud-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
}

.logo-cloud-copy p,
.logo-cloud-copy small {
  max-width: 42ch;
  margin: 0;
  color: var(--ink-700);
}

.logo-cloud-title {
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.customer-marquee {
  position: relative;
  min-width: 0;
  padding-block: 12px;
  overflow: hidden;
  direction: ltr;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.customer-marquee-track {
  width: max-content;
  display: flex;
  gap: 14px;
  will-change: transform;
}

.customer-marquee.is-ready .customer-marquee-track {
  animation: customerMarquee 34s linear infinite;
}

.customer-marquee:is(:hover, :focus-within, .is-paused) .customer-marquee-track {
  animation-play-state: paused;
}

.customer-marquee-group {
  display: flex;
  flex: none;
  gap: 14px;
}

.customer-marquee-toggle {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 2px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--primary-strong);
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.customer-marquee-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.customer-marquee-item {
  position: relative;
  width: 218px;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  color: var(--ink-800);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(215, 199, 239, .86);
  border-radius: 18px;
  box-shadow: 0 13px 34px rgba(48, 22, 88, .08);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  transition: transform .24s var(--ease), border-color .24s ease, box-shadow .24s ease, color .24s ease;
}

.customer-marquee-item::after {
  content: "";
  position: absolute;
  inset-inline: 16px;
  bottom: 7px;
  height: 2px;
  background: linear-gradient(90deg, var(--card-accent, var(--primary)), transparent);
  border-radius: 99px;
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .24s ease, transform .24s var(--ease);
}

.customer-marquee-item:is(:hover, :focus-visible) {
  z-index: 2;
  color: var(--ink-950);
  border-color: color-mix(in srgb, var(--card-accent, var(--primary)) 38%, #fff);
  box-shadow: 0 19px 44px rgba(48, 22, 88, .14);
  transform: translateY(-4px);
}

.customer-marquee-item:is(:hover, :focus-visible)::after {
  opacity: 1;
  transform: scaleX(1);
}

.customer-marquee-item:nth-child(8n + 1) { --card-accent: #1689e9; }
.customer-marquee-item:nth-child(8n + 2) { --card-accent: #e15e82; }
.customer-marquee-item:nth-child(8n + 3) { --card-accent: #0da99b; }
.customer-marquee-item:nth-child(8n + 4) { --card-accent: #e38325; }
.customer-marquee-item:nth-child(8n + 5) { --card-accent: #bd4caa; }
.customer-marquee-item:nth-child(8n + 6) { --card-accent: #5d65dc; }
.customer-marquee-item:nth-child(8n + 7) { --card-accent: #00a8c8; }
.customer-marquee-item:nth-child(8n + 8) { --card-accent: #a94b3e; }

.customer-emblem {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  overflow: hidden;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(215, 199, 239, .72);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(56, 32, 100, .09);
}

.customer-emblem.emblem-1 { background-image: url("../images/customer-emblem-1.webp"); }
.customer-emblem.emblem-2 { background-image: url("../images/customer-emblem-2.webp"); }
.customer-emblem.emblem-3 { background-image: url("../images/customer-emblem-3.webp"); }
.customer-emblem.emblem-4 { background-image: url("../images/customer-emblem-4.webp"); }
.customer-emblem.emblem-5 { background-image: url("../images/customer-emblem-5.webp"); }
.customer-emblem.emblem-6 { background-image: url("../images/customer-emblem-6.webp"); }
.customer-emblem.emblem-7 { background-image: url("../images/customer-emblem-7.webp"); }
.customer-emblem.emblem-8 { background-image: url("../images/customer-emblem-8.webp"); }

@keyframes customerMarquee {
  to { transform: translate3d(calc(-50% - 7px), 0, 0); }
}

.customer-showcase {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 92% 8%, rgba(8, 126, 234, .08), transparent 24rem),
    radial-gradient(circle at 6% 78%, rgba(13, 169, 155, .07), transparent 22rem),
    var(--paper-violet);
}

.customer-portfolio {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.customer-live-card {
  --customer-accent: #1677e8;
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(43, 19, 82, .07);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s var(--ease);
}

.customer-live-card:nth-child(8n + 2) { --customer-accent: #e15e82; }
.customer-live-card:nth-child(8n + 3) { --customer-accent: #0da99b; }
.customer-live-card:nth-child(8n + 4) { --customer-accent: #e38325; }
.customer-live-card:nth-child(8n + 5) { --customer-accent: #bd4caa; }
.customer-live-card:nth-child(8n + 6) { --customer-accent: #5d65dc; }
.customer-live-card:nth-child(8n + 7) { --customer-accent: #00a8c8; }
.customer-live-card:nth-child(8n + 8) { --customer-accent: #a94b3e; }

.customer-live-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  inset-inline: 24px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--customer-accent), transparent);
  border-radius: 0 0 4px 4px;
  opacity: .34;
  transform: scaleX(.55);
  transition: opacity .28s ease, transform .28s var(--ease);
}

.customer-live-card:is(:hover, :focus-within, .is-active) {
  border-color: color-mix(in srgb, var(--customer-accent) 38%, #fff);
  box-shadow: 0 24px 58px rgba(43, 19, 82, .14);
  transform: translateY(-5px);
}

.customer-live-card:target {
  border-color: color-mix(in srgb, var(--customer-accent) 46%, #fff);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--customer-accent) 12%, transparent), 0 24px 58px rgba(43, 19, 82, .14);
}

.customer-live-card:is(:hover, :focus-within, .is-active)::before {
  opacity: 1;
  transform: scaleX(1);
}

.customer-preview-trigger {
  width: 100%;
  min-height: 242px;
  display: grid;
  grid-template-rows: 112px auto auto;
  justify-items: center;
  align-content: start;
  gap: 14px;
  padding: 28px 20px 22px;
  color: var(--ink-950);
  background: transparent;
  text-align: center;
}

.customer-preview-trigger:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--customer-accent) 48%, #fff);
  outline-offset: -5px;
}

.customer-logo-stack {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: inset 0 0 0 8px rgba(247, 244, 253, .86), 0 12px 28px rgba(42, 18, 84, .08);
  filter: grayscale(1);
  opacity: .66;
  transition: filter .34s ease, opacity .34s ease, transform .34s var(--ease), box-shadow .34s ease;
}

.customer-logo-stack.customer-logo-dark {
  background: #11121b;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .05), 0 12px 28px rgba(17, 18, 27, .16);
}

.customer-live-card:is(:hover, :focus-within, .is-active) .customer-logo-stack {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06) rotate(-1.5deg);
  box-shadow: inset 0 0 0 8px rgba(247, 244, 253, .72), 0 18px 34px color-mix(in srgb, var(--customer-accent) 18%, transparent);
}

.customer-logo-stack .customer-emblem {
  position: absolute;
  inset: 9px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.customer-site-logo {
  position: relative;
  z-index: 2;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  opacity: 0;
  transition: opacity .24s ease;
}

.customer-site-logo-wide {
  max-width: 84%;
}

.customer-logo-stack.has-live-logo .customer-site-logo {
  opacity: 1;
}

.customer-logo-stack.has-live-logo .customer-emblem {
  opacity: 0;
}

.customer-card-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.customer-card-copy strong {
  overflow-wrap: anywhere;
  font-size: 16px;
  line-height: 1.35;
}

.customer-card-copy small {
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.55;
}

.customer-preview-cue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.customer-preview-cue i,
.customer-preview-status i {
  width: 8px;
  height: 8px;
  background: var(--customer-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--customer-accent) 12%, transparent);
}

.mode-live .customer-preview-cue i { background: var(--success); }
.mode-external .customer-preview-cue i { background: #b36a05; }
.mode-launch .customer-preview-cue i { background: #6f6384; }

.customer-live-preview {
  position: fixed;
  z-index: 1500;
  top: 50%;
  left: 50%;
  width: min(590px, calc(100vw - 32px));
  height: min(490px, calc(100dvh - 36px));
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  opacity: 0;
  color: var(--ink-950);
  background: #fff;
  border: 1px solid rgba(207, 191, 234, .92);
  border-radius: 24px;
  box-shadow: 0 34px 100px rgba(25, 9, 54, .28);
  pointer-events: none;
  transform: translate3d(-50%, calc(-50% + 14px), 0) scale(.975);
  transform-origin: center;
  transition: opacity .2s ease, transform .3s var(--ease);
}

.customer-live-preview.is-positioned {
  transform: translate3d(0, 14px, 0) scale(.975);
}

.customer-live-preview.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.customer-live-preview.is-positioned.is-open {
  transform: translate3d(0, 0, 0) scale(1);
}

.customer-preview-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 14px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.customer-preview-header > div:first-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.customer-preview-header strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-preview-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #13724d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
}

.customer-preview-status i {
  --customer-accent: var(--success);
  width: 7px;
  height: 7px;
}

.customer-live-preview.is-external .customer-preview-status {
  color: #915300;
}

.customer-live-preview.is-external .customer-preview-status i {
  --customer-accent: #b36a05;
  background: #b36a05;
}

.customer-live-preview.is-launch .customer-preview-status {
  color: #5e526f;
}

.customer-live-preview.is-launch .customer-preview-status i {
  --customer-accent: #6f6384;
  background: #6f6384;
}

.customer-preview-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customer-preview-actions a,
.customer-preview-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-strong);
  background: var(--primary-soft);
  border: 1px solid #d7c8ff;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
}

.customer-preview-actions a {
  padding-inline: 13px;
}

.customer-live-preview.is-launch .customer-preview-actions a {
  display: none;
}

.customer-preview-actions button {
  width: 44px;
}

.customer-preview-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.customer-browser-bar {
  min-height: 38px;
  display: grid;
  grid-template-columns: 8px 8px 8px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--ink-600);
  background: #f7f4fb;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}

.customer-browser-bar i {
  width: 8px;
  height: 8px;
  background: #d5cae5;
  border-radius: 50%;
}

.customer-browser-bar i:first-child { background: #ef7e81; }
.customer-browser-bar i:nth-child(2) { background: #eebc58; }
.customer-browser-bar i:nth-child(3) { background: #55bd87; }

.customer-browser-bar span {
  overflow: hidden;
  padding-inline-start: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-preview-frame {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #f6f3fb;
}

.customer-preview-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  background: #fff;
  border: 0;
}

.customer-preview-loader {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(250, 248, 253, .88);
  pointer-events: none;
  transition: opacity .2s ease;
}

.customer-preview-loader span {
  width: 42px;
  height: 42px;
  border: 3px solid #e6dcf5;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: customerPreviewSpin .75s linear infinite;
}

.customer-live-preview.is-loading .customer-preview-loader {
  opacity: 1;
}

.customer-preview-static {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  padding: 40px 40px 64px;
  color: var(--ink-700);
  background:
    radial-gradient(circle at 50% 22%, rgba(109, 61, 245, .12), transparent 12rem),
    #fbf9ff;
  opacity: 0;
  visibility: hidden;
  transform: scale(.985);
  text-align: center;
  transition: opacity .22s ease, visibility 0s linear .22s, transform .3s var(--ease);
}

.customer-preview-static .customer-emblem {
  width: 78px;
  height: 78px;
  flex-basis: 78px;
  margin-bottom: 4px;
  border-radius: 21px;
}

.customer-preview-static strong {
  color: var(--ink-950);
  font-size: 18px;
}

.customer-preview-static p {
  max-width: 44ch;
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.customer-live-preview:is(.is-external, .is-launch) .customer-preview-static {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.customer-live-preview:is(.is-external, .is-launch) iframe,
.customer-live-preview:is(.is-external, .is-launch) .customer-preview-loader,
.customer-live-preview.is-external .preview-launch-copy,
.customer-live-preview.is-launch .preview-external-copy {
  display: none;
}

.customer-preview-policy {
  position: absolute;
  z-index: 4;
  right: 10px;
  bottom: 9px;
  left: 10px;
  margin: 0;
  padding: 7px 10px;
  color: #5f5373;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(225, 216, 239, .9);
  border-radius: 10px;
  font-size: 9px;
  line-height: 1.45;
  text-align: center;
  backdrop-filter: blur(8px);
}

@keyframes customerPreviewSpin {
  to { transform: rotate(360deg); }
}

.card-grid,
.feature-grid,
.module-grid,
.edition-grid,
.template-grid,
.customer-grid,
.demo-grid,
.pricing-grid,
.workflow-grid,
.contact-cards,
.resource-grid,
.stats-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.surface-card {
  min-height: 272px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.surface-card-kicker {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.surface-card-kicker .icon-box {
  flex: 0 0 48px;
  margin-bottom: 0;
}

.surface-card h3 {
  min-height: 2.5em;
  margin-bottom: 12px;
}

.surface-card > :last-child {
  margin-bottom: 0;
}

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

.info-card,
.feature-card,
.module-card,
.edition-card,
.template-card,
.customer-card,
.demo-card,
.price-card,
.workflow-card,
.contact-card,
.resource-card,
.stat,
.included-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.info-card:hover,
.feature-card:hover,
.module-card:hover,
.edition-card:hover,
.template-card:hover,
.customer-card:hover,
.demo-card:hover,
.price-card:hover,
.workflow-card:hover,
.contact-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  border-color: #c9b4ec;
  box-shadow: var(--shadow-md);
}

.info-card::before,
.feature-card::before,
.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .25s ease, transform .25s ease;
}

.info-card:hover::before,
.feature-card:hover::before,
.module-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.info-card p,
.feature-card p,
.module-card p,
.edition-card p,
.template-card p,
.customer-card p,
.demo-card p,
.workflow-card p,
.contact-card p,
.resource-card p {
  margin-bottom: 18px;
  font-size: 14px;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid #ddd0ff;
  border-radius: 14px;
}

.icon-box svg,
.icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-meta,
.template-meta,
.edition-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}

.status.stable {
  color: #116745;
  background: var(--success-soft);
  border-color: #bee8d3;
}

.status.preview {
  color: var(--warning);
  background: var(--warning-soft);
  border-color: #ecd99f;
}

.status.custom {
  color: var(--primary-strong);
  background: var(--primary-soft);
  border-color: #d9caff;
}

.status::before {
  content: "";
}

.edition-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.edition-card .text-link,
.template-card .text-link,
.demo-card .text-link {
  margin-top: auto;
}

.edition-card.featured {
  color: #fff;
  background: linear-gradient(145deg, #2d1553, #5b2cd6 75%, #087eea);
  border-color: transparent;
}

.edition-card.featured h3,
.edition-card.featured p,
.edition-card.featured .text-link {
  color: #fff;
}

.edition-card.featured p {
  opacity: .78;
}

.edition-card.featured .icon-box {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
}

.template-preview {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  margin: -26px -26px 24px;
  overflow: hidden;
  color: var(--primary);
  background:
    linear-gradient(135deg, rgba(8, 126, 234, .14), rgba(109, 61, 245, .16)),
    #f7f3ff;
  border-bottom: 1px solid var(--line);
}

.template-preview .mini-window {
  width: 74%;
  height: 70%;
}

.mini-window {
  padding: 8px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(109, 61, 245, .2);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.mini-window::before {
  content: "";
  display: block;
  width: 28%;
  height: 4px;
  margin-bottom: 7px;
  background: #dcd0f8;
  border-radius: 9px;
}

.mini-window span {
  display: block;
  height: 8px;
  margin: 5px 0;
  background: linear-gradient(90deg, #eee9f8 70%, transparent 70%);
  border-radius: 4px;
}

.mini-window span:first-of-type {
  height: 34%;
  background: var(--gradient-subtle);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  gap: 12px;
}

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .35s ease, box-shadow .35s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(145deg, #fff, #eefbf7);
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform .46s var(--ease);
}

.process-step > * {
  position: relative;
  z-index: 1;
}

.process-step.is-filling::before {
  transform: scaleY(1);
}

.process-step.is-complete {
  border-color: rgba(24, 170, 126, .38);
  box-shadow: 0 16px 38px rgba(15, 123, 91, .11);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  inset-inline-end: -13px;
  width: 14px;
  height: 2px;
  background: #cab7eb;
}

.process-step strong {
  display: block;
  font-size: 14px;
}

.process-step small {
  color: var(--ink-600);
  font-size: 11px;
}

.step-number {
  position: relative;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gradient);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 800;
  transition: color .25s ease, background .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}

.step-number::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(.4);
  transition: opacity .25s ease, transform .32s var(--ease);
}

.process-step.is-complete .step-number {
  color: transparent;
  background: linear-gradient(145deg, #10a876, #28c99a);
  box-shadow: 0 8px 20px rgba(16, 168, 118, .28);
  transform: translateY(-2px);
}

.process-step.is-complete .step-number::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.scroll-steps {
  --step-progress: 0;
  position: relative;
  isolation: isolate;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.architecture-flow::before,
.architecture-flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 47px;
  inset-inline-start: 7%;
  width: 86%;
  height: 3px;
  border-radius: 999px;
}

.architecture-flow::before {
  background: rgba(255, 255, 255, .16);
}

.architecture-flow::after {
  background: linear-gradient(90deg, #8870ff, #bb4dff, #5edbd8);
  box-shadow: 0 0 18px rgba(142, 87, 255, .55);
  transform: scaleX(var(--step-progress));
  transform-origin: left center;
  transition: transform .4s var(--ease);
}

html[dir="rtl"] .architecture-flow::after {
  transform-origin: right center;
}

.update-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.update-flow::before,
.update-flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 34px;
  bottom: 34px;
  inset-inline-start: 27px;
  width: 3px;
  border-radius: 999px;
}

.update-flow::before {
  background: #ded4f1;
}

.update-flow::after {
  background: linear-gradient(180deg, var(--primary), #9c43f1, #38c6be);
  box-shadow: 0 0 15px rgba(109, 61, 245, .34);
  transform: scaleY(var(--step-progress));
  transform-origin: center top;
  transition: transform .4s var(--ease);
}

.scroll-step-card {
  --step-accent: #6d3df5;
  --step-accent-2: #9b42ec;
  --step-soft: rgba(109, 61, 245, .16);
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  color: var(--ink-950);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(213, 199, 239, .92);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(23, 8, 52, .08);
  transition: border-color .35s ease, box-shadow .35s ease, opacity .45s ease, transform .45s var(--ease);
}

.scroll-step-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, var(--step-soft), transparent 45%),
    linear-gradient(145deg, #fff, #f1ebff);
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform .46s var(--ease);
}

.js .scroll-step-card {
  opacity: .58;
  transform: translateY(12px);
}

.scroll-step-card.is-filling {
  opacity: 1;
  transform: translateY(0);
}

.scroll-step-card.is-filling::before {
  transform: scaleY(1);
}

.scroll-step-card.is-complete {
  border-color: color-mix(in srgb, var(--step-accent) 48%, #d9cdeb);
  box-shadow: 0 18px 46px rgba(65, 24, 131, .14);
}

.scroll-step-card:nth-child(5n + 1) {
  --step-accent: #1677e8;
  --step-accent-2: #3a9cff;
  --step-soft: rgba(22, 119, 232, .16);
}

.scroll-step-card:nth-child(5n + 2) {
  --step-accent: #7350e7;
  --step-accent-2: #a64cf0;
  --step-soft: rgba(115, 80, 231, .16);
}

.scroll-step-card:nth-child(5n + 3) {
  --step-accent: #ec8a24;
  --step-accent-2: #f4b43f;
  --step-soft: rgba(236, 138, 36, .17);
}

.scroll-step-card:nth-child(5n + 4) {
  --step-accent: #0da99b;
  --step-accent-2: #3ccfc1;
  --step-soft: rgba(13, 169, 155, .16);
}

.scroll-step-card:nth-child(5n + 5) {
  --step-accent: #d64c8a;
  --step-accent-2: #f06e9f;
  --step-soft: rgba(214, 76, 138, .15);
}

.architecture-node {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-icon,
.step-status {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
}

.step-icon {
  color: var(--step-accent);
  background: color-mix(in srgb, var(--step-accent) 11%, #fff);
  border: 1px solid color-mix(in srgb, var(--step-accent) 24%, #fff);
  transition: color .3s ease, background .3s ease, box-shadow .3s ease, transform .3s var(--ease);
}

.step-icon svg {
  width: 23px;
  height: 23px;
}

.step-status {
  position: relative;
  width: 34px;
  height: 34px;
  color: #7d699e;
  background: #f7f4fb;
  border: 1px solid #e3d9f2;
  border-radius: 50%;
}

.step-index {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: opacity .25s ease, transform .25s var(--ease);
}

.step-check {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #0d9f72, #2bcca0);
  border-radius: inherit;
  opacity: 0;
  transform: scale(.45) rotate(-18deg);
  transition: opacity .28s ease, transform .38s var(--ease);
}

.step-check svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.6;
}

.scroll-step-card.is-complete .step-icon {
  color: #fff;
  background: linear-gradient(145deg, var(--step-accent), var(--step-accent-2));
  box-shadow: 0 10px 24px color-mix(in srgb, var(--step-accent) 34%, transparent);
  transform: translateY(-2px);
}

.scroll-step-card.is-complete .step-index {
  opacity: 0;
  transform: scale(.5);
}

.scroll-step-card.is-complete .step-check {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.step-copy {
  display: grid;
  gap: 7px;
}

.scroll-step-card strong {
  display: block;
  color: var(--ink-950);
  font-size: 17px;
  line-height: 1.35;
}

.scroll-step-card small {
  display: block;
  color: var(--ink-600);
  font-size: 12px;
  line-height: 1.75;
}

.deep .architecture-node {
  background: rgba(255, 255, 255, .97);
}

.update-step {
  min-height: 88px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
}

.update-step .step-top {
  display: contents;
}

.update-step .step-icon {
  grid-column: 1;
  grid-row: 1;
}

.update-step .step-copy {
  grid-column: 2;
  grid-row: 1;
}

.update-step .step-status {
  grid-column: 3;
  grid-row: 1;
}

.image-stage {
  position: relative;
  padding: 14px;
  background: linear-gradient(135deg, #fff, #f7f3ff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.image-stage img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 9px);
}

.edition-world-section {
  overflow: clip;
  background:
    radial-gradient(circle at 50% 32%, rgba(109, 61, 245, .10), transparent 35rem),
    linear-gradient(180deg, #fff, #faf8ff 78%, #fff);
}

.edition-world-section .section-head {
  max-width: 920px;
}

.edition-world {
  position: relative;
  margin: 0;
  perspective: 1400px;
}

.edition-world-viewport {
  --world-origin-x: 50%;
  --world-origin-y: 50%;
  --world-preview-zoom: 1.6;
  --world-tilt-x: 0deg;
  --world-tilt-y: 0deg;
  --world-glow-x: 50%;
  --world-glow-y: 50%;
  position: relative;
  isolation: isolate;
  aspect-ratio: 1706 / 922;
  overflow: hidden;
  background: #f1effb;
  border: 1px solid rgba(109, 61, 245, .22);
  border-radius: clamp(20px, 3vw, 34px);
  box-shadow: 0 34px 90px rgba(56, 31, 105, .18), 0 10px 26px rgba(56, 31, 105, .09);
  transform: perspective(1400px) rotateX(var(--world-tilt-x)) rotateY(var(--world-tilt-y));
  transform-style: preserve-3d;
  transition: transform .34s var(--ease), box-shadow .34s ease;
}

.edition-world-viewport::before,
.edition-world-viewport::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.edition-world-viewport::before {
  background: radial-gradient(circle at var(--world-glow-x) var(--world-glow-y), rgba(255, 255, 255, .34), transparent 21%);
  mix-blend-mode: screen;
  opacity: .68;
}

.edition-world-viewport::after {
  background: radial-gradient(circle at var(--world-origin-x) var(--world-origin-y), transparent 0 7%, rgba(24, 10, 48, .22) 36%, rgba(24, 10, 48, .52) 76%);
  opacity: 0;
  transition: opacity .4s ease;
}

.edition-world-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.001);
  transform-origin: var(--world-origin-x) var(--world-origin-y);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform .56s cubic-bezier(.16, 1, .3, 1);
}

.edition-world.is-previewing .edition-world-image {
  transform: scale(var(--world-preview-zoom));
}

.edition-world.is-previewing .edition-world-viewport::after {
  opacity: .32;
}

.edition-world-hotspots,
.edition-world-hint {
  display: none;
}

.js .edition-world-hotspots {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: block;
}

.world-hotspot {
  position: absolute;
  top: var(--hotspot-y);
  left: var(--hotspot-x);
  min-width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--primary-strong);
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity .28s ease, filter .28s ease;
}

.world-hotspot-marker {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(34, 13, 73, .86);
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(39, 16, 79, .25), inset 0 0 0 1px rgba(143, 110, 255, .18);
  backdrop-filter: blur(12px) saturate(140%);
  transform: translateY(0) scale(1);
  transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease;
}

.world-hotspot-marker .icon,
.world-hotspot-marker svg {
  width: 21px;
  height: 21px;
}

.world-hotspot-label {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  width: max-content;
  max-width: 150px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(24, 10, 48, .92);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(24, 10, 48, .2);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 5px);
  transition: opacity .2s ease, transform .2s var(--ease);
}

.world-hotspot:hover .world-hotspot-marker,
.world-hotspot:focus-visible .world-hotspot-marker,
.world-hotspot.is-active .world-hotspot-marker {
  background: linear-gradient(145deg, #171029, var(--primary-strong));
  box-shadow: 0 16px 34px rgba(51, 24, 112, .38), 0 0 0 5px rgba(255, 255, 255, .46);
  transform: translateY(-3px) scale(1.08);
}

.world-hotspot:hover .world-hotspot-label,
.world-hotspot:focus-visible .world-hotspot-label,
.world-hotspot.is-active .world-hotspot-label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.world-hotspot:focus-visible {
  outline: none;
}

.world-hotspot:focus-visible .world-hotspot-marker {
  outline: 3px solid rgba(255, 255, 255, .92);
  outline-offset: 4px;
}

.edition-world.is-previewing .world-hotspot:not(.is-active) {
  filter: grayscale(.5);
  opacity: .26;
}

.js .edition-world-hint {
  position: absolute;
  z-index: 6;
  inset-inline-start: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(24, 10, 48, .72);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(24, 10, 48, .2);
  backdrop-filter: blur(14px);
  font-size: 10px;
  font-weight: 800;
  pointer-events: none;
}

.edition-world-hint .icon,
.edition-world-hint svg {
  width: 16px;
  height: 16px;
}

.edition-world figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 8px 0;
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 700;
}

.edition-world-dialog {
  --dialog-origin-x: 50%;
  --dialog-origin-y: 50%;
  --dialog-zoom: 1.6;
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  max-height: min(780px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  color: var(--ink-950);
  background: #fff;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 40px 120px rgba(14, 7, 29, .46);
}

.edition-world-dialog::backdrop {
  background: rgba(15, 7, 31, .78);
}

.world-dialog-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  inset-inline-end: 16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink-950);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(109, 61, 245, .2);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .2s var(--ease), background .2s ease;
}

.world-dialog-close:hover {
  background: #fff;
  transform: translateY(-2px);
}

.world-dialog-layout {
  position: relative;
  min-height: 560px;
  aspect-ratio: 1706 / 922;
  overflow: hidden;
  background: #efedf8;
}

.world-dialog-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #efedf8;
}

.world-dialog-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 8, 42, .06), transparent 32% 68%, rgba(20, 8, 42, .08));
  pointer-events: none;
}

.world-dialog-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(var(--dialog-zoom));
  transform-origin: var(--dialog-origin-x) var(--dialog-origin-y);
}

.world-dialog-copy {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  bottom: 24px;
  width: min(38%, 410px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  overflow: auto;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(35, 16, 72, .18);
  backdrop-filter: blur(22px) saturate(130%);
}

.edition-world-dialog.copy-left .world-dialog-copy {
  right: auto;
  left: 24px;
}

.world-dialog-copy h2 {
  margin-top: 15px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.world-dialog-copy > p {
  margin-bottom: 14px;
  color: var(--ink-700);
  font-size: 14px;
}

.world-dialog-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0 18px;
}

.world-dialog-facts span {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: var(--paper-violet);
  border: 1px solid var(--line);
  border-radius: 13px;
}

.world-dialog-facts strong {
  color: var(--primary-strong);
  font-size: 10px;
}

.world-dialog-facts small {
  color: var(--ink-600);
  font-size: 10px;
  line-height: 1.45;
}

.check-list,
.feature-list,
.plain-list,
.price-features {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li,
.feature-list li,
.price-features li {
  position: relative;
  min-height: 34px;
  padding-inline-start: 30px;
  color: var(--ink-800);
  font-size: 14px;
}

.check-list li::before,
.feature-list li::before,
.price-features li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  inset-inline-start: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--success);
  background: var(--success-soft);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
}

.plain-list li {
  padding-block: 9px;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line);
}

.filter-bar,
.subnav-track,
.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.filter-bar {
  margin-bottom: 30px;
  padding: 8px;
  background: var(--paper-violet);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.filter-bar button,
.tabs button,
[data-filter] {
  min-height: 42px;
  padding: 9px 14px;
  color: var(--ink-700);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.filter-bar button.active,
.tabs button.active,
[data-filter].active {
  color: var(--primary-strong);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-xs);
}

.subnav {
  position: sticky;
  z-index: 900;
  top: 70px;
  padding: 10px 0;
  overflow-x: auto;
  background: rgba(255, 255, 255, .9);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.subnav-track {
  flex-wrap: nowrap;
}

.subnav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  color: var(--ink-700);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.subnav a:hover {
  color: var(--primary-strong);
  background: var(--primary-soft);
}

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

.commercial-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.commercial-card.primary-model {
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(8, 126, 234, .65), transparent 15rem),
    linear-gradient(145deg, #28104c, #5422d6);
  border-color: transparent;
}

.commercial-card.primary-model h2,
.commercial-card.primary-model h3,
.commercial-card.primary-model p,
.commercial-card.primary-model .price-range,
.commercial-card.primary-model .check-list li {
  color: #fff;
}

.commercial-card.primary-model p,
.commercial-card.primary-model .model-note {
  opacity: .78;
}

.commercial-card.primary-model .check-list li::before {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}

.commercial-card .page-actions {
  margin-top: auto;
}

.price-range {
  margin: 12px 0 20px;
  color: var(--ink-950);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
}

.price-range small {
  display: block;
  margin-top: 10px;
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  opacity: .65;
}

.estimator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.estimator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.estimate-summary {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 26px;
  color: #fff;
  background: linear-gradient(145deg, var(--dark-soft), var(--primary-strong));
  border-radius: 20px;
}

.estimate-summary h3,
.estimate-summary p {
  color: #fff;
}

.estimate-total {
  display: block;
  margin: 18px 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.04em;
  direction: ltr;
  unicode-bidi: isolate;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.fieldset-label {
  color: var(--ink-800);
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink-950);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(109, 61, 245, .12);
}

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

.choice {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: var(--ink-800);
  background: var(--paper-violet);
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
}

.choice input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--primary);
}

.choice-custom {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f0eaff, #fbf9ff);
  border-style: dashed;
  border-color: rgba(109, 61, 245, .42);
}

.field-hint {
  color: var(--ink-600);
  font-size: 11px;
  line-height: 1.7;
}

.quote-channel-grid .choice {
  justify-content: center;
}

.estimate-delivery-notice,
.estimate-request-status {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 18px;
  padding: 13px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
}

.estimate-delivery-notice .icon,
.estimate-request-status .icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-radius: 10px;
}

.estimate-delivery-notice svg,
.estimate-request-status svg {
  width: 17px;
  height: 17px;
}

.estimate-delivery-notice p,
.estimate-request-status p {
  margin: 0;
  font-size: 11px;
  line-height: 1.75;
}

.estimate-submit {
  width: 100%;
  margin-top: 20px;
}

.estimate-request-status {
  margin-top: 12px;
  color: #eafff9;
  background: rgba(31, 186, 142, .17);
  border-color: rgba(97, 236, 194, .34);
}

.estimate-request-status[hidden] {
  display: none;
}

.form-panel {
  padding: clamp(26px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.form-submit {
  width: max-content;
}

.field-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 11px;
}

.table-wrap,
.compare,
.compare-table {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.data-table,
.compare table,
.compare-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.data-table th,
.data-table td,
.compare th,
.compare td,
.compare-table th,
.compare-table td {
  padding: 18px;
  color: var(--ink-700);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  text-align: start;
}

.data-table th,
.compare th,
.compare-table th {
  color: var(--ink-900);
  background: var(--paper-violet);
  font-weight: 800;
}

.data-table tr:last-child td,
.compare tr:last-child td,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.highlight-column {
  color: var(--primary-strong) !important;
  background: #f8f4ff !important;
  font-weight: 800;
}

.yes {
  color: var(--success) !important;
  font-weight: 900;
}

.no {
  color: var(--ink-500) !important;
}

.demo-banner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 18px;
  color: #fff;
  background: #8a3d12;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.demo-banner::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: #ffd59e;
  border-radius: 50%;
}

.browser-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.browser-toolbar {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: #f2eef8;
  border-bottom: 1px solid var(--line);
}

.browser-toolbar i {
  width: 9px;
  height: 9px;
  background: #b8adc8;
  border-radius: 50%;
}

.browser-address {
  min-width: 0;
  flex: 1;
  margin-inline-start: 8px;
  padding: 5px 10px;
  overflow: hidden;
  color: var(--ink-600);
  background: #fff;
  border-radius: 7px;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-content {
  min-height: 520px;
}

.mock-site {
  min-height: 520px;
  padding: 24px;
  background:
    radial-gradient(circle at 80% 20%, rgba(109, 61, 245, .15), transparent 18rem),
    linear-gradient(180deg, #fff, #f8f5ff);
}

.mock-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 54px;
}

.mock-logo {
  width: 98px;
  height: 18px;
  background: var(--gradient);
  border-radius: 6px;
}

.mock-links {
  display: flex;
  gap: 8px;
}

.mock-links i {
  width: 46px;
  height: 8px;
  background: #ded5ec;
  border-radius: 6px;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 28px;
}

.mock-lines span {
  display: block;
  width: 85%;
  height: 12px;
  margin: 10px 0;
  background: #ded5ec;
  border-radius: 9px;
}

.mock-lines span:first-child {
  width: 95%;
  height: 30px;
  background: var(--gradient);
}

.mock-lines span:last-child {
  width: 40%;
  height: 38px;
  margin-top: 24px;
  background: var(--primary);
}

.mock-visual {
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(255, 255, 255, .8) 0 18%, transparent 19%),
    conic-gradient(from 45deg, #00a8f4, #6d3df5, #c4b1ff, #00a8f4);
  border-radius: 32% 68% 58% 42% / 45% 34% 66% 55%;
  filter: saturate(.9);
}

.admin-demo {
  min-height: 640px;
  display: grid;
  grid-template-columns: 230px 1fr;
  color: #e9e0f7;
  background: #130a22;
}

.admin-sidebar {
  padding: 22px 16px;
  background: #1b0e30;
  border-inline-end: 1px solid rgba(255, 255, 255, .08);
}

.admin-brand {
  width: 128px;
  margin-bottom: 28px;
}

.admin-menu {
  display: grid;
  gap: 5px;
}

.admin-menu a,
.admin-menu button {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  color: #bcb0ce;
  background: transparent;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  text-align: start;
}

.admin-menu a.active,
.admin-menu a:hover,
.admin-menu button.active,
.admin-menu button:hover {
  color: #fff;
  background: rgba(109, 61, 245, .28);
}

.admin-main {
  min-width: 0;
  padding: 24px;
}

.admin-topbar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-topbar h2,
.admin-topbar p,
.admin-card h3,
.admin-card p {
  color: #fff;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-card {
  min-height: 130px;
  padding: 17px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
}

.admin-card p {
  margin-bottom: 0;
  opacity: .62;
  font-size: 11px;
}

.admin-card strong {
  display: block;
  margin: 12px 0;
  color: #fff;
  font-size: 26px;
}

.admin-chart {
  grid-column: span 2;
  min-height: 250px;
}

.chart-bars {
  height: 150px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 18px;
}

.chart-bars i {
  flex: 1;
  min-width: 8px;
  height: var(--bar, 50%);
  background: linear-gradient(180deg, #8e6cff, #4c2ac6);
  border-radius: 5px 5px 2px 2px;
}

.webapp-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(8, 126, 234, .25), transparent 24rem),
    radial-gradient(circle at 80% 70%, rgba(109, 61, 245, .3), transparent 26rem),
    #140924;
}

.phone-frame {
  width: min(100%, 340px);
  min-height: 620px;
  padding: 10px;
  background: #0b0612;
  border: 1px solid #4c3a63;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .42);
}

.phone-screen {
  min-height: 598px;
  padding: 18px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #2a1450, #130a22);
  border-radius: 31px;
}

.phone-notch {
  width: 86px;
  height: 19px;
  margin: -9px auto 22px;
  background: #0b0612;
  border-radius: 0 0 13px 13px;
}

.app-cover {
  aspect-ratio: 1;
  margin: 18px 0;
  background:
    radial-gradient(circle at 34% 32%, rgba(255, 255, 255, .35), transparent 12%),
    linear-gradient(135deg, #087eea, #6d3df5 56%, #c04bea);
  border-radius: 22px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, .3);
}

.app-row {
  display: flex;
  gap: 10px;
  margin: 12px 0;
}

.app-row i {
  flex: 1;
  height: 72px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 15px;
}

.app-bottom-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 22px;
  padding: 10px;
  background: rgba(255, 255, 255, .07);
  border-radius: 18px;
}

.app-bottom-nav i {
  width: 26px;
  height: 26px;
  margin: auto;
  background: rgba(255, 255, 255, .16);
  border-radius: 8px;
}

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

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  color: var(--ink-900);
  background: transparent;
  font-size: 14px;
  font-weight: 800;
  text-align: start;
}

.faq-question i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  top: 8px;
  inset-inline: 2px;
  height: 2px;
  background: var(--primary);
  transition: transform .2s ease;
}

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

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

.faq-answer {
  padding: 0 20px 20px;
  color: var(--ink-700);
  font-size: 14px;
}

.closing-cta {
  padding: 70px 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(8, 126, 234, .65), transparent 20rem),
    linear-gradient(125deg, #28104c, #5c2ad4);
}

.closing-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 38px;
}

.closing-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(29px, 4vw, 48px);
}

.site-footer {
  padding: 70px 0 26px;
  color: #fff;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 48px;
}

.footer-wordmark {
  display: inline-flex;
  margin-bottom: 22px;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;
}

.footer-brand p {
  max-width: 360px;
  color: #b9aecb;
  font-size: 13px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-col h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0;
}

.footer-col a {
  min-height: 34px;
  display: flex;
  align-items: center;
  color: #b9aecb;
  font-size: 12px;
  font-weight: 600;
  transition: color .2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 54px;
  padding-top: 22px;
  color: #8f82a5;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 10px;
}

html.page-entering main,
html.page-entering [data-header],
html.page-entering [data-footer] {
  opacity: .12;
  filter: blur(7px);
  transform: translate3d(0, 5px, 0);
}

html.page-entering.page-ready main,
html.page-entering.page-ready [data-header],
html.page-entering.page-ready [data-footer] {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition: opacity .34s ease, filter .38s ease, transform .42s var(--ease);
}

.page-transition {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  contain: layout paint style;
  background: rgba(244, 241, 250, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
  backdrop-filter: blur(0) saturate(100%);
  transition: opacity .15s ease, backdrop-filter .22s ease, visibility 0s linear .22s;
}

.page-transition-core {
  width: min(204px, calc(100% - 44px));
  display: grid;
  gap: 11px;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .16s ease, transform .22s var(--ease);
}

.page-transition-word {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #116ee8, #6d3df5 58%, #22a88c);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .3em;
  text-indent: .3em;
  filter: drop-shadow(0 8px 16px rgba(60, 42, 120, .16));
}

.page-transition-line {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(70, 47, 130, .13);
  border-radius: 999px;
}

.page-transition-line::before {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue) 16%, var(--primary) 52%, #25b79f 84%, transparent);
  box-shadow: 0 0 12px rgba(109, 61, 245, .34);
  transform: translate3d(-135%, 0, 0);
  will-change: transform;
}

@keyframes pageTransitionSweep {
  to { transform: translate3d(340%, 0, 0); }
}

html.page-leaving .page-transition {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  backdrop-filter: blur(11px) saturate(88%);
  transition-delay: 0s;
}

html.page-leaving .page-transition-core {
  opacity: 1;
  transform: none;
}

html.page-leaving .page-transition-line::before {
  animation: pageTransitionSweep .72s var(--ease) infinite;
}

html[dir="rtl"].page-leaving .page-transition-line::before {
  animation-direction: reverse;
}

.toast {
  position: fixed;
  z-index: 1600;
  bottom: 24px;
  inset-inline-start: 50%;
  max-width: min(calc(100% - 30px), 520px);
  padding: 13px 18px;
  color: #fff;
  background: var(--ink-950);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity .25s ease, transform .25s var(--ease);
}

html[dir="rtl"] .toast {
  transform: translate(50%, 18px);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

html[dir="rtl"] .toast.show {
  transform: translate(50%, 0);
}

.consultation-messenger {
  position: fixed;
  z-index: 1550;
  top: 50%;
  right: 20px;
  bottom: auto;
  left: auto;
  display: grid;
  justify-items: end;
  transform: translateY(-50%);
}

.consultation-launcher {
  position: relative;
  width: 56px;
  min-width: 56px;
  height: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px;
  color: #fff;
  background: linear-gradient(135deg, #126edc, #6d3df5 62%, #8d43dc);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(57, 34, 125, .27);
  font-size: 12px;
  font-weight: 900;
  transition: transform .22s var(--ease), box-shadow .22s ease;
}

.consultation-launcher:hover,
.consultation-messenger.is-open .consultation-launcher {
  transform: translateX(-3px);
  box-shadow: 0 24px 54px rgba(57, 34, 125, .34);
}

.consultation-launcher-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 11px);
  width: max-content;
  padding: 10px 13px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(215, 199, 239, .94);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(34, 18, 65, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate(12px, -50%) scale(.96);
  transform-origin: right center;
  transition: opacity .18s ease, transform .24s var(--ease);
  backdrop-filter: blur(14px);
}

.consultation-launcher-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid rgba(215, 199, 239, .94);
  border-right: 1px solid rgba(215, 199, 239, .94);
  transform: translateY(-50%) rotate(45deg);
}

.consultation-launcher:is(:hover, :focus-visible) .consultation-launcher-label {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.consultation-messenger.is-open .consultation-launcher-label {
  opacity: 0;
  transform: translate(8px, -50%) scale(.97);
}

.consultation-launcher-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--primary-strong);
  background: #fff;
  border-radius: 12px;
}

.consultation-launcher-icon svg,
.consultation-avatar svg,
.consultation-form button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-launcher > i {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 10px;
  height: 10px;
  background: #29cc8d;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(41, 204, 141, .16);
}

.consultation-panel {
  position: absolute;
  top: 50%;
  right: 68px;
  bottom: auto;
  left: auto;
  width: min(382px, calc(100vw - 28px));
  overflow: hidden;
  color: var(--ink-950);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(215, 199, 239, .96);
  border-radius: 23px;
  box-shadow: 0 34px 90px rgba(30, 12, 58, .28);
  opacity: 0;
  pointer-events: none;
  transform: translate(14px, -50%) scale(.97);
  transform-origin: right center;
  transition: opacity .18s ease, transform .24s var(--ease);
  backdrop-filter: blur(22px) saturate(135%);
}

.consultation-panel[hidden] {
  display: none !important;
}

.consultation-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%) scale(1);
}

.consultation-head {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 14px 15px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 10%, rgba(44, 210, 169, .24), transparent 8rem),
    linear-gradient(135deg, #17102d, #38226b 62%, #164967);
}

html[dir="rtl"] .consultation-head {
  padding: 15px 18px 15px 14px;
}

.consultation-head > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.consultation-avatar {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
}

.consultation-head h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 15px;
  letter-spacing: -.02em;
}

.consultation-head p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #d9d2e6;
  font-size: 9px;
}

.consultation-head p i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: #2bd096;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(43, 208, 150, .13);
}

.consultation-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 13px;
  transition: background .2s ease, transform .2s ease;
}

.consultation-close:hover {
  background: rgba(255, 255, 255, .15);
  transform: rotate(4deg);
}

.consultation-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.consultation-body {
  padding: 15px;
}

.consultation-messages {
  max-height: 220px;
  display: grid;
  gap: 9px;
  overflow-y: auto;
  padding: 3px 2px 7px;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.consultation-bubble {
  width: fit-content;
  max-width: 88%;
  margin: 0;
  padding: 10px 12px;
  font-size: 11px;
  line-height: 1.65;
}

.consultation-bubble.is-agent {
  justify-self: start;
  color: var(--ink-800);
  background: #f2eef9;
  border: 1px solid var(--line);
  border-radius: 5px 14px 14px 14px;
}

html[dir="rtl"] .consultation-bubble.is-agent {
  border-radius: 14px 5px 14px 14px;
}

.consultation-bubble.is-user {
  justify-self: end;
  color: #fff;
  background: linear-gradient(135deg, #1479ea, #6d3df5);
  border-radius: 14px 5px 14px 14px;
  box-shadow: 0 10px 24px rgba(80, 49, 193, .16);
}

html[dir="rtl"] .consultation-bubble.is-user {
  border-radius: 5px 14px 14px 14px;
}

.consultation-topics {
  display: flex;
  gap: 7px;
  margin: 10px 0 12px;
  overflow-x: auto;
  padding: 2px;
  scrollbar-width: none;
}

.consultation-topics::-webkit-scrollbar {
  display: none;
}

.consultation-topics button {
  min-height: 36px;
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--primary-strong);
  background: var(--primary-soft);
  border: 1px solid #d8caff;
  border-radius: 10px;
  font-size: 9px;
  font-weight: 800;
  transition: background .2s ease, transform .2s var(--ease);
}

.consultation-topics button:hover {
  background: #e4d9ff;
  transform: translateY(-1px);
}

.consultation-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 8px;
}

.consultation-form input {
  width: 100%;
  min-height: 46px;
  padding: 10px 13px;
  color: var(--ink-950);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 12px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.consultation-form input:focus {
  border-color: #a98ee4;
  box-shadow: 0 0 0 4px rgba(109, 61, 245, .1);
}

.consultation-form button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1479ea, #6d3df5);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(74, 53, 186, .2);
  transition: transform .2s var(--ease), box-shadow .2s ease;
}

.consultation-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(74, 53, 186, .28);
}

html[dir="rtl"] .consultation-form button svg {
  transform: scaleX(-1);
}

.consultation-note {
  margin: 9px 0 0;
  color: var(--ink-600);
  font-size: 8px;
  text-align: center;
}

.demo-browser {
  margin-top: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.demo-browser-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  color: var(--ink-600);
  background: #f2eef8;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
}

.demo-browser-bar > span:nth-child(2) {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-browser-dots {
  position: relative;
  width: 38px;
  height: 10px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 5px 5px, #d47d88 0 4px, transparent 4.5px),
    radial-gradient(circle at 19px 5px, #d5a649 0 4px, transparent 4.5px),
    radial-gradient(circle at 33px 5px, #66a77f 0 4px, transparent 4.5px);
}

.site-preview {
  color: #23153a;
  background: #f9f5ed;
}

.site-preview-nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid #e8dfd0;
}

.demo-brand {
  color: var(--ink-950);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
}

.demo-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.demo-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: #6e6259;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
}

.demo-nav a:hover {
  color: var(--primary-strong);
  background: #f4edff;
}

.site-preview-hero {
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  align-items: center;
  gap: 44px;
  padding: clamp(32px, 6vw, 76px);
  background:
    radial-gradient(circle at 78% 35%, rgba(109, 61, 245, .13), transparent 22rem),
    linear-gradient(135deg, #fffdf8, #f1e9ff);
}

.site-preview-hero h2 {
  max-width: 640px;
  font-size: clamp(32px, 4.5vw, 58px);
}

.demo-media-placeholder,
.demo-product-media {
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--primary-strong);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .45), transparent),
    linear-gradient(145deg, #d8efff, #e0d2ff 55%, #f2e5fa);
  border: 1px solid rgba(109, 61, 245, .16);
  border-radius: 26px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.demo-media-placeholder {
  min-height: 330px;
}

.site-preview-section {
  padding: clamp(34px, 5vw, 62px);
  background: #fff;
  border-top: 1px solid #e8dfd0;
}

.site-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.demo-product {
  padding: 16px;
  background: #fff;
  border: 1px solid #e8dfd0;
  border-radius: 16px;
}

.demo-product-media {
  min-height: 170px;
  margin-bottom: 16px;
  border-radius: 12px;
}

.demo-product h4 {
  margin: 13px 0 8px;
  font-size: 17px;
}

.demo-product p {
  margin-bottom: 0;
  font-size: 12px;
}

.admin-preview {
  color: #e8dff5;
  background: #130a22;
}

.admin-layout {
  min-height: 700px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.admin-layout .admin-sidebar {
  padding: 24px 16px;
  color: #fff;
  background: #1c0f30;
  border-inline-end: 1px solid rgba(255, 255, 255, .08);
}

.admin-layout .demo-brand {
  display: block;
  margin-bottom: 28px;
  color: #fff;
}

.admin-nav {
  display: grid;
  gap: 5px;
}

.admin-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 11px;
  color: #b8abc9;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.admin-nav a.active,
.admin-nav a:hover {
  color: #fff;
  background: rgba(109, 61, 245, .28);
}

.admin-layout .admin-main {
  min-width: 0;
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 85% 10%, rgba(109, 61, 245, .18), transparent 20rem),
    #130a22;
}

.admin-toolbar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.admin-toolbar h2,
.admin-panel h3,
.admin-panel h4 {
  color: #fff;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-layout .info-card,
.admin-panel,
.admin-layout .feature-card {
  color: #fff;
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .09);
  box-shadow: none;
}

.admin-layout .info-card span,
.admin-layout .info-card small,
.admin-layout .feature-card p,
.admin-panel p {
  color: #b9acc9;
}

.admin-layout .info-card strong {
  display: block;
  margin: 12px 0;
  color: #fff;
  font-size: 30px;
}

.admin-panel {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
}

.admin-panel .section-head {
  margin-bottom: 22px;
}

.admin-panel .table-wrap {
  border-color: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.admin-panel .data-table th {
  color: #e8dff5;
  background: #26153d;
  border-color: rgba(255, 255, 255, .08);
}

.admin-panel .data-table td {
  color: #b9acc9;
  background: #1a0e2b;
  border-color: rgba(255, 255, 255, .08);
}

.phone-stage {
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 52px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(8, 126, 234, .28), transparent 22rem),
    radial-gradient(circle at 84% 72%, rgba(109, 61, 245, .35), transparent 24rem),
    #160b28;
  border-radius: 28px;
}

.phone-shell {
  width: min(100%, 380px);
  padding: 10px;
  background: #09050f;
  border: 1px solid #4f3d65;
  border-radius: 42px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, .48);
}

.phone-shell .phone-screen {
  min-height: 690px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #28134a, #12091f);
  border-radius: 33px;
}

.app-bar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.app-bar .demo-brand {
  color: #fff;
}

.app-avatar {
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--primary);
  border-radius: 13px;
  font-size: 11px;
  font-weight: 900;
}

.app-content {
  flex: 1;
  padding: 18px;
  overflow: auto;
}

.app-welcome h2,
.app-panel h3 {
  color: #fff;
}

.app-welcome h2 {
  font-size: 26px;
}

.app-welcome p,
.app-panel p,
.app-panel small,
.app-quick-card small {
  color: #b9acc9;
}

.app-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 18px 0;
}

.app-quick-card {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  padding: 13px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
}

.app-quick-card .icon-box {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: #fff;
  background: rgba(109, 61, 245, .34);
  border-color: rgba(255, 255, 255, .09);
}

.app-quick-card .icon-box svg {
  width: 18px;
  height: 18px;
}

.app-quick-card strong {
  color: #fff;
  font-size: 12px;
}

.app-quick-card small {
  font-size: 9px;
}

.app-panel {
  margin-top: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
}

.app-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.app-panel h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.app-panel p {
  font-size: 11px;
}

.app-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 15px 0 8px;
}

.app-progress span {
  height: 5px;
  background: rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.app-progress span.active {
  background: linear-gradient(90deg, #00a8f4, #7d5bff);
}

.app-nav {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px;
  background: rgba(7, 3, 13, .94);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.app-nav a {
  display: grid;
  place-items: center;
  color: #8f82a5;
  border-radius: 11px;
  font-size: 9px;
  font-weight: 800;
}

.app-nav a.active,
.app-nav a:hover {
  color: #fff;
  background: rgba(109, 61, 245, .25);
}

.js .reveal,
.js .stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .46s var(--ease), transform .46s var(--ease);
}

.js .page-actions.reveal {
  transform: translateY(10px);
}

.js .reveal.visible,
.js .stagger.visible > * {
  opacity: 1;
  transform: none;
}

.js .stagger.visible:not(.stagger-complete) > * {
  transition-delay: var(--stagger-delay, 0ms);
}

.stagger > article:nth-child(6n + 1) { --card-accent: #1677e8; --card-accent-soft: #eaf4ff; }
.stagger > article:nth-child(6n + 2) { --card-accent: #7250e6; --card-accent-soft: #f0ebff; }
.stagger > article:nth-child(6n + 3) { --card-accent: #0da99b; --card-accent-soft: #e7faf7; }
.stagger > article:nth-child(6n + 4) { --card-accent: #e38325; --card-accent-soft: #fff4e8; }
.stagger > article:nth-child(6n + 5) { --card-accent: #d64c8a; --card-accent-soft: #fff0f6; }
.stagger > article:nth-child(6n + 6) { --card-accent: #5873d8; --card-accent-soft: #edf0ff; }

.stagger > article .icon-box {
  color: var(--card-accent, var(--primary));
  background: var(--card-accent-soft, var(--paper-violet));
  border-color: color-mix(in srgb, var(--card-accent, var(--primary)) 22%, #fff);
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 72px;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .nav-actions {
    margin-inline-start: 0;
  }

  .desktop-only {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    inset-inline: 16px;
    display: none;
    align-items: stretch;
    padding: 14px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    width: 165px;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

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

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

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

  .surface-card h3 {
    min-height: auto;
  }

  .process-line,
  .architecture-flow {
    grid-template-columns: repeat(3, 1fr);
  }

  .architecture-flow::before,
  .architecture-flow::after {
    display: none;
  }

  .update-flow {
    grid-template-columns: 1fr;
  }

  .process-step::after,
  .architecture-node::after,
  .update-step::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .home-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .about-grid,
  .contact-layout,
  .platform-grid,
  .commercial-grid,
  .estimator,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
  }

  .visual-float.top {
    inset-inline-start: 2%;
  }

  .visual-float.bottom {
    inset-inline-end: 2%;
  }

  .section-head.split-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-grid,
  .feature-grid,
  .edition-grid,
  .template-grid,
  .customer-grid,
  .demo-grid,
  .pricing-grid,
  .workflow-grid,
  .contact-cards,
  .resource-grid,
  .stats-grid,
  .included-grid,
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-cloud-inner {
    grid-template-columns: 1fr;
  }

  .estimator {
    padding: 24px;
  }

  .estimate-summary {
    position: static;
  }

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

  .admin-demo {
    grid-template-columns: 76px 1fr;
  }

  .admin-layout {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .admin-layout .admin-sidebar {
    padding-inline: 10px;
  }

  .admin-layout .demo-brand {
    font-size: 0;
  }

  .admin-layout .demo-brand::before {
    content: "P";
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-inline: auto;
    color: #fff;
    background: var(--gradient);
    border-radius: 12px;
    font-size: 14px;
  }

  .admin-nav a {
    justify-content: center;
    padding-inline: 4px;
    font-size: 9px;
    text-align: center;
  }

  .site-preview-hero {
    grid-template-columns: 1fr;
  }

  .demo-media-placeholder {
    min-height: 250px;
  }

  .admin-sidebar {
    padding-inline: 10px;
  }

  .admin-brand,
  .admin-menu span {
    display: none;
  }

  .admin-menu a,
  .admin-menu button {
    justify-content: center;
  }

  .world-dialog-layout {
    min-height: 0;
    aspect-ratio: auto;
    overflow: visible;
  }

  .world-dialog-visual {
    position: relative;
    aspect-ratio: 1706 / 922;
  }

  .world-dialog-copy,
  .edition-world-dialog.copy-left .world-dialog-copy {
    position: relative;
    inset: auto;
    width: auto;
    padding: 34px 28px 30px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .world-dialog-close {
    color: #fff;
    background: rgba(24, 10, 48, .76);
    border-color: rgba(255, 255, 255, .28);
  }
}

@media (max-width: 620px) {
  :root {
    --radius-lg: 22px;
    --radius-xl: 28px;
  }

  body {
    font-size: 15px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .nav-shell {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .brand {
    width: 138px;
  }

  .brand.plavia-lockup {
    min-width: 146px;
    gap: 7px;
  }

  .plavia-lockup .plavia-lockup-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .plavia-lockup-type strong {
    font-size: 15px;
  }

  .plavia-lockup-type small {
    gap: 3px;
    font-size: 4.7px;
  }

  .language-select {
    min-width: 58px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  h2 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .home-hero {
    padding: 118px 0 72px;
  }

  .hero-copy > p,
  .page-hero .page-copy > p,
  .section-head p {
    font-size: 16px;
  }

  .hero-actions,
  .page-actions,
  .cta-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .page-actions .button {
    flex: 1 1 auto;
  }

  .logo-cloud-copy {
    justify-items: stretch;
  }

  .logo-cloud-copy .page-actions {
    margin-block-start: 8px;
  }

  .customer-marquee {
    margin-inline: -14px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  .customer-marquee-track {
    animation: none;
    transform: none;
  }

  .customer-marquee.is-ready .customer-marquee-track {
    animation: none;
  }

  .customer-marquee-track [data-customer-clone] {
    display: none;
  }

  .customer-marquee-group {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 14px;
  }

  .customer-marquee-item {
    width: auto;
    min-width: 0;
    min-height: 74px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .customer-marquee-item .customer-emblem {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .customer-marquee-toggle {
    display: none;
  }

  .customer-portfolio {
    grid-template-columns: 1fr;
  }

  .customer-preview-trigger {
    min-height: 210px;
    grid-template-columns: 90px minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    justify-items: start;
    align-items: center;
    gap: 10px 18px;
    padding: 22px;
    text-align: start;
  }

  .customer-logo-stack {
    width: 90px;
    height: 90px;
    grid-row: 1 / span 2;
    border-radius: 22px;
  }

  .customer-preview-cue {
    justify-self: start;
  }

  .customer-live-preview,
  .customer-live-preview.is-positioned {
    top: auto !important;
    right: 12px !important;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    left: 12px !important;
    width: auto;
    height: min(72dvh, 560px);
    border-radius: 22px;
    transform: translate3d(0, 22px, 0) scale(.985);
  }

  .customer-live-preview.is-open,
  .customer-live-preview.is-positioned.is-open {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .customer-preview-header {
    min-height: 68px;
    gap: 10px;
    padding: 11px 12px 11px 15px;
  }

  .customer-preview-actions a span {
    display: none;
  }

  .customer-preview-actions a {
    width: 44px;
    padding: 0;
  }

  .customer-preview-actions a::before {
    content: "↗";
    font-size: 18px;
  }

  .customer-preview-static {
    padding: 28px 24px 62px;
  }

  .visual-float {
    display: none;
  }

  .page-hero {
    min-height: 430px;
    padding: 120px 0 65px;
  }

  .section {
    padding: 76px 0;
  }

  .card-grid,
  .feature-grid,
  .module-grid,
  .edition-grid,
  .template-grid,
  .customer-grid,
  .demo-grid,
  .pricing-grid,
  .workflow-grid,
  .contact-cards,
  .resource-grid,
  .stats-grid,
  .included-grid,
  .surface-grid,
  .estimator-fields,
  .form-grid,
  .choice-grid,
  .process-line,
  .architecture-flow,
  .update-flow {
    grid-template-columns: 1fr;
  }

  .info-card,
  .feature-card,
  .module-card,
  .edition-card,
  .template-card,
  .customer-card,
  .demo-card,
  .price-card,
  .workflow-card,
  .contact-card,
  .resource-card {
    padding: 22px;
  }

  .surface-card {
    min-height: auto;
  }

  .edition-world-viewport {
    border-radius: 18px;
  }

  .world-hotspot {
    min-width: 44px;
    min-height: 44px;
  }

  .world-hotspot-marker {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .world-hotspot-marker .icon,
  .world-hotspot-marker svg {
    width: 18px;
    height: 18px;
  }

  .world-hotspot-label {
    display: none;
  }

  .js .edition-world-hint {
    inset-inline-start: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 7px 9px;
    font-size: 8px;
  }

  .edition-world figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 13px;
  }

  .edition-world-dialog {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 18px);
    border-radius: 20px;
  }

  .world-dialog-copy {
    padding: 28px 20px 24px;
  }

  .world-dialog-facts {
    grid-template-columns: 1fr;
  }

  .template-preview {
    margin: -22px -22px 22px;
  }

  .commercial-card {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .admin-demo {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-layout .admin-sidebar {
    display: none;
  }

  .metric-grid,
  .site-preview-grid {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-preview-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .demo-nav {
    width: 100%;
    overflow-x: auto;
  }

  .site-preview-hero,
  .site-preview-section {
    padding: 24px 16px;
  }

  .phone-stage {
    padding: 26px 8px;
    border-radius: 20px;
  }

  .admin-sidebar {
    display: none;
  }

  .admin-main {
    padding: 16px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-chart {
    grid-column: auto;
  }

  .mock-site {
    padding: 16px;
  }

  .mock-links {
    display: none;
  }

  .mock-hero {
    grid-template-columns: 1fr;
  }

  .mock-visual {
    max-width: 250px;
    margin-inline: auto;
  }
}

@media (max-width: 460px) {
  .customer-marquee-group {
    grid-template-columns: 1fr;
  }

  .customer-marquee-item {
    min-height: 72px;
    font-size: 12px;
  }

  .customer-preview-trigger {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 18px;
  }

  .customer-logo-stack {
    width: 76px;
    height: 76px;
    border-radius: 19px;
  }

  .customer-preview-header strong {
    max-width: 38vw;
  }
}

/* Customization gallery */
.template-customization-hero {
  min-height: 760px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0, 168, 244, .13), transparent 25rem),
    radial-gradient(circle at 9% 82%, rgba(22, 131, 90, .08), transparent 24rem),
    linear-gradient(155deg, #fff 0%, #fbf9ff 56%, #f4fbff 100%);
}

.template-customization-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  inset-inline-end: -120px;
  bottom: -170px;
  background: linear-gradient(135deg, rgba(109, 61, 245, .12), rgba(37, 183, 159, .08));
  border-radius: 50%;
  filter: blur(3px);
}

.template-hero-grid {
  grid-template-columns: minmax(0, .88fr) minmax(500px, 1.12fr);
  gap: clamp(44px, 6vw, 88px);
}

.template-customization-hero .page-copy > p {
  max-width: 690px;
}

.template-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 26px;
}

.template-hero-proof > span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
  font-size: 11px;
}

.template-hero-proof i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: var(--success-soft);
  border: 1px solid #bde8d4;
  border-radius: 50%;
}

.template-hero-proof i::before {
  content: "";
  width: 4px;
  height: 7px;
  border: solid var(--success);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

.template-hero-stage {
  position: relative;
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(211, 224, 241, .9);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgba(40, 28, 84, .18);
  transform: perspective(1300px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .28s var(--ease), box-shadow .28s ease;
}

.template-hero-stage::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 28%;
  inset-inline-start: 14%;
  bottom: -9%;
  background: linear-gradient(90deg, rgba(8, 126, 234, .22), rgba(109, 61, 245, .2), rgba(37, 183, 159, .18));
  border-radius: 50%;
  filter: blur(42px);
}

.template-hero-browser {
  overflow: hidden;
  background: #eef3f9;
  border: 1px solid #dae2ed;
  border-radius: 21px;
}

.template-hero-browser > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.template-browser-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 13px;
  color: #667286;
  background: rgba(249, 251, 254, .98);
  border-bottom: 1px solid #dde5ee;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
}

.template-browser-dots {
  width: 35px;
  height: 9px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle at 4px 4px, #ef8f91 0 3.5px, transparent 4px),
    radial-gradient(circle at 17px 4px, #e9bf62 0 3.5px, transparent 4px),
    radial-gradient(circle at 30px 4px, #65bd8d 0 3.5px, transparent 4px);
}

.template-browser-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-inline-start: auto;
  color: #15704f;
}

.template-browser-status i,
.template-token-head > span:last-child i {
  width: 7px;
  height: 7px;
  background: #17a572;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(23, 165, 114, .1);
}

.template-hero-palette,
.template-hero-sync {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  color: var(--ink-900);
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(215, 224, 237, .95);
  box-shadow: 0 18px 45px rgba(37, 28, 69, .16);
  backdrop-filter: blur(16px);
  transform: translateZ(42px);
}

.template-hero-palette {
  inset-inline-start: -34px;
  bottom: 34px;
  gap: 11px;
  min-width: 176px;
  padding: 11px 13px;
  border-radius: 16px;
}

.template-hero-palette .icon-box {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  margin: 0;
  border-radius: 12px;
}

.template-hero-palette small {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-600);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
}

.template-palette-dots {
  display: flex;
  gap: 5px;
}

.template-palette-dots i {
  width: 17px;
  height: 9px;
  background: #116ee8;
  border-radius: 999px;
}

.template-palette-dots i:nth-child(2) { background: #ff8d3b; }
.template-palette-dots i:nth-child(3) { background: #17a572; }
.template-palette-dots i:nth-child(4) { background: #221548; }

.template-hero-sync {
  top: 56px;
  inset-inline-end: -26px;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
}

.template-sync-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #169d6e, #31c39a);
  border-radius: 50%;
}

.template-sync-check svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.template-showcase-section {
  overflow: clip;
  background:
    radial-gradient(circle at 96% 8%, rgba(225, 94, 130, .07), transparent 24rem),
    radial-gradient(circle at 2% 52%, rgba(13, 169, 155, .08), transparent 25rem),
    #fff;
}

.template-filter-bar {
  width: max-content;
  max-width: 100%;
  margin: 0 0 34px;
  padding: 7px;
  background: rgba(248, 246, 253, .88);
  box-shadow: 0 10px 30px rgba(45, 23, 83, .05);
}

.template-filter-bar button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding-inline: 15px 9px;
}

.template-filter-bar button small {
  min-width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--ink-600);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 8px;
}

.template-filter-bar button.active small {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.template-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.template-showcase-card {
  --template-accent: #1479ea;
  --template-tint: #edf6ff;
  grid-column: span 6;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 44px rgba(43, 21, 79, .08);
  transform-origin: center;
  transition: transform .38s var(--ease), border-color .28s ease, box-shadow .36s ease, opacity .28s ease, filter .36s ease;
}

.template-showcase-card:nth-child(4n + 1),
.template-showcase-card:nth-child(4n + 4) {
  grid-column: span 7;
}

.template-showcase-card:nth-child(4n + 2),
.template-showcase-card:nth-child(4n + 3) {
  grid-column: span 5;
}

.template-card-company { --template-accent: #1769aa; --template-tint: #eaf4fc; }
.template-card-industrial { --template-accent: #e17420; --template-tint: #fff3e9; }
.template-card-erp { --template-accent: #167f82; --template-tint: #e7f6f5; }
.template-card-trade { --template-accent: #0d7a99; --template-tint: #e8f7fa; }
.template-card-retail { --template-accent: #db5c4a; --template-tint: #fff0ed; }
.template-card-catalog { --template-accent: #5864a5; --template-tint: #eef0fb; }
.template-card-hospitality { --template-accent: #2d7657; --template-tint: #e9f6ef; }
.template-card-gym { --template-accent: #3d963e; --template-tint: #edf8e9; }
.template-card-academy { --template-accent: #079a75; --template-tint: #e6faf4; }
.template-card-school { --template-accent: #2f87c9; --template-tint: #ebf6ff; }
.template-card-teacher { --template-accent: #d07c21; --template-tint: #fff5e8; }
.template-card-music { --template-accent: #a842d2; --template-tint: #f8ebff; }
.template-card-cinema { --template-accent: #c5433e; --template-tint: #fff0ef; }
.template-card-artist { --template-accent: #ce3c93; --template-tint: #fff0f8; }
.template-card-author { --template-accent: #7b2d3c; --template-tint: #faeff1; }
.template-card-singer { --template-accent: #278db9; --template-tint: #e9f7fc; }
.template-card-creator { --template-accent: #9f3656; --template-tint: #fff0f4; }
.template-card-painter { --template-accent: #315bb8; --template-tint: #edf1ff; }
.template-card-professional { --template-accent: #536776; --template-tint: #eef3f5; }
.template-card-modular { --template-accent: #6755d7; --template-tint: #f1efff; }

.js .template-showcase-grid.visible > .template-showcase-card:hover,
.template-showcase-card:focus-within {
  z-index: 2;
  border-color: color-mix(in srgb, var(--template-accent) 38%, #fff);
  box-shadow: 0 30px 76px color-mix(in srgb, var(--template-accent) 16%, rgba(43, 21, 79, .09));
  transform: translateY(-6px);
}

@media (min-width: 1081px) and (hover: hover) and (pointer: fine) {
  .js .template-showcase-grid.visible > .template-showcase-card:hover {
    transform: translateY(-10px) scale(1.022);
  }

  .js .template-showcase-grid.visible > .template-showcase-card:nth-child(odd):hover + .template-showcase-card:nth-child(even),
  .js .template-showcase-grid.visible > .template-showcase-card:nth-child(odd):has(+ .template-showcase-card:nth-child(even):hover) {
    z-index: 0;
    opacity: .74;
    filter: saturate(.66) brightness(.985);
    transform: translateY(7px) scale(.955);
    box-shadow: 0 10px 30px rgba(43, 21, 79, .06);
  }
}

.template-showcase-media {
  position: relative;
  isolation: isolate;
  min-height: 240px;
  display: block;
  overflow: hidden;
  margin: 10px 10px 0;
  background: var(--template-tint);
  border: 1px solid color-mix(in srgb, var(--template-accent) 18%, #e7e0ef);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(38, 20, 67, .1);
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .28s var(--ease), box-shadow .28s ease;
}

.template-showcase-media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(12, 8, 25, .44));
  opacity: .35;
  pointer-events: none;
  transition: opacity .25s ease;
}

.template-showcase-media:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--template-accent) 48%, #fff);
  outline-offset: 3px;
}

.template-showcase-media > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.66) contrast(.97);
  transform: scale(1.012);
  transition: filter .38s ease, transform .55s var(--ease);
}

.template-showcase-card:is(:hover, :focus-within) .template-showcase-media {
  box-shadow: 0 20px 40px color-mix(in srgb, var(--template-accent) 18%, transparent);
}

.template-showcase-card:is(:hover, :focus-within) .template-showcase-media > img {
  filter: saturate(1.04) contrast(1.01);
  transform: scale(1.055);
}

.template-showcase-card:is(:hover, :focus-within) .template-showcase-media::after {
  opacity: .72;
}

.template-card-browser {
  position: absolute;
  z-index: 3;
  top: 11px;
  inset-inline: 11px;
  min-height: 27px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, .88);
  background: rgba(17, 12, 31, .68);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 10px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .05em;
  backdrop-filter: blur(12px);
  transform: translateZ(24px);
}

.template-card-browser i {
  width: 5px;
  height: 5px;
  background: #ff8e91;
  border-radius: 50%;
}

.template-card-browser i:nth-child(2) { background: #efc65d; }
.template-card-browser i:nth-child(3) { background: #55c88f; }
.template-card-browser b {
  margin-inline-start: 5px;
  font-weight: 700;
}

.template-media-action {
  position: absolute;
  z-index: 4;
  inset-inline-end: 14px;
  bottom: 13px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px 8px 13px;
  color: #fff;
  background: rgba(14, 9, 26, .82);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(7px) translateZ(28px);
  backdrop-filter: blur(12px);
  transition: opacity .22s ease, transform .28s var(--ease);
}

.template-media-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.template-showcase-card:is(:hover, :focus-within) .template-media-action {
  opacity: 1;
  transform: translateY(0) translateZ(28px);
}

.template-showcase-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 21px 24px 25px;
}

.template-card-meta {
  min-height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--template-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.template-ready {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  color: #12704e;
  background: #eaf8f1;
  border: 1px solid #c7ebda;
  border-radius: 999px;
  font-size: 8px;
  letter-spacing: .04em;
}

.template-ready i {
  width: 6px;
  height: 6px;
  background: #17a572;
  border-radius: 50%;
}

.template-custom-badge {
  color: #7846c7;
  background: #f1eaff;
  border-color: #ddcff9;
}

.template-custom-badge i { background: #7951d5; }

.template-showcase-body h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.4vw, 34px);
}

.template-showcase-body p {
  flex: 1;
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 18px;
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.template-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.template-tags span {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  color: var(--ink-700);
  background: var(--template-tint);
  border: 1px solid color-mix(in srgb, var(--template-accent) 15%, #fff);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 800;
}

.template-gallery-note {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 20px 22px;
  background: linear-gradient(135deg, #f7fbff, #fbf7ff 58%, #f3fcf8);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.template-gallery-note > span:first-child {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #1479ea, #7845dd 60%, #16a57a);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(72, 66, 194, .2);
}

.template-gallery-note > span:first-child svg,
.template-gallery-note .text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.template-gallery-note p {
  margin: 0;
  font-size: 12px;
}

.template-studio-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(0, 168, 244, .26), transparent 27rem),
    radial-gradient(circle at 10% 90%, rgba(37, 183, 159, .18), transparent 24rem),
    linear-gradient(135deg, #120a25, #241346 52%, #102b3f);
}

.template-studio-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.template-studio-copy h2,
.template-studio-copy p {
  color: #fff;
}

.template-studio-copy p {
  color: #cfc6df;
}

.template-studio-list {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.template-studio-list li {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding-inline-start: 42px;
  color: #f3eefb;
  font-size: 13px;
  font-weight: 700;
}

.template-studio-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #14a978, #38cca3);
  border-radius: 9px;
  box-shadow: 0 8px 20px rgba(20, 169, 120, .24);
}

.template-studio-list li::after {
  content: "";
  position: absolute;
  inset-inline-start: 10px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

html[dir="rtl"] .template-studio-list li::after {
  transform: rotate(45deg) translate(2px, 2px);
}

.template-token-board {
  position: relative;
  overflow: hidden;
  padding: 14px;
  color: var(--ink-950);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 27px;
  box-shadow: 0 32px 80px rgba(6, 4, 18, .34);
  backdrop-filter: blur(18px);
}

.template-token-head {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px 12px;
  color: var(--ink-600);
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.template-token-head > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #15704f;
}

.template-token-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
}

.template-token-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid #dacdf7;
  border-radius: 14px;
}

.template-token-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.template-token-row b,
.template-token-row small {
  display: block;
}

.template-token-row b {
  margin-bottom: 3px;
  font-size: 13px;
}

.template-token-row small {
  color: var(--ink-600);
  font-size: 9px;
}

.template-token-colors {
  display: flex;
  gap: 5px;
}

.template-token-colors i {
  width: 22px;
  height: 30px;
  background: #1378e9;
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0 0 0 1px #dce4ef;
}

.template-token-colors i:nth-child(2) { background: #e5646e; }
.template-token-colors i:nth-child(3) { background: #17a572; }

.template-token-ui {
  display: grid;
  grid-template-columns: 32px 48px;
  gap: 5px;
}

.template-token-ui i {
  height: 30px;
  background: #f0ebfc;
  border: 1px solid #d8cdf1;
  border-radius: 8px;
}

.template-token-ui i:last-child {
  background: linear-gradient(135deg, #1378e9, #7540df);
  border-color: transparent;
}

.template-token-count {
  color: var(--primary);
  font-size: 25px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.template-token-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 10px 6px;
}

.template-token-preview span {
  height: 58px;
  background: linear-gradient(145deg, #edf6ff, #dcecff);
  border: 1px solid #d7e4f1;
  border-radius: 12px;
}

.template-token-preview span:nth-child(2) { background: linear-gradient(145deg, #fff0f4, #f7d9e4); border-color: #efd3dc; }
.template-token-preview span:nth-child(3) { background: linear-gradient(145deg, #e9faf4, #d3f2e5); border-color: #cce9dc; }
.template-token-preview span:nth-child(4) { background: linear-gradient(145deg, #f3edff, #e4d8fb); border-color: #dcd0f2; }

.template-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.template-process .process-step {
  min-height: 178px;
  padding: 22px;
}

.template-process .process-step strong {
  margin-bottom: 6px;
  font-size: 15px;
}

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

  .template-hero-stage,
  .template-token-board {
    width: min(100%, 780px);
    margin-inline: auto;
  }

  .template-showcase-grid .template-showcase-card {
    grid-column: span 6;
  }

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

@media (max-width: 700px) {
  .consultation-messenger {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: auto;
    transform: none;
  }

  .consultation-launcher-label {
    display: none;
  }

  .consultation-panel {
    position: fixed;
    top: auto;
    right: 0;
    inset-inline: 0;
    bottom: 0;
    width: 100%;
    max-height: calc(100dvh - 62px);
    border-radius: 24px 24px 0 0;
    transform: translateY(18px);
    transform-origin: bottom center;
  }

  .consultation-panel.is-open {
    transform: none;
  }

  .consultation-body {
    padding-bottom: max(15px, env(safe-area-inset-bottom));
  }

  .template-customization-hero {
    min-height: auto;
  }

  .template-hero-stage {
    display: grid;
    gap: 10px;
    padding: 8px;
    border-radius: 22px;
    transform: none;
  }

  .template-hero-browser {
    border-radius: 16px;
  }

  .template-hero-palette,
  .template-hero-sync {
    position: static;
    width: 100%;
    min-width: 0;
    transform: none;
  }

  .template-hero-sync {
    justify-content: center;
    border-radius: 13px;
  }

  .template-filter-bar {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .template-filter-bar button {
    flex: 0 0 auto;
  }

  .template-showcase-grid .template-showcase-card {
    grid-column: 1 / -1;
  }

  .template-showcase-media {
    min-height: 0;
  }

  .template-media-action {
    opacity: 1;
    transform: none;
  }

  .template-gallery-note {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .template-gallery-note .text-link {
    grid-column: 1 / -1;
  }

  .template-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .template-hero-proof {
    display: grid;
  }

  .template-browser-status {
    display: none;
  }

  .template-card-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .template-token-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .template-token-colors,
  .template-token-ui,
  .template-token-count {
    grid-column: 2;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-visual {
    transform: none !important;
  }

  .edition-world-viewport,
  .edition-world-image,
  .world-hotspot-marker {
    animation: none !important;
    transform: none !important;
  }

  .customer-marquee {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .customer-marquee-track,
  .customer-marquee-group {
    width: 100%;
    flex-wrap: wrap;
    animation: none !important;
    transform: none !important;
  }

  .customer-marquee-track [data-customer-clone] {
    display: none;
  }
}
