:root {
  --bg: #07090f;
  --bg-soft: #0d1320;
  --panel: rgba(10, 14, 24, 0.82);
  --panel-strong: rgba(14, 20, 33, 0.98);
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.5);
  --muted-strong: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --blue: #47a4ff;
  --blue-soft: rgba(71, 164, 255, 0.18);
  --container: 1204px;
  --radius: 16px;
  --font-main: "Inter", sans-serif;
  --font-mono: "Inter", sans-serif;
}

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

html {
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

button {
  font: inherit;
}

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

.page-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow: clip;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    radial-gradient(circle at 50% -8%, rgba(31, 62, 117, 0.42), transparent 34%),
    linear-gradient(180deg, #04060c 0%, #060911 42%, #090b13 100%);
}

.page-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 170px 170px;
  mask-image: radial-gradient(circle at 50% 34%, #000 0%, rgba(0, 0, 0, 0.86) 46%, transparent 82%);
}

.ambient {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(12px);
}

.ambient-a {
  top: 520px;
  left: -340px;
  width: 860px;
  height: 1100px;
  background: radial-gradient(circle, rgba(47, 83, 217, 0.2), transparent 70%);
}

.ambient-b {
  top: 1540px;
  right: -280px;
  width: 780px;
  height: 1020px;
  background: radial-gradient(circle, rgba(75, 118, 255, 0.16), transparent 70%);
}

.ambient-c {
  right: -520px;
  bottom: 160px;
  width: 1040px;
  height: 1040px;
  background: radial-gradient(circle, rgba(98, 135, 255, 0.24), transparent 72%);
}

.ambient-d {
  bottom: 500px;
  left: -300px;
  width: 700px;
  height: 960px;
  background: radial-gradient(circle, rgba(79, 111, 232, 0.18), transparent 70%);
}

.comparison-main {
  position: relative;
  z-index: 1;
}

.comparison-main {
  padding-top: 108px;
}

.comparison-hero,
.workflow-section,
.comparison-section,
.final-cta {
  width: min(var(--container), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   Header
   ========================= */

.main-header {
  display: flex;
  width: 1204px;
  height: 76px;
  max-width: 1204px;
  padding: 16px 15px 16px 32px;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: #0a0a0f;
  box-shadow: inset 0 1px 1px 1px rgba(255, 255, 255, .15);
  backdrop-filter: blur(2.5px);
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  transform: none;
  z-index: 1000;
}


.main-header__logo {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: 0.3px;
}

.main-header__nav {
  display: flex;
  gap: 32px;
  height: 100%;
  align-items: center;
}

.main-header__link {
  color: #9c9c9d;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.main-header__link:hover,
.main-header__link:focus-visible,
.main-header__link[aria-current="page"] {
  color: #f2f2f3;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.32);
}

.main-header__burger {
  display: none;
}

.main-header__cta,
.big-button {
  display: inline-flex;
  min-height: 44px;
  padding: 14px 32px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  background: #e6e6e6;
  color: #2f3031;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 26px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.main-header__cta:hover,
.main-header__cta:focus-visible,
.big-button:hover,
.big-button:focus-visible {
  transform: translateY(-2px);
  background: #f2f2f2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 14px 34px rgba(255, 255, 255, 0.14);
}

/* =========================
   Hero
   ========================= */

.comparison-hero {
  position: relative;
  min-height: 1002px;
  padding-top: 164px;
  text-align: center;
  isolation: isolate;
}

.comparison-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: 100vw;
  height: 1013px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 26% 43%, rgba(255, 255, 255, 0.75) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 15%, rgba(255, 192, 225, 0.9) 0 1px, transparent 2px),
    radial-gradient(circle at 77% 35%, rgba(220, 218, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 48%, rgba(0, 199, 255, 0.95) 0 3px, transparent 5px),
    radial-gradient(circle at 20% 58%, rgba(39, 163, 255, 0.9) 0 2px, transparent 4px),
    radial-gradient(circle at 86% 58%, rgba(100, 142, 255, 0.9) 0 2px, transparent 4px),
    radial-gradient(circle at 40% 12%, rgba(255, 255, 255, 0.3) 0 1px, transparent 2px),
    radial-gradient(circle at 69% 24%, rgba(255, 255, 255, 0.25) 0 1px, transparent 2px),
    radial-gradient(ellipse at 50% 33%, rgba(10, 20, 40, 0.24), transparent 56%),
    linear-gradient(180deg, rgba(10, 10, 15, 0) 0%, rgba(8, 12, 21, 0.55) 78%, rgba(8, 11, 18, 0.94) 100%);
  pointer-events: none;
}

.comparison-hero__eyebrow {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  margin: 0 0 20px;
  padding: 10px 18px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);

  background: linear-gradient(180deg,
      rgba(20, 24, 34, .94),
      rgba(10, 12, 19, .94));

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 0 1px rgba(255, 255, 255, .03),
    0 10px 30px rgba(0, 0, 0, .22);

  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.comparison-hero h1 {
  position: relative;
  z-index: 2;
  max-width: 1204px;
  margin: 28px auto 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: 0.4px;
  text-align: center;
  text-wrap: balance;
}

.comparison-hero__subtitle {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 22px auto 0;
  color: #eef4ff;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 0.2px;
  text-align: center;
}

.hero-stars {
  position: absolute;
  left: calc(50% + 404px);
  top: 174px;
  z-index: 1;
  width: 798px;
  aspect-ratio: 798 / 536;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 1;
}

.hero-star {
  position: absolute;
  left: var(--star-x);
  top: var(--star-y);
  width: var(--star-size);
  height: var(--star-size);
  opacity: var(--star-min, 0.24);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%) scale(var(--star-scale-min, 0.82));
  transform-origin: center;
  filter: drop-shadow(0 0 10px rgba(145, 194, 255, 0.28));
  animation: hero-star-twinkle var(--star-duration, 6.8s) ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
  will-change: transform, opacity, filter;
  isolation: isolate;
}

.hero-star::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/star.svg") center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(94%) sepia(18%) saturate(947%) hue-rotate(184deg) brightness(108%) contrast(104%);
}

.hero-star::after {
  content: "";
  position: absolute;
  inset: -42%;
  background: radial-gradient(circle, rgba(186, 223, 255, 0.62) 0%, rgba(155, 200, 255, 0.34) 34%, rgba(120, 171, 255, 0.14) 52%, rgba(120, 171, 255, 0) 74%);
  opacity: 0.26;
  transform: scale(0.82);
  transform-origin: center;
  filter: blur(6px);
  animation: hero-star-halo var(--star-duration, 6.8s) ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
  will-change: transform, opacity;
}

.hero-star--1 {
  --star-x: 8%;
  --star-y: 12%;
  --star-size: 3.8%;
  --star-min: 0.28;
  --star-max: 0.66;
  --star-duration: 7.6s;
  --star-delay: -2.4s;
}

.hero-star--2 {
  --star-x: 27%;
  --star-y: 17%;
  --star-size: 3.4%;
  --star-min: 0.32;
  --star-max: 0.72;
  --star-duration: 6.9s;
  --star-delay: -4.1s;
}

.hero-star--3 {
  --star-x: 38%;
  --star-y: 33%;
  --star-size: 2.8%;
  --star-min: 0.27;
  --star-max: 0.6;
  --star-duration: 8.1s;
  --star-delay: -1.8s;
}

.hero-star--4 {
  --star-x: 51%;
  --star-y: 48%;
  --star-size: 2.1%;
  --star-min: 0.22;
  --star-max: 0.5;
  --star-duration: 6.2s;
  --star-delay: -3.5s;
}

.hero-star--5 {
  --star-x: 49%;
  --star-y: 69%;
  --star-size: 3%;
  --star-min: 0.28;
  --star-max: 0.62;
  --star-duration: 7.3s;
  --star-delay: -5.1s;
}

.hero-star--6 {
  --star-x: 80%;
  --star-y: 61%;
  --star-size: 4.3%;
  --star-min: 0.34;
  --star-max: 0.8;
  --star-duration: 8.7s;
  --star-delay: -2.7s;
}

.hero-star--7 {
  --star-x: 73%;
  --star-y: 81%;
  --star-size: 2.8%;
  --star-min: 0.25;
  --star-max: 0.58;
  --star-duration: 7.1s;
  --star-delay: -6.2s;
}

.hero-star--8 {
  --star-x: 62%;
  --star-y: 22%;
  --star-size: 2.4%;
  --star-min: 0.24;
  --star-max: 0.56;
  --star-duration: 6.5s;
  --star-delay: -1.1s;
}

.hero-star--9 {
  --star-x: 89%;
  --star-y: 34%;
  --star-size: 2.1%;
  --star-min: 0.2;
  --star-max: 0.48;
  --star-duration: 7.9s;
  --star-delay: -4.8s;
}

@keyframes hero-star-twinkle {

  0%,
  100% {
    opacity: var(--star-min, 0.24);
    transform: translate(-50%, -50%) scale(var(--star-scale-min, 0.82));
    filter: drop-shadow(0 0 10px rgba(145, 194, 255, 0.28));
  }

  22% {
    opacity: 0.48;
    transform: translate(-50%, -50%) scale(0.96);
    filter: drop-shadow(0 0 14px rgba(165, 211, 255, 0.34));
  }

  48% {
    opacity: var(--star-max, 0.56);
    transform: translate(-50%, -50%) scale(var(--star-scale-max, 1.1));
    filter: drop-shadow(0 0 20px rgba(192, 227, 255, 0.46));
  }

  72% {
    opacity: 0.38;
    transform: translate(-50%, -50%) scale(0.9);
    filter: drop-shadow(0 0 13px rgba(154, 201, 255, 0.32));
  }
}

@keyframes hero-star-halo {

  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.8);
  }

  48% {
    opacity: 0.72;
    transform: scale(1.22);
  }

  72% {
    opacity: 0.34;
    transform: scale(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-star {
    animation: none;
    opacity: 0.36;
    transform: translate(-50%, -50%) scale(0.96);
  }

  .hero-star::after {
    animation: none;
    opacity: 0.34;
    transform: scale(0.98);
  }
}

.comparison-hero__planet {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 1;
  width: min(1916px, calc(100vw + 160px));
  aspect-ratio: 1916 / 413;
  transform: translateX(-50%);
  background: url("../img/comparison/planet-horizon.png") center top / 100% 100% no-repeat;
  filter: drop-shadow(0 -18px 44px rgba(58, 146, 255, 0.18));
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 8%, #000 18%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, transparent 8%, #000 18%, #000 100%);
}

.comparison-hero__planet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 18, 0) 0%, rgba(6, 10, 18, 0.06) 54%, rgba(6, 10, 18, 0.5) 100%),
    radial-gradient(ellipse at 50% 10%, rgba(171, 229, 255, 0.16), rgba(63, 123, 228, 0.06) 40%, transparent 72%);
}

.comparison-hero__planet::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -54px;
  width: 50%;
  height: 190px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(203, 238, 255, 0.28), rgba(118, 184, 255, 0.14) 28%, rgba(54, 94, 170, 0.06) 46%, transparent 76%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-bottom-blur {
  display: none;
  position: absolute;
  left: 50%;
  top: 804px;
  z-index: 1;
  width: 2416px;
  height: 427px;
  max-width: none;
  transform: translateX(-50%);
  background: url("../img/comparison/hero-planet-bottom-blur.svg") center / 100% 100% no-repeat;
  pointer-events: none;
}

/* =========================
   Section intro
   ========================= */

.section-intro {
  max-width: 770px;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-flex;
  min-height: 36px;
  padding: 8px 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(20, 24, 34, 0.94), rgba(10, 12, 19, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 10px 30px rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-intro h2 {
  margin: 18px 0 0;
  font-size: clamp(40px, 4.1vw, 54px);
  line-height: 1;
  font-weight: 500;
}

.comparison-section .section-intro h2 {
  font-family: Inter, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.mobile-title-break {
  display: none;
}

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

.section-intro--center {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* =========================
   Workflow
   ========================= */

.workflow-section {
  margin-top: 0;
}

.workflow-board {
  position: relative;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 24px;
  min-height: 872px;
  padding: 12px 12px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(6, 7, 12, 0.12);
}

.workflow-board::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 0px dashed rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.workflow-stage {
  position: relative;
  min-height: 0;
  padding: 0 0 14px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.workflow-stage--new {
  z-index: 2;
}

.workflow-stage--old {
  z-index: 1;
}

.workflow-stage__head {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 70px;
  margin: 0;
  padding: 10px 20px 8px;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-window {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.workflow-window--dashboard {
  width: 372px;
  height: 394px;
  margin: 118px 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.015)),
    rgba(8, 11, 19, 0.76);
}

.dashboard-blur {
  width: 78%;
  height: 68%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(232, 237, 245, 0.92)),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.24);
  filter: blur(2.4px) saturate(0.78);
  opacity: 0.78;
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.dashboard-top span,
.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dashboard-top span {
  background: rgba(86, 95, 116, 0.72);
}

.dashboard-top b {
  margin-left: 8px;
  color: rgba(64, 74, 96, 0.82);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dashboard-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.dashboard-pill {
  display: block;
  width: 54px;
  height: 10px;
  border-radius: 999px;
  background: rgba(146, 156, 176, 0.5);
}

.dashboard-pill--wide {
  width: 82px;
}

.dashboard-sheet {
  overflow: hidden;
  border: 1px solid rgba(105, 121, 146, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.dashboard-sheet__head,
.dashboard-sheet__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr .9fr .7fr;
  gap: 8px;
  padding: 7px 10px;
  color: rgba(60, 71, 92, 0.9);
  font-size: 9px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(105, 121, 146, 0.12);
}

.dashboard-sheet__head {
  font-weight: 600;
  background: rgba(221, 228, 238, 0.84);
}

.dashboard-sheet__row--alert {
  background: rgba(146, 209, 166, 0.52);
}

.dashboard-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.dashboard-footer span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(146, 156, 176, 0.46);
}

.workflow-window--assistant {
  width: calc(100% - 74px);
  height: 472px;
  margin: -2px 0 0 10px;
  padding: 4px;
  border-color: rgba(111, 133, 192, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 44%),
    radial-gradient(circle at 86% 10%, rgba(57, 104, 246, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(13, 18, 31, 0.98), rgba(9, 13, 22, 0.98));
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(113, 143, 221, 0.1),
    0 0 36px rgba(255, 255, 255, 0.04);
}

.assistant-shell {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(124, 147, 205, 0.18);
  border-radius: 15px;
  overflow: hidden;
  background: rgba(12, 17, 29, 0.98);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 50px rgba(0, 0, 0, 0.34);
}

.assistant-shell__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.assistant-shell__header p {
  margin: 0 auto 0 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 11px;
}

.window-dot--red {
  background: #ff5f57;
}

.window-dot--yellow {
  background: #febc2e;
}

.window-dot--green {
  background: #28c840;
}

.assistant-shell__body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 414px;
}

.assistant-nav {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px 12px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.016);
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.assistant-nav__brand {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.assistant-nav__action,
.assistant-nav__chat {
  color: rgba(255, 255, 255, 0.52);
}

.assistant-nav__chat--active {
  color: rgba(255, 255, 255, 0.9);
}

.assistant-nav small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.24);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.assistant-nav__action--bottom {
  margin-top: 8px;
}

.assistant-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 24px 16px;
}

.assistant-day {
  align-self: center;
  color: rgba(255, 255, 255, 0.24);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.assistant-bubble {
  max-width: 360px;
  margin-left: auto;
  padding: 12px 16px;
  border: 1px solid rgba(142, 171, 255, 0.16);
  border-radius: 14px;
  background: rgba(73, 95, 152, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  line-height: 1.5;
}

.assistant-answer {
  color: rgba(232, 238, 248, 0.92);
  font-size: 12.5px;
  line-height: 1.62;
}

.assistant-answer p {
  margin: 0 0 10px;
}

.assistant-answer p:last-child {
  margin-bottom: 0;
}

.assistant-alerts {
  margin: 0;
  padding-left: 20px;
  color: rgba(230, 240, 255, 0.9);
  font-size: 12.5px;
  line-height: 1.62;
}

.assistant-alerts li {
  margin-bottom: 6px;
}

.assistant-alerts strong {
  color: #fff;
  font-weight: 600;
}

.assistant-alerts em {
  color: #ff8f8f;
  font-style: normal;
  font-weight: 500;
}

.assistant-recommendation {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.58;
}

.assistant-recommendation strong {
  color: #6dff9b;
  font-weight: 600;
}

.assistant-composer {
  margin-top: auto;
}

.assistant-input {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.34);
  font-size: 12.5px;
}

.assistant-composer__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.assistant-composer__controls span {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
}

.assistant-composer__controls i {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #cfd6e3;
}

@media (max-width: 1100px) {
  .assistant-shell__body {
    grid-template-columns: 1fr;
  }

  .assistant-nav {
    display: none;
  }

  .assistant-feed {
    padding: 24px 22px 18px;
    gap: 14px;
  }

  .assistant-bubble,
  .assistant-answer,
  .assistant-alerts,
  .assistant-recommendation,
  .assistant-input {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .assistant-shell__header {
    padding: 10px 12px;
  }

  .assistant-shell__header p {
    margin-left: 8px;
    font-size: 11px;
  }

  .assistant-feed {
    padding: 18px 14px 14px;
    gap: 12px;
  }

  .assistant-bubble {
    max-width: none;
    padding: 11px 12px;
    font-size: 12px;
  }

  .assistant-alerts {
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.55;
  }

  .assistant-answer,
  .assistant-recommendation,
  .assistant-input {
    font-size: 12px;
  }
}

.workflow-list {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px dashed rgba(255, 255, 255, 0.12);
  border-right: 1px dashed rgba(255, 255, 255, 0.12);
  background: transparent;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: stretch;
  min-height: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.workflow-copy {
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 0 14px 0 12px;
  font-size: 14px;
  line-height: 1.24;
}

.workflow-list--old .workflow-copy {
  color: rgba(255, 255, 255, 0.24);
}

.workflow-list--new .workflow-copy {
  color: rgba(255, 255, 255, 0.92);
}

.workflow-status {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
}

.workflow-status--off {
  color: rgba(255, 255, 255, 0.24);
}

.workflow-status--on {
  color: rgba(255, 255, 255, 0.92);
}

.workflow-list--new .workflow-status {
  border-right-color: rgba(255, 255, 255, 0.12);
}

/* =========================
   Comparison table
   ========================= */

.comparison-section {
  margin-top: 132px;
}

.comparison-table-wrap {
  position: relative;
  overflow-x: auto;
  padding: 1px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.26);
  -webkit-overflow-scrolling: touch;
}

.comparison-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.comparison-table-wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.comparison-table {
  width: 100%;
  min-width: 1120px;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(8, 11, 18, 0.94);
}

.comparison-table thead th,
.comparison-table tbody th,
.comparison-table td {
  padding: 24px 16px;
  border-right: 1px dashed rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table thead th {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  background: rgba(12, 15, 25, 0.98);
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
}

.comparison-table thead th:not(:first-child),
.comparison-table td {
  text-align: center;
}

.comparison-table thead th:first-child {
  width: 25%;
  color: #fff;
}

.comparison-table thead small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 14px;
  font-weight: 400;
}

.comparison-table tbody th {
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.2px;
  text-align: left;
  vertical-align: middle;
  background: rgba(253, 238, 238, 0.012);
}

.comparison-table td:last-child,
.comparison-table th:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table .is-gendir {
  background: linear-gradient(180deg, rgba(18, 26, 42, 0.98), rgba(14, 21, 34, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(123, 163, 255, 0.14),
    0 0 28px rgba(71, 164, 255, 0.06);
}

.comparison-table tbody tr.is-highlight th,
.comparison-table tbody tr.is-highlight td {
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.06) 18%,
      rgba(33, 48, 78, 0.82) 100%) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 18px 34px rgba(255, 255, 255, 0.10),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 0 34px rgba(255, 255, 255, 0.10) !important;
}

.comparison-table tbody tr.is-highlight td.is-gendir {
  background: linear-gradient(180deg, rgba(18, 26, 42, 0.98), rgba(14, 21, 34, 0.98));
}

.status {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
}

.status--yes {
  position: relative;
  border: 1px solid rgba(142, 172, 255, 0.24);
  background: rgba(71, 164, 255, 0.12);
  color: transparent;
  font-size: 0;
}

.status--yes::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 28px;
  width: 22px;
  height: 17px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='17' viewBox='0 0 22 17' fill='none'><path d='M2 8.5L8 14L20 2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}

.status--ghost {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.status--ghost::before {
  opacity: 0.45;
}

.status--partial {
  position: relative;
  border: 0;
  background: transparent;
}

.status--partial::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ffffff 50%, #2a2d34 50%);
}

.status--no {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.24);
}

/* =========================
   Footnote
   ========================= */

.comparison-footnote {
  width: 100%;
  max-width: 860px;
  margin: 34px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.36);
  font-size: 16px;
  line-height: 24px;
}

.comparison-footnote::before,
.comparison-footnote::after {
  display: none;
}

.comparison-footnote__head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 40px;
}

.comparison-footnote__head::before,
.comparison-footnote__head::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.72));
}

.comparison-footnote__head::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.06));
}

.comparison-footnote__head span {
  display: inline-block;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 0.2px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.comparison-footnote__text {
  max-width: none;
  color: rgba(255, 255, 255, 0.42);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 22.4px;
  letter-spacing: 0.2px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.comparison-footnote>span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

/* =========================
   Final CTA
   ========================= */

.final-cta {
  position: relative;
  min-height: 680px;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
  text-align: center;
  isolation: isolate;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta::before {
  top: 78px;
  box-shadow:
    0 220px 0 0 rgba(255, 255, 255, 0.08),
    0 440px 0 0 rgba(255, 255, 255, 0.08);
}

.final-cta::after {
  inset: auto -280px -180px auto;
  width: 780px;
  height: 780px;
  border: 0;
  background: radial-gradient(circle, rgba(83, 117, 255, 0.24), transparent 70%);
  pointer-events: none;
}

.final-cta>* {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 64px;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: 0.4px;
  text-align: center;
}

.final-cta p {
  margin: 26px 0 0;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 26px;
}

.final-cta .big-button {
  margin-top: 42px;
}

.final-cta .note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 14px;
  line-height: 16px;
}

.cap-bg-arrow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.cap-bg-arrow--cta {
  top: -113px;
  left: 75%;
  width: 1400px;
  height: 1055px;
  transform: translateX(-50%);
  background-image: url("../img/svr3.svg");
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 55%, transparent 95%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 55%, transparent 95%);
}

.final-cta::before,
.final-cta::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.final-cta .cap-bg-arrow--cta {
  display: none !important;
}


/* =========================================================
   DESKTOP: 1181px+
   ========================================================= */

@media (min-width: 1181px) {
  .page-shell::before {
    background:
      radial-gradient(circle at 0% 50%, rgba(17, 34, 86, 0.5), transparent 21%),
      radial-gradient(circle at 100% 76%, rgba(32, 56, 130, 0.5), transparent 24%),
      linear-gradient(180deg, #0a0a0f 0%, #080a12 42%, #090a10 100%);
  }

  .page-shell::after,
  .ambient-a {
    opacity: 0;
  }

  .ambient-b,
  .ambient-d {
    opacity: 0.34;
  }

  .comparison-main {
    padding-top: 0;
  }

  .comparison-hero {
    min-height: 1013px;
    padding-top: 293px;
  }

  .comparison-hero::before {
    height: 1013px;
    background:
      url("../img/comparison/hero-background-figma.png") calc(50% + 8.95vw) -16.08vw / 168.63vw 112.42vw no-repeat,
      #0a0a0f;
  }

  .comparison-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 0;
    width: 100vw;
    height: 640px;
    transform: translateX(-50%);
    background-image:
      radial-gradient(circle, rgba(255, 214, 241, 0.82) 0 1px, transparent 1.8px),
      radial-gradient(circle, rgba(255, 255, 255, 0.68) 0 1px, transparent 1.6px),
      radial-gradient(circle, rgba(198, 216, 255, 0.5) 0 1px, transparent 1.7px),
      radial-gradient(circle, rgba(255, 168, 226, 0.42) 0 1px, transparent 1.8px);
    background-position: 18px 24px, 92px 66px, 46px 118px, 138px 156px;
    background-size: 132px 118px, 190px 170px, 246px 210px, 310px 250px;
    opacity: 0.58;
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    pointer-events: none;
  }

  .comparison-hero h1 {
    max-width: 1204px;
    margin-top: 20px;
    font-size: 62px;
    line-height: 1.12;
  }

  .comparison-hero__subtitle {
    max-width: 760px;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22.4px;
    letter-spacing: 0.2px;
    text-align: center;
  }

  .hero-stars {
    top: 174px;
    left: calc(50% + 404px);
    width: 798px;
    opacity: 1;
  }

  .comparison-hero__planet {
    display: none;
  }

  .hero-bottom-blur {
    display: block;
  }

  .workflow-section {
    margin-top: 159px;
  }

  .workflow-board {
    grid-template-columns: 384px 756px;
    gap: 32px;
    min-height: 868px;
    padding: 15px;
  }

  .workflow-stage__head {
    min-height: 60px;
    padding: 10px 16px 8px;
  }

  .workflow-window--dashboard {
    width: 440px;
    height: 375px;
    margin: 98px 0 0 18px;
    background: url("../img/comparison/comparison-dashboard-card.svg") center / 100% 100% no-repeat;
    border: 0;
    filter: blur(2px) saturate(0.72);
    opacity: 0.7;
  }

  .workflow-window--dashboard>* {
    display: none;
  }

  .workflow-window--assistant {
    width: 752px;
    height: 537px;
    margin: -18px 0 0 12px;
    padding: 5px;
  }

  .workflow-list {
    row-gap: 16px;
    padding: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
  }

  .workflow-list--old {
    margin: 77px -16px 0;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .workflow-list--new {
    margin: -9px -16px 0;
  }

  .workflow-list li {
    grid-template-columns: 36px 1fr;
    column-gap: 16px;
    min-height: 35px;
    border-bottom: 0;
  }

  .workflow-status,
  .workflow-copy {
    min-height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }

  .workflow-status {
    align-self: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
  }

  .workflow-copy {
    min-width: 0;
    padding: 0 10px;
    overflow: hidden;
    font-size: 13px;
    line-height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .workflow-list--old .workflow-status,
  .workflow-list--old .workflow-copy {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.2);
  }

  .workflow-list--old .workflow-copy {
    font-size: 12px;
  }

  .comparison-section {
    margin-top: 316px;
  }

  .comparison-section .section-kicker {
    display: none !important;
  }

  .comparison-section .section-intro {
    max-width: 1204px;
    margin-bottom: 56px;
  }

  .comparison-section .section-intro h2 {
    max-width: 1204px;
    margin-top: 0;
    font-family: Inter, sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
  }

  .comparison-table-wrap {
    padding: 0;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }


  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    width: 300px;
  }

  .comparison-table thead th:nth-child(2),
  .comparison-table tbody td:nth-child(2),
  .comparison-table thead th:nth-child(3),
  .comparison-table tbody td:nth-child(3),
  .comparison-table thead th:nth-child(4),
  .comparison-table tbody td:nth-child(4) {
    width: 224px;
  }

  .comparison-table thead th.is-gendir,
  .comparison-table tbody td.is-gendir {
    width: 232px;
  }

  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table td {
    height: 80px;
    padding: 16px;
    vertical-align: middle;
    border-top: 0 !important;
    border-left: 0 !important;
    border-bottom: 0 !important;
    border-right: 1px dashed rgba(255, 255, 255, 0.15) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-table thead th {
    height: 76px;
    padding-top: 17px;
    padding-bottom: 14px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
    background: rgba(12, 14, 23, 0.42) !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.28) !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.22) !important;
  }

  .comparison-table thead th:first-child {
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(13, 18, 31, 0.52) !important;
  }

  .comparison-table thead small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
  }

  .comparison-table tbody th {
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.2px;
    text-align: left;
    vertical-align: middle;
    border-left: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
  }

  .comparison-table td {
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
  }

  .comparison-table td:last-child,
  .comparison-table th:last-child {
    border-right: 0 !important;
  }

  .comparison-table tbody tr:last-child th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important;
  }

  .comparison-table tbody tr:last-child td:not(.is-gendir) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18) !important;
  }

  .comparison-table tbody tr.is-highlight th,
  .comparison-table tbody tr.is-highlight td {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.06) 18%,
        rgba(33, 48, 78, 0.82) 100%) !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 18px 34px rgba(255, 255, 255, 0.10),
      inset 0 -1px 0 rgba(255, 255, 255, 0.18),
      0 0 34px rgba(255, 255, 255, 0.10) !important;
  }

  .comparison-table tbody tr:nth-child(7) th,
  .comparison-table tbody tr:nth-child(7) td {
    background:
      linear-gradient(90deg, rgba(33, 48, 78, 0.88), rgba(28, 40, 65, 0.78)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -1px 0 rgba(255, 255, 255, 0.22),
      inset 0 18px 32px rgba(255, 255, 255, 0.055),
      inset 0 -18px 32px rgba(0, 0, 0, 0.34) !important;
  }

  .comparison-table tbody tr:last-child th,
  .comparison-table tbody tr:last-child td:not(.is-gendir) {
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-table thead th.is-gendir {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    background: #0d1726 !important;
    background-image: none !important;
    border-left: 1px solid rgba(126, 158, 236, 0.46) !important;
    border-right: 1px solid rgba(126, 158, 236, 0.46) !important;
    border-top: 1px solid rgba(126, 158, 236, 0.46) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.26) !important;
    box-shadow:
      inset 0 1px 0 rgba(126, 158, 236, 0.46),
      0 0 24px rgba(255, 255, 255, 0.10),
      0 0 28px rgba(126, 158, 236, 0.10) !important;
  }


  .comparison-table tbody td.is-gendir {
    position: relative;
    z-index: 1;
    background: #0d1726 !important;
    background-image: none !important;
    background-color: #0d1726 !important;
    border-left: 1px solid rgba(126, 158, 236, 0.46) !important;
    border-right: 1px solid rgba(126, 158, 236, 0.46) !important;
    box-shadow: none !important;
  }

  .comparison-table tbody tr:nth-child(7) td.is-gendir {
    background:
      linear-gradient(90deg, rgba(33, 48, 78, 0.88), rgba(28, 40, 65, 0.78)) !important;
    border-left: 1px solid rgba(126, 158, 236, 0.46) !important;
    border-right: 1px solid rgba(126, 158, 236, 0.46) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -1px 0 rgba(255, 255, 255, 0.22) !important;
  }

  .comparison-table tbody tr:last-child td.is-gendir {
    background: #0d1726 !important;
    background-image: none !important;
    border-left: 1px solid rgba(126, 158, 236, 0.46) !important;
    border-right: 1px solid rgba(126, 158, 236, 0.46) !important;
    border-bottom: 1px solid rgba(126, 158, 236, 0.46) !important;
    box-shadow: none !important;
  }

  .status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  .status--yes,
  .comparison-table td.is-gendir .status,
  .comparison-table td.is-gendir .status--yes {
    width: 34px !important;
    height: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    position: relative !important;
  }

  .status--yes::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 22px !important;
    height: 17px !important;
    transform: translate(-50%, -50%) !important;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='17' viewBox='0 0 22 17' fill='none'><path d='M2 8.5L8 14L20 2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain !important;
  }

  .status--no {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.22) !important;
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .status--partial {
    position: relative;
    width: 18px !important;
    height: 18px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: transparent !important;
  }

  .status--partial::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(90deg, #494c54 50%, #2a2d34 50%);
  }

  .comparison-footnote {
    max-width: 960px;
    margin-top: 34px;
  }

  .final-cta {
    min-height: 860px;
    margin-top: 256px;
    padding: 118px 24px 150px;
  }

  .final-cta h2 {
    max-width: 1204px;
    font-size: 64px;
    line-height: 1.08;
  }

}

/* =========================================================
   TABLET: 769px–1180px
   ========================================================= */

@media (min-width: 769px) and (max-width: 1180px) {
  .comparison-main {
    padding-top: 0;
  }

  .main-header {
    top: 12px;
    width: min(900px, calc(100% - 32px));
    height: 56px;
    min-height: 56px;
    padding: 10px 12px 10px 20px;
    align-items: center;
    border-radius: 10px;
  }

  .main-header__logo {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0;
  }

  .main-header__nav {
    gap: clamp(16px, 3vw, 28px);
  }

  .main-header__link {
    font-size: 11px;
    line-height: 13px;
  }

  .main-header__cta {
    min-height: 34px;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 11px;
    line-height: 13px;
  }

  .comparison-hero,
  .workflow-section,
  .comparison-section,
  .final-cta {
    width: min(100% - 32px, 920px);
  }

  .comparison-hero {
    min-height: 760px;
    padding-top: 170px;
  }

  .comparison-hero::before {
    width: 100vw;
    height: 780px;
    background:
      url("../img/comparison/hero-background-figma.png") center top / 1500px auto no-repeat,
      #0a0a0f;
  }

  .comparison-hero__eyebrow {
    min-height: 34px;
    padding: 8px 14px;
    font-size: 13px;
    line-height: 15px;
  }

  .comparison-hero h1 {
    max-width: 760px;
    margin-top: 16px;
    font-size: clamp(38px, 6vw, 54px);
    line-height: 1.08;
  }

  .comparison-hero__subtitle {
    max-width: 560px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 21px;
  }

  .hero-stars {
    top: 130px;
    left: calc(50% + 230px);
    width: clamp(420px, 62vw, 620px);
    opacity: 0.94;
  }

  .comparison-hero__planet {
    display: block;
    bottom: 42px;
    width: min(1320px, calc(100vw + 260px));
  }

  .hero-bottom-blur {
    display: block;
    top: 620px;
    width: 1320px;
    height: 294px;
  }

  .section-intro {
    max-width: 760px;
    margin-bottom: 32px;
  }

  .section-intro h2 {
    font-size: clamp(36px, 5vw, 48px);
    line-height: 1.04;
  }

  .section-intro p {
    font-size: 16px;
    line-height: 24px;
  }

  .workflow-section {
    margin-top: 72px;
  }

  .workflow-board {
    grid-template-columns: minmax(260px, 0.86fr) minmax(420px, 1.14fr);
    gap: 20px;
    min-height: 720px;
    padding: 12px;
    overflow: hidden;
  }

  .workflow-stage__head {
    min-height: 54px;
    padding: 10px 14px 8px;
    font-size: 11px;
    line-height: 13px;
  }

  .workflow-window--dashboard {
    width: min(100%, 360px);
    height: 300px;
    margin: 54px 0 0 12px;
    background: url("../img/comparison/comparison-dashboard-card.svg") center / 100% 100% no-repeat;
    border: 0;
    filter: blur(1.6px) saturate(0.75);
    opacity: 0.72;
  }

  .workflow-window--dashboard>* {
    display: none;
  }

  .workflow-window--assistant {
    width: min(100% + 20px, 650px);
    height: 430px;
    margin: 24px 0 0 -12px;
    padding: 5px;
  }

  .workflow-list {
    row-gap: 10px;
    margin-top: 28px;
    padding: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.14);
  }

  .workflow-list li {
    grid-template-columns: 34px 1fr;
    min-height: 38px;
    column-gap: 10px;
    border-bottom: 0;
  }

  .workflow-status,
  .workflow-copy {
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.13);
  }

  .workflow-status {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 15px;
  }

  .workflow-copy {
    min-width: 0;
    padding: 0 9px;
    overflow: hidden;
    font-size: 12px;
    line-height: 15px;
    white-space: normal;
  }

  .workflow-list--old .workflow-status,
  .workflow-list--old .workflow-copy {
    border-color: rgba(255, 255, 255, 0.08);
  }

  .comparison-section {
    margin-top: 120px;
  }

  .comparison-section .section-kicker {
    display: none !important;
  }

  .comparison-section .section-intro {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
  }

  .comparison-section .section-intro h2 {
    max-width: 860px;
    margin: 0 auto;
  }

  .comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    border-radius: 18px;
  }

  .comparison-table {
    width: 100%;
    min-width: 940px;
    table-layout: fixed;
  }

  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table td {
    height: 74px;
    padding: 14px 12px;
    font-size: 13px;
    line-height: 16px;
    vertical-align: middle;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    width: 28%;
  }

  .comparison-table thead small {
    margin-top: 8px;
    font-size: 11px;
    line-height: 13px;
  }

  .comparison-table .is-gendir {
    background: #0d1726 !important;
    background-image: none !important;
    border-left: 1px solid rgba(126, 158, 236, 0.42) !important;
    border-right: 1px solid rgba(126, 158, 236, 0.42) !important;
    box-shadow: none !important;
  }

  .comparison-table thead th.is-gendir {
    border-top: 1px solid rgba(126, 158, 236, 0.42) !important;
    box-shadow:
      inset 0 1px 0 rgba(126, 158, 236, 0.42),
      0 0 22px rgba(140, 170, 255, 0.12) !important;
  }

  .comparison-table tbody tr:last-child td.is-gendir {
    border-bottom: 1px solid rgba(126, 158, 236, 0.42) !important;
  }

  .comparison-table tbody tr.is-highlight th,
  .comparison-table tbody tr.is-highlight td {
    background:
      linear-gradient(90deg, rgba(33, 48, 78, 0.82), rgba(28, 40, 65, 0.72)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -1px 0 rgba(255, 255, 255, 0.16) !important;
  }

  .comparison-table tbody tr.is-highlight td.is-gendir {
    background:
      linear-gradient(90deg, rgba(33, 48, 78, 0.82), rgba(28, 40, 65, 0.72)) !important;
  }

  .status--yes {
    width: 34px !important;
    height: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 1 !important;
    position: relative !important;
  }

  .status--yes::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 22px !important;
    height: 17px !important;
    transform: translate(-50%, -50%) !important;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='17' viewBox='0 0 22 17' fill='none'><path d='M2 8.5L8 14L20 2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain !important;
  }

  .comparison-table td.is-gendir .status--yes {
    font-size: 0 !important;
  }

  .status--no {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.24) !important;
    font-size: 22px !important;
  }

  .status--partial {
    width: 18px !important;
    height: 18px !important;
    border: 0 !important;
    background: transparent !important;
  }

  .status--partial::before {
    background: linear-gradient(90deg, #ffffff 50%, #2a2d34 50%) !important;
  }

  .comparison-footnote {
    max-width: 760px;
    margin-top: 30px;
  }

  .final-cta {
    min-height: 560px;
    margin-top: 96px;
    padding: 84px 24px 90px;
  }

  .final-cta h2 {
    max-width: 820px;
    font-size: clamp(40px, 6vw, 58px);
    line-height: 1.08;
  }

  .final-cta p {
    max-width: 620px;
    font-size: 16px;
    line-height: 23px;
  }

}

/* =========================================================
   TABLET PORTRAIT: 721px–900px
   Таблица как на мобилке: признак + все остальные + гендир
   ========================================================= */

@media (min-width: 721px) and (max-width: 900px) {
  .comparison-section {
    width: min(100% - 32px, 680px);
  }

  .comparison-table-wrap {
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background:
      radial-gradient(circle at 44% 50%, rgba(44, 80, 190, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(6, 10, 18, 0.98), rgba(4, 8, 15, 0.98));
  }

  .comparison-table th:nth-child(3),
  .comparison-table th:nth-child(4),
  .comparison-table td:nth-child(3),
  .comparison-table td:nth-child(4) {
    display: none;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    width: 56%;
  }

  .comparison-table thead th:nth-child(2),
  .comparison-table tbody td:nth-child(2),
  .comparison-table thead th:nth-child(5),
  .comparison-table tbody td:nth-child(5) {
    width: 22%;
  }

  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table td {
    height: 82px;
    padding: 12px;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    vertical-align: middle;
    white-space: normal !important;
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
  }

  .comparison-table thead th:first-child {
    height: 62px;
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    text-align: left;
    background: rgba(10, 15, 26, 0.46) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.20);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table thead small {
    display: none;
  }

  .comparison-table thead th:nth-child(2) {
    height: 62px;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-align: center;
    overflow: hidden;
    background: rgba(10, 15, 26, 0.14) !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.34);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .comparison-table thead th:nth-child(2)::before {
    content: "Все\A остальные";
    display: inline-block;
    white-space: pre-line !important;
    color: rgba(255, 255, 255, 0.30);
    font-size: 12px !important;
    line-height: 14px !important;
    font-weight: 600;
    text-align: center;
  }

  .comparison-table tbody th {
    color: #fff;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table tbody td:nth-child(2) {
    text-align: center;
    background: rgba(8, 13, 24, 0.12) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table thead th.is-gendir,
  .comparison-table tbody td.is-gendir,
  .comparison-table tbody tr.is-highlight td.is-gendir {
    position: relative;
    background: #0d1726 !important;
    background-image: none !important;
    background-color: #0d1726 !important;
    border-left: 1px solid rgba(126, 158, 236, 0.42) !important;
    border-right: 1px solid rgba(126, 158, 236, 0.42) !important;
    box-shadow: none !important;
    z-index: 1;
  }

  .comparison-table thead th.is-gendir {
    height: 62px;
    padding: 12px 8px;
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid rgba(126, 158, 236, 0.42) !important;
    border-bottom: 1px solid rgba(126, 158, 236, 0.28) !important;
    box-shadow:
      inset 0 1px 0 rgba(126, 158, 236, 0.42),
      0 0 22px rgba(140, 170, 255, 0.14) !important;
  }

  .comparison-table thead th.is-gendir::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 8px;
    right: 8px;
    height: 26px;
    pointer-events: none;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.30) 0%,
        rgba(255, 255, 255, 0.10) 35%,
        rgba(255, 255, 255, 0) 78%);
    filter: blur(10px);
    opacity: 0.9;
  }

  .comparison-table tbody tr.is-highlight th,
  .comparison-table tbody tr.is-highlight td {
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-table tbody tr:last-child th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table tbody tr:last-child td:nth-child(2) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
  }

  .comparison-table tbody tr:last-child td.is-gendir {
    border-bottom: 1px solid rgba(126, 158, 236, 0.42) !important;
  }

  .comparison-table td.is-gendir .status--yes {
    font-size: 34px !important;
  }
}

@media (max-width: 720px) {
  .workflow-window--assistant .assistant-composer {
    overflow: visible !important;
  }

  .workflow-window--assistant .assistant-composer__controls {
    display: grid !important;
    grid-template-columns: 20px 1fr 14px 20px !important;
    align-items: center !important;
    column-gap: 6px !important;
    margin-top: 0 !important;
  }

  .workflow-window--assistant .assistant-composer__controls span {
    display: none !important;
  }

  .workflow-window--assistant .assistant-composer__controls span:first-child {
    display: grid !important;
    grid-column: 1 !important;
    place-items: center !important;
    width: 20px !important;
    height: 20px !important;
    background: transparent !important;
  }

  .workflow-window--assistant .assistant-composer__controls span:first-child::before {
    content: "+" !important;
    color: rgba(170, 178, 194, .72) !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .workflow-window--assistant .assistant-composer__controls i {
    position: relative !important;
    grid-column: 4 !important;
    display: grid !important;
    place-items: center !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    background: #cfd6e3 !important;
  }

  .workflow-window--assistant .assistant-composer__controls i::before {
    content: "" !important;
    width: 10px !important;
    height: 10px !important;
    background: #0f1626 !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5'/%3E%3Cpath d='m5 12 7-7 7 7'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5'/%3E%3Cpath d='m5 12 7-7 7 7'/%3E%3C/svg%3E") center / contain no-repeat !important;
  }

  .workflow-window--assistant .assistant-composer__controls i::after {
    content: "" !important;
    position: static !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    width: 10px !important;
    height: 10px !important;
    transform: none !important;
    background: rgba(170, 178, 194, .72) !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3C/svg%3E") center / contain no-repeat !important;
  }
}

/* Mobile workflow layout matching the reference composition */
@media (max-width: 720px) {
  .workflow-section {
    width: 100% !important;
    margin-top: 18px !important;
    overflow: hidden !important;
  }

  .workflow-board {
    position: relative !important;
    display: block !important;
    width: min(430px, 100vw) !important;
    height: 646px !important;
    min-height: 646px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border: 0 !important;
    background:
      radial-gradient(circle at 67% 26%, rgba(65, 104, 190, .22), transparent 32%),
      linear-gradient(180deg, rgba(7, 10, 16, 0), rgba(9, 13, 22, .42) 56%, rgba(9, 13, 22, 0)) !important;
    overflow: hidden !important;
  }

  .workflow-board::before,
  .workflow-board::after {
    display: none !important;
  }

  .workflow-stage {
    position: absolute !important;
    top: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .workflow-stage--old {
    left: 16px !important;
    width: calc((100vw - 32px) * .5) !important;
    max-width: 199px !important;
    height: 100% !important;
  }

  .workflow-stage--new {
    left: calc(16px + ((100vw - 32px) * .5)) !important;
    width: calc((100vw - 32px) * .5) !important;
    max-width: 199px !important;
    height: 100% !important;
  }

  .workflow-window--dashboard {
    position: absolute !important;
    top: 62px !important;
    left: 0 !important;
    width: 210px !important;
    height: 194px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 8px !important;
    background:
      linear-gradient(rgba(7, 10, 16, .28), rgba(7, 10, 16, .28)),
      url("../img/comparison/comparison-dashboard-card.svg") left center / 100% 100% no-repeat !important;
    opacity: .62 !important;
    filter: blur(.6px) saturate(.72) brightness(.72) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .52) !important;
  }

  .workflow-window--dashboard>* {
    display: none !important;
  }

  .workflow-window--dashboard::after {
    content: "" !important;
    position: absolute !important;
    inset: -16px -88px -16px 50% !important;
    background: linear-gradient(90deg, transparent, rgba(7, 10, 16, .76) 66%, rgba(7, 10, 16, .96)) !important;
    pointer-events: none !important;
  }

  .workflow-window--assistant {
    position: absolute !important;
    top: 30px !important;
    left: -74px !important;
    z-index: 3 !important;
    width: 470px !important;
    height: 264px !important;
    margin: 0 !important;
    padding: 3px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transform: none !important;
    filter: none !important;
  }

  .workflow-window--assistant:hover {
    transform: none !important;
  }

  .workflow-window--assistant .assistant-shell {
    width: 640px !important;
    height: 360px !important;
    transform: scale(.728) !important;
    transform-origin: left top !important;
  }

  .workflow-window--assistant .assistant-shell__body {
    display: grid !important;
    grid-template-columns: 132px 1fr !important;
    height: 322px !important;
    min-height: 0 !important;
  }

  .workflow-window--assistant .assistant-nav {
    display: grid !important;
    gap: 7px !important;
    padding: 12px 10px 8px !important;
    font-size: 10px !important;
  }

  .workflow-window--assistant .assistant-feed {
    height: 100% !important;
    min-height: 0 !important;
    padding: 14px 18px 12px !important;
    gap: 8px !important;
    overflow: hidden !important;
  }

  .assistant-bubble,
  .assistant-answer,
  .assistant-alerts,
  .assistant-recommendation,
  .assistant-input {
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

  .workflow-window--assistant .assistant-composer {
    margin-top: auto !important;
    padding: 9px 10px 7px !important;
    border: 1px solid rgba(142, 171, 255, .16) !important;
    border-radius: 12px !important;
    background: #131c30 !important;
  }

  .workflow-stage__head {
    position: absolute !important;
    top: 306px !important;
    z-index: 4 !important;
    display: flex !important;
    align-items: center !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 9px !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(7, 10, 16, .18) !important;
    font-size: 10px !important;
    line-height: 12px !important;
    letter-spacing: .04em !important;
  }

  .workflow-stage--old .workflow-stage__head {
    left: 0 !important;
    width: 100% !important;
    color: rgba(255, 255, 255, .22) !important;
    border-left: 1px solid rgba(255, 255, 255, .05) !important;
  }

  .workflow-stage--new .workflow-stage__head {
    left: 0 !important;
    width: 100% !important;
    color: rgba(255, 255, 255, .8) !important;
    border-left: 1px solid rgba(255, 255, 255, .24) !important;
    border-right: 1px solid rgba(255, 255, 255, .18) !important;
  }

  .workflow-list {
    position: absolute !important;
    top: 348px !important;
    z-index: 4 !important;
    display: grid !important;
    width: 100% !important;
    margin: 0 !important;
    border-top: 0 !important;
    background: rgba(5, 7, 13, .02) !important;
  }

  .workflow-list--old {
    left: 0 !important;
    width: 100% !important;
    border-left: 1px solid rgba(255, 255, 255, .05) !important;
  }

  .workflow-list--new {
    left: 0 !important;
    width: 100% !important;
    border-left: 1px solid rgba(255, 255, 255, .24) !important;
    border-right: 1px solid rgba(255, 255, 255, .18) !important;
  }

  .workflow-list li {
    grid-template-columns: 31px 1fr !important;
    min-height: 46px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
  }

  .workflow-status,
  .workflow-copy {
    min-height: 46px !important;
  }

  .workflow-status {
    font-size: 12px !important;
    border-right: 1px solid rgba(255, 255, 255, .12) !important;
  }

  .workflow-copy {
    padding: 0 8px !important;
    font-size: 10px !important;
    line-height: 12px !important;
  }

  .workflow-list--old .workflow-copy,
  .workflow-list--old .workflow-status {
    color: rgba(255, 255, 255, .2) !important;
  }
}

/* =========================================================
   TABLET LANDSCAPE: 901px-1180px
   ========================================================= */

@media (min-width: 901px) and (max-width: 1180px) {
  .main-header {
    top: 10px;
    left: 50%;
    right: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 74px auto auto;
    width: min(770px, calc(100% - 64px));
    height: 76px;
    min-height: 76px;
    margin: 0;
    padding: 0 23px;
    align-items: center;
    align-content: start;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(9, 10, 16, 0.94);
    transform: translateX(-50%);
  }

  .main-header__logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
  }

  .main-header__burger {
    position: static;
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    width: 46px;
    height: 36px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .main-header__burger svg {
    width: 46px;
    height: 36px;
  }

  .main-header__nav {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  .main-header__link {
    display: block;
    padding: 8px 0;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0.92;
  }

  .main-header__cta {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 260ms ease,
      min-height 260ms ease,
      padding 260ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  .main-header.is-open {
    height: auto;
    min-height: 76px;
    padding: 0 23px 14px;
    row-gap: 8px;
    overflow: visible;
  }

  .main-header.is-open .main-header__nav {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-header.is-open .main-header__cta {
    max-height: 44px;
    min-height: 44px;
    padding-top: 14px;
    padding-bottom: 14px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 40ms;
  }

  .comparison-hero,
  .comparison-section {
    width: min(858px, calc(100% - 64px));
  }

  .workflow-section {
    width: min(858px, calc(100% - 64px));
  }

  .comparison-hero {
    width: 100%;
    max-width: none;
    min-height: 923px;
    padding-top: 116px;
    overflow: visible;
  }

  .comparison-hero::before {
    height: 923px;
    background:
      radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.48) 0 1px, transparent 2px),
      radial-gradient(circle at 58% 12%, rgba(255, 192, 225, 0.62) 0 1px, transparent 2px),
      radial-gradient(circle at 78% 24%, rgba(220, 218, 255, 0.58) 0 1px, transparent 2px),
      radial-gradient(circle at 80% 34%, rgba(0, 199, 255, 0.62) 0 2px, transparent 4px),
      radial-gradient(circle at 20% 42%, rgba(39, 163, 255, 0.55) 0 2px, transparent 4px),
      radial-gradient(circle at 86% 42%, rgba(100, 142, 255, 0.58) 0 2px, transparent 4px),
      linear-gradient(180deg, #000 0%, #02040a 62%, #070a12 100%);
  }

  .comparison-hero::after {
    display: none;
  }

  .comparison-hero__eyebrow {
    min-height: 43px;
    padding: 10px 18px;
    font-size: 18px;
    line-height: 23px;
  }

  .comparison-hero h1 {
    max-width: 930px;
    margin-top: 38px;
    font-size: 64px;
    line-height: 1.09;
    font-weight: 600;
  }

  .comparison-hero__subtitle {
    max-width: 720px;
    margin-top: 32px;
    font-size: 18px;
    line-height: 24px;
  }

  .hero-stars {
    top: 78px;
    left: calc(50% + 360px);
    width: 680px;
    opacity: 0.92;
  }

  .comparison-hero__planet {
    display: block;
    position: relative;
    top: 500px;
    bottom: auto;
    z-index: 1;
    width: 100vw;
    height: 500px;
    aspect-ratio: auto;
    background: url("../img/comparison/tablet-planet-blur-reference.png") center top / 100% 100% no-repeat;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .comparison-hero__planet::before,
  .comparison-hero__planet::after {
    content: none;
  }

  .hero-bottom-blur {
    display: block;
    position: absolute;
    left: 50%;
    z-index: 2;
    top: 650px;
    width: 100vw;
    height: 420px;
    max-width: none;
    transform: translateX(-50%);
    background:
      linear-gradient(180deg,
        rgba(11, 14, 22, 0) 0%,
        rgba(11, 14, 22, 0.10) 12%,
        rgba(2, 2, 3, 0.986) 30%,
        rgba(11, 14, 22, 0.28) 100%),
      url("../img/comparison/hero-planet-fade-mobile.svg") center top / 100% 100% no-repeat;
    filter: none;
    pointer-events: none;
  }

  .workflow-section {
    margin-top: 96px;
    position: relative;
    left: 12px;
  }

  .workflow-board {
    display: grid;
    grid-template-columns: 384px 410px;
    gap: 32px;
    min-height: 744px;
    padding: 16px;
    overflow: hidden;
    border-style: dashed;
    border-width: 0 1px 1px;
    border-color: rgba(255, 255, 255, 0.2);
    background:
      radial-gradient(circle at 17% 38%, rgba(30, 55, 132, 0.22), transparent 35%),
      rgba(6, 7, 12, 0.12);
  }

  .workflow-board::before {
    display: block;
    inset: 10px;
    border-color: rgba(255, 255, 255, 0.09);
    border-style: dashed;
    border-width: 0 1px 1px;
  }

  .workflow-stage {
    opacity: 1;
    pointer-events: auto;
  }

  .workflow-stage__head {
    min-height: 60px;
    padding: 10px 16px 8px;
    font-size: 13px;
    line-height: 16px;
  }

  .workflow-stage--old .workflow-stage__head {
    width: calc(100% + 16px);
    margin-left: -16px;
  }

  .workflow-stage--new .workflow-stage__head {
    width: calc(100% + 16px);
  }

  .workflow-window--dashboard {
    width: 300px;
    height: 270px;
    margin: 58px 0 0 24px;
    border: 0;
    border-radius: 0;
    background: url("../img/comparison/comparison-dashboard-card.svg") center / 100% 100% no-repeat;
    filter: blur(1.55px) saturate(0.72) brightness(0.72);
    opacity: 0.72;
  }

  .workflow-window--dashboard>* {
    display: none;
  }

  .workflow-window--assistant {
    width: 575px;
    height: 378px;
    margin: 24px 0 0 -140px;
    padding: 5px;
  }

  .workflow-list {
    row-gap: 0;
    margin-top: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px dashed rgba(255, 255, 255, 0.12);
    border-right: 1px dashed rgba(255, 255, 255, 0.12);
  }

  .workflow-list--old {
    width: calc(100% + 16px);
    margin-top: 74px;
    margin-left: -16px;
  }

  .workflow-list--new {
    width: calc(100% + 16px);
  }

  .workflow-list li {
    grid-template-columns: 52px 1fr;
    min-height: 53px;
    column-gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .workflow-status,
  .workflow-copy {
    min-height: 53px;
    border: 0;
  }

  .workflow-status {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 18px;
  }

  .workflow-copy {
    padding: 0 12px 0 16px;
    font-size: 13px;
    line-height: 16px;
    white-space: normal;
  }

  .workflow-list--old .workflow-status,
  .workflow-list--old .workflow-copy {
    color: rgba(255, 255, 255, 0.2);
  }

  .workflow-list--new .workflow-copy {
    font-weight: 500;
  }

  .comparison-section {
    margin-top: 102px;
  }

  .comparison-section .section-intro {
    max-width: 858px;
    margin-bottom: 20px;
  }

  .comparison-section .section-intro h2 {
    max-width: 858px;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 600;
  }

  .comparison-table-wrap {
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table {
    width: 858px;
    min-width: 858px;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background:
      radial-gradient(circle at 17% 63%, rgba(51, 83, 178, 0.22), transparent 29%),
      linear-gradient(180deg, rgba(7, 8, 14, 0.98), rgba(5, 6, 11, 0.98));
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    width: 300px;
  }

  .comparison-table thead th:nth-child(2),
  .comparison-table tbody td:nth-child(2),
  .comparison-table thead th:nth-child(3),
  .comparison-table tbody td:nth-child(3),
  .comparison-table thead th:nth-child(4),
  .comparison-table tbody td:nth-child(4) {
    width: 139px;
  }

  .comparison-table thead th.is-gendir,
  .comparison-table tbody td.is-gendir {
    width: 141px;
  }

  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table td {
    height: 90px;
    padding: 14px 16px;
    border-top: 0 !important;
    border-left: 0 !important;
    border-bottom: 0 !important;
    border-right: 1px dashed rgba(255, 255, 255, 0.15) !important;
    background: transparent !important;
    box-shadow: none !important;
    vertical-align: middle;
  }

  .comparison-table thead th {
    height: 80px;
    padding: 16px 12px 12px;
    color: rgba(255, 255, 255, 0.28);
    font-size: 13px;
    line-height: 16px;
    font-weight: 600;
    text-align: left;
    vertical-align: top;
    background: rgba(12, 14, 23, 0.42) !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.28) !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.22) !important;
  }

  .comparison-table thead th:first-child {
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
    background: rgba(13, 18, 31, 0.52) !important;
  }

  .comparison-table thead small {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    line-height: 14px;
  }

  .comparison-table tbody th {
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-align: left;
    border-left: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
  }

  .comparison-table td {
    padding-left: 10px;
    padding-right: 10px;
    color: rgba(255, 255, 255, 0.28);
    text-align: center;
  }

  .comparison-table td:last-child,
  .comparison-table th:last-child {
    border-right: 0 !important;
  }

  .comparison-table tbody tr:last-child th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important;
  }

  .comparison-table tbody tr:last-child td:not(.is-gendir) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18) !important;
  }

  .comparison-table thead th.is-gendir {
    text-align: left;
  }

  .comparison-footnote {
    max-width: 858px;
    margin-top: 34px;
  }

  .comparison-footnote__text {
    max-width: 858px;
    font-size: 18px;
    line-height: 24px;
  }

  .final-cta {
    width: 100vw;
    max-width: none;
    min-height: 520px;
    margin-top: 112px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 94px 24px 92px;
  }

  .final-cta::before {
    top: 0;
    box-shadow:
      0 220px 0 0 rgba(255, 255, 255, 0.08),
      0 440px 0 0 rgba(255, 255, 255, 0.08);
  }

  .final-cta h2 {
    max-width: 880px;
    font-size: 50px;
    line-height: 1.08;
  }

  .final-cta p {
    margin-top: 24px;
    max-width: 760px;
    font-size: 20px;
    line-height: 26px;
  }

  .final-cta .big-button {
    margin-top: 40px;
  }

}

@media (min-width: 721px) and (max-width: 900px) {
  .main-header {
    top: 14px;
    left: 50%;
    right: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 58px auto auto;
    width: min(720px, calc(100% - 32px));
    height: 58px;
    min-height: 58px;
    margin: 0;
    padding: 0 16px;
    align-items: center;
    align-content: start;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(9, 11, 18, 0.96);
    transform: translateX(-50%);
  }

  .main-header__logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 20px;
    line-height: 22px;
    font-weight: 800;
  }

  .main-header__burger {
    position: static;
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    width: 24px;
    height: 19px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .main-header__burger svg {
    width: 24px;
    height: 19px;
  }

  .main-header__nav {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .main-header__cta {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
  }

  .comparison-hero {
    width: 100%;
    max-width: none;
    min-height: 850px;
    padding-top: 126px;
    overflow: visible;
  }

  .comparison-hero::before {
    width: 100vw;
    height: 850px;
    background:
      radial-gradient(circle at 40% 16%, rgba(255, 255, 255, 0.34) 0 1px, transparent 2px),
      radial-gradient(circle at 58% 22%, rgba(255, 192, 225, 0.55) 0 1px, transparent 2px),
      radial-gradient(circle at 69% 28%, rgba(255, 255, 255, 0.24) 0 1px, transparent 2px),
      radial-gradient(circle at 20% 50%, rgba(39, 163, 255, 0.78) 0 2px, transparent 4px),
      radial-gradient(circle at 83% 50%, rgba(100, 142, 255, 0.78) 0 2px, transparent 4px),
      linear-gradient(180deg, #000 0%, #02040a 62%, #070a12 100%);
  }

  .comparison-hero::after {
    display: none;
  }

  .comparison-hero__eyebrow {
    min-height: 34px;
    padding: 8px 14px;
    font-size: 13px;
    line-height: 16px;
  }

  .comparison-hero h1 {
    max-width: 650px;
    margin-top: 32px;
    font-size: clamp(43px, 6.7vw, 54px);
    line-height: 1.12;
    font-weight: 600;
  }

  .comparison-hero__subtitle {
    max-width: 690px;
    margin-top: 24px;
    font-size: 17px;
    line-height: 22px;
  }

  .hero-stars {
    top: 176px;
    left: 50%;
    width: min(760px, 100vw);
    opacity: 0.88;
    transform: translateX(-50%);
  }

  .comparison-hero__planet {
    display: block;
    top: 520px;
    bottom: auto;
    z-index: 1;
    width: 100vw;
    height: calc(100vw * 500 / 1024);
    aspect-ratio: auto;
    background: url("../img/comparison/tablet-planet-blur-reference.png") center top / 100% 100% no-repeat;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .comparison-hero__planet::before,
  .comparison-hero__planet::after {
    content: none;
  }



  .comparison-section .section-kicker {
    display: none !important;
  }

  .workflow-section {
    width: min(720px, calc(100% - 40px));
    margin-top: 40px;
  }

  .workflow-board {
    display: grid;
    grid-template-columns: 322px 344px;
    gap: 27px;
    min-height: 624px;
    padding: 13px;
    border-style: dashed;
    border-width: 0 1px 1px;
    border-color: rgba(255, 255, 255, 0.2);
    background:
      radial-gradient(circle at 17% 38%, rgba(30, 55, 132, 0.22), transparent 35%),
      rgba(6, 7, 12, 0.12);
    overflow: hidden;
  }

  .workflow-board::before {
    display: block;
    inset: 8px;
    border-color: rgba(255, 255, 255, 0.09);
    border-style: dashed;
    border-width: 0 1px 1px;
  }

  .workflow-stage {
    opacity: 1;
    pointer-events: auto;
  }

  .workflow-stage__head {
    min-height: 50px;
    padding: 8px 13px 7px;
    font-size: 11px;
    line-height: 14px;
  }

  .workflow-stage--old .workflow-stage__head {
    width: calc(100% + 13px);
    margin-left: -13px;
  }

  .workflow-stage--new .workflow-stage__head {
    width: calc(100% + 13px);
  }

  .workflow-window--dashboard {
    width: 252px;
    height: 227px;
    margin: 49px 0 0 20px;
    border: 0;
    border-radius: 0;
    background: url("../img/comparison/comparison-dashboard-card.svg") center / 100% 100% no-repeat;
    filter: blur(1.35px) saturate(0.72) brightness(0.72);
    opacity: 0.72;
  }

  .workflow-window--dashboard>* {
    display: none;
  }

  .workflow-window--assistant {
    width: 483px;
    height: 318px;
    margin: 20px 0 0 -118px;
    padding: 4px;
  }

  .workflow-list {
    row-gap: 0;
    margin-top: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px dashed rgba(255, 255, 255, 0.12);
    border-right: 1px dashed rgba(255, 255, 255, 0.12);
  }

  .workflow-list--old {
    width: calc(100% + 13px);
    margin-top: 62px;
    margin-left: -13px;
  }

  .workflow-list--new {
    width: calc(100% + 13px);
  }

  .workflow-list li {
    grid-template-columns: 44px 1fr;
    min-height: 44px;
    column-gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .workflow-status,
  .workflow-copy {
    min-height: 44px;
    border: 0;
  }

  .workflow-status {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 16px;
  }

  .workflow-copy {
    padding: 0 10px 0 13px;
    overflow: hidden;
    font-size: 11px;
    line-height: 14px;
    white-space: normal;
  }

  .workflow-list--old .workflow-status,
  .workflow-list--old .workflow-copy {
    color: rgba(255, 255, 255, 0.2);
  }

  .workflow-list--new .workflow-copy {
    font-weight: 500;
  }
}

@media (min-width: 721px) and (max-width: 780px) {
  .comparison-hero h1 {
    max-width: 590px;
  }
}

/* =========================================================
   MOBILE HEADER: 768px-
   ========================================================= */

@media (max-width: 768px) {
  .main-header {
    top: 32px;
    left: 16px;
    right: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 58px auto auto;
    width: auto;
    max-width: none;
    height: 58px;
    min-height: 58px;
    padding: 0 16px;
    align-items: center;
    align-content: start;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(9, 11, 18, 0.96);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 10px 30px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(8px);
    transform: none;
  }

  .main-header__logo {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 20px;
    font-weight: 800;
    line-height: 22px;
    letter-spacing: 0.2px;
  }

  .main-header__burger {
    position: static;
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    width: 24px;
    height: 19px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .main-header__burger svg {
    width: 24px;
    height: 19px;
  }

  .main-header__nav {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  .main-header__link {
    display: block;
    padding: 8px 0;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0.92;
  }

  .main-header__cta {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      max-height 260ms ease,
      min-height 260ms ease,
      padding 260ms ease,
      opacity 220ms ease,
      transform 220ms ease;
  }

  .main-header.is-open {
    height: auto;
    padding: 0 16px 12px;
    row-gap: 8px;
    overflow: visible;
  }

  .main-header.is-open .main-header__nav {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-header.is-open .main-header__cta {
    max-height: 44px;
    min-height: 44px;
    padding-top: 14px;
    padding-bottom: 14px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 40ms;
  }
}

/* =========================================================
   MOBILE: 720px-
   ========================================================= */

@media (max-width: 720px) {

  :root {
    --mobile-wide-extra: max(0px, calc(min(430px, 100vw) - 375px));
  }

  body,
  .page-shell::before {
    background: #0c1018;
  }

  .page-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow-x: hidden;
  }

  .comparison-main {
    padding-top: 44px;
  }

  .comparison-hero,
  .workflow-section,
  .comparison-section,
  .final-cta {
    width: min(430px, calc(100vw - 32px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .ambient-a {
    top: 380px;
    left: -260px;
    width: 520px;
    height: 680px;
  }

  .ambient-b {
    top: 1320px;
    right: -220px;
    width: 460px;
    height: 620px;
  }

  .ambient-c {
    bottom: 260px;
    right: -260px;
    width: 520px;
    height: 680px;
  }

  .comparison-hero {
    width: 100%;
    max-width: none;
    min-height: 580px;
    padding-top: 122px;
    overflow: visible;
  }

  .comparison-hero::before {
    top: 0;
    width: 100vw;
    height: 630px;
  }

  .comparison-hero::after {
    display: none;
  }

  .comparison-hero__eyebrow {
    min-height: 34px;
    padding: 8px 14px;
    font-size: 12px;
    line-height: 14px;
  }

  .comparison-hero h1 {
    width: min(100vw - 40px, 335px);
    max-width: none;
    margin-top: 18px;
    font-size: 20px;
    line-height: 1.12;
    text-wrap: normal;
  }

  .comparison-hero__subtitle {
    max-width: 315px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11.5px;
    line-height: 14px;
  }

  .hero-stars {
    top: 94px;
    left: 76%;
    width: 370px;
    opacity: 0.84;
  }

  .hero-star--5,
  .hero-star--7 {
    display: none;
  }

  .comparison-hero__planet {
    display: block;
    position: absolute;
    left: 50%;
    bottom: -209px;
    z-index: 1;

    width: min(430px, 100vw);
    max-width: none;
    height: min(462px, 107.4667vw);
    aspect-ratio: auto;

    transform: translateX(-50%);
    overflow: hidden;

    background-image: url("../img/comparison/planet-mask-mobile.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;

    -webkit-mask-image: none;
    mask-image: none;

    filter: none;
    pointer-events: none;
  }

  .comparison-hero__planet::before {
    content: none;
  }

  .comparison-hero__planet::after {
    content: none;
  }

  .hero-bottom-blur {
    display: block;
    position: absolute;
    left: 50%;
    top: min(370px, 100vw);
    z-index: 2;
    width: min(430px, 100vw);
    height: min(2393px, 137.8667vw);
    max-width: none;
    transform: translateX(-50%);
    background:
      linear-gradient(180deg,
        rgba(11, 14, 22, 0) 0%,
        rgba(11, 14, 22, 0.10) 12%,
        rgba(2, 2, 3, 0.986) 30%,
        rgba(11, 14, 22, 0.28) 100%),
      url("../img/comparison/hero-planet-fade-mobile.svg") center top / 100% 100% no-repeat;
    filter: none;
    pointer-events: none;
  }

  .section-intro {
    margin-bottom: 24px;
  }

  .section-intro h2 {
    max-width: 320px;
    margin-top: 16px;
    font-size: 28px;
    line-height: 1;
  }

  .section-intro p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .workflow-section {
    width: 100%;
    max-width: none;
    margin-top: 18px;
  }

  .workflow-board {
    display: block;
    position: relative;
    width: min(430px, 100vw);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    height: calc(666px + var(--mobile-wide-extra));
    min-height: calc(666px + var(--mobile-wide-extra));
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
  }

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

  .workflow-stage {
    position: absolute;
    top: 0;
    padding: 0;
  }

  .workflow-stage--old {
    left: 4.2667%;
    width: 45.8667%;
  }

  .workflow-stage--new {
    left: 28.5333%;
    width: 71.2%;
  }

  .workflow-window--dashboard {
    position: absolute;
    top: 32px;
    left: 0;
    width: min(351px, 81.6vw);
    height: min(245px, 57.0667vw);
    margin: 0;
    border: 0;
    background:
      linear-gradient(rgba(7, 10, 16, 0.34), rgba(7, 10, 16, 0.34)),
      url("../img/comparison/comparison-dashboard-card.svg") center / 100% 100% no-repeat;
    opacity: 0.7;
    filter: blur(0.35px) saturate(0.8) brightness(0.7) contrast(1.06);
    box-shadow:
      inset 0 0 0 999px rgba(7, 10, 16, 0.18),
      0 20px 45px rgba(0, 0, 0, 0.48);
  }

  .workflow-window--dashboard>* {
    display: none;
  }

  .workflow-window--assistant {
    position: absolute;
    top: max(-73px, -17.0667vw);
    left: max(-105px, -24.5333vw);
    z-index: 1;
    width: min(726px, 168.8vw);
    height: min(474px, 110.1333vw);
    margin: 0;
    padding: 3px;
    filter: none;
    image-rendering: auto;
    overflow: hidden;
  }

  .workflow-stage__head {
    position: absolute;
    top: calc(318px + var(--mobile-wide-extra));
    z-index: 2;
    display: flex;
    height: 45px;
    min-height: 45px;
    margin: 0;
    padding: 0 12px;
    align-items: center;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 10, 16, 0.14);
    color: rgba(255, 255, 255, 0.24);
    font-size: 11px;
    line-height: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .workflow-stage--old .workflow-stage__head {
    left: 0;
    width: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.045);
  }

  .workflow-stage--new .workflow-stage__head {
    left: 29.9625%;
    width: 64.0449%;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
  }

  .workflow-list {
    position: absolute;
    top: calc(363px + var(--mobile-wide-extra));
    z-index: 2;
    display: grid;
    width: 100%;
    margin: 0;
    border-top: 0;
    border-left: 0px solid rgba(255, 255, 255, 0.045);
    border-right: 0;
  }

  .workflow-list--old {
    left: 0;
  }

  .workflow-list--new {
    left: 29.9625%;
    width: 64.0449%;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .workflow-list li {
    grid-template-columns: 32px 1fr;
    min-height: 57px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .workflow-status,
  .workflow-copy {
    min-height: 57px;
  }

  .workflow-status {
    border-right-color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
  }

  .workflow-copy {
    padding: 0 10px 0 12px;
    overflow: hidden;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
  }

  .workflow-list--old .workflow-copy,
  .workflow-list--old .workflow-status {
    color: rgba(255, 255, 255, 0.18);
  }

  .workflow-list--new .workflow-status {
    border-right-color: rgba(255, 255, 255, 0.16);
  }

  .workflow-list--new .workflow-copy {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
  }

  .comparison-section {
    width: min(430px, calc(100vw - 32px));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 86px;
  }

  .comparison-section .section-kicker {
    display: none !important;
  }

  .comparison-section .section-intro {
    max-width: 343px;
    margin: 0 auto 36px;
    text-align: center;
  }

  .comparison-section .section-intro h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 600;
  }

  .comparison-table-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .comparison-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background:
      radial-gradient(circle at 44% 50%, rgba(44, 80, 190, 0.12), transparent 34%),
      linear-gradient(180deg, rgba(6, 10, 18, 0.98), rgba(4, 8, 15, 0.98));
  }

  .comparison-table th:nth-child(3),
  .comparison-table th:nth-child(4),
  .comparison-table td:nth-child(3),
  .comparison-table td:nth-child(4) {
    display: none;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    width: 58%;
  }

  .comparison-table thead th:nth-child(2),
  .comparison-table tbody td:nth-child(2),
  .comparison-table thead th:nth-child(5),
  .comparison-table tbody td:nth-child(5) {
    width: 21%;
  }

  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table td {
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-table thead th:first-child {
    height: 58px;
    padding: 12px 14px;
    color: #fff;
    font-size: 11px;
    line-height: 13px;
    font-weight: 600;
    text-align: left;
    vertical-align: middle;
    background: rgba(10, 15, 26, 0.46) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.20);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table thead small {
    display: none;
  }

  .comparison-table thead th:nth-child(2) {
    height: 58px;
    padding: 12px 6px;
    color: transparent;
    font-size: 0;
    text-align: center;
    vertical-align: middle;
    background: rgba(10, 15, 26, 0.14) !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.34);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .comparison-table thead th:nth-child(2)::before {
    content: "Все\A остальные";
    display: inline-block;
    white-space: pre-line;
    color: rgba(255, 255, 255, 0.26);
    font-size: 10px;
    line-height: 12px;
    font-weight: 600;
    text-align: center;
  }

  .comparison-table tbody th {
    height: 88px;
    padding: 10px 12px 10px 14px;
    color: #fff;
    font-size: 11px;
    line-height: 13px;
    font-weight: 500;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table tbody td:nth-child(2) {
    height: 88px;
    padding: 10px 6px;
    text-align: center;
    vertical-align: middle;
    background: rgba(8, 13, 24, 0.12) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table td {
    height: 88px;
    padding: 10px 6px;
    text-align: center;
    vertical-align: middle;
  }

  .comparison-table thead th.is-gendir,
  .comparison-table tbody td.is-gendir,
  .comparison-table tbody tr.is-highlight td.is-gendir {
    position: relative;
    background: #0d1726 !important;
    background-image: none !important;
    background-color: #0d1726 !important;
    border-left: 1px solid rgba(126, 158, 236, 0.42) !important;
    border-right: 1px solid rgba(126, 158, 236, 0.42) !important;
    box-shadow: none !important;
    z-index: 1;
  }

  .comparison-table thead th.is-gendir {
    height: 58px;
    padding: 12px 8px;
    color: #fff;
    font-size: 11px;
    line-height: 13px;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    border-top: 1px solid rgba(126, 158, 236, 0.42) !important;
    border-bottom: 1px solid rgba(126, 158, 236, 0.28) !important;
    box-shadow:
      inset 0 1px 0 rgba(126, 158, 236, 0.42),
      0 0 22px rgba(140, 170, 255, 0.14) !important;
  }

  .comparison-table thead th.is-gendir::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 8px;
    right: 8px;
    height: 26px;
    pointer-events: none;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.30) 0%,
        rgba(255, 255, 255, 0.10) 35%,
        rgba(255, 255, 255, 0) 78%);
    filter: blur(10px);
    opacity: 0.9;
  }

  .comparison-table tbody tr.is-highlight th,
  .comparison-table tbody tr.is-highlight td {
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-table tbody tr:last-child th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .comparison-table tbody tr:last-child td:nth-child(2) {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
  }

  .comparison-table tbody tr:last-child td.is-gendir {
    border-bottom: 1px solid rgba(126, 158, 236, 0.42) !important;
  }

  .status {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
  }

  .status--yes {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 24px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
  }

  .comparison-table td.is-gendir .status,
  .comparison-table td.is-gendir .status--yes {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #fff !important;
    font-size: 34px !important;
    font-weight: 300 !important;
    line-height: 1 !important;
  }

  .status--ghost {
    color: rgba(255, 255, 255, 0.28);
  }

  .status--no {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.24) !important;
    font-size: 22px !important;
  }

  .status--partial {
    position: relative;
    width: 26px !important;
    height: 26px !important;
    border: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.02) !important;
  }

  .status--partial::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.72) 50%,
        rgba(255, 255, 255, 0.12) 50%);
  }

  .comparison-footnote {
    width: 100%;
    max-width: 343px;
    margin: 24px auto 0;
    gap: 14px;
  }

  .comparison-footnote__head {
    column-gap: 16px;
  }

  .comparison-footnote__head span {
    font-size: 11px;
    line-height: 14px;
  }

  .comparison-footnote__text {
    max-width: 315px;
    font-size: 11px;
    line-height: 13px;
  }

  .final-cta {
    min-height: 390px;
    margin-top: 46px;
    padding: 92px 0 50px;
    overflow: visible;
    background: transparent;
  }

  .final-cta::before {
    left: 50%;
    right: auto;
    top: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    border-top: 1px solid rgba(255, 255, 255, 0.055);
    background:
      linear-gradient(90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.07) 18%,
        rgba(255, 255, 255, 0.07) 82%,
        rgba(255, 255, 255, 0) 100%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: center 77px;
    box-shadow: none;
    pointer-events: none;
  }

  .final-cta::after {
    left: 50%;
    right: auto;
    top: -32px;
    bottom: auto;
    width: 100vw;
    height: calc(100% + 80px);
    transform: translateX(-50%);
    border: 0;
    background:
      radial-gradient(ellipse at 50% 34%,
        rgba(54, 86, 184, 0.34) 0%,
        rgba(31, 53, 118, 0.2) 34%,
        rgba(13, 20, 38, 0.1) 58%,
        rgba(12, 16, 24, 0) 82%),
      linear-gradient(180deg,
        rgba(12, 16, 24, 0) 0%,
        rgba(15, 24, 51, 0.2) 28%,
        rgba(16, 25, 52, 0.18) 65%,
        rgba(12, 16, 24, 0) 100%);
    pointer-events: none;
  }

  .final-cta h2 {
    max-width: 330px;
    font-size: 26px;
    line-height: 1.12;
  }

  .final-cta p {
    width: 100%;
    max-width: 292px;
    margin-top: 26px;
    font-size: 11px;
    line-height: 14px;
  }

  .final-cta .big-button {
    width: 100%;
    max-width: 343px;
    height: 45px;
    margin-top: 28px;
  }

  .final-cta .note {
    width: 100%;
    max-width: 320px;
    margin-top: 22px;
    font-size: 12px;
    line-height: 16px;
  }

}

/* =========================================================
   SMALL MOBILE: 374px-
   ========================================================= */

@media (max-width: 374px) {

  .comparison-hero,
  .workflow-section,
  .comparison-section,
  .final-cta {
    width: calc(100vw - 24px);
    max-width: none;
  }

  .comparison-hero h1 {
    font-size: 22px;
  }

  .workflow-board {
    transform: scale(0.94);
    transform-origin: top center;
    margin-bottom: -36px;
  }

  .comparison-section {
    margin-top: 132px;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    width: 56%;
  }

  .comparison-table thead th:nth-child(2),
  .comparison-table tbody td:nth-child(2),
  .comparison-table thead th:nth-child(5),
  .comparison-table tbody td:nth-child(5) {
    width: 22%;
  }

  .comparison-table tbody th {
    padding-left: 10px;
    padding-right: 8px;
    font-size: 10px;
    line-height: 12px;
  }

  .comparison-table thead th.is-gendir,
  .comparison-table thead th:nth-child(2)::before {
    font-size: 9px;
    line-height: 11px;
  }

  .comparison-table td.is-gendir .status--yes {
    font-size: 30px !important;
  }
}

/* Tablet planet fix */
@media (min-width: 721px) and (max-width: 1180px) {
  .comparison-hero {
    overflow: hidden;
  }

  .comparison-hero__planet {
    display: block;
    position: absolute;
    left: 50%;
    top: 500px;
    bottom: auto;
    z-index: 1;

    width: 100vw;
    height: 360px;
    aspect-ratio: auto;

    transform: translateX(-50%);
    overflow: hidden;

    background: url("../img/comparison/planet-horizon.png") center top / 1400px auto no-repeat;

    filter: drop-shadow(0 -18px 44px rgba(58, 146, 255, 0.18));

    -webkit-mask-image: linear-gradient(180deg,
        transparent 0%,
        #000 18%,
        #000 58%,
        transparent 86%);
    mask-image: linear-gradient(180deg,
        transparent 0%,
        #000 18%,
        #000 58%,
        transparent 86%);

    pointer-events: none;
  }

  .comparison-hero__planet::before,
  .comparison-hero__planet::after {
    content: none;
  }
}

/* Final tablet hero fix: 721px–1180px */
@media (min-width: 721px) and (max-width: 1180px) {
  .comparison-hero {
    width: 100%;
    max-width: none;
    min-height: 900px;
    overflow: hidden;
  }

  .comparison-hero__planet {
    display: block;
    position: absolute;
    left: 50%;
    top: 500px;
    bottom: auto;
    z-index: 1;

    width: 100vw;
    height: clamp(340px, 42vw, 500px);
    max-width: none;
    aspect-ratio: auto;

    transform: translateX(-50%);

    background: url("../img/comparison/planet-horizon.png") center top / 1400px auto no-repeat;

    filter: drop-shadow(0 -18px 44px rgba(58, 146, 255, 0.18));

    -webkit-mask-image: linear-gradient(180deg,
        transparent 0%,
        #000 14%,
        #000 62%,
        transparent 92%);
    mask-image: linear-gradient(180deg,
        transparent 0%,
        #000 14%,
        #000 62%,
        transparent 92%);

    pointer-events: none;
  }


  .hero-bottom-blur {
    display: block !important;
    position: absolute;
    left: 50%;
    top: 620px;
    z-index: 2;

    width: 100vw;
    height: 360px;
    max-width: none;

    transform: translateX(-50%);

    background: linear-gradient(180deg,
        rgba(7, 10, 16, 0) 0%,
        rgba(7, 10, 16, 0.35) 14%,
        rgba(7, 10, 16, 0.92) 42%,
        rgba(7, 10, 16, 1) 70%,
        rgba(7, 10, 16, 0.7) 100%);

    pointer-events: none;
  }
}

@media (min-width: 1181px) {
  .workflow-board {
    grid-template-columns: 420px minmax(0, 1fr) !important;
    min-height: 764px !important;
    padding: 12px 12px 0 !important;
  }

  .workflow-board::before {
    inset: 10px !important;
  }

  .workflow-stage {
    grid-template-rows: 64px 410px auto !important;
  }

  .workflow-stage__head {
    height: 64px !important;
    min-height: 64px !important;
    margin-top: -12px !important;
    padding: 0 34px !important;
  }

  .workflow-window--dashboard {
    width: 372px !important;
    height: 310px !important;
    margin-top: 34px !important;
  }

  .workflow-window--assistant {
    width: 736px !important;
    height: 405px !important;
    margin: 10px 0 0 0 !important;
    border-radius: 18px !important;
  }

  .workflow-window--assistant .assistant-shell {
    width: 816px !important;
    height: 448px !important;
    transform: scale(0.902) !important;
    transform-origin: left top !important;
  }

  .workflow-window--assistant .assistant-shell__body {
    display: grid !important;
    grid-template-columns: 140px 1fr !important;
    min-height: 409px !important;
  }

  .workflow-window--assistant .assistant-nav {
    display: grid !important;
  }

  .workflow-window--assistant .assistant-feed {
    padding: 18px 24px 14px !important;
    gap: 12px !important;
  }

  .workflow-list li {
    grid-template-columns: 50px 1fr !important;
    min-height: 45px !important;
  }

  .workflow-status,
  .workflow-copy {
    min-height: 45px !important;
  }

  .workflow-copy {
    padding: 0 18px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
  }
}

@media (min-width: 1025px) {

  body .main-header,
  .main-header {
    left: 50% !important;
    right: auto !important;
    width: min(1204px, calc(100vw - 48px)) !important;
    max-width: min(1204px, calc(100vw - 48px)) !important;
    transform: translateX(-50%) !important;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .comparison-hero {
    min-height: 1040px !important;
    overflow: visible !important;
  }

  .comparison-hero__planet {
    top: 500px !important;
    height: 360px !important;
    z-index: 1 !important;
  }

  .workflow-section {
    margin-top: 0 !important;
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .comparison-hero__planet {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    top: 500px !important;
    bottom: auto !important;
    z-index: 1 !important;

    width: 100vw !important;
    height: 420px !important;
    max-width: none !important;

    transform: translateX(-50%) !important;

    background: url("../img/comparison/planet-horizon.png") center top / 1400px auto no-repeat !important;

    filter: drop-shadow(0 -18px 44px rgba(58, 146, 255, 0.18)) !important;

    -webkit-mask-image: linear-gradient(180deg,
        transparent 0%,
        black 12%,
        black 42%,
        rgba(0, 0, 0, 0.85) 56%,
        rgba(0, 0, 0, 0.45) 68%,
        transparent 82%) !important;

    mask-image: linear-gradient(180deg,
        transparent 0%,
        black 12%,
        black 42%,
        rgba(0, 0, 0, 0.85) 56%,
        rgba(0, 0, 0, 0.45) 68%,
        transparent 82%) !important;

    pointer-events: none;
  }

  .hero-bottom-blur {
    display: block;
    position: absolute;
    left: 50%;
    top: min(420px, 100vw);
    z-index: 2;
    width: min(5430px, 100vw);
    height: min(1493px, 137.8667vw);
    max-width: none;
    transform: translateX(-50%);
    background:
      linear-gradient(180deg,
        rgba(11, 14, 22, 0) 0%,
        rgba(11, 14, 22, 0.10) 12%,
        rgba(11, 14, 22, 0.28) 30%,
        rgba(11, 14, 22, 0.28) 100%),
      url("../img/comparison/hero-planet-fade-mobile.svg") center top / 100% 100% no-repeat;
    filter: none;
    pointer-events: none;
  }
}

/* Tablet comparison table tuning to match the reference. */
@media (min-width: 721px) and (max-width: 1180px) {
  .workflow-list--new .workflow-copy {
    font-family: Inter, sans-serif !important;
    font-size: 10px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: 12.1px !important;
    letter-spacing: 0 !important;
    vertical-align: middle !important;
  }

  .comparison-table-wrap {
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .comparison-table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed !important;
    border: 1px solid rgba(255, 255, 255, 0.20) !important;
    background: rgba(5, 7, 13, 0.98) !important;
  }

  .comparison-table thead th,
  .comparison-table tbody th,
  .comparison-table td {
    height: 72px !important;
    padding: 18px 14px !important;
    background: transparent !important;
    border-right: 1px dashed rgba(255, 255, 255, 0.13) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: none !important;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    width: 35% !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
  }

  .comparison-table thead th:nth-child(2),
  .comparison-table tbody td:nth-child(2),
  .comparison-table thead th:nth-child(3),
  .comparison-table tbody td:nth-child(3),
  .comparison-table thead th:nth-child(4),
  .comparison-table tbody td:nth-child(4) {
    width: 16.25% !important;
  }

  .comparison-table thead th.is-gendir,
  .comparison-table tbody td.is-gendir {
    width: 16.25% !important;
  }

  .comparison-table thead th {
    color: rgba(255, 255, 255, 0.30) !important;
    font-size: 12px !important;
    line-height: 14px !important;
    font-weight: 500 !important;
    vertical-align: top !important;
  }

  .comparison-table thead th:first-child {
    color: rgba(255, 255, 255, 0.92) !important;
  }

  .comparison-table thead small {
    margin-top: 8px !important;
    color: rgba(255, 255, 255, 0.28) !important;
    font-size: 10px !important;
    line-height: 12px !important;
  }

  .comparison-table tbody th {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 105% !important;
    letter-spacing: 0 !important;
  }

  .comparison-table thead th.is-gendir,
  .comparison-table tbody td.is-gendir {
    background: #0d1726 !important;
    color: #fff !important;
    border-left: 1px solid rgba(255, 255, 255, 0.42) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.42) !important;
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.12),
      inset -1px 0 0 rgba(255, 255, 255, 0.12),
      0 0 20px rgba(255, 255, 255, 0.10) !important;
  }

  .comparison-table thead th.is-gendir {
    border-top: 1px solid rgba(255, 255, 255, 0.40) !important;
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.12),
      inset -1px 0 0 rgba(255, 255, 255, 0.12),
      inset 0 -24px 34px rgba(255, 255, 255, 0.08),
      0 0 20px rgba(255, 255, 255, 0.10) !important;
  }

  .comparison-table tbody tr.is-highlight th,
  .comparison-table tbody tr.is-highlight td {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 20%, rgba(27, 39, 63, 0.86)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.65),
      inset 0 -1px 0 rgba(255, 255, 255, 0.34),
      inset 0 16px 30px rgba(255, 255, 255, 0.12),
      0 0 26px rgba(255, 255, 255, 0.14) !important;
  }

  .comparison-table tbody tr.is-highlight td.is-gendir {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(13, 23, 38, 0.98) 35%, rgba(13, 23, 38, 0.98)) !important;
  }

  .status--yes,
  .comparison-table td.is-gendir .status--yes {
    width: 34px !important;
    height: 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
  }

  .status--yes::before,
  .comparison-table td.is-gendir .status--yes::before {
    top: 50% !important;
    left: 50% !important;
    width: 22px !important;
    height: 17px !important;
    transform: translate(-50%, -50%) !important;
  }

  .status--partial {
    width: 18px !important;
    height: 18px !important;
    background: transparent !important;
  }

  .status--partial::before {
    width: 18px !important;
    height: 18px !important;
    background: linear-gradient(90deg, #070910 0 50%, rgba(75, 80, 92, 0.68) 50% 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
  }
}

/* Mobile comparison table status icons: replace legacy symbols with reference icons. */
@media (max-width: 1180px) {
  .final-cta {
    overflow: visible !important;
    background: transparent !important;
    isolation: isolate !important;
  }

  .final-cta::before {
    content: "" !important;
    position: absolute !important;
    top: 80px !important;
    bottom: -120px !important;
    left: calc(50% - 50vw) !important;
    right: calc(50% - 50vw) !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
    border: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
    box-shadow: none !important;
    background:
      linear-gradient(to right, transparent 0%, rgba(255, 255, 255, .18) 8%, rgba(255, 255, 255, .18) 92%, transparent 100%) left 0% / 100% 1px no-repeat,
      linear-gradient(to right, transparent 0%, rgba(255, 255, 255, .18) 8%, rgba(255, 255, 255, .18) 92%, transparent 100%) left 33.33% / 100% 1px no-repeat,
      linear-gradient(to right, transparent 0%, rgba(255, 255, 255, .18) 8%, rgba(255, 255, 255, .18) 92%, transparent 100%) left 66.66% / 100% 1px no-repeat,
      linear-gradient(to right, transparent 0%, rgba(255, 255, 255, .18) 8%, rgba(255, 255, 255, .18) 92%, transparent 100%) left 100% / 100% 1px no-repeat !important;
  }

  .final-cta::after {
    content: "" !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  .comparison-section .section-intro h2 {
    font-family: Inter, sans-serif !important;
    max-width: 330px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 35px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 100% !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    vertical-align: middle !important;
  }

  .mobile-title-break {
    display: none;
  }

  .workflow-list--new .workflow-copy {
    font-family: Inter, sans-serif !important;
    font-size: 10px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: 12.1px !important;
    letter-spacing: 0 !important;
    vertical-align: middle !important;
  }

  .comparison-table thead th.is-gendir,
  .comparison-table tbody td.is-gendir,
  .comparison-table tbody tr.is-highlight td.is-gendir,
  .comparison-table tbody tr:last-child td.is-gendir {
    border-left: 1px solid rgba(255, 255, 255, 0.62) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.62) !important;
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.20),
      inset -1px 0 0 rgba(255, 255, 255, 0.20),
      0 0 18px rgba(255, 255, 255, 0.12) !important;
  }

  .comparison-table thead th.is-gendir {
    border-top: 1px solid rgba(255, 255, 255, 0.62) !important;
  }

  .comparison-table tbody tr:last-child td.is-gendir {
    border-bottom: 1px solid rgba(255, 255, 255, 0.62) !important;
  }

  .comparison-table tbody tr.is-highlight th,
  .comparison-table tbody tr.is-highlight td,
  .comparison-table tbody tr.is-highlight td.is-gendir {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.035) 22%,
        rgba(10, 16, 28, 0.98) 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.52),
      inset 0 -1px 0 rgba(255, 255, 255, 0.28),
      inset 0 14px 24px rgba(255, 255, 255, 0.08),
      0 0 22px rgba(255, 255, 255, 0.10) !important;
  }

  .comparison-table .status--yes,
  .comparison-table td.is-gendir .status,
  .comparison-table td.is-gendir .status--yes {
    position: relative !important;
    display: inline-flex !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    font-weight: 400 !important;
    line-height: 0 !important;
  }

  .comparison-table .status--yes::before,
  .comparison-table td.is-gendir .status--yes::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 22px !important;
    height: 17px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='17' viewBox='0 0 22 17' fill='none'><path d='M2 8.5L8 14L20 2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  .comparison-table .status--ghost::before {
    opacity: 0.45 !important;
  }

  .comparison-table .status--partial {
    position: relative !important;
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .comparison-table .status--partial::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    width: 18px !important;
    height: 18px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: linear-gradient(90deg, #070910 0 50%, rgba(75, 80, 92, 0.68) 50% 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
  }

  .comparison-table .status--partial::after {
    content: "" !important;
    position: absolute !important;
    top: 1px !important;
    bottom: 1px !important;
    left: 50% !important;
    width: 1px !important;
    background: rgba(255, 255, 255, 0.10) !important;
    transform: translateX(-50%) !important;
  }
}

.main-header__cta,
.big-button {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    opacity 0.24s ease !important;
}

.main-header__cta:hover,
.main-header__cta:focus-visible,
.big-button:hover,
.big-button:focus-visible {
  opacity: .5 !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .18),
    0 0 30px rgba(255, 255, 255, .62),
    0 0 64px rgba(255, 255, 255, .22),
    inset 0 1px 0 rgba(255, 255, 255, .95) !important;
}

.main-header__cta:active,
.big-button:active {
  transform: scale(.95) !important;
}

/* Keep only the shared integrations CTA arrow decor in comparison final CTA. */
.final-cta::before,
.final-cta::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.final-cta .cap-bg-arrow--cta {
  display: block !important;
}

.page-shell::before {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* Final CTA: keep the arrow, remove only the extra blue glow/blob. */
.final-cta::before,
.final-cta::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.final-cta .cap-bg-arrow--cta {
  display: block !important;
}

@media (min-width: 721px) {
  .workflow-board {
    position: relative !important;
    grid-template-columns: minmax(320px, 34%) minmax(0, 66%) !important;
    overflow: visible !important;
    gap: 0 !important;
    padding: 20px 20px 0 !important;
    border: 1px dashed rgba(255, 255, 255, 0.18) !important;
  }

  .workflow-board::before {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 10px !important;
    border: 1px dashed rgba(255, 255, 255, 0.08) !important;
    pointer-events: none !important;
  }

  .workflow-board::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: -6px !important;
    z-index: 6 !important;
    pointer-events: none !important;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.18) 8px, transparent 0) left top / 8px 1px no-repeat,
      linear-gradient(rgba(255, 255, 255, 0.18) 8px, transparent 0) left top / 1px 8px no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, 0.18) 8px, transparent 0) right top / 8px 1px no-repeat,
      linear-gradient(rgba(255, 255, 255, 0.18) 8px, transparent 0) right top / 1px 8px no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, 0.18) 8px, transparent 0) left bottom / 8px 1px no-repeat,
      linear-gradient(rgba(255, 255, 255, 0.18) 8px, transparent 0) left bottom / 1px 8px no-repeat,
      linear-gradient(90deg, rgba(255, 255, 255, 0.18) 8px, transparent 0) right bottom / 8px 1px no-repeat,
      linear-gradient(rgba(255, 255, 255, 0.18) 8px, transparent 0) right bottom / 1px 8px no-repeat !important;
  }

  .workflow-stage {
    display: grid !important;
    grid-template-rows: 64px 344px auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }

  .workflow-stage__head {
    height: 64px !important;
    min-height: 64px !important;
    margin: -20px 0 0 !important;
    padding: 0 34px !important;
    border-top: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-left: 1px dashed rgba(255, 255, 255, 0.13) !important;
    border-right: 1px dashed rgba(255, 255, 255, 0.13) !important;
    background: rgba(5, 7, 13, 0.18) !important;
  }

  .workflow-stage--old .workflow-stage__head,
  .workflow-stage--new .workflow-stage__head {
    width: auto !important;
    margin-left: 0 !important;
  }

  .workflow-stage--new .workflow-stage__head {
    border-left-color: rgba(255, 255, 255, 0.22) !important;
    color: rgba(255, 255, 255, 0.72) !important;
  }

  .workflow-window--dashboard {
    align-self: center !important;
    justify-self: center !important;
    width: min(420px, calc(100% - 28px)) !important;
    height: 250px !important;
    margin: 0 !important;
  }

  .workflow-window--assistant {
    align-self: start !important;
    justify-self: start !important;
    width: 522px !important;
    height: 344px !important;
    margin: -10px 0 0 0 !important;
    overflow: hidden !important;
  }

  .workflow-window--assistant .assistant-shell {
    width: 816px !important;
    height: 537px !important;
    transform: scale(0.62) !important;
    transform-origin: left top !important;
  }

  .workflow-list {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 5 !important;
    align-self: start !important;
    margin-top: 83px !important;
    border-top: 0px dashed rgba(255, 255, 255, 0.18) !important;
    border-left: 0px dashed rgba(255, 255, 255, 0.18) !important;
    border-right: 0px dashed rgba(255, 255, 255, 0.18) !important;
    background: rgba(5, 7, 13, 0.02) !important;
  }

  .workflow-list--old {
    width: calc(100% - 18px) !important;
    margin-left: 0 !important;
  }

  .workflow-list--new {
    width: calc(100% - 18px) !important;
    margin-left: 0 !important;
    border-left-color: rgba(255, 255, 255, 0.24) !important;
    border-right-color: rgba(255, 255, 255, 0.24) !important;
  }

  .workflow-list li {
    display: grid !important;
    grid-template-columns: 50px 1fr !important;
    min-height: 53px !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.16) !important;
  }

  .workflow-status,
  .workflow-copy {
    display: flex !important;
    min-height: 53px !important;
    align-items: center !important;
  }

  .workflow-status {
    justify-content: center !important;
    border-right: 1px dashed rgba(255, 255, 255, 0.16) !important;
    background:
      linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) calc(100% - 1px)),
      rgba(5, 7, 13, 0.03) !important;
  }

  .workflow-copy {
    padding: 0 18px !important;
    border-left: 1px dashed rgba(255, 255, 255, 0.10) !important;
    border-right: 1px dashed rgba(255, 255, 255, 0.10) !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .workflow-window--assistant {
    width: min(480px, calc(100% - 20px)) !important;
    height: 316px !important;
  }

  .workflow-window--assistant .assistant-shell {
    transform: scale(0.57) !important;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .workflow-window--assistant {
    width: min(410px, calc(100% - 16px)) !important;
    height: 270px !important;
  }

  .workflow-window--assistant .assistant-shell {
    transform: scale(0.484) !important;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {

  html,
  body,
  .page-shell,
  .comparison-shell,
  .comparison-main {
    background: #07090f !important;
    background-image: none !important;
  }

  .page-shell::after,
  .ambient,
  .ambient-a,
  .ambient-b,
  .ambient-c,
  .ambient-d,
  .cursor-glow {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
    filter: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .final-cta h2 {
    font-family: Inter, sans-serif !important;
    font-size: 48px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 100% !important;
    letter-spacing: 0.4px !important;
    text-align: center !important;
  }

  .final-cta p {
    font-family: Inter, sans-serif !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 22.4px !important;
    letter-spacing: 0.2px !important;
    text-align: center !important;
  }

  .comparison-hero__subtitle {
    font-family: Inter, sans-serif !important;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 400 !important;
    line-height: 22.4px !important;
    letter-spacing: 0.2px !important;
    text-align: center !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .comparison-section .section-intro h2 {
    max-width: 720px !important;
  }

  .comparison-section .section-intro h2 .mobile-title-break:first-of-type {
    display: none !important;
  }

  .comparison-section .section-intro h2 .mobile-title-break:last-of-type {
    display: block !important;
  }
}

@media (max-width: 720px) {

  html,
  body,
  .page-shell,
  .comparison-shell,
  .comparison-main {
    background: #07090f !important;
    background-image: none !important;
  }

  .page-shell::after,
  .ambient,
  .ambient-a,
  .ambient-b,
  .ambient-c,
  .ambient-d,
  .cursor-glow {
    display: none !important;
    opacity: 0 !important;
    background: none !important;
    filter: none !important;
  }

  .comparison-section .section-intro h2 {
    font-family: Inter, sans-serif !important;
    max-width: 330px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 24px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 100% !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    vertical-align: middle !important;
  }

  .mobile-title-break {
    display: block;
  }

  .workflow-list--new .workflow-copy {
    font-family: Inter, sans-serif !important;
    font-size: 10px !important;
    font-style: normal !important;
    font-weight: 300 !important;
    line-height: 12.1px !important;
    letter-spacing: 0 !important;
    vertical-align: middle !important;
  }

  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    background: rgba(8, 12, 21, 0.96) !important;
    background-color: rgba(8, 12, 21, 0.96) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.18) !important;
  }

  .comparison-table tbody tr.is-highlight th,
  .comparison-table tbody tr.is-highlight td,
  .comparison-table tbody tr.is-highlight td.is-gendir {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.035) 22%,
        rgba(10, 16, 28, 0.98) 100%) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.52),
      inset 0 -1px 0 rgba(255, 255, 255, 0.28),
      inset 0 14px 24px rgba(255, 255, 255, 0.08),
      0 0 22px rgba(255, 255, 255, 0.10) !important;
  }

  .comparison-table tbody tr.is-highlight td.is-gendir {
    ЯЫ border-left: 1px solid rgba(255, 255, 255, 0.62) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.62) !important;
  }

  .comparison-table thead th.is-gendir,
  .comparison-table tbody td.is-gendir,
  .comparison-table tbody tr.is-highlight td.is-gendir,
  .comparison-table tbody tr:last-child td.is-gendir {
    border-left: 1px solid rgba(255, 255, 255, 0.62) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.62) !important;
    box-shadow:
      inset 1px 0 0 rgba(255, 255, 255, 0.20),
      inset -1px 0 0 rgba(255, 255, 255, 0.20),
      0 0 18px rgba(255, 255, 255, 0.12) !important;
  }

  .comparison-table thead th.is-gendir {
    border-top: 1px solid rgba(255, 255, 255, 0.62) !important;
  }

  .comparison-table tbody tr:last-child td.is-gendir {
    border-bottom: 1px solid rgba(255, 255, 255, 0.62) !important;
  }

  .comparison-table .status--yes,
  .comparison-table td.is-gendir .status,
  .comparison-table td.is-gendir .status--yes {
    position: relative !important;
    display: inline-flex !important;
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    font-weight: 400 !important;
    line-height: 0 !important;
  }

  .comparison-table .status--yes::before,
  .comparison-table td.is-gendir .status--yes::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 22px !important;
    height: 17px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='17' viewBox='0 0 22 17' fill='none'><path d='M2 8.5L8 14L20 2' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  .comparison-table .status--ghost::before {
    opacity: 0.45 !important;
  }

  .comparison-table .status--partial {
    position: relative !important;
    display: inline-block !important;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .comparison-table .status--partial::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    width: 18px !important;
    height: 18px !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: linear-gradient(90deg, #070910 0 50%, rgba(75, 80, 92, 0.68) 50% 100%) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
  }

  .comparison-table .status--partial::after {
    content: "" !important;
    position: absolute !important;
    top: 1px !important;
    bottom: 1px !important;
    left: 50% !important;
    width: 1px !important;
    background: rgba(255, 255, 255, 0.10) !important;
    transform: translateX(-50%) !important;
  }
}

/* final workflow reference override */
@media (min-width: 721px) and (max-width: 1180px) {
  .workflow-board {
    grid-template-columns: 284px minmax(0, 1fr) !important;
    min-height: 740px !important;
    padding: 12px 12px 0 !important;
  }

  .workflow-stage {
    grid-template-rows: 54px 342px auto !important;
  }

  .workflow-stage__head {
    height: 54px !important;
    min-height: 54px !important;
    margin-top: -12px !important;
    padding: 0 24px !important;
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
  }

  .workflow-window--dashboard {
    width: 272px !important;
    height: 265px !important;
    margin-top: 12px !important;
  }

  .workflow-window--assistant {
    width: min(526px, calc(100% - 8px)) !important;
    height: 323px !important;
    margin: 10px 0 0 0 !important;
  }

  .workflow-window--assistant .assistant-shell {
    width: 816px !important;
    height: 500px !important;
    transform: scale(0.645) !important;
    transform-origin: left top !important;
  }

  .workflow-window--assistant .assistant-shell__body {
    display: grid !important;
    grid-template-columns: 140px 1fr !important;
    min-height: 461px !important;
  }

  .workflow-window--assistant .assistant-nav {
    display: grid !important;
  }

  .workflow-window--assistant .assistant-feed {
    padding: 18px 24px 14px !important;
    gap: 12px !important;
  }

  .workflow-list li {
    grid-template-columns: 36px 1fr !important;
    min-height: 36px !important;
  }

  .workflow-status,
  .workflow-copy {
    min-height: 36px !important;
  }

  .workflow-status {
    font-size: 15px !important;
  }

  .workflow-copy {
    padding: 0 12px !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
  }
}

/* Desktop workflow composition tuned to the reference screenshot */
@media (min-width: 1181px) {
  .comparison-hero {
    min-height: 900px !important;
  }

  .workflow-section {
    margin-top: 200px !important;
  }

  .workflow-board {
    grid-template-columns: 400px minmax(0, 1fr) !important;
    min-height: 626px !important;
    padding: 12px 18px 18px !important;
    overflow: visible !important;
    background:
      linear-gradient(90deg, transparent 0, transparent 399px, rgba(255, 255, 255, .16) 399px, rgba(255, 255, 255, .16) 400px, transparent 400px),
      radial-gradient(circle at 68% 32%, rgba(41, 75, 150, .15), transparent 34%),
      rgba(4, 6, 11, .16) !important;
  }

  .workflow-board::before {
    inset: 8px !important;
    border-color: rgba(255, 255, 255, .08) !important;
  }

  .workflow-stage {
    grid-template-rows: 58px 408px auto !important;
    overflow: visible !important;
  }

  .workflow-stage__head {
    grid-row: 1 !important;
  }

  .workflow-stage__head {
    height: 58px !important;
    min-height: 58px !important;
    margin: -12px 0 0 !important;
    padding: 0 30px !important;
    font-size: 11px !important;
    letter-spacing: .11em !important;
  }

  .workflow-window--dashboard {
    position: absolute !important;
    top: 104px !important;
    left: 18px !important;
    width: 422px !important;
    height: 336px !important;
    margin: 0 !important;
    justify-self: start !important;
    opacity: .72 !important;
    border-radius: 10px !important;
    z-index: 1 !important;
    background: url("../img/comparison/comparison-dashboard-card.svg") left center / 100% 100% no-repeat !important;
    border: 0 !important;
    filter: blur(1.6px) saturate(.75) !important;
  }

  .workflow-window--dashboard>* {
    display: none !important;
  }

  .dashboard-blur {
    width: 100% !important;
    height: 100% !important;
    filter: blur(1.5px) saturate(.76) !important;
    opacity: .62 !important;
  }

  .workflow-window--dashboard::after {
    content: "" !important;
    position: absolute !important;
    inset: -24px -110px -24px 56% !important;
    background: linear-gradient(90deg, transparent, rgba(5, 7, 13, .72) 58%, rgba(5, 7, 13, .96)) !important;
    pointer-events: none !important;
  }

  .workflow-window--assistant {
    grid-row: 2 !important;
    width: calc(100% - 18px) !important;
    height: 380px !important;
    margin: 18px 0 0 0 !important;
    justify-self: start !important;
    position: relative !important;
    z-index: 3 !important;
    border-radius: 16px !important;
    transition:
      transform .28s ease,
      border-color .28s ease,
      box-shadow .28s ease,
      background .28s ease !important;
    box-shadow:
      0 24px 70px rgba(0, 0, 0, .48),
      0 0 0 1px rgba(115, 142, 205, .12),
      0 0 42px rgba(64, 105, 190, .12) !important;
  }

  .workflow-window--assistant:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(160, 183, 235, .48) !important;
    background:
      radial-gradient(circle at 64% 20%, rgba(88, 128, 230, .16), transparent 28%),
      linear-gradient(180deg, rgba(16, 23, 39, .99), rgba(10, 15, 27, .99)) !important;
    box-shadow:
      0 34px 90px rgba(0, 0, 0, .58),
      0 0 0 1px rgba(160, 183, 235, .22),
      0 0 66px rgba(84, 125, 220, .28) !important;
  }

  .workflow-window--assistant .assistant-shell {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    transform-origin: left top !important;
  }

  .workflow-window--assistant .assistant-shell__body {
    grid-template-columns: 136px 1fr !important;
    height: calc(100% - 39px) !important;
    min-height: 0 !important;
  }

  .workflow-window--assistant .assistant-feed {
    height: 100% !important;
    min-height: 0 !important;
    padding: 18px 24px 14px !important;
    gap: 10px !important;
    overflow: hidden !important;
  }

  .workflow-window--assistant .assistant-composer {
    margin-top: auto !important;
    padding: 10px 12px 8px !important;
    border: 1px solid rgba(142, 171, 255, .16) !important;
    border-radius: 14px !important;
    background: #131c30 !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .28) !important;
  }

  .workflow-window--assistant .assistant-input {
    min-height: 18px !important;
    padding: 2px 4px 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(170, 178, 194, .72) !important;
    font-size: 12.5px !important;
  }

  .workflow-window--assistant .assistant-composer__controls {
    margin-top: 0 !important;
  }

  .workflow-window--assistant .assistant-composer__controls span {
    width: 26px !important;
    height: 26px !important;
    background: transparent !important;
  }

  .workflow-window--assistant .assistant-composer__controls span:first-child::before {
    content: "+" !important;
    display: grid !important;
    place-items: center !important;
    width: 26px !important;
    height: 26px !important;
    color: rgba(170, 178, 194, .72) !important;
    font-size: 18px !important;
    line-height: 1 !important;
  }

  .workflow-window--assistant .assistant-composer__controls i {
    width: 26px !important;
    height: 26px !important;
    background: #cfd6e3 !important;
  }

  .workflow-list {
    grid-row: 3 !important;
    margin-top: 0 !important;
    width: calc(100% - 18px) !important;
    border-top: 0px solid rgba(255, 255, 255, .16) !important;
    border-left: 0px dashed rgba(255, 255, 255, .14) !important;
    border-right: 0px dashed rgba(255, 255, 255, .14) !important;
  }

  .workflow-list li {
    grid-template-columns: 42px 1fr !important;
    min-height: 42px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .14) !important;
  }

  .workflow-status,
  .workflow-copy {
    min-height: 42px !important;
  }

  .workflow-status {
    font-size: 16px !important;
    border-right: 1px solid rgba(255, 255, 255, .14) !important;
  }

  .workflow-copy {
    padding: 0 16px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
  }
}

/* Mobile workflow table edges: 16px from both viewport sides. */
@media (max-width: 720px) {
  .workflow-board {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden !important;
  }

  .workflow-stage--old,
  .workflow-stage--new {
    max-width: none !important;
  }

  .workflow-stage--old {
    left: 16px !important;
    width: calc((100vw - 32px) / 2) !important;
  }

  .workflow-stage--new {
    left: calc(16px + ((100vw - 32px) / 2)) !important;
    width: calc((100vw - 32px) / 2) !important;
  }

  .workflow-stage--old .workflow-stage__head,
  .workflow-stage--new .workflow-stage__head,
  .workflow-list--old,
  .workflow-list--new {
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
  }

  .workflow-list {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Desktop workflow reference grid/table treatment. */
@media (min-width: 1181px) {
  .workflow-board {
    --workflow-left-col: 416px;
    --workflow-icon-col: 42px;
    --workflow-grid: rgba(255, 255, 255, .15);
    --workflow-grid-soft: rgba(255, 255, 255, .08);
    grid-template-columns: var(--workflow-left-col) minmax(0, 1fr) !important;
    min-height: 740px !important;
    padding: 5px 0px 0px !important;
    overflow: hidden !important;
    border: 1px dashed rgba(255, 255, 255, .12) !important;
    background:
      linear-gradient(180deg, transparent 0, transparent 506px, var(--workflow-grid) 506px, var(--workflow-grid) 507px, transparent 507px),
      radial-gradient(circle at 68% 32%, rgba(41, 75, 150, .13), transparent 34%),
      rgba(7, 6, 12, .26) !important;
  }

  .workflow-board::before {
    display: none !important;
  }

  .workflow-board::after {
    display: none !important;
  }

  .workflow-stage {
    grid-template-rows: 50px 448px auto !important;
    position: relative !important;
    z-index: 1 !important;
    padding: 0 !important;
  }

  .workflow-stage__head {
    height: 50px !important;
    min-height: 50px !important;
    margin: -14px 0 0 !important;
    padding: 0 26px !important;
    border: 1px solid rgba(255, 255, 255, .14) !important;
    border-top: 0 !important;
    background: rgba(16, 14, 21, .52) !important;
  }

  .workflow-stage--old .workflow-stage__head {
    border-right: 0 !important;
  }

  .workflow-stage--new .workflow-stage__head {
    border-left: 0 !important;
  }

  .workflow-window--dashboard {
    top: 103px !important;
    left: 18px !important;
    width: 430px !important;
    height: 320px !important;
  }

  .workflow-window--assistant {
    width: calc(100% - 16px) !important;
    height: 370px !important;
    margin-top: 24px !important;
  }

  .workflow-list {
    row-gap: 14px !important;
    width: 100% !important;
    margin-top: 3px !important;
    padding-right: 12px !important;
    border-left: 0 !important;
    border-right: 0 !important;
    background: rgba(8, 7, 13, .2) !important;
  }

  .workflow-list--old {
    border-right: 1px solid rgba(255, 255, 255, .13) !important;
  }

  .workflow-list--new {
    border-left: 1px solid rgba(255, 255, 255, .13) !important;
  }

  .workflow-list li {
    grid-template-columns: var(--workflow-icon-col) 1fr !important;
    column-gap: 14px !important;
    min-height: 48px !important;
    border-bottom: 0 !important;
  }

  .workflow-list li:last-child {
    border-bottom: 0 !important;
  }

  .workflow-status,
  .workflow-copy {
    min-height: 48px !important;
    border: 1px dashed rgba(255, 255, 255, .14) !important;
    background: rgba(5, 7, 13, .12) !important;
  }

  .workflow-status {
    border-right: 1px dashed rgba(255, 255, 255, .14) !important;
    background: rgba(8, 9, 16, .16) !important;
  }

  .workflow-copy {
    padding: 0 18px !important;
  }
}

/* Convert workflow dashed borders to normal thin solid lines */
.workflow-board {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.workflow-board::before {
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.workflow-stage__head {
  border-style: solid !important;
}

.workflow-list {
  border-top: 0px solid rgba(255, 255, 255, 0.13) !important;
  border-left: 0 !important;
  border-right: 0 !important;
  border-bottom-width: 0px !important;
}


.workflow-list--new {
  border-left: 1px solid rgba(255, 255, 255, 0.13) !important;
}

.workflow-list li {
  border-bottom-style: solid !important;
}

.workflow-status,
.workflow-copy {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.workflow-status {
  border-right: 1px solid rgba(255, 255, 255, 0.14) !important;
}

@media (min-width: 1181px) {

  /* убираем старые длинные линии */
  .workflow-board::before {
    background: none !important;
    border: 0 !important;
  }

  /* отключаем старые попытки */
  .workflow-list::before,
  .workflow-list::after,
  .workflow-list li::before,
  .workflow-list li::after,
  .workflow-status::before,
  .workflow-status::after,
  .workflow-copy::before,
  .workflow-copy::after {
    content: none !important;
  }

  .workflow-list,
  .workflow-list li,
  .workflow-status,
  .workflow-copy {
    position: relative !important;
    overflow: visible !important;
  }

  /* общий вид ВСЕХ квадратов */
  .workflow-list--old li::before,
  .workflow-list--old .workflow-status::after,
  .workflow-list--old li::after,
  .workflow-list--new li::before,
  .workflow-list--new .workflow-status::after,
  .workflow-list--new li::after {
    content: "" !important;
    position: absolute !important;
    top: -9px !important;
    z-index: 80 !important;

    width: 18px !important;
    height: 18px !important;

    border: 0 !important;
    outline: 1px dashed rgba(255, 255, 255, 0.24) !important;
    outline-offset: -1px !important;

    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  /* =========================
     1 столбец: левая таблица, левый край
     ========================= */
  .workflow-list--old li::before {
    left: -9px !important;
  }

  /* =========================
     2 столбец: левая таблица, середина
     между иконкой и текстом
     ========================= */
  .workflow-list--old .workflow-status::after {
    right: -16px !important;
  }

  /* =========================
     3 столбец: левая таблица, правый край
     ========================= */
  .workflow-list--old li::after {
    right: -9px !important;
  }

  /* =========================
     4 столбец: правая таблица, левый край
     ========================= */
  .workflow-list--new li::before {
    left: -9px !important;
  }

  /* =========================
     5 столбец: правая таблица, середина
     между иконкой и текстом
     ========================= */
  .workflow-list--new .workflow-status::after {
    right: -16px !important;
  }

  /* =========================
     6 столбец: правая таблица, правый край
     ========================= */
  .workflow-list--new li::after {
    right: -9px !important;
  }
}

@media (min-width: 1181px) {

  /* общий стиль нижних дополнительных квадратов */
  .workflow-list--old li:last-child .workflow-status::before,
  .workflow-list--old li:last-child .workflow-copy::before,
  .workflow-list--old li:last-child .workflow-copy::after,
  .workflow-list--new li:last-child .workflow-status::before,
  .workflow-list--new li:last-child .workflow-copy::before,
  .workflow-list--new li:last-child .workflow-copy::after {
    content: "" !important;
    position: absolute !important;
    bottom: -9px !important;
    z-index: 80 !important;

    width: 18px !important;
    height: 18px !important;

    border: 0 !important;
    outline: 1px dashed rgba(255, 255, 255, 0.24) !important;
    outline-offset: -1px !important;

    background: transparent !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  /* 1 столбец: левая таблица, левый край */
  .workflow-list--old li:last-child .workflow-status::before {
    left: -3px !important;
  }

  /* 2 столбец: левая таблица, середина */
  .workflow-list--old li:last-child .workflow-copy::before {
    left: -16px !important;
  }

  /* 3 столбец: левая таблица, правый край */
  .workflow-list--old li:last-child .workflow-copy::after {
    right: -9px !important;
  }

  /* 4 столбец: правая таблица, левый край */
  .workflow-list--new li:last-child .workflow-status::before {
    left: -9px !important;
  }

  /* 5 столбец: правая таблица, середина */
  .workflow-list--new li:last-child .workflow-copy::before {
    left: -16px !important;
  }

  /* 6 столбец: правая таблица, правый край */
  .workflow-list--new li:last-child .workflow-copy::after {
    right: -9px !important;
  }
}

@media (min-width: 1181px) {
  .workflow-board {
    /* 1 столбец: левая таблица, левый край */
    --wf-c1-w: 18px;
    --wf-c1-h: 18px;

    /* 2 столбец: левая таблица, середина */
    --wf-c2-w: 18px;
    --wf-c2-h: 18px;

    /* 3 столбец: левая таблица, правый край */
    --wf-c3-w: 18px;
    --wf-c3-h: 18px;

    /* 4 столбец: правая таблица, левый край */
    --wf-c4-w: 18px;
    --wf-c4-h: 18px;

    /* 5 столбец: правая таблица, середина */
    --wf-c5-w: 18px;
    --wf-c5-h: 18px;

    /* 6 столбец: правая таблица, правый край */
    --wf-c6-w: 18px;
    --wf-c6-h: 18px;
  }

  /* ===== 1 column: old left ===== */
  .workflow-list--old li::before,
  .workflow-list--old li:last-child .workflow-status::before {
    width: var(--wf-c1-w) !important;
    height: var(--wf-c1-h) !important;
  }

  .workflow-list--old li::before {
    top: calc(var(--wf-c1-h) / -2) !important;
    left: calc(var(--wf-c1-w) / -2) !important;
  }

  .workflow-list--old li:last-child .workflow-status::before {
    bottom: calc(var(--wf-c1-h) / -2) !important;
    left: calc(var(--wf-c1-w) / -2) !important;
  }

  /* ===== 2 column: old middle ===== */
  .workflow-list--old .workflow-status::after,
  .workflow-list--old li:last-child .workflow-copy::before {
    width: var(--wf-c2-w) !important;
    height: var(--wf-c2-h) !important;
  }

  .workflow-list--old .workflow-status::after {
    top: calc(var(--wf-c2-h) / -2) !important;
    right: calc(var(--wf-c2-w) / -2) !important;
  }

  .workflow-list--old li:last-child .workflow-copy::before {
    bottom: calc(var(--wf-c2-h) / -2) !important;
    left: calc(var(--wf-c2-w) / -2) !important;
  }

  /* ===== 3 column: old right ===== */
  .workflow-list--old li::after,
  .workflow-list--old li:last-child .workflow-copy::after {
    width: var(--wf-c3-w) !important;
    height: var(--wf-c3-h) !important;
  }

  .workflow-list--old li::after {
    top: calc(var(--wf-c3-h) / -2) !important;
    right: calc(var(--wf-c3-w) / -2) !important;
  }

  .workflow-list--old li:last-child .workflow-copy::after {
    bottom: calc(var(--wf-c3-h) / -2) !important;
    right: calc(var(--wf-c3-w) / -2) !important;
  }

  /* ===== 4 column: new left ===== */
  .workflow-list--new li::before,
  .workflow-list--new li:last-child .workflow-status::before {
    width: var(--wf-c4-w) !important;
    height: var(--wf-c4-h) !important;
  }

  .workflow-list--new li::before {
    top: calc(var(--wf-c4-h) / -2) !important;
    left: calc(var(--wf-c4-w) / -2) !important;
  }

  .workflow-list--new li:last-child .workflow-status::before {
    bottom: calc(var(--wf-c4-h) / -2) !important;
    left: calc(var(--wf-c4-w) / -2) !important;
  }

  /* ===== 5 column: new middle ===== */
  .workflow-list--new .workflow-status::after,
  .workflow-list--new li:last-child .workflow-copy::before {
    width: var(--wf-c5-w) !important;
    height: var(--wf-c5-h) !important;
  }

  .workflow-list--new .workflow-status::after {
    top: calc(var(--wf-c5-h) / -2) !important;
    right: calc(var(--wf-c5-w) / -2) !important;
  }

  .workflow-list--new li:last-child .workflow-copy::before {
    bottom: calc(var(--wf-c5-h) / -2) !important;
    left: calc(var(--wf-c5-w) / -2) !important;
  }

  /* ===== 6 column: new right ===== */
  .workflow-list--new li::after,
  .workflow-list--new li:last-child .workflow-copy::after {
    width: var(--wf-c6-w) !important;
    height: var(--wf-c6-h) !important;
  }

  .workflow-list--new li::after {
    top: calc(var(--wf-c6-h) / -2) !important;
    right: calc(var(--wf-c6-w) / -2) !important;
  }

  .workflow-list--new li:last-child .workflow-copy::after {
    bottom: calc(var(--wf-c6-h) / -2) !important;
    right: calc(var(--wf-c6-w) / -2) !important;
  }
}

@media (min-width: 1181px) {

  /* убираем старые линии/оверлеи */
  .workflow-board::before {
    background: none !important;
    border: 0 !important;
  }

  /* отключаем старые квадраты */
  .workflow-list::before,
  .workflow-list::after,
  .workflow-list li::before,
  .workflow-list li::after,
  .workflow-status::before,
  .workflow-status::after,
  .workflow-copy::before,
  .workflow-copy::after {
    content: none !important;
  }

  .workflow-list,
  .workflow-list li,
  .workflow-status,
  .workflow-copy {
    position: relative !important;
    overflow: visible !important;
  }

  /* общий стиль квадратов */
  .workflow-list--old li::before,
  .workflow-list--old .workflow-status::after,
  .workflow-list--old li::after,
  .workflow-list--new li::before,
  .workflow-list--new .workflow-status::after,
  .workflow-list--new li::after,
  .workflow-list--old li:last-child .workflow-status::before,
  .workflow-list--old li:last-child .workflow-copy::before,
  .workflow-list--old li:last-child .workflow-copy::after,
  .workflow-list--new li:last-child .workflow-status::before,
  .workflow-list--new li:last-child .workflow-copy::before,
  .workflow-list--new li:last-child .workflow-copy::after {
    content: "" !important;
    position: absolute !important;
    z-index: 80 !important;
    background: transparent !important;
    border: 0 !important;
    outline: 1px dashed rgba(255, 255, 255, 0.24) !important;
    outline-offset: -1px !important;
    box-shadow: none !important;
    pointer-events: none !important;
  }

  /* =========================
     1 столбец: LEFT OLD
     ========================= */

  .workflow-list--old li::before {
    width: 30px !important;
    height: 16px !important;
    top: -15px !important;
    left: -29px !important;
  }

  .workflow-list--old li:last-child .workflow-status::before {
    width: 31px !important;
    height: 17px !important;
    bottom: -17px !important;
    left: -31px !important;
  }

  /* =========================
     2 столбец: MIDDLE OLD
     ========================= */

  .workflow-list--old .workflow-status::after {
    width: 16px !important;
    height: 16px !important;
    top: -16px !important;
    right: -16px !important;
  }

  .workflow-list--old li:last-child .workflow-copy::before {
    width: 16px !important;
    height: 33px !important;
    bottom: -33px !important;
    left: -16px !important;
  }

  /* =========================
     3 столбец: RIGHT OLD
     ========================= */

  .workflow-list--old li::after {
    width: 16px !important;
    height: 16px !important;
    top: -15px !important;
    right: -15px !important;
  }

  .workflow-list--old li:last-child .workflow-copy::after {
    width: 15px !important;
    height: 30px !important;
    bottom: -30px !important;
    right: -15px !important;
  }

  /* =========================
     4 столбец: LEFT NEW
     ========================= */

  .workflow-list--new li::before {
    width: 16px !important;
    height: 16px !important;
    top: -15px !important;
    left: -15px !important;
  }

  .workflow-list--new li:last-child .workflow-status::before {
    width: 15px !important;
    height: 30px !important;
    bottom: -30px !important;
    left: -15px !important;
  }

  /* =========================
     5 столбец: MIDDLE NEW
     ========================= */

  .workflow-list--new .workflow-status::after {
    width: 16px !important;
    height: 16px !important;
    top: -16px !important;
    right: -16px !important;
  }

  .workflow-list--new li:last-child .workflow-copy::before {
    width: 16px !important;
    height: 31px !important;
    bottom: -31px !important;
    left: -16px !important;
  }

  /* =========================
     6 столбец: RIGHT NEW
     ========================= */

  .workflow-list--new li::after {
    width: 25px !important;
    height: 16px !important;
    top: -15px !important;
    right: -24px !important;
  }

  .workflow-list--new li:last-child .workflow-copy::after {
    width: 28px !important;
    height: 32px !important;
    bottom: -32px !important;
    right: -28px !important;
  }
}

@media (min-width: 1181px) {

  /* =========================
     FIRST SQUARE 1: OLD LEFT TOP
     первый квадрат 1-го столбца
     ========================= */
  .workflow-list--old li:first-child::before {
    width: 31px !important;
    height: 17px !important;
    top: -16px !important;
    left: -30px !important;
  }

  /* =========================
     FIRST SQUARE 2: OLD MIDDLE TOP
     первый квадрат 2-го столбца
     ========================= */
  .workflow-list--old li:first-child .workflow-status::after {
    width: 16px !important;
    height: 17px !important;
    top: -17px !important;
    right: -16px !important;
  }

  /* =========================
     FIRST SQUARE 3: OLD RIGHT TOP
     первый квадрат 3-го столбца
     ========================= */
  .workflow-list--old li:first-child::after {
    width: 16px !important;
    height: 16px !important;
    top: -15px !important;
    right: -15px !important;
  }

  /* =========================
     FIRST SQUARE 4: NEW LEFT TOP
     первый квадрат 4-го столбца
     ========================= */
  .workflow-list--new li:first-child::before {
    width: 16px !important;
    height: 16px !important;
    top: -15px !important;
    left: -15px !important;
  }

  /* =========================
     FIRST SQUARE 5: NEW MIDDLE TOP
     первый квадрат 5-го столбца
     ========================= */
  .workflow-list--new li:first-child .workflow-status::after {
    width: 16px !important;
    height: 16px !important;
    top: -16px !important;
    right: -16px !important;
  }

  /* =========================
     FIRST SQUARE 6: NEW RIGHT TOP
     первый квадрат 6-го столбца
     ========================= */
  .workflow-list--new li:first-child::after {
    width: 16px !important;
    height: 17px !important;
    top: -16px !important;
    right: -15px !important;
  }
}

@media (min-width: 1181px) {
  .workflow-list--new {
    --workflow-new-border-offset: 1px;
    border-left: 0 !important;
  }

  .workflow-list--new::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: var(--workflow-new-border-offset) !important;
    z-index: 70 !important;
    width: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.13) !important;
    background: transparent !important;
    pointer-events: none !important;
  }
}

@media (min-width: 1181px) {
  .workflow-window--assistant .assistant-shell {
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
  }

  .workflow-window--assistant .assistant-shell__header {
    height: 38px !important;
    min-height: 38px !important;
    padding: 0 16px !important;
  }

  .workflow-window--assistant .assistant-shell__header p {
    margin-left: auto !important;
    margin-right: auto !important;
    transform: translateX(-28px) !important;
  }

  .workflow-window--assistant .assistant-shell__body {
    grid-template-columns: 170px minmax(0, 1fr) !important;
    height: calc(100% - 38px) !important;
    min-height: 0 !important;
  }

  .workflow-window--assistant .assistant-nav {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 14px 10px 10px 14px !important;
    gap: 6px !important;
    font-size: 9.5px !important;
    background: rgba(6, 10, 18, 0.35) !important;
  }

  .workflow-window--assistant .assistant-nav__brand {
    margin-bottom: 7px !important;
    font-size: 12px !important;
    line-height: 1 !important;
  }

  .workflow-window--assistant .assistant-nav small {
    margin-top: 8px !important;
    font-size: 8px !important;
    letter-spacing: 0.12em !important;
  }

  .workflow-window--assistant .assistant-nav__chat--active {
    padding: 5px 7px !important;
    border-radius: 6px !important;
    background: rgba(255, 255, 255, 0.06) !important;
  }

  .workflow-window--assistant .assistant-nav__action--bottom {
    margin-top: auto !important;
  }

  .workflow-window--assistant .assistant-nav > :last-child {
    margin-top: auto !important;
  }

  .workflow-window--assistant .assistant-feed {
    min-height: 0 !important;
    padding: 10px 18px 10px 26px !important;
    gap: 5px !important;
    overflow: hidden !important;
  }

  .workflow-window--assistant .assistant-day {
    margin-bottom: 3px !important;
    font-size: 8px !important;
  }

  .workflow-window--assistant .assistant-bubble {
    max-width: 390px !important;
    margin-left: auto !important;
    margin-bottom: 18px !important;
    padding: 8px 11px !important;
    font-size: 9.5px !important;
    line-height: 1.42 !important;
  }

  .workflow-window--assistant .assistant-answer,
  .workflow-window--assistant .assistant-alerts,
  .workflow-window--assistant .assistant-recommendation {
    max-width: 470px !important;
    font-size: 9.5px !important;
    line-height: 1.42 !important;
  }

  .workflow-window--assistant .assistant-answer,
  .workflow-window--assistant .assistant-alerts,
  .workflow-window--assistant .assistant-recommendation {
    margin-left: 0 !important;
  }

  .workflow-window--assistant .assistant-bubble + .assistant-answer,
  .workflow-window--assistant .assistant-bubble + .assistant-alerts {
    margin-top: 2px !important;
  }

  .workflow-window--assistant .assistant-answer p {
    margin-bottom: 4px !important;
  }

  .workflow-window--assistant .assistant-alerts {
    padding-left: 15px !important;
  }

  .workflow-window--assistant .assistant-alerts li {
    margin-bottom: 2px !important;
  }

  .workflow-window--assistant .assistant-composer {
    align-self: center !important;
    width: min(440px, calc(100% - 40px)) !important;
    margin-top: auto !important;
    padding: 7px 8px 6px !important;
    border-radius: 10px !important;
  }

  .workflow-window--assistant .assistant-input {
    min-height: 14px !important;
    padding: 1px 4px 6px !important;
    font-size: 9.5px !important;
  }

  .workflow-window--assistant .assistant-composer__controls {
    position: relative !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    margin-top: 0 !important;
  }

  .workflow-window--assistant .assistant-composer__controls span {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 20px !important;
    height: 20px !important;
    background: transparent !important;
    color: rgba(170, 178, 194, .72) !important;
  }

  .workflow-window--assistant .assistant-composer__controls span:first-child::before {
    content: "+" !important;
    display: grid !important;
    place-items: center !important;
    width: 20px !important;
    height: 20px !important;
    color: rgba(170, 178, 194, .72) !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .workflow-window--assistant .assistant-composer__controls i {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 20px !important;
    height: 20px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    border-radius: 50% !important;
    background: #cfd6e3 !important;
  }

  .workflow-window--assistant .assistant-composer__controls i::before {
    content: "" !important;
    width: 10px !important;
    height: 10px !important;
    background: #0f1626 !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5'/%3E%3Cpath d='m5 12 7-7 7 7'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5'/%3E%3Cpath d='m5 12 7-7 7 7'/%3E%3C/svg%3E") center / contain no-repeat !important;
  }

  .workflow-window--assistant .assistant-composer__controls i::after {
    content: "" !important;
    position: absolute !important;
    right: 24px !important;
    top: 50% !important;
    width: 10px !important;
    height: 10px !important;
    transform: translateY(-50%) !important;
    background: rgba(170, 178, 194, .72) !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3C/svg%3E") center / contain no-repeat !important;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .workflow-window--assistant {
    width: min(528px, calc(100% + 22px)) !important;
    height: 300px !important;
    margin-left: 0px !important;
  }

  .workflow-window--assistant .assistant-shell {
    height: 465px !important;
    transform: scale(0.645) !important;
  }

  .workflow-window--assistant .assistant-shell__body {
    grid-template-columns: 140px minmax(0, 1fr) !important;
    min-height: 426px !important;
  }

  .workflow-window--assistant .assistant-nav {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
    padding-bottom: 8px !important;
  }

  .workflow-window--assistant .assistant-feed {
    padding-bottom: 8px !important;
    gap: 8px !important;
  }

  .workflow-window--assistant .assistant-composer {
    padding: 8px 10px 6px !important;
    border-radius: 12px !important;
  }

  .workflow-window--assistant .assistant-nav__action--bottom,
  .workflow-window--assistant .assistant-nav > :last-child {
    margin-top: auto !important;
  }

  .workflow-window--assistant .assistant-composer__controls {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    margin-top: 0 !important;
  }

  .workflow-window--assistant .assistant-composer__controls span {
    position: relative !important;
    display: none !important;
    width: 20px !important;
    height: 20px !important;
    background: transparent !important;
    color: rgba(170, 178, 194, .72) !important;
  }

  .workflow-window--assistant .assistant-composer__controls span:first-child {
    display: grid !important;
    place-items: center !important;
  }

  .workflow-window--assistant .assistant-composer__controls span:first-child::before {
    content: "+" !important;
    display: grid !important;
    place-items: center !important;
    width: 20px !important;
    height: 20px !important;
    color: rgba(170, 178, 194, .72) !important;
    font-size: 14px !important;
    line-height: 1 !important;
  }

  .workflow-window--assistant .assistant-composer__controls i {
    position: relative !important;
    display: grid !important;
    place-items: center !important;
    width: 20px !important;
    height: 20px !important;
    margin-left: auto !important;
    border-radius: 50% !important;
    background: #cfd6e3 !important;
  }

  .workflow-window--assistant .assistant-composer__controls i::before {
    content: "" !important;
    width: 10px !important;
    height: 10px !important;
    background: #0f1626 !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5'/%3E%3Cpath d='m5 12 7-7 7 7'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 19V5'/%3E%3Cpath d='m5 12 7-7 7 7'/%3E%3C/svg%3E") center / contain no-repeat !important;
  }

  .workflow-window--assistant .assistant-composer__controls i::after {
    content: "" !important;
    position: absolute !important;
    right: 24px !important;
    top: 50% !important;
    width: 10px !important;
    height: 10px !important;
    transform: translateY(-50%) !important;
    background: rgba(170, 178, 194, .72) !important;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3C/svg%3E") center / contain no-repeat !important;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z'/%3E%3Cpath d='M19 10v2a7 7 0 0 1-14 0v-2'/%3E%3Cpath d='M12 19v3'/%3E%3C/svg%3E") center / contain no-repeat !important;
  }
}
@media (min-width: 769px) and (max-width: 1180px) {
  /* Manual controls for tablet assistant composer icons */
  .workflow-window--assistant .assistant-composer__plus,
  .workflow-window--assistant .assistant-composer__controls span:first-child {
    --assistant-plus-x: 0px;
    --assistant-plus-y: 0px;
    transform: translate(var(--assistant-plus-x), var(--assistant-plus-y)) !important;
  }

  .workflow-window--assistant .assistant-composer__send,
  .workflow-window--assistant .assistant-composer__controls i {
    --assistant-send-x: -8px;
    --assistant-send-y: -27px;
    transform: translate(var(--assistant-send-x), var(--assistant-send-y)) !important;
  }

  .workflow-window--assistant .assistant-composer__mic,
  .workflow-window--assistant .assistant-composer__controls i::after {
    --assistant-mic-x: 0px;
    --assistant-mic-y: 0px;
    transform: translate(var(--assistant-mic-x), calc(-50% + var(--assistant-mic-y))) !important;
  }
}
