/* WindSketch landing CSS
   Focused stylesheet: keeps only the active landing system plus minimal legacy utilities still used by components. */
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --font-body: "Geologica", sans-serif;
  --font-heading: "Geologica", sans-serif;
  --font-secondary: "Geologica", sans-serif;
  --font-caveat: "Geologica", sans-serif;
  --color-primary: #0D2696;
  --color-secondary: #7085F5;
  --color-heading: #101828;
  --color-default: #394467;
  --color-white: #fff;
  --color-black: #000;
  --color-body: #fff;
  --easing: cubic-bezier(0.67, 0.04, 0.3, 0.91);
  scroll-behavior: auto;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  background-color: var(--color-body);
  color: var(--color-default);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  word-wrap: break-word;
}

img,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container,
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.p-0 {
  padding: 0 !important;
}

.text-center {
  text-align: center !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.navbar,
.navbar-collapse,
.navbar-expand-lg {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .d-lg-none {
    display: block !important;
  }

  .main-menu__wrap {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p,
li,
span {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
  transition: 0.3s;
}

button:focus,
*:focus {
  outline: none;
}

.body_wrap {
  position: relative;
  overflow: hidden;
}

.pos-rel {
  position: relative;
}

.ul_li,
.ul_li_right,
.ul_li_center,
.ul_li_between {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ul_li_between {
  justify-content: space-between;
}

.mlr-50 {
  margin-right: 50px;
  margin-left: 50px;
}

.radius-50 {
  border-radius: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.body-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: 0.3s;
}

.body-overlay.active {
  visibility: visible;
  opacity: 1;
}

.xb-close {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  background: transparent;
}

.xb-close::before,
.xb-close::after {
  position: absolute;
  top: 50%;
  left: 2px;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

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

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

.xb-backtotop {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 98;
}

.xb-backtotop .scroll {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(13, 38, 150, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-primary);
  box-shadow: 0 14px 30px rgba(20, 25, 50, 0.12);
}

.xb-backtotop .scroll svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.xb-animate-leftRight .line {
  position: relative;
  display: block;
  overflow: hidden;
}

.xb-animate-leftRight .line span {
  display: block;
  animation: rightToLeft 10s linear infinite;
}

.xb-animate-leftRight .line--2 span {
  animation: LeftToright 10s linear infinite;
}

@keyframes rightToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes LeftToright {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (max-width: 1199px) {
  .mlr-50 {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 767px) {
  .mlr-50 {
    margin-right: 12px;
    margin-left: 12px;
  }

  .radius-50 {
    border-radius: 26px;
  }
}


/* WindSketch typography override */
body,
button,
input,
textarea,
select,
a,
p,
li,
span,
label,
table,
th,
td,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geologica", sans-serif !important;
}



/* WindSketch hero refinement: warm background, lighter Geologica titles, dark headings with blue accents */
:root {
  --color-primary: #0D2696;
  --color-secondary: #7085F5;
  --color-heading: #101828;
  --color-default: #344054;
  --color-body: #fff;
  --color-hero-warm: #F8F4F1;
  --color-hero-warm-soft: #FBF8F5;
  --color-accent-blue: #2F66EE;
}

.help-desk {
  --color-primary: #0D2696;
  --color-secondary: #7085F5;
  --color-heading: #101828;
  --color-default: #344054;
}

body {
  font-weight: 400;
  color: var(--color-default);
}

h1,
h2,
h3,
h4,
h5,
h6,
.sec-title .title,
.sec-title--two .title,
.sec-title--three .title {
  color: var(--color-heading);
  font-weight: 600 !important;
  letter-spacing: -0.035em;
}

.hero-area--two {
  background: #fff !important;
}

.hero-area--two .xb-hero-inner {
  background: var(--color-hero-warm) !important;
}

.hero-area--two .xb-hero-inner::before {
  background: linear-gradient(180deg, rgba(248, 244, 241, 0) 0%, rgba(248, 244, 241, 0.92) 58.56%, rgba(251, 248, 245, 0.98) 77.48%, var(--color-hero-warm) 100%) !important;
}

.hero-area--two .xb-bg-shape,
.hero-area--two .xb-bg-shape .shape,
.hero-area--two .xb-bg-shape .shape img {
  display: none !important;
}

.hero-area--two .sec-title {
  max-width: 860px;
}

.hero-area--two .sec-title .title,
.hero-area--two .heroTitleUp {
  color: var(--color-heading) !important;
  font-size: 56px !important;
  line-height: 1.16 !important;
  font-weight: 600 !important;
  letter-spacing: -0.045em !important;
  text-transform: none !important;
}

.ws-title-accent,
.ws-hero-title-blue,
.hero-title-accent,
.title .text-blue,
.title .highlight-blue {
  color: var(--color-accent-blue) !important;
}

.hero-area--two .xb-hero-content .xb-item--content {
  color: #344054;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-area--two .xb-hero-content .xb-item--offer {
  color: #344054;
  font-weight: 400;
}

.hero-area--two .xb-hero-bottom .xb-item--title {
  color: var(--color-heading);
  font-size: 24px;
  line-height: 1.12;
  font-weight: 600 !important;
  letter-spacing: -0.035em;
}

.hero-area--two .xb-hero-bottom .xb-item--content {
  color: #344054;
  font-weight: 400;
}

.thm-btn,
.desk-btn,
.header-area--two .xb-header-btn a,
.header-area--two .main-menu > ul > li > a {
  font-weight: 600 !important;
}

@media (max-width: 1199px) {
  .hero-area--two .sec-title .title,
  .hero-area--two .heroTitleUp {
    font-size: 50px !important;
  }
}

@media (max-width: 991px) {
  .hero-area--two .sec-title .title,
  .hero-area--two .heroTitleUp {
    font-size: 44px !important;
    line-height: 1.18 !important;
  }

  .hero-area--two .xb-hero-content .xb-item--content {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .hero-area--two .xb-hero-inner {
    background: var(--color-hero-warm) !important;
  }

  .hero-area--two .sec-title .title,
  .hero-area--two .heroTitleUp {
    font-size: 34px !important;
    line-height: 1.16 !important;
    letter-spacing: -0.035em !important;
  }

  .hero-area--two .xb-hero-content .xb-item--content {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-area--two .xb-hero-bottom .xb-item--title {
    font-size: 21px;
  }
}


/* WindSketch soft page wash
   Header remains using the root orange. Everything inside <main> uses a nearly-white
   orange tint so the hero/body warmth is almost imperceptible. */
main {
  --color-secondary: #FFF7EF;
  --color-body: #FFFEFC;
}

main .hero-area--two {
  background: linear-gradient(181deg, #ffffff 0%, #FFFEFC 100%);
}

main .hero-area--two .xb-hero-inner::before {
  background: linear-gradient(
    180deg,
    rgba(255, 253, 252, 0) 0%,
    #FFFDFC 58.56%,
    rgba(255, 254, 252, 0.97) 77.48%,
    #FFFEFC 100%
  );
}

main .linear_bg02 {
  background: linear-gradient(181deg, #FFFEFC 0%, #ffffff 100%);
}

main .ws-hero-trust span::before {
  background: #FFF7EF;
  box-shadow: 0 0 0 4px rgba(255, 247, 239, 0.75);
}

main .ws-video-play {
  background: linear-gradient(135deg, #115cff 0%, #FFF7EF 100%);
  box-shadow: 0 22px 60px rgba(17, 92, 255, 0.26);
}

main .ws-video-preview:hover .ws-video-play {
  box-shadow: 0 28px 75px rgba(17, 92, 255, 0.36);
}

/* WindSketch 2.0 design system -------------------------------------------------- */
:root,
.help-desk {
  --ws-ink: #172033;
  --ws-muted: #667085;
  --ws-blue: #0D2696;
  --ws-blue-dark: #071c73;
  --ws-soft-primary: #717db9;
  --ws-blue-soft: rgba(113, 125, 185, 0.16);
  --ws-sidebar-active: rgba(113, 125, 185, 0.2);
  --ws-red: #ED3324;
  --ws-orange: #F28C3B;
  --ws-orange-soft: rgba(242, 140, 59, 0.14);
  --ws-warning-soft: rgba(247, 204, 83, 0.7);
  --ws-green: #2eaf78;
  --ws-line: #e4e8f0;
  --ws-surface: #ffffff;
  --ws-canvas: #f7f8fb;
  --ws-page: #fbfaf8;
  --ws-page-background:
    linear-gradient(180deg, rgba(248, 250, 255, 0.96) 0%, rgba(255, 255, 255, 0.98) 72%, #fff 100%);
  --color-primary: var(--ws-blue);
  --color-secondary: var(--ws-red);
  --color-heading: var(--ws-ink);
  --color-default: var(--ws-muted);
  --color-body: var(--ws-page);
}

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

body.help-desk {
  color: var(--ws-muted);
  background: var(--ws-page);
}

body.help-desk::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(23, 32, 51, 0.035) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
}

.header-area--two {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1000;
  top: 22px;
  padding: 0 clamp(16px, 3vw, 44px);
  --color-secondary: var(--ws-orange);
  transition: top 0.24s ease, transform 0.28s ease, opacity 0.22s ease;
}

.header-area--two.is-compact {
  top: 8px;
}

.header-area--two .xb-header {
  width: 100%;
}

.header-area--two .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.header-area--two .header__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 1288px;
  min-height: 72px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 8px 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(228, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 45px rgba(31, 42, 68, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-area--two .xb-header-logo img {
  width: 172px;
  height: auto;
}

.xb-header-logo,
.xb-header-btn,
.header-bar-mobile {
  flex: 0 0 auto;
}

.xb-header-logo {
  justify-self: start;
}

.xb-header-btn,
.header-bar-mobile {
  justify-self: end;
}

.main-menu__wrap {
  min-width: 0;
  justify-content: center;
}

.main-menu {
  width: 100%;
}

.header-area--two .main-menu > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.header-area--two .main-menu > ul > li {
  position: relative;
  padding: 10px 0;
}

.header-area--two .main-menu > ul > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  color: #4c566c;
  font-size: 14px;
  font-weight: 650 !important;
  letter-spacing: -0.01em;
  line-height: 1;
}

.header-area--two .main-menu > ul > li > a span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.header-area--two .main-menu > ul > li.menu-item-has-children > a {
  gap: 7px;
  padding-right: 14px;
}

.header-area--two .main-menu > ul > li.menu-item-has-children > a span::after {
  position: static;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  content: "";
  font-family: inherit;
  transform: translateY(-2px) rotate(45deg);
}

.header-area--two .main-menu > ul > li:hover > a,
.header-area--two .main-menu > ul > li.active > a {
  color: var(--ws-ink);
  background: rgba(113, 125, 185, 0.11);
}

.header-area--two .main-menu > ul > li > a::before {
  display: none;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu {
  position: relative;
}

.header-area--two .main-menu > ul > li.ws-features-menu {
  position: static;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 20;
  display: grid;
  width: 430px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(224, 228, 240, 0.94);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 52px rgba(31, 42, 68, 0.13);
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu:hover > .ws-solutions-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.header-area--two .main-menu > ul > li.ws-features-menu > .ws-features-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 22;
  display: grid;
  width: min(1180px, calc(100vw - 64px));
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(224, 228, 240, 0.94);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 70px rgba(31, 42, 68, 0.16);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.header-area--two .main-menu > ul > li.ws-features-menu.is-open > .ws-features-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ws-features-dropdown__main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 30px 32px 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(83, 70, 255, 0.055), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.96));
}

.ws-features-dropdown__group {
  min-width: 0;
}

.ws-features-dropdown__title {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ws-blue);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-features-dropdown__title::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: var(--ws-orange);
  content: "";
}

.ws-features-dropdown__items {
  display: grid;
  gap: 4px;
}

.ws-features-dropdown__items a,
.ws-features-dropdown__highlights a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ws-ink);
}

.ws-features-dropdown__items a:hover,
.ws-features-dropdown__highlights a:hover {
  border-color: rgba(113, 125, 185, 0.2);
  background: rgba(83, 70, 255, 0.045);
}

.ws-features-dropdown__items strong,
.ws-features-dropdown__highlights strong {
  display: block;
  color: var(--ws-ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.ws-features-dropdown__items em,
.ws-features-dropdown__highlights em {
  display: block;
  margin-top: 3px;
  color: #778197;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.ws-features-dropdown__highlights {
  display: grid;
  align-content: start;
  gap: 11px;
  padding: 30px 28px;
  border-left: 1px solid rgba(113, 125, 185, 0.18);
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 140, 59, 0.15), transparent 30%),
    linear-gradient(180deg, rgba(250, 251, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.ws-features-dropdown__highlights a {
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.72);
}

.ws-features-dropdown__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 0;
  background: linear-gradient(90deg, var(--ws-purple), var(--ws-blue));
}

.ws-features-dropdown__footer a {
  flex: 0 0 auto;
  padding: 15px 24px;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.ws-features-dropdown__footer a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ws-feature-icon {
  --ws-feature-glyph-size: 30px;
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--ws-blue);
  overflow: visible;
}

.ws-feature-icon--image img {
  display: block;
  width: var(--ws-feature-glyph-size);
  height: var(--ws-feature-glyph-size);
  object-fit: contain;
}

.ws-feature-icon--svg svg {
  display: block;
  width: var(--ws-feature-glyph-size);
  height: var(--ws-feature-glyph-size);
  overflow: visible;
}

.ws-features-dropdown .ws-feature-icon {
  --ws-feature-glyph-size: 34px;
}

.ws-feature-icon svg,
.ws-feature-icon svg * {
  fill: none;
}

.ws-feature-icon svg .is-primary,
.ws-feature-icon svg .is-accent,
.ws-feature-icon svg .is-soft {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.ws-feature-icon svg .is-primary,
.ws-feature-icon svg .is-soft {
  stroke: currentColor;
}

.ws-feature-icon svg .is-accent {
  stroke: var(--ws-orange);
}

.ws-feature-icon svg .is-soft {
  opacity: 0.34;
}

.ws-feature-icon svg .is-accent-label {
  fill: var(--ws-orange);
  stroke: none;
  font-family: var(--font-plus-jakarta-sans), Arial, sans-serif;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.ws-feature-icon svg .is-wide-label {
  font-size: 6.6px;
  letter-spacing: -0.08em;
}

.ws-feature-icon .ws-feature-icon__badge {
  position: absolute;
  top: -1%;
  right: -3%;
  z-index: 1;
  display: block;
  width: 31%;
  height: 31%;
  overflow: visible;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 10% 0%, rgba(83, 70, 255, 0.04), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.94));
  content: "";
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown > li {
  width: auto;
  border: 0;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown > .ws-solutions-dropdown__title {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: #b1b7c5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown > li > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 7px 6px;
  border-radius: 12px;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown > li > a::after {
  display: none;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown > li > a:hover {
  background: rgba(83, 70, 255, 0.055);
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown strong,
.xb-header-menu-scroll .ws-mobile-solution > .sub-menu strong {
  display: block;
  color: var(--ws-ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.header-area--two .main-menu > ul > li.ws-solutions-menu > .ws-solutions-dropdown em,
.xb-header-menu-scroll .ws-mobile-solution > .sub-menu em {
  display: block;
  margin-top: 2px;
  color: #9aa3b3;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}

.header-area--two .xb-header-btn a.thm-btn.desk-btn,
.ws-mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #5346ff 0%, #0d2696 100%) !important;
  box-shadow: 0 14px 28px rgba(13, 38, 150, 0.18) !important;
  animation: none;
}

.header-area--two .xb-header-btn {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header-area--two .ws-header-login {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  color: var(--ws-ink);
  font-size: 14px;
  font-weight: 650 !important;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.header-area--two .ws-header-login:hover {
  color: var(--ws-blue);
  transform: translateY(-1px);
}

.header-area--two .xb-header-btn a.thm-btn.desk-btn .inner,
.ws-mobile-cta .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transform: none !important;
}

.header-area--two .xb-header-btn a.thm-btn.desk-btn .text,
.ws-mobile-cta .text {
  display: block;
  color: #fff !important;
  line-height: 1 !important;
  white-space: nowrap;
  text-shadow: none !important;
  transform: none !important;
}

.header-area--two .xb-header-btn a.thm-btn.desk-btn::after {
  display: none;
}

.header-area--two .xb-header-btn a.thm-btn.desk-btn:hover,
.ws-mobile-cta:hover {
  background: linear-gradient(135deg, #0d2696 0%, #5346ff 100%) !important;
  box-shadow: 0 16px 32px rgba(13, 38, 150, 0.24) !important;
  transform: translateY(-1px);
}

.header-area--two .xb-nav-mobile {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ws-ink);
}

.header-area--two .xb-nav-mobile span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

#xb-header-area .xb-header-area-sticky .header__wrap {
  border: 1px solid var(--ws-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 45px rgba(31, 42, 68, 0.1);
}

.xb-header-menu {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 100;
  width: min(390px, 86vw);
  height: 100vh;
  transition: right 0.28s ease;
  background:
    radial-gradient(circle at 18% 0%, rgba(242, 140, 59, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfbff 100%);
  box-shadow: -28px 0 70px rgba(23, 32, 51, 0.16);
}

.xb-header-menu.active {
  right: 0;
}

.xb-header-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  border: 0;
  background: rgba(23, 32, 51, 0.45);
  transition: 0.24s ease;
}

.xb-header-menu.active + .xb-header-menu-backdrop {
  visibility: visible;
  opacity: 1;
}

.xb-header-menu-scroll {
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 88px 24px 34px;
}

.xb-menu-close {
  position: absolute;
  top: 28px;
  left: 24px;
  z-index: 2;
  width: 34px;
  height: 34px;
  color: var(--ws-ink);
}

.xb-logo-mobile {
  display: flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: 10px;
}

.xb-logo-mobile img {
  display: block;
  width: 166px;
  height: auto;
}

.ws-mobile-menu-copy {
  max-width: 292px;
  margin: 0 0 28px;
  color: var(--ws-muted);
  font-size: 13px;
  line-height: 1.55;
}

.xb-header-menu-scroll .xb-menu-primary > li {
  border-bottom: 1px solid var(--ws-line);
}

.xb-header-menu-scroll .xb-menu-primary > li > a {
  display: flex;
  align-items: center;
  min-height: 47px;
  padding: 0;
  color: var(--ws-ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1;
}

.ws-mobile-solution__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ws-mobile-solution__row > a {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 47px;
  padding: 0;
  color: var(--ws-ink);
  font-size: 16px;
  font-weight: 650;
  line-height: 1;
}

.ws-mobile-solution__row > button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ws-ink);
  background: var(--ws-canvas);
}

.ws-mobile-solution__row > button span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.ws-mobile-solution__row > button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.xb-header-menu-scroll .ws-mobile-solution > .sub-menu {
  display: none;
  padding: 0 0 12px 16px;
}

.xb-header-menu-scroll .ws-mobile-solution > .sub-menu.active {
  display: block;
}

.xb-header-menu-scroll .ws-mobile-solution > .sub-menu li a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  color: var(--ws-muted);
  font-size: 14px;
}

.xb-header-menu-scroll .ws-mobile-solution > .sub-menu img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.xb-header-menu-scroll .ws-mobile-features > .sub-menu {
  padding-left: 0;
}

.ws-mobile-features__group {
  display: grid;
  gap: 2px;
  padding: 13px 0 10px 16px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.14);
}

.ws-mobile-features__group > span {
  display: inline-block;
  width: fit-content;
  margin-bottom: 6px;
  color: var(--ws-blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-mobile-features__group > span::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 6px;
  background: var(--ws-orange);
  content: "";
}

.xb-header-menu-scroll .ws-mobile-features > .sub-menu .ws-mobile-features__group a {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 0;
}

.xb-header-menu-scroll .ws-mobile-features .ws-feature-icon {
  --ws-feature-glyph-size: 28px;
  width: 28px;
  height: 28px;
}

.xb-header-menu-scroll .ws-mobile-features .ws-feature-icon--svg svg {
  width: var(--ws-feature-glyph-size);
  height: var(--ws-feature-glyph-size);
}

.xb-header-menu-scroll .ws-mobile-features > .sub-menu .ws-mobile-features__group strong {
  color: var(--ws-ink);
  font-size: 13px;
  font-weight: 650;
}

.xb-header-menu-scroll .ws-mobile-features > .sub-menu .ws-mobile-features__group em {
  display: block;
  margin-top: 2px;
  color: #7d8799;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.ws-mobile-cta {
  width: 100%;
  margin-top: 32px;
  color: #fff;
}

body.ws-modal-open {
  overflow: hidden;
}

.ws-demo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.ws-demo-modal__backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(23, 32, 51, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.ws-demo-modal__shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(940px, 100%);
  max-height: 90vh;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 36px 90px rgba(10, 18, 38, 0.28);
}

.ws-demo-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ws-ink);
  font-size: 22px;
  line-height: 1;
}

.ws-demo-modal__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  max-height: 90vh;
  overflow-y: auto;
}

.ws-demo-modal__intro {
  position: relative;
  overflow: hidden;
  padding: 44px 36px;
  background:
    radial-gradient(circle at 16% 10%, rgba(242, 140, 59, 0.24), transparent 34%),
    linear-gradient(145deg, var(--ws-blue) 0%, var(--ws-blue-dark) 100%);
  color: #fff;
}

.ws-demo-modal__intro::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 230px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  content: "";
}

.ws-demo-modal__intro > span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ws-demo-modal__intro h2 {
  max-width: 330px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 45px);
  line-height: 1.02;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.ws-demo-modal__intro p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.7;
}

.ws-demo-modal__points {
  display: grid;
  gap: 11px;
  margin-top: 34px;
}

.ws-demo-modal__points span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.ws-demo-modal__metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.ws-demo-modal__metrics-line {
  position: relative;
  height: 34px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ws-demo-modal__metrics .ws-module-line::before,
.ws-demo-modal__metrics .ws-module-line::after {
  display: none;
}

.ws-demo-modal__metrics .ws-module-line__track {
  gap: 8px;
  padding-right: 8px;
  animation-duration: 30s;
}

.ws-demo-modal__metrics .ws-module-pill {
  min-height: 24px;
  padding: 5px 10px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(4, 13, 57, 0.16);
}

.ws-demo-modal__metric-window {
  display: grid;
  min-height: 58px;
  place-items: center;
  overflow: hidden;
}

.ws-demo-modal__metric {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  text-align: center;
  animation: ws-demo-metric-enter 0.5s ease both;
}

.ws-demo-modal__metric strong {
  color: var(--ws-orange);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.ws-demo-modal__metric span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

@keyframes ws-demo-metric-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ws-demo-modal__content,
.ws-demo-success {
  padding: 34px;
}

.ws-demo-calendar__top {
  display: grid;
  grid-template-columns: 88px 1fr 88px;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.ws-demo-calendar__top strong,
.ws-demo-times h3 {
  color: var(--ws-ink);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.ws-demo-calendar__top button,
.ws-demo-date-grid button,
.ws-demo-time-grid button,
.ws-demo-interests button {
  border: 1px solid rgba(224, 228, 240, 0.96);
  background: #fff;
  color: #58637a;
  font-weight: 760;
}

.ws-demo-calendar__top button {
  min-height: 38px;
  border-radius: 13px;
  font-size: 12px;
}

.ws-demo-calendar__top button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.ws-demo-date-grid,
.ws-demo-time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ws-demo-date-grid button,
.ws-demo-time-grid button {
  min-height: 48px;
  border-radius: 16px;
  font-size: 12px;
}

.ws-demo-date-grid button:hover,
.ws-demo-time-grid button:hover,
.ws-demo-interests button:hover {
  border-color: rgba(13, 38, 150, 0.28);
  background: rgba(113, 125, 185, 0.08);
}

.ws-demo-date-grid button.is-selected,
.ws-demo-time-grid button.is-selected,
.ws-demo-interests button.is-selected {
  border-color: rgba(13, 38, 150, 0.34);
  background: rgba(113, 125, 185, 0.16);
  color: var(--ws-blue);
}

.ws-demo-times {
  margin-top: 24px;
}

.ws-demo-times h3 {
  margin-bottom: 12px;
  text-align: left;
}

.ws-demo-times p,
.ws-demo-error {
  margin: 0;
  color: #727b8e;
  font-size: 13px;
}

.ws-demo-times p.is-error,
.ws-demo-error {
  color: var(--ws-red);
  font-weight: 700;
}

.ws-demo-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.ws-demo-form input {
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 16px;
  background: #fff;
  color: var(--ws-ink);
  font-size: 13px;
  font-weight: 650;
}

.ws-demo-form input:focus {
  border-color: rgba(13, 38, 150, 0.38);
  box-shadow: 0 0 0 4px rgba(113, 125, 185, 0.13);
}

.ws-demo-interests {
  margin-top: 22px;
}

.ws-demo-interests > span {
  display: block;
  margin-bottom: 11px;
  color: var(--ws-ink);
  font-size: 13px;
  font-weight: 800;
}

.ws-demo-interests > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ws-demo-interests button {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 12px;
  text-align: left;
}

.ws-demo-interests i {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(113, 125, 185, 0.5);
  border-radius: 6px;
  color: #fff;
  background: #fff;
  font-size: 10px;
  font-style: normal;
}

.ws-demo-interests button.is-selected i {
  border-color: var(--ws-blue);
  background: var(--ws-blue);
}

.ws-demo-error {
  margin-top: 14px;
}

.ws-demo-submit,
.ws-demo-success a,
.ws-demo-success button {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ws-blue), var(--ws-blue-dark));
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

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

.ws-demo-submit:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.ws-demo-success {
  display: grid;
  min-height: 390px;
  place-items: center;
  text-align: center;
}

.ws-demo-success span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 175, 120, 0.12);
  color: #239661;
  font-size: 26px;
  font-weight: 900;
}

.ws-demo-success h2 {
  margin-top: 18px;
  color: var(--ws-ink);
  font-size: 30px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.ws-demo-success p {
  max-width: 420px;
  margin: 8px auto 0;
  color: var(--ws-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ws-demo-success a,
.ws-demo-success button {
  width: min(100%, 260px);
  margin-top: 18px;
}

.ws-demo-success button {
  border: 1px solid rgba(224, 228, 240, 0.95);
  background: #fff;
  color: var(--ws-ink);
}

.ws-home-page {
  position: relative;
  overflow: hidden;
  background: var(--ws-page-background);
}

.hero-area--two {
  padding-top: 116px;
  position: relative;
  overflow: hidden;
  background: transparent !important;
}

.hero-area--two .xb-hero-inner {
  overflow: visible;
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding: 112px 0 72px;
  border: 0;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none;
}

.hero-area--two .xb-hero-inner::before {
  display: none;
}

.ws-hero-orb {
  position: absolute;
  z-index: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

.ws-hero-orb--one {
  top: 8px;
  left: -150px;
  background: radial-gradient(circle, rgba(49, 94, 251, 0.13), rgba(49, 94, 251, 0));
}

.ws-hero-orb--two {
  top: 36px;
  right: -160px;
  background: radial-gradient(circle, rgba(242, 138, 69, 0.16), rgba(242, 138, 69, 0));
}

.hero-area--two .xb-hero-content {
  position: relative;
  z-index: 2;
}

.ws-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  padding: 8px 13px;
  border: 1px solid rgba(49, 94, 251, 0.16);
  border-radius: 999px;
  color: #41506b;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 24px rgba(31, 42, 68, 0.05);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.ws-hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ws-green);
  box-shadow: 0 0 0 5px rgba(46, 175, 120, 0.11);
}

.hero-area--two .sec-title {
  max-width: 980px;
  margin: 0 auto;
}

.hero-area--two .sec-title .title,
.hero-area--two .heroTitleUp {
  color: var(--ws-ink) !important;
  font-size: clamp(52px, 5.4vw, 82px) !important;
  line-height: 1.02 !important;
  font-weight: 560 !important;
  letter-spacing: -0.062em !important;
}

.ws-title-accent {
  position: relative;
  display: inline-block;
  color: var(--ws-blue) !important;
}

.ws-hero-title-blue {
  color: var(--ws-blue) !important;
}

.ws-hero-rotating-word {
  display: inline-grid;
  position: relative;
  isolation: isolate;
  vertical-align: baseline;
  white-space: nowrap;
}

.ws-hero-rotating-word__ghost,
.ws-hero-rotating-word__item {
  grid-area: 1 / 1;
  line-height: inherit;
  white-space: nowrap;
}

.ws-hero-rotating-word__ghost {
  visibility: hidden;
}

.ws-hero-rotating-word__item {
  position: relative;
  opacity: 0;
  transform: translateY(0.08em);
  animation: wsHeroRotatingWord 21.6s infinite;
  will-change: opacity, transform, filter;
}

.ws-hero-rotating-word__svg-wrap {
  position: relative;
  display: inline-block;
  line-height: inherit;
  animation-delay: inherit;
}

.ws-hero-rotating-word__text {
  position: relative;
  z-index: 1;
}

.ws-hero-rotating-word__svg {
  position: absolute;
  inset: -0.12em -0.16em -0.06em;
  z-index: 2;
  width: calc(100% + 0.32em);
  height: calc(100% + 0.18em);
  overflow: visible;
  pointer-events: none;
  animation-delay: inherit;
}

.ws-hero-rotating-word__erase-strokes {
  animation-delay: inherit;
}

.ws-hero-rotating-word__erase-strokes path {
  stroke: rgba(248, 249, 255, 0.98);
  stroke-width: 22;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  opacity: 0;
  filter: drop-shadow(0 2px 2px rgba(255, 255, 255, 0.62));
  animation-duration: 21.6s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(.48, .02, .16, .98);
  animation-delay: inherit;
}

.ws-hero-rotating-word__erase-strokes path:nth-child(1) { animation-name: wsHeroSvgErasePathOne; }
.ws-hero-rotating-word__erase-strokes path:nth-child(2) { animation-name: wsHeroSvgErasePathTwo; }
.ws-hero-rotating-word__erase-strokes path:nth-child(3) { animation-name: wsHeroSvgErasePathThree; }
.ws-hero-rotating-word__erase-strokes path:nth-child(4) { animation-name: wsHeroSvgErasePathFour; }
.ws-hero-rotating-word__erase-strokes path:nth-child(5) { animation-name: wsHeroSvgErasePathFive; }
.ws-hero-rotating-word__erase-strokes path:nth-child(6) { animation-name: wsHeroSvgErasePathSix; }
.ws-hero-rotating-word__erase-strokes path:nth-child(7) { animation-name: wsHeroSvgErasePathSeven; }
.ws-hero-rotating-word__erase-strokes path:nth-child(8) { animation-name: wsHeroSvgErasePathEight; }

.ws-hero-rotating-word__erase-strokes path:nth-child(2),
.ws-hero-rotating-word__erase-strokes path:nth-child(4),
.ws-hero-rotating-word__erase-strokes path:nth-child(6),
.ws-hero-rotating-word__erase-strokes path:nth-child(8) {
  stroke-width: 15;
  stroke: rgba(255, 255, 255, 0.96);
}

.ws-hero-rotating-word__erase-strokes path:nth-child(3),
.ws-hero-rotating-word__erase-strokes path:nth-child(5) {
  stroke-width: 24;
}

.ws-hero-rotating-word__eraser {
  position: absolute;
  bottom: -0.1em;
  left: -0.22em;
  z-index: 3;
  width: 0.82em;
  height: 0.32em;
  border-radius: 45% 55% 48% 52% / 52% 45% 55% 48%;
  background:
    radial-gradient(ellipse at 35% 42%, rgba(255, 255, 255, 0.96) 0 34%, rgba(247, 248, 255, 0.92) 62%, rgba(247, 248, 255, 0) 78%),
    linear-gradient(110deg, rgba(248, 249, 255, 0), rgba(255, 255, 255, 0.95) 42%, rgba(238, 240, 255, 0.74));
  box-shadow:
    0 -0.08em 0.16em rgba(255, 255, 255, 0.9),
    0 0.07em 0.13em rgba(36, 21, 173, 0.05);
  opacity: 0;
  transform: translate3d(0, 0.24em, 0) rotate(-9deg);
  transform-origin: center;
  animation: wsHeroSvgEraser 21.6s infinite;
  animation-delay: inherit;
  pointer-events: none;
  will-change: opacity, transform;
}

.ws-hero-rotating-word__item:nth-child(2) {
  animation-delay: 0s;
}

.ws-hero-rotating-word__item:nth-child(3) {
  animation-delay: 7.2s;
}

.ws-hero-rotating-word__item:nth-child(4) {
  animation-delay: 14.4s;
}

@keyframes wsHeroRotatingWord {
  0% {
    opacity: 0;
    transform: translateY(0.08em);
    filter: blur(1px);
  }

  4%,
  24% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  32.45% {
    opacity: 1;
    transform: translateY(0) rotate(0.05deg);
    filter: blur(0.12px);
  }

  33.333%,
  100% {
    opacity: 0;
    transform: translateX(0.035em) rotate(0deg);
    filter: blur(0.9px);
  }
}

@keyframes wsHeroSvgErasePathOne {
  0%,
  23.9% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  24.65%,
  33.333% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  33.334%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes wsHeroSvgErasePathTwo {
  0%,
  24.85% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  25.45%,
  33.333% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  33.334%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes wsHeroSvgErasePathThree {
  0%,
  25.6% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  26.35%,
  33.333% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  33.334%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes wsHeroSvgErasePathFour {
  0%,
  26.65% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  27.25%,
  33.333% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  33.334%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes wsHeroSvgErasePathFive {
  0%,
  27.45% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  28.15%,
  33.333% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  33.334%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes wsHeroSvgErasePathSix {
  0%,
  28.4% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  29.05%,
  33.333% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  33.334%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes wsHeroSvgErasePathSeven {
  0%,
  29.2% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  30.05%,
  33.333% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  33.334%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes wsHeroSvgErasePathEight {
  0%,
  30.25% {
    opacity: 0;
    stroke-dashoffset: 620;
  }

  31.35%,
  33.333% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  33.334%,
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes wsHeroSvgEraser {
  0%,
  23.65% {
    opacity: 0;
    transform: translate3d(-45%, 0.22em, 0) rotate(-10deg);
  }

  24.35% {
    opacity: 0.9;
    transform: translate3d(25%, 0.13em, 0) rotate(-13deg);
  }

  25.25% {
    opacity: 0.95;
    transform: translate3d(125%, 0.25em, 0) rotate(9deg);
  }

  26.2% {
    opacity: 0.92;
    transform: translate3d(215%, -0.02em, 0) rotate(-8deg);
  }

  27.05% {
    opacity: 0.95;
    transform: translate3d(305%, 0.1em, 0) rotate(8deg);
  }

  27.9% {
    opacity: 0.92;
    transform: translate3d(390%, -0.22em, 0) rotate(-7deg);
  }

  28.85% {
    opacity: 0.9;
    transform: translate3d(485%, -0.08em, 0) rotate(7deg);
  }

  29.75% {
    opacity: 0.82;
    transform: translate3d(570%, -0.43em, 0) rotate(-6deg);
  }

  30.65% {
    opacity: 0.76;
    transform: translate3d(650%, -0.28em, 0) rotate(5deg);
  }

  31.55% {
    opacity: 0.58;
    transform: translate3d(725%, -0.72em, 0) rotate(-5deg);
  }

  32.35% {
    opacity: 0.36;
    transform: translate3d(790%, -0.98em, 0) rotate(4deg);
  }

  33.333%,
  100% {
    opacity: 0;
    transform: translate3d(850%, -1.12em, 0) rotate(-3deg);
  }
}

.ws-hero-rotating-word__item {
  display: inline-flex;
  align-items: baseline;
  opacity: 1;
  overflow: visible;
  transform: none;
  animation: none;
  filter: none;
}

.ws-hero-typewriter__text {
  display: inline-block;
  min-width: 0;
}

.ws-hero-typewriter__cursor {
  display: inline-block;
  margin-left: 0.035em;
  color: var(--ws-orange);
  font-weight: 520;
  line-height: 1;
  opacity: 1;
  transform: translateY(-0.035em);
}

.ws-hero-typewriter__cursor.is-complete {
  animation: wsHeroTypewriterCursor 720ms steps(1, end) 3;
}

@keyframes wsHeroTypewriterCursor {
  0%,
  45% {
    opacity: 1;
  }

  45.01%,
  80% {
    opacity: 0;
  }

  80.01%,
  100% {
    opacity: 1;
  }
}

.ws-title-accent::after {
  content: "";
  position: absolute;
  left: 1%;
  right: 0;
  bottom: -4px;
  height: 9px;
  border-radius: 50%;
  border-top: 3px solid var(--ws-orange);
  transform: rotate(-1.5deg);
}

@media (prefers-reduced-motion: reduce) {
  .ws-hero-rotating-word__item {
    animation: none;
    filter: none;
    transform: none;
  }

  .ws-hero-rotating-word__erase-strokes path,
  .ws-hero-rotating-word__eraser {
    animation: none;
    opacity: 0;
  }

  .ws-hero-rotating-word__item:nth-child(2) {
    opacity: 1;
  }
}

.hero-area--two .xb-hero-content .xb-item--content {
  max-width: 710px;
  margin: 28px auto 34px;
  padding: 0;
  color: #59657a;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  text-transform: none;
}

.ws-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.ws-hero-btns .desk-btn--gradient {
  position: relative;
  min-height: 58px;
  padding: 17px 28px;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--ws-blue) 0%, var(--ws-blue-dark) 100%);
  box-shadow:
    0 14px 32px rgba(49, 94, 251, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ws-hero-btns .desk-btn--gradient:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 42px rgba(49, 94, 251, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.ws-hero-btns .desk-btn--gradient::before {
  display: none;
}

.ws-hero-btns .desk-btn--gradient::after {
  content: "";
  position: absolute;
  top: -70%;
  left: -35%;
  z-index: -1;
  display: block;
  width: 24%;
  height: 240%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(22deg) translateX(-220%);
  transition: transform 0.65s ease;
}

.ws-hero-btns .desk-btn--gradient:hover::after {
  transform: rotate(22deg) translateX(720%);
}

.ws-hero-btns .desk-btn--gradient .layer {
  position: static;
  padding: 0;
  background: transparent;
  transform: none;
}

.ws-hero-btns .desk-btn--gradient .text {
  color: #fff;
  text-shadow: none;
}

.ws-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 16px 24px;
  border: 1px solid var(--ws-line);
  border-radius: 999px;
  color: var(--ws-ink);
  background: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 600;
}

.ws-secondary-btn:hover {
  color: var(--ws-blue);
  border-color: rgba(49, 94, 251, 0.25);
  background: #fff;
}

.ws-hero-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}

.ws-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6f788a;
  font-size: 13px;
  font-weight: 500;
}

.ws-hero-trust span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--ws-blue);
  background: var(--ws-blue-soft);
  box-shadow: none;
  font-size: 10px;
  font-weight: 800;
}

.ws-main-hero {
  padding: 152px 0 78px;
}

.ws-main-hero .xb-hero-inner {
  padding: 0;
}

.ws-main-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 58px;
  align-items: start;
}

.ws-main-hero__copy {
  text-align: left;
}

.ws-main-hero__copy .ws-section-kicker {
  margin-bottom: 22px;
}

.ws-main-hero .sec-title {
  max-width: none;
  margin: 0;
}

.ws-main-hero .sec-title .title,
.ws-main-hero .heroTitleUp {
  max-width: 720px;
  font-size: clamp(50px, 5vw, 78px) !important;
  line-height: 0.99 !important;
}

.ws-main-hero .xb-hero-content .xb-item--content {
  max-width: 610px;
  margin: 22px 0 34px;
}

.ws-main-hero .ws-hero-btns,
.ws-main-hero .ws-hero-trust {
  justify-content: flex-start;
}

.ws-main-hero .ws-hero-trust {
  gap: 14px 20px;
}

.ws-main-hero-preview {
  align-self: start;
  width: 100%;
  margin-top: clamp(58px, 5.2vw, 86px);
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step {
  min-height: 78px;
  padding: 12px 10px;
}

.ws-main-hero-step-ring {
  display: none;
}

.ws-main-hero-mobile-step-label {
  display: none;
}

.ws-main-hero-preview__body {
  grid-template-columns: minmax(0, 1.16fr) minmax(190px, 0.84fr);
  align-items: stretch;
}

.ws-wd-plan-card.ws-main-hero-preview__plan {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 320px;
  min-height: 320px;
  overflow: hidden;
}

.ws-main-hero-preview__plan-map {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 0;
}

.ws-wd-plan-card.ws-main-hero-preview__plan svg {
  align-self: center;
  height: 176px;
  margin-top: 0;
}

.ws-main-hero-discussion-pin {
  position: absolute;
  top: calc(50% - 96px);
  left: 42%;
  z-index: 2;
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 14px 18px rgba(31, 42, 68, 0.22));
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.82);
  animation: wsHeroPinLoop 11s ease-in-out infinite;
}

.ws-main-hero-preview__context {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-content: stretch;
  gap: 10px;
  height: 320px;
  min-height: 320px;
  padding: 14px;
  border: 1px solid rgba(113, 125, 185, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(31, 42, 68, 0.06);
  overflow: hidden;
}

.ws-main-hero-chat__header {
  display: grid;
  gap: 3px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.16);
}

.ws-main-hero-chat__header span {
  color: var(--ws-blue);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-main-hero-chat__header strong {
  color: var(--ws-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.ws-main-hero-chat__thread {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
}

.ws-main-hero-chat__messages {
  display: grid;
  gap: 7px;
  will-change: transform;
  animation: wsHeroChatScroll 11s ease-in-out infinite;
}

.ws-main-hero-chat__message {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  opacity: 0;
  transform: translateY(8px);
}

.ws-main-hero-chat__message:nth-child(1) {
  animation: wsHeroMessageOne 11s ease-in-out infinite;
}

.ws-main-hero-chat__message:nth-child(2) {
  animation: wsHeroMessageTwo 11s ease-in-out infinite;
}

.ws-main-hero-chat__message:nth-child(3) {
  animation: wsHeroMessageThree 11s ease-in-out infinite;
}

.ws-main-hero-chat__message:nth-child(4) {
  animation: wsHeroMessageFour 11s ease-in-out infinite;
}

.ws-main-hero-chat__message:nth-child(5) {
  animation: wsHeroMessageFive 11s ease-in-out infinite;
}

.ws-main-hero-chat__message > img {
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(31, 42, 68, 0.12);
}

.ws-main-hero-chat__message p {
  margin: 0;
  padding: 8px 9px;
  border: 1px solid rgba(113, 125, 185, 0.14);
  border-radius: 12px;
  color: #5d667a;
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 560;
  line-height: 1.34;
  box-shadow: 0 8px 18px rgba(31, 42, 68, 0.045);
}

.ws-main-hero-chat__message p strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ws-ink);
  font-size: 10.5px;
  font-weight: 720;
  line-height: 1.1;
}

.ws-main-hero-chat__message--sarah p,
.ws-main-hero-chat__message--sarah > div {
  background: rgba(248, 249, 255, 0.96);
}

.ws-main-hero-chat__message > div {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(113, 125, 185, 0.14);
  border-radius: 14px;
  background: rgba(248, 249, 255, 0.96);
  box-shadow: 0 8px 18px rgba(31, 42, 68, 0.045);
}

.ws-main-hero-chat__message > div p {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ws-main-hero-chat__attachment {
  display: block;
  width: 100%;
  max-width: 142px;
  height: auto;
  border: 1px solid rgba(113, 125, 185, 0.16);
  border-radius: 10px;
  background: #fff;
}

@keyframes wsHeroPinLoop {
  0%,
  4% {
    opacity: 0;
    transform: translate(-50%, 8px) scale(0.82);
  }

  9% {
    opacity: 1;
    transform: translate(-50%, -2px) scale(1.06);
  }

  13%,
  88% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  95%,
  100% {
    opacity: 0;
    transform: translate(-50%, 8px) scale(0.92);
  }
}

@keyframes wsHeroChatScroll {
  0%,
  30% {
    transform: translateY(0);
  }

  46%,
  60% {
    transform: translateY(-88px);
  }

  72% {
    transform: translateY(-176px);
  }

  84%,
  88% {
    transform: translateY(-268px);
  }

  95%,
  100% {
    transform: translateY(0);
  }
}

@keyframes wsHeroMessageOne {
  0%,
  9% {
    opacity: 0;
    transform: translateY(8px);
  }

  14%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }

  95%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes wsHeroMessageTwo {
  0%,
  16% {
    opacity: 0;
    transform: translateY(8px);
  }

  21%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }

  95%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes wsHeroMessageThree {
  0%,
  23% {
    opacity: 0;
    transform: translateY(8px);
  }

  28%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }

  95%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes wsHeroMessageFour {
  0%,
  30% {
    opacity: 0;
    transform: translateY(8px);
  }

  35%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }

  95%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes wsHeroMessageFive {
  0%,
  37% {
    opacity: 0;
    transform: translateY(8px);
  }

  42%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }

  95%,
  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ws-main-hero-discussion-pin,
  .ws-main-hero-chat__messages,
  .ws-main-hero-chat__message {
    animation: none;
    opacity: 1;
    transform: translateY(0);
  }

  .ws-main-hero-discussion-pin {
    transform: translate(-50%, 0) scale(1);
  }
}

/* Main hero connected workflow */
.ws-main-hero-preview__pipeline .ws-wd-pipeline__step {
  position: relative;
  overflow: hidden;
  appearance: none;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 240ms ease, border-color 240ms ease, background-color 240ms ease, box-shadow 240ms ease;
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 21, 173, 0.32);
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step:focus-visible {
  outline: 3px solid rgba(241, 77, 38, 0.28);
  outline-offset: 3px;
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-active {
  transform: translateY(-3px);
  border-color: rgba(36, 21, 173, 0.42);
  background: linear-gradient(150deg, rgba(238, 236, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 13px 26px rgba(36, 21, 173, 0.12);
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-active > span {
  color: #fff;
  background: var(--ws-blue);
  box-shadow: 0 7px 16px rgba(36, 21, 173, 0.22);
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-complete > span {
  color: #fff;
  background: #28a876;
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step > i {
  position: absolute;
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(36, 21, 173, 0.09);
  overflow: hidden;
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step > i::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ws-blue), var(--ws-orange));
  transform: scaleX(0);
  transform-origin: left;
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-active > i::after {
  animation: wsHeroStepProgress var(--step-duration, 5.8s) linear forwards;
}

.ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-complete > i::after {
  transform: scaleX(1);
}

.ws-main-hero-preview .ws-main-hero-chat__messages,
.ws-main-hero-preview .ws-main-hero-chat__message,
.ws-main-hero-preview .ws-main-hero-discussion-pin {
  animation: none;
}

.ws-main-hero-preview .ws-main-hero-discussion-pin {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.ws-main-hero-preview.is-stage-discuss .ws-main-hero-discussion-pin {
  opacity: 0;
  animation: wsHeroPinEnter 460ms 180ms cubic-bezier(.2, .9, .2, 1.2) forwards;
}

.ws-main-hero-plan__shell.is-drawing {
  fill-opacity: 0;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: wsHeroDrawPlan 3.15s 180ms linear forwards;
}

.ws-main-hero-plan__windows.is-drawing rect {
  opacity: 0;
  transform: scale(0.55);
  transform-box: fill-box;
  transform-origin: center;
  animation: wsHeroPlaceOpening 360ms cubic-bezier(.2, .9, .25, 1.25) forwards;
}

.ws-main-hero-plan__windows.is-drawing rect:nth-child(1) { animation-delay: 3.35s; }
.ws-main-hero-plan__windows.is-drawing rect:nth-child(2) { animation-delay: 3.68s; }
.ws-main-hero-plan__windows.is-drawing rect:nth-child(3) { animation-delay: 4.01s; }
.ws-main-hero-plan__windows.is-drawing rect:nth-child(4) { animation-delay: 4.34s; }

.ws-main-hero-plan__door.is-drawing,
.ws-main-hero-plan__labels.is-drawing {
  opacity: 0;
  animation: wsHeroFadeUp 380ms ease forwards;
}

.ws-main-hero-plan__door.is-drawing { animation-delay: 4.72s; }
.ws-main-hero-plan__labels.is-drawing { animation-delay: 4.98s; }

.ws-main-hero-plan__selected-opening {
  transform-box: fill-box;
  transform-origin: center;
  animation: wsHeroSelectOpening 4.8s 520ms ease both;
}

.ws-main-hero-window-click {
  position: absolute;
  top: calc(50% - 91px);
  left: 42%;
  z-index: 4;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--ws-orange);
  box-shadow: 0 5px 12px rgba(31, 42, 68, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  animation: wsHeroWindowClick 1.05s 420ms ease forwards;
}

.ws-main-hero-window-click::after {
  position: absolute;
  inset: -2px;
  content: "";
  border: 2px solid rgba(241, 77, 38, 0.56);
  border-radius: inherit;
  animation: wsHeroClickRing 600ms 780ms ease-out forwards;
}

.ws-main-hero-photo-pin {
  position: absolute;
  top: calc(50% + 93px);
  left: 40%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 5px;
  border: 1px solid rgba(13, 38, 150, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 9px 20px rgba(31, 42, 68, 0.16);
  transform: translate(-50%, 0);
  animation: wsHeroPhotoPinEnter 400ms 280ms cubic-bezier(.2, .9, .25, 1.2) both;
}

.ws-wd-plan-card.ws-main-hero-preview__plan .ws-main-hero-photo-pin svg {
  display: block;
  flex: 0 0 16px;
  align-self: auto;
  width: 16px;
  height: 16px;
  margin: 0;
  overflow: visible;
  fill: none;
  filter: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.ws-main-hero-photo-pin svg .is-primary { stroke: var(--ws-blue); }
.ws-main-hero-photo-pin svg .is-accent { stroke: var(--ws-orange); }

.ws-main-hero-photo-pin em {
  display: grid;
  box-sizing: border-box;
  flex: 0 0 19px;
  width: 19px;
  min-width: 19px;
  height: 19px;
  padding: 0 0 1px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ws-orange);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.ws-main-hero-photo-pin > i {
  position: absolute;
  top: 4px;
  left: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
}

.ws-main-hero-photo-pin > i::before,
.ws-main-hero-photo-pin > i::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1.5px solid rgba(241, 77, 38, 0.78);
  border-radius: 50%;
  opacity: 0;
}

.ws-main-hero-preview.is-stage-document .ws-main-hero-photo-pin > i::before {
  animation: wsHeroCameraRipple 900ms 860ms cubic-bezier(.15, .72, .28, 1) forwards;
}

.ws-main-hero-preview.is-stage-document .ws-main-hero-photo-pin > i::after {
  animation: wsHeroCameraRippleWide 1.05s 980ms cubic-bezier(.15, .72, .28, 1) forwards;
}

.ws-main-hero-sticky-note {
  position: absolute;
  top: calc(50% + 63px);
  left: 73%;
  z-index: 4;
  display: grid;
  width: 50px;
  min-height: 42px;
  place-items: center;
  padding: 6px 7px;
  border: 1px solid rgba(216, 158, 39, 0.28);
  border-radius: 10px;
  color: #181b2f;
  background:
    linear-gradient(145deg, #fff5a9 0%, #ffe676 100%);
  box-shadow:
    0 12px 24px rgba(31, 42, 68, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: translate(-50%, 8px) rotate(-2deg) scale(0.9);
  animation: wsHeroStickyNoteEnter 460ms 4.25s cubic-bezier(.2, .9, .25, 1.2) forwards;
}

.ws-main-hero-sticky-note::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 13px;
  border-radius: 9px 0 9px 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(203, 148, 34, 0.28));
}

.ws-main-hero-sticky-note strong {
  display: block;
  color: #171a2d;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: none;
}

.ws-main-hero-sketch-status {
  display: grid;
  gap: 7px;
  min-height: 0;
}

.ws-main-hero-sketch-status__canvas {
  position: relative;
  height: 62px;
  border: 1px solid rgba(113, 125, 185, 0.15);
  border-radius: 14px;
  background-color: rgba(248, 249, 255, 0.88);
  background-image: radial-gradient(rgba(113, 125, 185, 0.22) 0.75px, transparent 0.75px);
  background-size: 8px 8px;
  overflow: hidden;
}

.ws-main-hero-sketch-status__canvas span {
  position: absolute;
  top: 30px;
  right: 18px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ws-blue), var(--ws-orange));
  transform: scaleX(0);
  transform-origin: left;
  animation: wsHeroSketchStatusLine 4.9s 180ms ease-in-out forwards;
}

.ws-main-hero-sketch-status__canvas i {
  position: absolute;
  top: 23px;
  left: 16px;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--ws-orange);
  box-shadow: 0 5px 12px rgba(36, 21, 173, 0.18);
  animation: wsHeroSketchCursor 4.9s 180ms ease-in-out forwards;
}

.ws-main-hero-sketch-task {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 9px;
  gap: 8px;
  align-items: center;
  min-height: 45px;
  padding: 7px 9px;
  border: 1px solid rgba(113, 125, 185, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0.48;
  transform: translateY(4px);
  animation: wsHeroTaskActivate 440ms ease forwards;
}

.ws-main-hero-sketch-task.is-walls { animation-delay: 260ms; }
.ws-main-hero-sketch-task.is-openings { animation-delay: 3.25s; }
.ws-main-hero-sketch-task.is-door { animation-delay: 4.55s; }

.ws-main-hero-sketch-task > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 9px;
  color: var(--ws-blue);
  background: var(--ws-blue-soft);
  font-size: 8px;
  font-weight: 800;
}

.ws-main-hero-sketch-task strong,
.ws-main-hero-sketch-task small {
  display: block;
  line-height: 1.2;
}

.ws-main-hero-sketch-task strong { color: var(--ws-ink); font-size: 10px; }
.ws-main-hero-sketch-task small { margin-top: 2px; color: #8c93a4; font-size: 8px; }

.ws-main-hero-sketch-task > i {
  width: 8px;
  height: 8px;
  border: 2px solid rgba(36, 21, 173, 0.18);
  border-radius: 50%;
  animation: wsHeroTaskDone 340ms ease forwards;
}

.ws-main-hero-sketch-task.is-walls > i { animation-delay: 2.9s; }
.ws-main-hero-sketch-task.is-openings > i { animation-delay: 4.45s; }
.ws-main-hero-sketch-task.is-door > i { animation-delay: 5.15s; }

.ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__messages {
  animation: wsHeroDiscussionScroll 8.2s ease-in-out forwards;
}

.ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__message {
  animation: wsHeroMessageReveal 360ms ease forwards;
}

.ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__message:nth-child(1) { animation-delay: 520ms; }
.ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__message:nth-child(2) { animation-delay: 1.6s; }
.ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__message:nth-child(3) { animation-delay: 2.65s; }
.ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__message:nth-child(4) { animation-delay: 4.05s; }
.ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__message:nth-child(5) { animation-delay: 5.2s; }

.ws-main-hero-evidence-list,
.ws-main-hero-estimate-list,
.ws-main-hero-install-card {
  min-height: 0;
  overflow: hidden;
}

.ws-main-hero-evidence-list {
  display: grid;
  gap: 6px;
}

.ws-main-hero-evidence-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  padding: 5px 7px 5px 5px;
  border: 1px solid rgba(113, 125, 185, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(9px);
  animation: wsHeroEvidenceReveal 380ms var(--evidence-delay) ease forwards;
}

.ws-main-hero-evidence-list article > span {
  position: relative;
  width: 58px;
  height: 40px;
  border-radius: 8px;
  overflow: hidden;
  background: #eef0f5;
}

.ws-main-hero-evidence-list article > span img,
.ws-main-hero-install-card__photos img { object-fit: cover; }

.ws-main-hero-evidence-list strong,
.ws-main-hero-evidence-list small { display: block; line-height: 1.2; }
.ws-main-hero-evidence-list strong { color: var(--ws-ink); font-size: 9.5px; }
.ws-main-hero-evidence-list small { margin-top: 2px; color: #9299a9; font-size: 7.5px; }
.ws-main-hero-evidence-list em { color: #28a876; font-size: 7px; font-style: normal; font-weight: 800; text-transform: uppercase; }

.ws-main-hero-estimate-list {
  display: grid;
  gap: 4px;
}

.ws-main-hero-estimate-list article {
  display: grid;
  grid-template-columns: 39px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  min-height: 35px;
  padding: 5px 7px;
  border: 1px solid rgba(113, 125, 185, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  opacity: 0;
  transform: translateX(8px);
  animation: wsHeroEstimateReveal 320ms var(--estimate-delay) ease forwards;
}

.ws-main-hero-estimate-list article > span {
  display: grid;
  min-height: 24px;
  place-items: center;
  border-radius: 7px;
  color: var(--ws-blue);
  background: var(--ws-blue-soft);
  font-size: 7px;
  font-weight: 850;
}

.ws-main-hero-estimate-list article strong,
.ws-main-hero-estimate-list article small { display: block; line-height: 1.15; }
.ws-main-hero-estimate-list article strong { overflow: hidden; color: var(--ws-ink); font-size: 8.5px; text-overflow: ellipsis; white-space: nowrap; }
.ws-main-hero-estimate-list article small { margin-top: 2px; color: #949aaa; font-size: 7px; }
.ws-main-hero-estimate-list article em { color: var(--ws-ink); font-size: 8.5px; font-style: normal; font-weight: 800; }

.ws-main-hero-estimate-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
  padding: 8px 9px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(120deg, var(--ws-blue), #5446cf);
  opacity: 0;
  animation: wsHeroFadeUp 360ms 2.05s ease forwards;
}

.ws-main-hero-estimate-total span { font-size: 8px; font-weight: 700; }
.ws-main-hero-estimate-total strong { color: #fff; font-size: 13px; }

.ws-main-hero-install-card {
  display: grid;
  gap: 7px;
}

.ws-main-hero-install-card__measurements {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 7px;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid rgba(36, 21, 173, 0.14);
  border-radius: 12px;
  background: rgba(238, 236, 255, 0.72);
  opacity: 0;
  animation: wsHeroFadeUp 360ms 900ms ease forwards;
}

.ws-main-hero-install-card__measurements div { display: grid; gap: 4px; text-align: center; }
.ws-main-hero-install-card__measurements span { color: #8c93a5; font-size: 7.5px; line-height: 1; text-transform: uppercase; }
.ws-main-hero-install-card__measurements strong { color: var(--ws-ink); font-size: 15px; line-height: 1; }
.ws-main-hero-install-card__measurements > i {
  align-self: end;
  margin-bottom: 1px;
  color: var(--ws-orange);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}
.ws-main-hero-install-card__measurements > em {
  grid-column: 1 / -1;
  justify-self: center;
  padding: 2px 7px;
  border-radius: 999px;
  color: var(--ws-blue);
  background: #fff;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.ws-main-hero-install-card__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  height: 65px;
  opacity: 0;
  animation: wsHeroFadeUp 360ms 1.25s ease forwards;
}

.ws-main-hero-install-card__photos > span {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #eef0f5;
}

.ws-main-hero-install-card__photos > span::after {
  position: absolute;
  inset: 45% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(20, 25, 39, 0.48));
}

.ws-main-hero-install-card__photos i {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  padding: 2px 5px;
  border-radius: 5px;
  color: var(--ws-ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: 6.5px;
  font-style: normal;
  font-weight: 800;
}

.ws-main-hero-install-notes {
  display: grid;
  gap: 5px;
}

.ws-main-hero-install-notes article {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  padding: 5px 7px;
  border: 1px solid rgba(113, 125, 185, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  animation: wsHeroFadeUp 340ms ease forwards;
}

.ws-main-hero-install-notes article:first-child { animation-delay: 1.62s; }
.ws-main-hero-install-notes article:last-child { animation-delay: 1.95s; }

.ws-main-hero-install-notes img {
  width: 27px;
  height: 27px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 11px rgba(31, 42, 68, 0.12);
}

.ws-main-hero-install-notes p {
  margin: 0;
  color: #6f7789;
  font-size: 7.5px;
  font-weight: 560;
  line-height: 1.25;
}

.ws-main-hero-install-notes p strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ws-ink);
  font-size: 8px;
}

@keyframes wsHeroStepProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes wsHeroMobileStepRing {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}

@keyframes wsHeroMobileStepLabel {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wsHeroPinEnter {
  from { opacity: 0; transform: translate(-50%, 8px) scale(0.72); }
  70% { opacity: 1; transform: translate(-50%, -2px) scale(1.1); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@keyframes wsHeroDrawPlan {
  0% { fill-opacity: 0; stroke-dashoffset: 1; }
  88% { fill-opacity: 0; stroke-dashoffset: 0; }
  100% { fill-opacity: 1; stroke-dashoffset: 0; }
}

@keyframes wsHeroPlaceOpening {
  from { opacity: 0; transform: scale(0.55); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes wsHeroFadeUp {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wsHeroSelectOpening {
  0%, 7% { fill: #e9e7ff; stroke: #2415ad; transform: scale(1); }
  13%, 100% { fill: #eef0ff; stroke: #2415ad; transform: scale(1.12); }
}

@keyframes wsHeroWindowClick {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  35%, 62% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.72); }
}

@keyframes wsHeroClickRing {
  from { opacity: 0.9; transform: scale(0.7); }
  to { opacity: 0; transform: scale(3.1); }
}

@keyframes wsHeroPhotoPinEnter {
  from { opacity: 0; transform: translate(-50%, 8px) scale(0.75); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@keyframes wsHeroStickyNoteEnter {
  from { opacity: 0; transform: translate(-50%, 8px) rotate(-2deg) scale(0.9); }
  74% { opacity: 1; transform: translate(-50%, -2px) rotate(-1.5deg) scale(1.04); }
  to { opacity: 1; transform: translate(-50%, 0) rotate(-1.5deg) scale(1); }
}

@keyframes wsHeroCameraRipple {
  0% { opacity: 0; transform: scale(0.35); }
  16% { opacity: 0.88; }
  100% { opacity: 0; transform: scale(7); }
}

@keyframes wsHeroCameraRippleWide {
  0% { opacity: 0; transform: scale(0.35); }
  18% { opacity: 0.58; }
  100% { opacity: 0; transform: scale(10); }
}

@keyframes wsHeroSketchStatusLine {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

@keyframes wsHeroSketchCursor {
  0% { left: 16px; }
  100% { left: calc(100% - 32px); }
}

@keyframes wsHeroTaskActivate {
  from { opacity: 0.48; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wsHeroTaskDone {
  from { border-color: rgba(36, 21, 173, 0.18); background: transparent; transform: scale(0.8); }
  to { border-color: #28a876; background: #28a876; transform: scale(1); box-shadow: 0 0 0 3px rgba(40, 168, 118, 0.12); }
}

@keyframes wsHeroDiscussionScroll {
  0%, 34% { transform: translateY(0); }
  48%, 57% { transform: translateY(-82px); }
  66%, 74% { transform: translateY(-164px); }
  84%, 100% { transform: translateY(-248px); }
}

@keyframes wsHeroMessageReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wsHeroEvidenceReveal {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wsHeroEstimateReveal {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step,
  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step > i::after,
  .ws-main-hero-preview .ws-main-hero-discussion-pin,
  .ws-main-hero-plan__shell.is-drawing,
  .ws-main-hero-plan__windows.is-drawing rect,
  .ws-main-hero-plan__door.is-drawing,
  .ws-main-hero-plan__labels.is-drawing,
  .ws-main-hero-photo-pin,
  .ws-main-hero-sticky-note,
  .ws-main-hero-photo-pin > i::before,
  .ws-main-hero-photo-pin > i::after,
  .ws-main-hero-sketch-status__canvas span,
  .ws-main-hero-sketch-status__canvas i,
  .ws-main-hero-sketch-task,
  .ws-main-hero-sketch-task > i,
  .ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__messages,
  .ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__message,
  .ws-main-hero-evidence-list article,
  .ws-main-hero-estimate-list article,
  .ws-main-hero-estimate-total,
  .ws-main-hero-install-card__measurements,
  .ws-main-hero-install-card__photos,
  .ws-main-hero-install-notes article {
    animation: none;
  }

  .ws-main-hero-plan__shell.is-drawing { fill-opacity: 1; stroke-dashoffset: 0; }
  .ws-main-hero-plan__windows.is-drawing rect,
  .ws-main-hero-plan__door.is-drawing,
  .ws-main-hero-plan__labels.is-drawing,
  .ws-main-hero-sticky-note,
  .ws-main-hero-sketch-task,
  .ws-main-hero-preview.is-stage-discuss .ws-main-hero-chat__message,
  .ws-main-hero-evidence-list article,
  .ws-main-hero-estimate-list article,
  .ws-main-hero-estimate-total,
  .ws-main-hero-install-card__measurements,
  .ws-main-hero-install-card__photos,
  .ws-main-hero-install-notes article {
    opacity: 1;
    transform: none;
  }
}

.ws-workspace-showcase {
  position: relative;
  overflow: hidden;
  padding: 36px 0 82px;
  background: #fff;
}

.ws-workspace-showcase__heading {
  margin-bottom: 34px;
}

.ws-workspace-showcase .ws-workspace {
  margin-top: 0;
}

.ws-workspace {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 68px auto 0;
  border: 1px solid #dce1ea;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(31, 42, 68, 0.16), 0 2px 6px rgba(31, 42, 68, 0.05);
  text-align: left;
}

.ws-workspace__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--ws-line);
  background: rgba(255, 255, 255, 0.96);
}

.ws-workspace__project,
.ws-workspace__presence,
.ws-comment-card__author,
.ws-context-card {
  display: flex;
  align-items: center;
}

.ws-workspace__project {
  gap: 12px;
}

.ws-workspace__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 7px 4px;
  border: 1px solid rgba(12, 39, 150, 0.1);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 7px 16px rgba(12, 39, 150, 0.1);
}

.ws-workspace__mark img {
  display: block;
  width: 100%;
  height: auto;
}

.ws-workspace__project div,
.ws-comment-card__author div,
.ws-context-card div {
  display: flex;
  flex-direction: column;
}

.ws-workspace__project strong {
  color: var(--ws-ink);
  font-size: 14px;
}

.ws-workspace__project div > span {
  margin-top: 2px;
  color: #8a93a3;
  font-size: 11px;
}

.ws-workspace__presence {
  padding-right: 4px;
}

.ws-workspace__presence-photo {
  width: 31px;
  height: 31px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(31, 42, 68, 0.12);
}

.ws-workspace__presence-photo:first-child {
  margin-left: 0;
}

.ws-avatar {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 9px;
  font-weight: 750;
}

.ws-avatar:first-child {
  margin-left: 0;
}

.ws-avatar--blue { background: #5575df; }
.ws-avatar--orange { background: #e6824a; }
.ws-avatar--green { background: #43a87b; }

.ws-presence-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  color: #6b7485;
  font-size: 11px;
  font-weight: 600;
}

.ws-presence-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ws-green);
}

.ws-workspace__body {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 280px;
  min-height: 570px;
}

.ws-workspace__rail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 24px 10px;
  background: transparent;
}

.ws-workspace__rail button {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.ws-workspace__rail button:hover,
.ws-workspace__rail button.is-active {
  background: rgba(153, 165, 255, 0.2);
  box-shadow:
      inset 0 0 0 2px rgba(194, 203, 255, 0.72),
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 3px 10px rgba(13, 17, 70, 0.22);
  transform: translateY(-1px);
}

.ws-workspace__rail::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  height: 350px;
  border: 1px solid rgba(115, 124, 255, 0.22);
  border-radius: 14px;
  background: linear-gradient(180deg, #4835db 0%, #3017b6 54%, #2a139d 100%);
  box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 8px 22px rgba(32, 23, 108, 0.3);
  transform: translateY(-50%);
}

.ws-workspace__rail img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ws-canvas {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background-color: var(--ws-canvas);
  background-image: radial-gradient(circle, rgba(122, 122, 122, 0.72) 1.35px, transparent 1.45px);
  background-position: 0 0;
  background-size: 30px 30px;
}

.ws-canvas__label {
  position: absolute;
  top: 10px;
  left: 22px;
  padding: 7px 10px;
  border: 1px solid var(--ws-line);
  border-radius: 8px;
  color: #657085;
  background: rgba(255, 255, 255, 0.88);
  font-size: 10px;
  font-weight: 600;
}

.ws-canvas-actionbar {
  position: absolute;
  top: 10px;
  right: 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ws-canvas-actionbar__group {
  display: flex;
  align-items: center;
  gap: 3px;
  min-height: 38px;
  padding: 4px 6px;
  border: 1px solid rgba(211, 217, 230, 0.98);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 22px rgba(31, 42, 68, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ws-canvas-actionbar button {
  display: grid;
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
}

.ws-canvas-actionbar button:hover {
  background: rgba(83, 70, 255, 0.08);
}

.ws-canvas-actionbar img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.ws-canvas-actionbar__placeholder {
  display: block;
  width: 25px;
  height: 25px;
}

.ws-canvas-actionbar button.has-divider {
  margin-left: 8px;
}

.ws-canvas-actionbar button.has-divider::before {
  position: absolute;
  left: -8px;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: rgba(217, 219, 226, 0.95);
  content: "";
}

.ws-drawing {
  position: absolute;
  top: 95px;
  left: 50%;
  width: min(86%, 620px);
  aspect-ratio: 360 / 170;
  transform: translateX(-50%);
}

.ws-drawing__plan {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 14px 22px rgba(31, 42, 68, 0.08));
}

.ws-hero-photo-marker {
  position: absolute;
  top: calc(64% + 20px);
  left: 38%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 6px;
  border: 1px solid rgba(13, 38, 150, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(31, 42, 68, 0.14);
  transform: translateX(-50%);
}

.ws-hero-photo-marker svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.ws-hero-photo-marker svg .is-primary {
  stroke: #0d2696;
}

.ws-hero-photo-marker svg .is-accent {
  stroke: var(--ws-orange);
}

.ws-hero-photo-marker em {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--ws-orange);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.ws-hero-photo-tray {
  position: absolute;
  top: calc(71% + 20px);
  left: 38%;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 92px);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(224, 228, 240, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.13);
  transform: translateX(-50%);
}

.ws-hero-photo-tray figure {
  position: relative;
  height: 62px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(224, 228, 240, 0.9);
  border-radius: 10px;
  background: #f3f4f7;
}

.ws-hero-photo-tray img {
  object-fit: cover;
}

.ws-hero-photo-tray figcaption {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 1;
  display: inline-flex;
  min-width: 35px;
  height: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: #252b3d;
  font-size: 6.5px;
  font-weight: 800;
  line-height: 1;
}

.ws-cursor {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: flex-start;
}

.ws-cursor svg {
  width: 18px;
  filter: drop-shadow(0 2px 2px rgba(20, 30, 50, 0.15));
}

.ws-cursor span {
  margin: 13px 0 0 -2px;
  padding: 4px 7px;
  border-radius: 5px;
  color: #fff;
  font-size: 9px;
  font-weight: 650;
}

.ws-cursor--blue {
  top: 29%;
  left: 22%;
  animation: ws-cursor-blue 7s ease-in-out infinite;
}

.ws-cursor--blue svg { fill: var(--ws-blue); }
.ws-cursor--blue span { background: var(--ws-blue); }

.ws-cursor--orange {
  right: 18%;
  bottom: 24%;
  animation: ws-cursor-orange 8s ease-in-out infinite;
}

.ws-cursor--orange svg { fill: var(--ws-orange); }
.ws-cursor--orange span { background: var(--ws-orange); }

.ws-comment-pin {
  position: absolute;
  top: 39%;
  left: 60%;
  z-index: 4;
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 10px 16px rgba(31, 42, 68, 0.2));
  transform: translate(-50%, -50%);
}

.ws-comment-pin > img {
  display: block;
  width: 34px;
  height: 34px;
}

.ws-comment-pin > em {
  position: absolute;
  top: -5px;
  right: -7px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--ws-orange);
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 5px 10px rgba(31, 42, 68, 0.14);
}

.ws-comment-card {
  position: absolute;
  right: 4%;
  bottom: 28px;
  z-index: 3;
  width: 282px;
  height: 218px;
  padding: 12px;
  border: 1px solid var(--ws-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.14);
  overflow: hidden;
}

.ws-comment-card__author {
  gap: 8px;
}

.ws-comment-card__author strong,
.ws-context-card strong {
  color: var(--ws-ink);
  font-size: 10.8px;
}

.ws-comment-card__author div span,
.ws-context-card div span {
  color: #929aaa;
  font-size: 8.8px;
}

.ws-comment-card p {
  margin: 11px 0;
  color: #4f5b70;
  font-size: 10px;
  line-height: 1.55;
}

.ws-comment-card__status {
  padding-top: 10px;
  border-top: 1px solid var(--ws-line);
  color: var(--ws-green);
  font-size: 9px;
  font-weight: 650;
}

.ws-workspace-comment__header {
  display: grid;
  gap: 3px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.16);
}

.ws-workspace-comment__header span {
  color: var(--ws-blue);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-workspace-comment__header strong {
  color: var(--ws-ink);
  font-size: 11px;
  line-height: 1.2;
}

.ws-workspace-comment__thread {
  height: 167px;
  padding-top: 8px;
  overflow: hidden;
}

.ws-workspace-comment__messages {
  display: grid;
  gap: 7px;
  will-change: transform;
  animation: wsWorkspaceCommentScroll 12s ease-in-out infinite;
}

.ws-workspace-comment__message {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  opacity: 0;
  transform: translateY(7px);
}

.ws-workspace-comment__message:nth-child(1) { animation: wsWorkspaceMessageOne 12s ease-in-out infinite; }
.ws-workspace-comment__message:nth-child(2) { animation: wsWorkspaceMessageTwo 12s ease-in-out infinite; }
.ws-workspace-comment__message:nth-child(3) { animation: wsWorkspaceMessageThree 12s ease-in-out infinite; }
.ws-workspace-comment__message:nth-child(4) { animation: wsWorkspaceMessageFour 12s ease-in-out infinite; }

.ws-workspace-comment__message > img {
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 7px 14px rgba(31, 42, 68, 0.12);
}

.ws-comment-card .ws-workspace-comment__message p {
  margin: 0;
  padding: 7px 8px;
  border: 1px solid rgba(113, 125, 185, 0.14);
  border-radius: 11px;
  color: #5d667a;
  background: rgba(255, 255, 255, 0.94);
  font-size: 8.5px;
  font-weight: 560;
  line-height: 1.35;
  box-shadow: 0 7px 16px rgba(31, 42, 68, 0.045);
}

.ws-comment-card .ws-workspace-comment__message.is-sarah p {
  background: rgba(248, 249, 255, 0.97);
}

.ws-workspace-comment__message p strong,
.ws-workspace-comment__message p small {
  display: block;
}

.ws-workspace-comment__message p strong {
  margin-bottom: 2px;
  color: var(--ws-ink);
  font-size: 9px;
  line-height: 1.1;
}

.ws-workspace-comment__message p small {
  float: right;
  margin: -11px 0 2px 6px;
  color: #9aa0af;
  font-size: 6.5px;
  font-weight: 600;
}

@keyframes wsWorkspaceCommentScroll {
  0%, 28% { transform: translateY(0); }
  42%, 52% { transform: translateY(-50px); }
  64%, 74% { transform: translateY(-101px); }
  84%, 94% { transform: translateY(-145px); }
  98%, 100% { transform: translateY(0); }
}

@keyframes wsWorkspaceMessageOne {
  0%, 5% { opacity: 0; transform: translateY(7px); }
  9%, 94% { opacity: 1; transform: translateY(0); }
  98%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes wsWorkspaceMessageTwo {
  0%, 20% { opacity: 0; transform: translateY(7px); }
  24%, 94% { opacity: 1; transform: translateY(0); }
  98%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes wsWorkspaceMessageThree {
  0%, 39% { opacity: 0; transform: translateY(7px); }
  43%, 94% { opacity: 1; transform: translateY(0); }
  98%, 100% { opacity: 0; transform: translateY(-4px); }
}

@keyframes wsWorkspaceMessageFour {
  0%, 58% { opacity: 0; transform: translateY(7px); }
  62%, 94% { opacity: 1; transform: translateY(0); }
  98%, 100% { opacity: 0; transform: translateY(-4px); }
}

@media (prefers-reduced-motion: reduce) {
  .ws-workspace-comment__thread {
    overflow-y: auto;
  }

  .ws-workspace-comment__messages,
  .ws-workspace-comment__message {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.ws-context-panel {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 20px 16px;
  border-left: 1px solid var(--ws-line);
  background: #fff;
}

.ws-context-panel__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ws-context-panel__header div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ws-context-panel__header span {
  color: #8b94a5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-context-panel__header strong {
  max-width: 180px;
  color: var(--ws-ink);
  font-size: 13px;
  line-height: 1.35;
}

.ws-context-panel__header button {
  padding: 0;
  border: 0;
  color: #929aaa;
  background: transparent;
}

.ws-context-card {
  gap: 10px;
  margin-bottom: 9px;
  padding: 10px;
  border: 1px solid var(--ws-line);
  border-radius: 11px;
  background: #fff;
}

.ws-context-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 34px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 800;
}

.ws-context-card__icon--blue { color: var(--ws-blue); background: var(--ws-blue-soft); }
.ws-context-card__icon--orange { color: #cf6a2b; background: var(--ws-orange-soft); }

.ws-context-card div {
  flex: 1;
  min-width: 0;
}

.ws-context-card__check {
  color: var(--ws-green);
  font-size: 10px;
}

.ws-activity {
  margin-top: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ws-line);
}

.ws-activity__eyebrow {
  display: block;
  margin-bottom: 15px;
  color: #8b94a5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-activity__item {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 9px;
  margin-bottom: 12px;
}

.ws-activity__item i {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
}

.ws-activity__item i.is-blue { background: var(--ws-blue); }
.ws-activity__item i.is-orange { background: var(--ws-orange); }
.ws-activity__item i.is-green { background: var(--ws-green); }

.ws-activity__item p {
  margin: 0;
  color: #778194;
  font-size: 10.5px;
  line-height: 1.5;
}

.ws-activity__item strong {
  color: #455167;
  font-weight: 700;
}

.ws-context-thread {
  display: grid;
  gap: 12px;
  padding: 16px 0;
}

.ws-context-message {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: start;
}

.ws-context-message > div {
  min-width: 0;
}

.ws-context-message p {
  margin: 0 0 8px;
  color: #687287;
  font-size: 10.5px;
  line-height: 1.5;
}

.ws-context-message p strong {
  color: var(--ws-ink);
}

.ws-context-message .ws-avatar {
  width: 28px;
  height: 28px;
  font-size: 9px;
}

.ws-context-message__avatar {
  width: 28px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 13px rgba(31, 42, 68, 0.12);
}

.ws-context-message .ws-context-card {
  margin-bottom: 0;
}

.ws-context-composer {
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(205, 211, 226, 0.96);
  border-radius: 10px;
  background: #fff;
}

.ws-context-composer__input {
  min-height: 58px;
  padding: 12px;
  color: #687287;
  font-size: 11px;
  line-height: 1.4;
}

.ws-context-composer__tools {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 8px;
  border-top: 1px solid rgba(224, 228, 240, 0.92);
  color: #747d91;
  font-size: 12px;
}

.ws-context-composer__tools span {
  min-width: 12px;
  font-weight: 700;
  text-align: center;
}

.ws-context-composer__tools strong {
  margin-left: auto;
  color: #344054;
  font-size: 10px;
  font-weight: 700;
}

.ws-context-composer__tools button {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: #7b8498;
  background: transparent;
}

.ws-context-composer__tools button:last-child {
  color: #fff;
  background: #9b87d9;
}

.ws-capabilities {
  padding-top: 110px;
  padding-bottom: 120px;
}

.ws-capabilities .xb-brand-top .text {
  color: #5e697d;
  background: #f0f2f6;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 3;
}

.ws-brand-line-stage {
  position: relative;
  display: flex;
  min-width: 0;
  height: 38px;
  flex: 1;
  align-items: center;
  overflow: hidden;
}

.ws-brand-line-stage > .line,
.ws-capabilities .xb-brand-top .line {
  background: var(--ws-line);
}

.ws-capabilities .xb-animate-leftRight .line span {
  background: linear-gradient(90deg, var(--ws-blue), transparent);
}

.ws-module-line {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin-top: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.ws-module-line::before,
.ws-module-line::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 76px;
  content: "";
  pointer-events: none;
}

.ws-module-line::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.ws-module-line::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.ws-module-line__viewport {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  padding: 0;
}

.ws-module-line__track {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  padding-right: 14px;
  animation: ws-module-line-scroll 36s linear infinite;
}

.ws-module-line--right .ws-module-line__track {
  animation-name: ws-module-line-scroll-right;
}

.ws-module-line:hover .ws-module-line__track {
  animation-play-state: paused;
}

.ws-module-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 6px 12px;
  border: 1px solid rgba(13, 38, 150, 0.09);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
  color: #687184;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    0 6px 18px rgba(31, 42, 68, 0.045),
    0 1px 0 rgba(255, 255, 255, 0.75) inset;
  backdrop-filter: blur(10px);
}

.ws-module-pill strong {
  color: var(--ws-ink);
  font-size: 11px;
  font-weight: 700;
}

.ws-module-pill span:last-child {
  display: none;
}

@keyframes ws-module-line-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes ws-module-line-scroll-right {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.ws-capabilities__intro {
  display: grid;
  grid-template-columns: 0.65fr 1.6fr 0.9fr;
  gap: 42px;
  align-items: start;
  margin-top: 58px;
}

.ws-section-kicker {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding-top: 8px;
  color: var(--ws-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 5px;
  border-radius: 50%;
  border-top: 2px solid var(--ws-orange);
  transform: rotate(-1.5deg);
}

.ws-capabilities__intro h2 {
  max-width: 650px;
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 560;
  letter-spacing: -0.05em;
}

.ws-capabilities__intro p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 15px;
  line-height: 1.7;
}

.xb-brand-wrapper .xb-hero-brand-wrap.ws-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 58px 0 0;
}

.ws-capability-card {
  position: relative;
  min-height: 285px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--ws-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ws-capability-card::before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--ws-blue-soft);
  transition: transform 0.35s ease;
}

.ws-capability-card:nth-child(2n)::before {
  background: var(--ws-orange-soft);
}

.ws-capability-card:hover {
  z-index: 1;
  border-color: rgba(49, 94, 251, 0.22);
  box-shadow: 0 22px 48px rgba(31, 42, 68, 0.09);
  transform: translateY(-6px);
}

.ws-capability-card:hover::before {
  transform: scale(1.2);
}

.ws-capability-card__number {
  display: inline-flex;
  margin-bottom: 36px;
  color: #9aa2b1;
  font-size: 60px;
  font-weight: 500;
  line-height: 0.9;
  opacity: 0.3;
}

.ws-capability-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  color: var(--ws-ink);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.ws-capability-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #70798b;
  font-size: 13px;
  line-height: 1.65;
}

@keyframes ws-cursor-blue {
  0%, 100% { transform: translate(0, 0); }
  45% { transform: translate(74px, 76px); }
  70% { transform: translate(96px, 124px); }
}

@keyframes ws-cursor-orange {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(-45px, -18px); }
  72% { transform: translate(-22px, 20px); }
}

@media (max-width: 1199px) {
  .ws-main-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ws-main-hero-preview {
    margin-top: 0;
  }

  .ws-main-hero__copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .ws-main-hero .sec-title .title,
  .ws-main-hero .heroTitleUp,
  .ws-main-hero .xb-hero-content .xb-item--content {
    max-width: 860px;
  }

  .ws-main-hero .xb-hero-content .xb-item--content {
    margin-right: auto;
    margin-left: auto;
  }

  .ws-main-hero .ws-hero-btns,
  .ws-main-hero .ws-hero-trust {
    justify-content: center;
  }

  .header-area--two {
    padding: 0 22px;
  }

  .header-area--two .header__wrap {
    grid-template-columns: 182px minmax(0, 1fr) 180px;
    gap: 12px;
    padding-left: 20px;
  }

  .header-area--two .xb-header-logo img {
    width: 150px;
  }

  .header-area--two .main-menu > ul > li > a {
    height: 40px;
    padding: 0 9px;
    font-size: 13px;
  }

  .header-area--two .xb-header-btn a.thm-btn.desk-btn {
    height: 46px;
    min-height: 46px;
    padding: 0 18px;
    font-size: 13px;
  }

  .header-area--two .ws-header-login {
    font-size: 13px;
  }

  .ws-workspace__body {
    grid-template-columns: 66px minmax(0, 1fr) 240px;
  }

  .ws-capabilities__intro {
    grid-template-columns: 0.55fr 1.45fr 0.85fr;
    gap: 28px;
  }

  .xb-brand-wrapper .xb-hero-brand-wrap.ws-capabilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .header-area--two {
    padding: 0 16px;
  }

  .header-area--two .header__wrap {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 66px;
    padding: 8px 10px 8px 20px;
  }

  .header-area--two .xb-header-logo img {
    width: 150px;
  }

  .header-area--two .xb-header-btn {
    display: none;
  }

  .hero-area--two .xb-hero-inner {
    padding: 92px 0 42px;
    border-radius: 0 !important;
  }

  .ws-main-hero {
    padding: 132px 0 58px;
  }

  .ws-main-hero .xb-hero-inner {
    padding: 0;
  }

  .hero-area--two .sec-title .title,
  .hero-area--two .heroTitleUp {
    font-size: clamp(44px, 7vw, 64px) !important;
  }

  .ws-workspace__body {
    grid-template-columns: 66px minmax(0, 1fr);
  }

  .ws-context-panel {
    display: none;
  }

  .ws-capabilities__intro {
    grid-template-columns: 1fr 2fr;
  }

  .ws-capabilities__intro p {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 90px;
  }

  .header-area--two {
    top: 12px;
    padding: 0;
  }

  .header-area--two .header__wrap {
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 22px;
  }

  .header-area--two .xb-header-logo img {
    width: 132px;
  }

  .hero-area--two {
    padding-top: 94px;
  }

  .hero-area--two .xb-hero-inner {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 74px 0 24px;
    border-radius: 0 !important;
  }

  .ws-main-hero {
    padding: 102px 0 48px;
  }

  .ws-main-hero .xb-hero-inner {
    padding: 0;
  }

  .ws-main-hero__grid {
    gap: 28px;
  }

  .ws-main-hero__copy .ws-section-kicker {
    margin-bottom: 18px;
  }

  .ws-hero-badge {
    max-width: 92%;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 11px;
  }

  .hero-area--two .sec-title .title,
  .hero-area--two .heroTitleUp {
    font-size: clamp(39px, 11vw, 52px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.055em !important;
  }

  .hero-area--two .sec-title .title br {
    display: none;
  }

  .hero-area--two .xb-hero-content .xb-item--content {
    margin: 16px auto 28px;
    padding: 0 8px;
    font-size: 15px;
  }

  .ws-hero-btns {
    flex-direction: column;
  }

  .ws-hero-btns .desk-btn--gradient,
  .ws-secondary-btn {
    width: min(100%, 300px);
  }

  .ws-hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
  }

  .ws-main-hero-preview {
    padding: 16px;
    border-radius: 24px;
  }

  .ws-main-hero-preview > .ws-wd-hero-visual__header {
    display: none;
  }

  .ws-main-hero-preview .ws-main-hero-preview__pipeline {
    width: 100%;
    grid-template-columns: repeat(5, 44px);
    justify-content: space-between;
    gap: 0;
    margin: 0 auto 14px;
  }

  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step,
  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-active {
    display: grid;
    width: 44px;
    min-height: 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step:hover {
    border-color: transparent;
    transform: none;
  }

  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step > span {
    position: relative;
    z-index: 2;
    width: 32px;
    height: 32px;
  }

  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step > strong,
  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step > i {
    display: none;
  }

  .ws-main-hero-step-ring {
    position: absolute;
    inset: 0;
    display: block;
    width: 44px;
    height: 44px;
    overflow: visible;
    transform: rotate(-90deg);
  }

  .ws-main-hero-step-ring circle {
    fill: none;
    stroke-width: 3;
  }

  .ws-main-hero-step-ring__track {
    stroke: rgba(36, 21, 173, 0.12);
  }

  .ws-main-hero-step-ring__value {
    stroke: var(--ws-blue);
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
  }

  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-active .ws-main-hero-step-ring__value {
    animation: wsHeroMobileStepRing var(--step-duration, 5.8s) linear forwards;
  }

  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-complete .ws-main-hero-step-ring__value {
    stroke: #28a876;
    stroke-dashoffset: 0;
  }

  .ws-main-hero-preview__body {
    grid-template-columns: 1fr;
  }

  .ws-wd-plan-card.ws-main-hero-preview__plan {
    grid-template-rows: auto auto minmax(0, 1fr);
    height: 260px;
    min-height: 260px;
  }

  .ws-main-hero-mobile-step-label {
    display: block;
    margin: 0 0 5px 2px;
    color: var(--ws-orange);
    font-size: 9px;
    font-style: normal;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    animation: wsHeroMobileStepLabel 280ms ease both;
  }

  .ws-wd-plan-card.ws-main-hero-preview__plan svg {
    height: 158px;
  }

  .ws-main-hero-photo-pin {
    top: calc(50% + 75px);
  }

  .ws-main-hero-preview__context {
    height: 300px;
    min-height: 300px;
  }

  .ws-main-hero-preview.is-stage-estimate .ws-main-hero-preview__context {
    height: 320px;
    min-height: 320px;
  }

  .ws-main-hero-preview.is-stage-install .ws-main-hero-preview__context {
    height: 330px;
    min-height: 330px;
  }

  .ws-main-hero-chat__thread {
    height: 100%;
  }

  .ws-main-hero-chat__attachment {
    max-width: 180px;
  }

  .ws-workspace-showcase {
    padding: 38px 0 58px;
  }

  .ws-workspace {
    margin-top: 44px;
    border-radius: 17px;
  }

  .ws-workspace__topbar {
    min-height: 64px;
    padding: 10px 12px;
  }

  .ws-workspace__project strong {
    font-size: 11px;
  }

  .ws-workspace__project div > span,
  .ws-presence-label {
    display: none;
  }

  .ws-avatar {
    width: 27px;
    height: 27px;
  }

  .ws-workspace__presence-photo {
    width: 27px;
    height: 27px;
  }

  .ws-workspace__body {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 390px;
  }

  .ws-workspace__rail {
      gap: 4px;
      padding: 16px 6px 16px;
  }

  .ws-workspace__rail button {
      width: 32px;
      height: 32px;
      border-radius: 9px;
  }

  .ws-workspace__rail::before {
      width: 38px;
      height: 272px;
  }

  .ws-workspace__rail img {
      width: 17px;
      height: 17px;
  }

  .ws-canvas-actionbar {
    display: none;
  }

  .ws-drawing {
    top: 88px;
    width: 88%;
  }

  .ws-hero-photo-marker {
    top: calc(61% + 20px);
    left: 39%;
    transform: translateX(-50%) scale(0.9);
  }

  .ws-hero-photo-tray {
    top: calc(69% + 20px);
    left: 39%;
    grid-template-columns: repeat(2, 72px);
    gap: 6px;
    padding: 6px;
    transform: translateX(-50%) scale(0.92);
    transform-origin: top center;
  }

  .ws-hero-photo-tray figure {
    height: 50px;
  }

  .ws-comment-card {
    display: none;
  }

  .ws-comment-pin {
    top: 42%;
    right: auto;
    left: 60%;
  }

  .ws-cursor--blue {
    left: 15%;
  }

  .ws-cursor--orange {
    right: 12%;
    bottom: 17%;
  }

  .ws-capabilities {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .ws-capabilities .xb-brand-top .text {
    white-space: normal;
  }

  .ws-brand-line-stage {
    height: 34px;
    min-width: 140px;
  }

  .ws-module-line::before,
  .ws-module-line::after {
    width: 34px;
  }

  .ws-module-pill {
    min-height: 24px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .ws-module-pill strong {
    font-size: 10px;
  }

  .ws-module-pill span:last-child {
    display: none;
  }

  .ws-capabilities__intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
  }

  .ws-capabilities__intro h2 {
    font-size: 38px;
  }

  .ws-capabilities__intro p {
    grid-column: auto;
    margin-top: 0;
  }

  .xb-brand-wrapper .xb-hero-brand-wrap.ws-capabilities__grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .ws-capability-card {
    min-height: 245px;
  }

  .ws-capability-card__number {
    margin-bottom: 40px;
  }
}

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

  .ws-cursor,
  .ws-module-line__track,
  .xb-animate-leftRight .line span {
    animation: none !important;
  }

  .ws-capability-card,
  .ws-hero-btns .desk-btn--gradient,
  .header-area--two .xb-header-btn a.thm-btn.desk-btn {
    transition: none;
  }
}

/* WindSketch impact stats */
.ws-impact-stats {
  padding: 0 0 59px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 100%
  );
}

.ws-impact-stats__intro {
  display: grid;
  grid-template-columns: 0.72fr 1.34fr 0.94fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 42px;
}

.ws-impact-stats__intro h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.05;
  font-weight: 560;
  letter-spacing: -0.045em;
}

.ws-impact-stats__intro p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 15px;
  line-height: 1.7;
}

.ws-impact-stats__inner {
  position: relative;
  overflow: hidden;
  padding: 10px 42px;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 252, 0.88)),
    radial-gradient(circle at 18% 0%, rgba(83, 58, 253, 0.08), transparent 32%);
  box-shadow: 0 26px 70px rgba(31, 42, 68, 0.08);
}

.ws-impact-stats__inner::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(122, 122, 122, 0.18) 0.8px, transparent 0.9px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 72%);
  pointer-events: none;
}

.ws-impact-stats__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ws-impact-stat {
  min-height: 190px;
  padding: 28px 24px;
  border-right: 1px solid rgba(13, 38, 150, 0.1);
}

.ws-impact-stat:last-child {
  border-right: 0;
}

.ws-impact-stat strong {
  display: block;
  color: var(--ws-blue);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.95;
  font-weight: 520;
  letter-spacing: -0.055em;
}

.ws-impact-stat span {
  display: block;
  margin-top: 15px;
  color: var(--ws-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-impact-stat p {
  margin: 10px 0 0;
  color: #71798a;
  font-size: 13px;
  line-height: 1.55;
}

/* WindSketch project execution */
.ws-project-execution {
  position: relative;
  margin-top: -1px;
  padding: 43px 0 22px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0) 12%,
      rgba(255, 255, 255, 0) 88%,
      #fff 100%
    ),
    radial-gradient(circle at 6% 20%, rgba(242, 140, 59, 0.07), transparent 28%),
    linear-gradient(180deg, #fff 0%, rgba(249, 250, 255, 0.9) 100%);
}

.ws-project-execution__heading {
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.95fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 38px;
}

.ws-project-execution__heading h2 {
  max-width: 770px;
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 590;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.ws-project-execution__heading p {
  max-width: 470px;
  margin: 6px 0 0;
  color: var(--ws-muted);
  font-size: 16px;
  line-height: 1.74;
}

.ws-project-execution__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 20px;
  align-items: stretch;
}

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

.ws-execution-card,
.ws-execution-visual {
  border: 1px solid rgba(224, 228, 240, 0.95);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.9));
  box-shadow: 0 22px 58px rgba(31, 42, 68, 0.07);
}

.ws-execution-card {
  position: relative;
  overflow: hidden;
  min-height: 262px;
  padding: 27px;
  border-radius: 24px;
}

.ws-execution-card::before {
  position: absolute;
  right: -46px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(83, 70, 255, 0.07);
  content: "";
}

.ws-execution-card:nth-child(2n)::before {
  background: rgba(242, 140, 59, 0.08);
}

.ws-execution-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(83, 70, 255, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(83, 70, 255, 0.08);
}

.ws-execution-card__icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.ws-execution-card__icon .is-primary {
  stroke: #0d2696;
}

.ws-execution-card__icon .is-accent {
  stroke: var(--ws-orange);
}

.ws-execution-card h3 {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 22px 0 11px;
  color: var(--ws-ink);
  font-size: 25px;
  line-height: 1.12;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.ws-execution-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #697287;
  font-size: 14px;
  line-height: 1.65;
}

.ws-execution-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
}

.ws-execution-visual::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 38, 150, 0.1) 1px, transparent 1.1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 72%);
  pointer-events: none;
}

.ws-execution-visual > * {
  position: relative;
  z-index: 1;
}

.ws-execution-visual__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(224, 228, 240, 0.92);
}

.ws-execution-visual__top div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ws-execution-visual__top span,
.ws-execution-roles > span {
  color: #8b94a7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-execution-visual__top strong {
  color: var(--ws-ink);
  font-size: 22px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.ws-execution-visual__top em {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(38, 184, 117, 0.1);
  color: #239661;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.ws-execution-visual__top em::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #29b875;
  content: "";
}

.ws-execution-pipeline {
  display: grid;
  gap: 10px;
}

.ws-execution-stage {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.ws-execution-stage:hover,
.ws-execution-stage.is-selected {
  border-color: rgba(83, 70, 255, 0.32);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 13px 30px rgba(31, 42, 68, 0.08);
  transform: translateY(-1px);
}

.ws-execution-stage.is-selected {
  box-shadow:
    0 15px 34px rgba(31, 42, 68, 0.1),
    inset 3px 0 0 var(--ws-blue);
}

.ws-execution-stage span {
  color: #59647a;
  font-size: 13px;
  font-weight: 760;
}

.ws-execution-stage strong {
  display: grid;
  width: 37px;
  height: 29px;
  place-items: center;
  border-radius: 999px;
  background: rgba(83, 70, 255, 0.09);
  color: var(--ws-blue);
  font-size: 12px;
  font-weight: 850;
}

.ws-execution-stage.is-blocked {
  border-color: rgba(242, 140, 59, 0.34);
  background: rgba(242, 140, 59, 0.08);
}

.ws-execution-stage.is-blocked.is-selected,
.ws-execution-stage.is-blocked:hover {
  border-color: rgba(242, 140, 59, 0.44);
  background: rgba(255, 248, 242, 0.96);
  box-shadow:
    0 15px 34px rgba(31, 42, 68, 0.1),
    inset 3px 0 0 var(--ws-orange);
}

.ws-execution-stage.is-blocked strong {
  background: var(--ws-orange);
  color: #fff;
}

.ws-execution-stage.is-active {
  border-color: rgba(83, 70, 255, 0.25);
}

.ws-execution-stage.is-queued {
  opacity: 0.72;
}

.ws-execution-alert,
.ws-execution-thread {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(242, 140, 59, 0.22);
  border-radius: 18px;
  background: rgba(255, 248, 242, 0.82);
}

.ws-execution-alert > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ws-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.ws-execution-alert.is-done,
.ws-execution-alert.is-active,
.ws-execution-alert.is-queued {
  border-color: rgba(83, 70, 255, 0.18);
  background: rgba(83, 70, 255, 0.055);
}

.ws-execution-alert.is-done > span,
.ws-execution-alert.is-active > span,
.ws-execution-alert.is-queued > span {
  background: var(--ws-blue);
}

.ws-execution-alert.is-active {
  border-color: rgba(38, 184, 117, 0.22);
  background: rgba(38, 184, 117, 0.07);
}

.ws-execution-alert.is-active > span {
  background: #29b875;
}

.ws-execution-alert strong,
.ws-execution-thread strong {
  display: block;
  color: var(--ws-ink);
  font-size: 13px;
  font-weight: 800;
}

.ws-execution-alert em {
  display: block;
  margin-bottom: 5px;
  color: var(--ws-blue);
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-execution-alert.is-blocked em {
  color: #d77935;
}

.ws-execution-alert.is-active em {
  color: #239661;
}

.ws-execution-alert p,
.ws-execution-thread p {
  margin: 3px 0 0;
  color: #677287;
  font-size: 12px;
  line-height: 1.55;
}

.ws-execution-roles {
  margin-top: auto;
  padding-top: 4px;
}

.ws-execution-roles div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.ws-execution-roles em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #59647a;
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

.ws-execution-thread {
  border-color: rgba(83, 70, 255, 0.18);
  background: rgba(83, 70, 255, 0.055);
}

.ws-execution-thread__dot {
  width: 10px;
  height: 10px;
  margin: 6px 0 0 12px;
  border-radius: 50%;
  background: var(--ws-blue);
  box-shadow: 0 0 0 6px rgba(83, 70, 255, 0.1);
}

/* WindSketch add-ons marketplace */
.ws-addons-marketplace {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(215, 221, 238, 0.95);
  border-radius: 32px;
  background:
    radial-gradient(circle at 3% 6%, rgba(83, 70, 255, 0.09), transparent 25%),
    radial-gradient(circle at 97% 94%, rgba(242, 140, 59, 0.11), transparent 28%),
    rgba(250, 251, 255, 0.9);
  box-shadow: 0 28px 76px rgba(31, 42, 68, 0.09);
}

.ws-addons-marketplace::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 38, 150, 0.085) 0.8px, transparent 0.9px);
  background-size: 19px 19px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 64%);
  pointer-events: none;
}

.ws-addons-marketplace > * {
  position: relative;
  z-index: 1;
}

.ws-addons-catalog {
  padding: 12px;
}

.ws-addons-catalog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 4px 20px;
}

.ws-addons-catalog__top div {
  display: grid;
  gap: 5px;
}

.ws-addons-catalog__top span,
.ws-addon-detail__eyebrow {
  color: var(--ws-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-addons-catalog__top strong {
  color: var(--ws-ink);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.ws-addons-catalog__top em {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(83, 70, 255, 0.14);
  border-radius: 999px;
  color: #667087;
  background: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
}

.ws-addons-catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ws-addons-mobile-nav {
  display: none;
}

.ws-addon-option {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 128px;
  align-content: space-between;
  gap: 15px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(218, 223, 237, 0.94);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.ws-addon-option::before {
  position: absolute;
  right: -32px;
  bottom: -38px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(83, 70, 255, 0.055);
  content: "";
  transition: transform 260ms ease, background 260ms ease;
}

.ws-addon-option:hover,
.ws-addon-option.is-active {
  border-color: rgba(83, 70, 255, 0.28);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 35px rgba(31, 42, 68, 0.09);
  transform: translateY(-2px);
}

.ws-addon-option.is-active {
  box-shadow:
    0 18px 38px rgba(31, 42, 68, 0.1),
    inset 3px 0 0 var(--ws-blue);
}

.ws-addon-option:hover::before,
.ws-addon-option.is-active::before {
  background: rgba(242, 140, 59, 0.1);
  transform: scale(1.25);
}

.ws-addon-option:focus-visible {
  outline: 3px solid rgba(83, 70, 255, 0.2);
  outline-offset: 2px;
}

.ws-addon-option__icon,
.ws-addon-detail__icon {
  position: relative;
  display: grid;
  place-items: center;
}

.ws-addon-option__ring {
  display: none;
}

.ws-addon-option__icon {
  width: 42px;
  height: 42px;
}

.ws-addon-option__icon img,
.ws-addon-option__icon svg {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.ws-addon-option__copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 4px;
}

.ws-addon-option__copy strong {
  overflow: hidden;
  color: var(--ws-ink);
  font-size: 14px;
  font-weight: 670;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-addon-option__copy small {
  color: #7d869a;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
}

.ws-addon-option__state {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d7dcea;
  box-shadow: 0 0 0 4px rgba(215, 220, 234, 0.26);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.ws-addon-option.is-active .ws-addon-option__state {
  background: var(--ws-orange);
  box-shadow: 0 0 0 4px rgba(242, 140, 59, 0.13);
}

.ws-addon-detail {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(205, 213, 234, 0.98);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 140, 59, 0.12), transparent 31%),
    linear-gradient(155deg, #fff 0%, #f9faff 72%, #fffaf5 100%);
  box-shadow: 0 24px 58px rgba(31, 42, 68, 0.09);
}

.ws-addon-detail::before {
  position: absolute;
  top: -94px;
  right: -78px;
  width: 235px;
  height: 235px;
  border: 1px solid rgba(83, 70, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(83, 70, 255, 0.025),
    0 0 0 52px rgba(83, 70, 255, 0.018);
  content: "";
  pointer-events: none;
}

.ws-addon-detail > * {
  position: relative;
  z-index: 1;
}

.ws-addon-detail__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  grid-area: 1 / 1;
  visibility: hidden;
}

.ws-addon-detail__content.is-active {
  visibility: visible;
  animation: wsAddonDetailEnter 360ms cubic-bezier(.2, .75, .25, 1) both;
}

.ws-addon-detail__header {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(218, 223, 237, 0.88);
}

.ws-addon-detail__icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(83, 70, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.07);
}

.ws-addon-detail__icon img,
.ws-addon-detail__icon svg {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.ws-addon-detail__header div {
  display: grid;
  gap: 5px;
}

.ws-addon-detail__header div > span {
  color: var(--ws-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-addon-detail__header div > strong {
  color: var(--ws-ink);
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.ws-addon-detail__header > em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #23875c;
  background: rgba(38, 184, 117, 0.1);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ws-addon-detail__body {
  padding: 28px 0 22px;
}

.ws-addon-detail__body h3 {
  max-width: 520px;
  margin: 12px 0 13px;
  color: var(--ws-ink);
  font-size: clamp(28px, 2.7vw, 39px);
  font-weight: 530;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.ws-addon-detail__body > p {
  margin: 0;
  color: #687287;
  font-size: 14px;
  line-height: 1.68;
}

.ws-addon-detail__body ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ws-addon-detail__body li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #59647a;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.5;
}

.ws-addon-detail__body li > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--ws-blue), #5946ff);
  font-size: 10px;
  font-weight: 900;
  box-shadow: 0 7px 16px rgba(83, 70, 255, 0.18);
}

@keyframes wsAddonDetailEnter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wsAddonMobileProgress {
  from { stroke-dashoffset: 1; }
  to { stroke-dashoffset: 0; }
}

@media (max-width: 1199px) {
  .ws-addons-marketplace {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
  }

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

@media (max-width: 991px) {
  .ws-addons-marketplace {
    grid-template-columns: 1fr;
  }

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

  .ws-addon-detail {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .ws-addons-marketplace {
    padding: 10px;
    border-radius: 24px;
  }

  .ws-addons-catalog {
    min-width: 0;
    padding: 8px;
  }

  .ws-addons-catalog__grid {
    display: none;
  }

  .ws-addons-mobile-nav {
    display: flex;
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 4px 2px 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .ws-addons-mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .ws-addon-option {
    display: grid;
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
    flex: 0 0 58px;
    place-items: center;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    scroll-snap-align: center;
    transform: none;
  }

  .ws-addon-option::before,
  .ws-addon-option__copy,
  .ws-addon-option__state {
    display: none;
  }

  .ws-addon-option:hover,
  .ws-addon-option.is-active {
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .ws-addon-option__icon {
    position: absolute;
    inset: 7px;
    z-index: 2;
    display: flex;
    width: auto;
    height: auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(83, 70, 255, 0.11);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 20px rgba(31, 42, 68, 0.08);
  }

  .ws-addon-option__icon img,
  .ws-addon-option__icon svg {
    display: block;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    margin: 0;
    object-position: center;
    transform: translateY(2px);
  }

  .ws-addon-option__ring {
    position: absolute;
    inset: 0;
    display: block;
    width: 58px;
    height: 58px;
    overflow: visible;
    transform: rotate(-90deg);
  }

  .ws-addon-option__ring circle {
    fill: none;
    stroke-width: 3;
  }

  .ws-addon-option__ring-track {
    stroke: rgba(83, 70, 255, 0.12);
  }

  .ws-addon-option__ring-value {
    stroke: var(--ws-blue);
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    stroke-linecap: round;
  }

  .ws-addon-option.is-active .ws-addon-option__ring-value {
    animation: wsAddonMobileProgress var(--addon-duration, 8s) linear forwards;
  }

  .ws-addon-option.is-complete .ws-addon-option__ring-value {
    stroke: #28a876;
    stroke-dashoffset: 0;
  }

  .ws-addon-detail {
    min-width: 0;
    padding: 22px 18px;
    border-radius: 21px;
  }

  .ws-addon-detail__header {
    grid-template-columns: 52px 1fr;
  }

  .ws-addon-detail__icon {
    width: 52px;
    height: 52px;
  }

  .ws-addon-detail__header > em {
    display: none;
  }

}

@media (max-width: 479px) {
  .ws-addons-catalog__top {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (prefers-reduced-motion: reduce) {
  .ws-addon-detail__content.is-active {
    animation: none;
  }
}

/* WindSketch field operations */
.ws-field-ops {
  position: relative;
  padding: 126px 0 132px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(249, 250, 255, 0.68) 50%,
    #fff 100%
  );
}

.ws-field-ops::before {
  position: absolute;
  top: 7%;
  right: -150px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(83, 70, 255, 0.08);
  filter: blur(14px);
  content: "";
  pointer-events: none;
}

.ws-field-ops__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.7fr 1.35fr 0.95fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 54px;
}

.ws-field-ops__heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.ws-field-ops__heading > p {
  max-width: 470px;
  margin: 6px 0 0;
  color: var(--ws-muted);
  font-size: 17px;
  line-height: 1.75;
}

.ws-field-ops__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(285px, 0.72fr) minmax(0, 1.48fr);
  gap: 42px;
  min-height: 700px;
  padding: 48px;
  border: 1px solid #e3e4ec;
  border-radius: 36px;
  background:
    radial-gradient(circle at 78% 15%, rgba(83, 58, 253, 0.11), transparent 34%),
    radial-gradient(circle at 4% 100%, rgba(244, 148, 77, 0.11), transparent 30%),
    #f7f7fb;
  box-shadow: 0 30px 75px rgba(38, 43, 70, 0.1);
  overflow: hidden;
}

.ws-field-benefits {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ws-field-benefit {
  position: relative;
  display: grid;
  grid-template-columns: 34px 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid #dddfe9;
}

.ws-field-benefit:first-child {
  padding-top: 0;
}

.ws-field-benefit:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ws-field-benefit__index {
  padding-top: 11px;
  color: #a1a5b5;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.ws-field-benefit__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(83, 58, 253, 0.14);
  border-radius: 15px;
  background: #fff;
  color: var(--ws-blue);
  box-shadow: 0 8px 20px rgba(83, 58, 253, 0.08);
}

.ws-field-benefit__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ws-field-benefit__icon svg .is-primary {
  stroke: #0d2696;
}

.ws-field-benefit__icon svg .is-accent {
  stroke: var(--ws-orange);
}

.ws-field-benefit h3 {
  margin: 3px 0 7px;
  color: var(--ws-ink);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.ws-field-benefit p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 13px;
  line-height: 1.7;
}

.ws-field-visual {
  position: relative;
  min-width: 0;
  min-height: 604px;
}

.ws-field-dashboard {
  position: absolute;
  inset: 20px 0 0 5%;
  padding: 24px;
  border: 1px solid #e2e3eb;
  border-radius: 26px;
  background: rgba(249, 250, 255, 0.97);
  box-shadow: 0 28px 65px rgba(44, 50, 78, 0.16);
  overflow: hidden;
}

.ws-field-dashboard::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  content: "";
  pointer-events: none;
}

.ws-field-dashboard__topbar,
.ws-field-dashboard__topbar > div,
.ws-field-dashboard__summary > div,
.ws-field-activity__item,
.ws-mobile-statusbar,
.ws-mobile-statusbar > div,
.ws-mobile-project,
.ws-mobile-tabs,
.ws-field-floating-card {
  display: flex;
  align-items: center;
}

.ws-field-dashboard__topbar {
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8eaf2;
}

.ws-field-dashboard__topbar > div {
  gap: 11px;
}

.ws-field-dashboard__logo {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  padding: 7px 4px;
  border: 1px solid rgba(12, 39, 150, 0.1);
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 7px 16px rgba(12, 39, 150, 0.1);
}

.ws-field-dashboard__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.ws-field-dashboard__topbar strong,
.ws-field-dashboard__topbar span,
.ws-field-activity__item strong,
.ws-field-activity__item span {
  display: block;
}

.ws-field-dashboard__topbar strong {
  color: #1d2436;
  font-size: 13px;
  line-height: 1.3;
}

.ws-field-dashboard__topbar > div span:last-child {
  margin-top: 3px;
  color: #9399aa;
  font-size: 10px;
}

.ws-live-status {
  display: inline-flex !important;
  gap: 6px;
  align-items: center;
  border-radius: 999px;
  font-size: 10px !important;
  font-weight: 600;
}

.ws-live-status {
  padding: 7px 10px;
  background: #e8f9f0;
  color: #21895a !important;
}

.ws-live-status i {
  display: inline-block;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.ws-live-status i {
  background: #29b875;
  box-shadow: 0 0 0 5px rgba(41, 184, 117, 0.13);
  animation: ws-live-pulse 2s ease-out infinite;
}

.ws-field-dashboard__summary {
  padding: 18px 0 15px;
}

.ws-field-dashboard__summary > div:first-child {
  justify-content: space-between;
}

.ws-field-dashboard__summary span,
.ws-field-dashboard__summary p {
  color: #8b91a2;
  font-size: 10px;
}

.ws-field-dashboard__summary strong {
  color: #3021bb;
  font-size: 19px;
}

.ws-field-progress {
  height: 6px;
  margin-top: 10px;
  width: 66%;
  min-width: 320px;
  border-radius: 999px;
  background: #e7e8f1;
  overflow: hidden;
}

.ws-field-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5445ff, #7a70ff);
  transform-origin: left;
  animation: ws-field-progress 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ws-field-dashboard__summary p {
  margin: 7px 0 0;
}

.ws-field-media {
  width: 66%;
  min-width: 320px;
  height: 150px;
}

.ws-field-media__preview {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.ws-field-media__preview {
  border: 1px solid #dfe1e9;
  background: #f4f4f6;
}

.ws-field-media__scene {
  position: absolute;
  inset: 0;
  background-color: #f2f2f4;
  background-image: radial-gradient(#c8cad2 0.9px, transparent 0.9px);
  background-size: 9px 9px;
}

.ws-field-media__scene svg {
  display: block;
  width: calc(100% - clamp(98px, 24%, 118px));
  height: 100%;
  margin-left: clamp(98px, 24%, 118px);
}

.ws-plan-shell {
  fill: rgba(255, 255, 255, 0.92);
  stroke: #2415ad;
  stroke-width: 2.4;
  stroke-linejoin: miter;
}

.ws-plan-window {
  fill: #e9e7ff;
  stroke: #2415ad;
  stroke-width: 1.2;
}

.ws-plan-door {
  fill: none;
  stroke: var(--ws-red);
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.ws-plan-door__base {
  stroke-width: 3;
}

.ws-plan-labels text {
  fill: #20222c;
  font-family: Georgia, serif;
  font-size: 7px;
  font-weight: 700;
}

.ws-field-media__preview > div:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  right: auto;
  bottom: 8px;
  left: 9px;
  width: 132px;
  padding: 6px 9px;
  border: 1px solid rgba(224, 225, 234, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 5px 12px rgba(35, 39, 60, 0.08);
  backdrop-filter: blur(6px);
}

.ws-field-photo-marker {
  position: absolute;
  top: 40%;
  left: clamp(179px, 39%, 186px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 5px;
  border: 1px solid rgba(13, 38, 150, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px rgba(33, 37, 58, 0.14);
}

.ws-field-photo-marker svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.ws-field-photo-marker svg .is-primary {
  stroke: #0d2696;
}

.ws-field-photo-marker svg .is-accent {
  stroke: var(--ws-orange);
}

.ws-field-photo-marker em {
  display: grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: var(--ws-orange);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.ws-field-media__preview strong,
.ws-field-media__preview > div:last-child span {
  display: block;
  color: #252b3d;
  font-size: 11px;
  line-height: 1.25;
}

.ws-field-media__preview > div:last-child span {
  margin-top: 0;
  color: #9398a8;
  font-size: 8.5px;
}

.ws-field-media__preview > div:last-child span + span {
  margin-top: -1px;
}

.ws-field-gallery-card {
  width: 66%;
  min-width: 320px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #e2e4ec;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(45, 50, 80, 0.08);
}

.ws-field-gallery-card__header,
.ws-field-gallery-author {
  display: flex;
  align-items: center;
}

.ws-field-gallery-card__header {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.ws-field-gallery-card__header strong,
.ws-field-gallery-card__header span,
.ws-field-gallery-author em {
  display: block;
}

.ws-field-gallery-card__header > div:first-child strong {
  color: #242a3b;
  font-size: 10.5px;
  line-height: 1.2;
}

.ws-field-gallery-card__header > div:first-child span {
  margin-top: 1px;
  color: #8b91a2;
  font-size: 8.5px;
}

.ws-field-gallery-author {
  gap: 6px;
  flex: 0 0 auto;
}

.ws-field-gallery-author > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ws-blue), var(--ws-orange));
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  box-shadow: 0 7px 13px rgba(83, 58, 253, 0.16);
}

.ws-field-gallery-author strong {
  color: #242a3b;
  font-size: 8px;
  line-height: 1.1;
}

.ws-field-gallery-author em {
  color: #969baa;
  font-size: 7px;
  font-style: normal;
}

.ws-field-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: 68px;
}

.ws-field-gallery__item {
  position: relative;
  border: 1px solid #e0e2e9;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f2f2f5;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.45);
}

.ws-field-gallery__item::after {
  position: absolute;
  content: "";
}

.ws-field-gallery__item::after {
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(18, 24, 36, .3));
}

.ws-field-gallery__item img {
  object-fit: cover;
}

.ws-field-gallery__item i {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  display: inline-flex;
  min-width: 31px;
  height: 16px;
  padding: 0 5px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  color: #252b3d;
  font-size: 6.5px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}


.ws-field-activity {
  padding-top: 1px;
}

.ws-field-activity__label {
  display: block;
  margin-bottom: 5px;
  color: #8b91a2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ws-field-activity__item {
  gap: 9px;
  align-items: flex-start;
  min-height: 43px;
  padding-top: 12px;
  border-bottom: 1px solid #eaebf1;
}

.ws-field-activity__item:first-of-type {
  transform: translateY(-20px);
}

.ws-field-activity__item:last-child {
  border-bottom: 0;
}

.ws-field-activity__item > i {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
}

.ws-field-activity__item > i.is-blue { background: #5a4cff; }
.ws-field-activity__item > i.is-orange { background: #f28c5c; }
.ws-field-activity__item > i.is-green { background: #31b877; }

.ws-field-activity__item > div {
  min-width: 0;
  margin-right: auto;
}

.ws-field-activity__item strong {
  overflow: hidden;
  color: #2b3142;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-field-activity__item span,
.ws-field-activity__item time {
  color: #a0a5b4;
  font-size: 8.5px;
}

.ws-field-activity__item span {
  margin-top: 1px;
}

.ws-field-phone {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: -24px;
  width: 264px;
  height: 520px;
  padding: 0;
  border: 5px solid #22293b;
  border-radius: 33px;
  background: #fff;
  box-shadow: 0 28px 55px rgba(2, 7, 21, 0.36);
  overflow: hidden;
  animation: ws-field-phone-float 6s ease-in-out infinite;
}

.ws-mobile-statusbar {
  justify-content: space-between;
  height: 38px;
  padding: 9px 17px 4px;
  color: #111;
}

.ws-mobile-statusbar strong {
  font-size: 11px;
  line-height: 1;
}

.ws-mobile-statusbar > div {
  gap: 5px;
}

.ws-mobile-statusbar__left {
  display: flex;
  align-items: center;
}

.ws-mobile-whatsapp svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #111;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.ws-mobile-status-icon {
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: #111;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ws-mobile-status-icon--key {
  width: 14px;
  height: 12px;
}

.ws-mobile-status-icon--bluetooth {
  width: 9px;
  height: 13px;
}

.ws-mobile-status-icon--signal {
  width: 16px;
  height: 12px;
  fill: #111;
  stroke: none;
}

.ws-mobile-status-icon--wifi {
  width: 16px;
  height: 13px;
  stroke-width: 2.3;
}

.ws-mobile-battery {
  display: block;
  flex: 0 0 auto;
  width: 27px;
  height: 13px;
}

.ws-mobile-battery__body {
  fill: #111;
}

.ws-mobile-battery__tip {
  fill: #6d6d70;
}

.ws-mobile-battery text {
  fill: #fff;
  font: 700 9px Arial, sans-serif;
}

.ws-mobile-project {
  gap: 10px;
  padding: 8px 15px 9px;
}

.ws-mobile-project button {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0 2px 2px 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f3f3f5;
  color: #11151d;
  font: 300 24px/1 Arial, sans-serif;
}

.ws-mobile-project div {
  min-width: 0;
}

.ws-mobile-project strong,
.ws-mobile-project span {
  display: block;
}

.ws-mobile-project strong {
  overflow: hidden;
  color: #111;
  font-size: 14.5px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-mobile-project span {
  margin-top: 4px;
  color: #62636b;
  font-size: 9px;
}

.ws-mobile-tabs {
  justify-content: space-between;
  margin: 0 12px;
  border-bottom: 1px solid #dedfe4;
  color: #51525a;
  font-size: 9.5px;
}

.ws-mobile-tabs > * {
  position: relative;
  padding: 9px 4px;
  white-space: nowrap;
}

.ws-mobile-tabs strong {
  color: #111;
  font-weight: 600;
}

.ws-mobile-tabs strong::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #0d74b9;
  content: "";
}

.ws-mobile-overview {
  display: grid;
  gap: 6px;
  padding: 9px 12px 5px;
}

.ws-mobile-overview__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ws-mobile-card {
  padding: 9px 10px;
  border: 1px solid #e1e2e6;
  border-radius: 14px;
  background: #fff;
}

.ws-mobile-card span,
.ws-mobile-card strong {
  display: block;
}

.ws-mobile-card span {
  color: #555760;
  font-size: 8.5px;
  font-weight: 600;
}

.ws-mobile-card strong {
  margin-top: 4px;
  color: #111;
  font-size: 11.5px;
  line-height: 1.25;
}

.ws-mobile-card--address strong {
  margin-top: 0;
  font-size: 12.4px;
}

.ws-mobile-card--address span {
  margin-top: 7px;
}

.ws-mobile-card--location strong {
  font-size: 9.5px;
}

.ws-mobile-areas {
  padding: 1px 12px 86px;
}

.ws-mobile-areas h3 {
  margin: 0 0 8px;
  color: #11151d;
  font-size: 15px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.ws-mobile-area-card {
  width: 132px;
  padding: 7px 7px 10px;
  border: 1px solid #e7e8ed;
  border-radius: 17px;
  background: #f7f8fb;
  box-shadow: 0 8px 20px rgba(22, 28, 42, 0.08);
}

.ws-mobile-area-map {
  display: grid;
  height: 86px;
  place-items: center;
  border-radius: 9px;
  background: #fff;
  overflow: hidden;
}

.ws-mobile-area-map svg {
  width: 100%;
  height: 100%;
}

.ws-app-area-map__wall {
  fill: none;
  stroke: #0d2696;
  stroke-linecap: square;
  stroke-width: 4;
}

.ws-app-area-map__window rect {
  fill: #fff;
  stroke: #0d2696;
  stroke-width: 1.7;
}

.ws-app-area-map__labels text {
  fill: #11151d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ws-mobile-area-card > strong,
.ws-mobile-area-card > span {
  display: block;
}

.ws-mobile-area-card > strong {
  margin-top: 8px;
  color: #11151d;
  font-size: 13.5px;
  line-height: 1.1;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.ws-mobile-area-card > span {
  margin-top: 6px;
  color: #555760;
  font-size: 10.5px;
  font-weight: 650;
}

.ws-mobile-bottom-nav {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 18px;
  left: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 50px 1fr 1fr;
  height: 56px;
  align-items: center;
  border: 1px solid #ebecef;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(20, 25, 40, 0.18);
}

.ws-mobile-bottom-nav button {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 0;
  background: transparent;
  color: #0d2696;
}

.ws-mobile-bottom-nav button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ws-mobile-bottom-nav button img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.ws-mobile-create-area-icon {
  object-fit: contain;
}

.ws-mobile-bottom-nav button svg .is-primary {
  stroke: #0d2696;
}

.ws-mobile-bottom-nav button svg .is-accent {
  stroke: var(--ws-orange);
}

.ws-mobile-bottom-nav__plus {
  position: relative;
  display: grid;
  place-items: center;
}

.ws-mobile-bottom-nav__plus span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #0d2696;
  color: #fff;
  font-size: 34px;
  font-weight: 360;
  line-height: 1;
  transform: none;
  box-shadow: 0 12px 24px rgba(13, 38, 150, 0.24);
}

.ws-mobile-home-indicator {
  position: absolute;
  bottom: 7px;
  left: 50%;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: #555;
  transform: translateX(-50%);
}

.ws-field-floating-card {
  position: absolute;
  z-index: 4;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 15px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 38px rgba(8, 14, 31, 0.2);
  backdrop-filter: blur(12px);
  animation: ws-field-card-float 5.5s ease-in-out infinite;
}

.ws-field-floating-card strong,
.ws-field-floating-card span {
  display: block;
}

.ws-field-floating-card strong {
  color: #242a3b;
  font-size: 10px;
}

.ws-field-floating-card div span,
.ws-field-floating-card time {
  color: #969baa;
  font-size: 8px;
}

.ws-field-floating-card--sync {
  top: 0;
  right: 25px;
  animation-delay: -2.4s;
}

.ws-field-floating-card--sync > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #e5f8ee;
  color: #239661;
  font-size: 11px;
}

@keyframes ws-live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(41, 184, 117, 0.35); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(41, 184, 117, 0); }
}

@keyframes ws-field-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes ws-field-phone-float {
  0%, 100% { transform: translateY(0) rotate(0.8deg); }
  50% { transform: translateY(-8px) rotate(-0.4deg); }
}

@keyframes ws-field-card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* WindSketch estimating */
.ws-estimating {
  padding: 82px 0 24px;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(249, 250, 255, 0.94) 52%,
    #fff 100%
  );
}

.ws-estimating__heading {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr 0.92fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 34px;
}

.ws-estimating__heading h2 {
  max-width: 650px;
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 560;
  letter-spacing: -0.05em;
}

.ws-estimating__heading p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 15px;
  line-height: 1.72;
}

.ws-estimating__heading p + p {
  margin-top: 10px;
}

.ws-estimating__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 26px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 10%, rgba(83, 70, 255, 0.08), transparent 34%),
    radial-gradient(circle at 94% 18%, rgba(242, 140, 59, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.9));
  box-shadow: 0 24px 72px rgba(31, 42, 68, 0.08);
}

.ws-estimating__panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(13, 38, 150, 0.12) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 72%);
  content: "";
}

.ws-estimating__summary {
  position: relative;
  z-index: 1;
  padding: 12px 0 12px 4px;
}

.ws-estimating__summary > span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(83, 70, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ws-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-estimating__summary h3 {
  max-width: 360px;
  margin-top: 16px;
  color: var(--ws-ink);
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.08;
  font-weight: 590;
  letter-spacing: -0.045em;
}

.ws-estimating__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.ws-estimating__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #58637a;
  font-size: 11px;
  font-weight: 720;
}

.ws-estimating__marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12px 0;
  border-radius: 24px;
  background: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.ws-estimating__track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  gap: 14px;
  animation: ws-estimating-marquee 28s linear infinite;
}

.ws-estimating__marquee:hover .ws-estimating__track {
  animation-play-state: paused;
}

.ws-estimating-logo {
  display: grid;
  width: 178px;
  height: 92px;
  flex: 0 0 auto;
  place-items: center;
  padding: 20px 24px;
  border: 1px solid rgba(224, 228, 240, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.ws-estimating-logo img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: saturate(0.95) contrast(1.03);
}

@keyframes ws-estimating-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

/* WindSketch pricing */
.ws-pricing {
  padding: 82px 0 130px;
  background: linear-gradient(
    180deg,
    #fff 0%,
    rgba(248, 250, 255, 0.86) 52%,
    #fff 100%
  );
}

.ws-pricing__heading {
  display: grid;
  grid-template-columns: 0.72fr 1.34fr 0.94fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 32px;
}

.ws-pricing__heading h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 560;
  letter-spacing: -0.05em;
}

.ws-pricing__heading p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 15px;
  line-height: 1.7;
}

.ws-pricing__billing {
  display: flex;
  width: fit-content;
  margin: 0 auto 34px;
  padding: 5px;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(31, 42, 68, 0.06);
}

.ws-pricing__billing button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #697287;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ws-pricing__billing button.is-active {
  color: var(--ws-blue);
  background: rgba(83, 70, 255, 0.1);
}

.ws-pricing__billing button span {
  display: inline-grid;
  min-height: 18px;
  padding: 0 7px;
  place-items: center;
  border-radius: 999px;
  background: rgba(242, 140, 59, 0.13);
  color: var(--ws-orange);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.ws-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ws-pricing-card {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 34px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.9));
  box-shadow: 0 20px 54px rgba(31, 42, 68, 0.07);
}

.ws-pricing-card.is-featured {
  border-color: rgba(83, 70, 255, 0.24);
  box-shadow: 0 28px 72px rgba(49, 94, 251, 0.12);
  transform: translateY(-14px);
}

.ws-pricing-card__badge {
  position: absolute;
  top: 24px;
  right: -42px;
  width: 210px;
  padding: 7px 0;
  background: var(--ws-blue-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(38deg);
}

.ws-pricing-card__top {
  min-height: 178px;
}

.ws-pricing-card__eyebrow {
  display: block;
  color: var(--ws-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-pricing-card h3 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  color: var(--ws-ink);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.ws-pricing-card__plan-name::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--ws-orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.ws-pricing-card__plan-name:hover::after {
  transform: scaleX(1);
}

.ws-pricing-card p {
  margin-top: 12px;
  color: #697287;
  font-size: 13px;
  line-height: 1.65;
}

.ws-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.ws-pricing-card__price strong {
  color: var(--ws-blue);
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1;
  font-weight: 620;
  letter-spacing: -0.055em;
}

.ws-pricing-card__price span {
  color: #48536a;
  font-size: 12px;
}

.ws-pricing-card__cta {
  display: grid;
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  place-items: center;
  border: 1px solid rgba(83, 70, 255, 0.42);
  border-radius: 12px;
  background: #fff;
  color: var(--ws-blue);
  font-size: 13px;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.ws-pricing-card.is-featured .ws-pricing-card__cta,
.ws-pricing-card__cta:hover {
  background: var(--ws-blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(49, 94, 251, 0.2);
  transform: translateY(-1px);
}

.ws-pricing-card__note {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(224, 228, 240, 0.92);
  color: var(--ws-ink);
  font-size: 12px;
  font-weight: 800;
}

.ws-pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ws-pricing-card li {
  position: relative;
  padding-left: 24px;
  color: #4f5a70;
  font-size: 13px;
  line-height: 1.45;
}

.ws-pricing-card li.is-feature-summary {
  color: var(--ws-ink);
  font-weight: 800;
}

.ws-pricing-card li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--ws-blue);
  content: "✓";
  font-weight: 900;
}

/* WindSketch blog */
.ws-blog-highlights {
  position: relative;
  overflow: hidden;
  padding: 72px 0 94px;
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0) 12%,
      rgba(255, 255, 255, 0) 88%,
      #fff 100%
    ),
    radial-gradient(circle at 12% 10%, rgba(242, 140, 59, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.86), #fff 100%);
}

.ws-blog-highlights__heading,
.ws-blog-hero__inner,
.ws-blog-related__heading {
  display: grid;
  grid-template-columns: 0.72fr 1.34fr 0.94fr;
  gap: 36px;
  align-items: start;
}

.ws-blog-highlights__heading h2,
.ws-blog-hero__inner h1,
.ws-blog-related__heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 560;
  letter-spacing: -0.052em;
}

.ws-blog-highlights__heading p,
.ws-blog-hero__inner p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 15px;
  line-height: 1.72;
}

.ws-blog-carousel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  margin-top: 42px;
  padding: 6px 0 0;
}

.ws-blog-highlights__action {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.ws-blog-highlights__action a,
.ws-blog-card__footer a,
.ws-blog-detail__back {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(224, 228, 240, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ws-blue);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(31, 42, 68, 0.06);
}

.ws-blog-detail__back svg {
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ws-blog-page,
.ws-blog-detail-page {
  background: var(--ws-page-background);
}

.ws-blog-hero {
  padding: 188px 0 58px;
}

.ws-blog-listing {
  padding: 0 0 100px;
}

.ws-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.ws-blog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(83, 70, 255, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.9));
  box-shadow: 0 22px 58px rgba(31, 42, 68, 0.07);
}

.ws-blog-card--featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  margin-bottom: 18px;
}

.ws-blog-card__media {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 230px;
  place-items: center;
  background:
    radial-gradient(rgba(13, 38, 150, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, rgba(83, 70, 255, 0.08), rgba(242, 140, 59, 0.08));
  background-size: 20px 20px, auto;
}

.ws-blog-card--featured .ws-blog-card__media {
  min-height: 390px;
}

.ws-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ws-blog-card:hover .ws-blog-card__media img {
  transform: scale(1.035);
}

.ws-blog-card__media > span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 22px;
  background: #fff;
  color: var(--ws-blue);
  font-weight: 900;
}

.ws-blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.ws-blog-card--featured .ws-blog-card__body {
  justify-content: center;
  padding: 38px;
}

.ws-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.ws-blog-card__meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #697287;
  font-size: 10px;
  font-weight: 800;
}

.ws-blog-card__meta span:first-child {
  color: var(--ws-blue);
}

.ws-blog-card h3 {
  margin: 0;
  color: var(--ws-ink);
  font-size: 24px;
  line-height: 1.13;
  font-weight: 620;
  letter-spacing: -0.042em;
}

.ws-blog-card--featured h3 {
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.04;
}

.ws-blog-card h3 a:hover {
  color: var(--ws-blue);
}

.ws-blog-card p {
  margin: 14px 0 0;
  color: var(--ws-muted);
  font-size: 14px;
  line-height: 1.68;
}

.ws-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.ws-blog-card__footer > span {
  color: #697287;
  font-size: 12px;
  font-weight: 760;
}

.ws-blog-empty {
  padding: 48px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 28px;
  background: #fff;
  text-align: center;
}

.ws-blog-empty h2 {
  margin: 0;
  color: var(--ws-ink);
  font-size: 32px;
}

.ws-blog-empty p {
  margin: 10px 0 0;
  color: var(--ws-muted);
}

.ws-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}

.ws-blog-pagination div {
  display: flex;
  gap: 8px;
}

.ws-blog-pagination a {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #59647a;
  font-size: 13px;
  font-weight: 800;
}

.ws-blog-pagination a.is-active,
.ws-blog-pagination a:hover {
  border-color: transparent;
  background: var(--ws-blue);
  color: #fff;
}

.ws-blog-pagination a.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.ws-blog-detail {
  padding: 172px 0 86px;
}

.ws-blog-detail__back {
  margin-bottom: 38px;
}

.ws-blog-detail__header {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

.ws-blog-detail__header .ws-section-kicker {
  margin: 0 auto 22px;
}

.ws-blog-detail__header h1 {
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  font-weight: 560;
  letter-spacing: -0.058em;
}

.ws-blog-detail__header p {
  max-width: 740px;
  margin: 24px auto 0;
  color: var(--ws-muted);
  font-size: 18px;
  line-height: 1.68;
}

.ws-blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.ws-blog-detail__meta span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #697287;
  font-size: 12px;
  font-weight: 760;
}

.ws-blog-detail__image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 78px rgba(31, 42, 68, 0.09);
}

.ws-blog-detail__image img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.ws-blog-detail__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 820px);
  gap: 42px;
  align-items: start;
  justify-content: center;
  margin-top: 58px;
}

.ws-blog-author-card {
  position: sticky;
  top: 120px;
  padding: 24px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(31, 42, 68, 0.07);
}

.ws-blog-author-card span {
  color: var(--ws-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-blog-author-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ws-ink);
  font-size: 22px;
  line-height: 1.12;
}

.ws-blog-author-card p {
  margin: 12px 0 0;
  color: var(--ws-muted);
  font-size: 13px;
  line-height: 1.65;
}

.ws-blog-richtext {
  color: #3f485c;
  font-size: 18px;
  line-height: 1.82;
}

.ws-blog-richtext > * + * {
  margin-top: 22px;
}

.ws-blog-richtext h2,
.ws-blog-richtext h3,
.ws-blog-richtext h4 {
  color: var(--ws-ink);
  line-height: 1.12;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.ws-blog-richtext h2 {
  font-size: 38px;
}

.ws-blog-richtext h3 {
  font-size: 30px;
}

.ws-blog-richtext h4 {
  font-size: 24px;
}

.ws-blog-richtext p {
  margin: 0;
}

.ws-blog-richtext a {
  color: var(--ws-blue);
  font-weight: 750;
}

.ws-blog-richtext > .ws-blog-demo-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 46px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(83, 70, 255, 0.17);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 140, 59, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(247, 246, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 22px 54px rgba(31, 42, 68, 0.09);
}

.ws-blog-demo-cta::before {
  position: absolute;
  top: -80px;
  right: -65px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(83, 70, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(83, 70, 255, 0.025);
  content: "";
  pointer-events: none;
}

.ws-blog-demo-cta > * {
  position: relative;
  z-index: 1;
}

.ws-blog-demo-cta > div {
  display: grid;
  gap: 8px;
}

.ws-blog-demo-cta > div > span {
  color: var(--ws-orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-blog-demo-cta > div > strong {
  max-width: 470px;
  color: var(--ws-ink);
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.ws-blog-demo-cta > div > p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 13px;
  line-height: 1.55;
}

.ws-blog-richtext .ws-blog-demo-cta__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, var(--ws-blue), #5446cf);
  box-shadow: 0 13px 28px rgba(36, 21, 173, 0.2);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ws-blog-richtext .ws-blog-demo-cta__button:hover {
  color: #fff;
  box-shadow: 0 17px 34px rgba(36, 21, 173, 0.27);
  transform: translateY(-2px);
}

.ws-blog-richtext .ws-blog-demo-cta__button:focus-visible {
  outline: 3px solid rgba(242, 140, 59, 0.3);
  outline-offset: 3px;
}

.ws-blog-richtext > .ws-blog-share {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid rgba(113, 125, 185, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(242, 140, 59, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(250, 250, 255, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 16px 38px rgba(31, 42, 68, 0.07);
}

.ws-blog-share__copy {
  display: grid;
  gap: 6px;
}

.ws-blog-share__copy > span {
  color: var(--ws-orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-blog-share__copy > strong {
  color: var(--ws-ink);
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.ws-blog-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.ws-blog-richtext .ws-blog-share__actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(13, 38, 150, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(31, 42, 68, 0.06);
  color: var(--ws-blue);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ws-blog-share__actions svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: currentColor;
}

.ws-blog-richtext .ws-blog-share__actions a:hover {
  border-color: rgba(242, 140, 59, 0.42);
  color: var(--ws-orange);
  transform: translateY(-2px);
}

.ws-blog-richtext .ws-blog-share__actions a:focus-visible {
  outline: 3px solid rgba(242, 140, 59, 0.28);
  outline-offset: 2px;
}

.ws-blog-richtext ul,
.ws-blog-richtext ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.ws-blog-richtext li {
  list-style: revert;
}

.ws-blog-richtext blockquote {
  margin: 28px 0;
  padding: 24px;
  border-left: 4px solid var(--ws-orange);
  border-radius: 18px;
  background: rgba(242, 140, 59, 0.08);
  color: var(--ws-ink);
  font-size: 22px;
  line-height: 1.5;
}

.ws-blog-richtext__image {
  overflow: hidden;
  margin: 34px 0;
  border-radius: 24px;
}

.ws-blog-richtext__image img {
  width: 100%;
  height: auto;
}

.ws-blog-richtext__code {
  overflow-x: auto;
  padding: 22px;
  border-radius: 18px;
  background: #101828;
  color: #eef2ff;
  font-size: 14px;
  line-height: 1.7;
}

.ws-blog-richtext__embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 24px;
  background: #101828;
}

.ws-blog-richtext__table-wrap {
  overflow-x: auto;
}

.ws-blog-richtext table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.ws-blog-richtext th,
.ws-blog-richtext td {
  padding: 14px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  text-align: left;
}

.ws-blog-related {
  padding: 0 0 96px;
}

.ws-blog-related__heading {
  margin-bottom: 34px;
}

/* WindSketch mobile apps */
.ws-mobile-apps {
  position: relative;
  overflow: hidden;
  padding: 18px 0 104px;
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0) 12%,
      rgba(255, 255, 255, 0) 88%,
      #fff 100%
    ),
    radial-gradient(circle at 8% 28%, rgba(242, 140, 59, 0.08), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(83, 70, 255, 0.09), transparent 30%),
    linear-gradient(180deg, #fff 0%, rgba(248, 250, 255, 0.88) 100%);
}

.ws-mobile-apps__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 8%, rgba(83, 70, 255, 0.07), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(242, 140, 59, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.9));
  box-shadow: 0 28px 84px rgba(31, 42, 68, 0.08);
}

.ws-mobile-apps__panel::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 38, 150, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25), transparent 64%);
  pointer-events: none;
}

.ws-mobile-apps__copy,
.ws-mobile-apps__preview {
  position: relative;
  z-index: 1;
}

.ws-mobile-apps__copy h2 {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--ws-ink);
  font-size: clamp(38px, 4.2vw, 64px);
  line-height: 1.04;
  font-weight: 560;
  letter-spacing: -0.056em;
}

.ws-mobile-apps__copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--ws-muted);
  font-size: 16px;
  line-height: 1.75;
}

.ws-mobile-apps__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.ws-mobile-apps__actions a {
  display: inline-flex;
  min-width: 184px;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ws-ink);
  box-shadow: 0 16px 34px rgba(31, 42, 68, 0.07);
}

.ws-mobile-apps__actions a:hover {
  border-color: rgba(83, 70, 255, 0.24);
  transform: translateY(-2px);
}

.ws-mobile-apps__actions svg {
  width: 28px;
  height: 28px;
  fill: var(--ws-blue);
}

.ws-mobile-apps__actions span {
  display: grid;
  gap: 1px;
}

.ws-mobile-apps__actions em {
  color: #7b8498;
  font-size: 10px;
  font-style: normal;
  font-weight: 740;
  line-height: 1;
}

.ws-mobile-apps__actions strong {
  color: var(--ws-ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.1;
}

.ws-mobile-apps__preview {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ws-mobile-device {
  position: relative;
  overflow: hidden;
  width: min(100%, 284px);
  height: 520px;
  min-height: 0;
  padding: 0;
  border: 6px solid #252a3a;
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(31, 42, 68, 0.18);
}

.ws-mobile-device .ws-mobile-statusbar {
  height: 38px;
  padding: 9px 17px 4px;
}

.ws-mobile-device .ws-mobile-statusbar strong {
  font-size: 11px;
}

.ws-mobile-device .ws-mobile-project {
  gap: 10px;
  padding: 8px 15px 9px;
}

.ws-mobile-device .ws-mobile-project button {
  width: 32px;
  height: 32px;
  font-size: 24px;
}

.ws-mobile-device .ws-mobile-project strong {
  font-size: 14.5px;
}

.ws-mobile-device .ws-mobile-project span {
  font-size: 9px;
}

.ws-mobile-device .ws-mobile-tabs {
  margin: 0 12px;
  font-size: 9.5px;
}

.ws-mobile-device .ws-mobile-tabs > * {
  padding: 9px 4px;
}

.ws-mobile-device .ws-mobile-overview {
  gap: 6px;
  padding: 9px 12px 5px;
}

.ws-mobile-device .ws-mobile-card {
  padding: 9px 10px;
  border-radius: 14px;
}

.ws-mobile-device .ws-mobile-card span {
  font-size: 8.5px;
}

.ws-mobile-device .ws-mobile-card strong {
  font-size: 11.5px;
}

.ws-mobile-device .ws-mobile-card--address strong {
  font-size: 12.4px;
}

.ws-mobile-device .ws-mobile-card--location strong {
  font-size: 9.5px;
}

.ws-mobile-device .ws-mobile-areas {
  padding: 1px 12px 86px;
}

.ws-mobile-device .ws-mobile-areas h3 {
  margin-bottom: 8px;
  font-size: 15px;
}

.ws-mobile-device .ws-mobile-area-card {
  width: 132px;
  padding: 7px 7px 10px;
  border-radius: 17px;
}

.ws-mobile-device .ws-mobile-area-map {
  height: 86px;
  border-radius: 9px;
}

.ws-mobile-device .ws-mobile-area-card > strong {
  font-size: 13.5px;
}

.ws-mobile-device .ws-mobile-area-card > span {
  font-size: 10.5px;
}

.ws-mobile-device .ws-mobile-bottom-nav {
  right: 12px;
  bottom: 18px;
  left: 12px;
  height: 56px;
  grid-template-columns: 1fr 1fr 50px 1fr 1fr;
  border-radius: 22px;
}

.ws-mobile-device .ws-mobile-bottom-nav button svg {
  width: 25px;
  height: 25px;
}

.ws-mobile-device .ws-mobile-bottom-nav button img {
  width: 26px;
  height: 26px;
}

.ws-mobile-device .ws-mobile-bottom-nav__plus span {
  width: 48px;
  height: 48px;
  font-size: 34px;
  transform: none;
}

/* WindSketch about page */
.ws-about-page {
  overflow: hidden;
  background: var(--ws-page-background);
}

.ws-about-hero {
  padding: 168px 0 94px;
}

.ws-about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: center;
  justify-items: center;
}

.ws-about-hero__copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.ws-about-hero__copy h1 {
  max-width: 1040px;
  margin: 34px 0 24px;
  color: var(--ws-ink);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.ws-about-hero__title-line {
  display: block;
}

.ws-about-hero__copy p {
  max-width: 760px;
  margin: 0;
  color: var(--ws-muted);
  font-size: 18px;
  font-weight: 520;
  line-height: 1.75;
}

.ws-about-story,
.ws-about-principles {
  padding: 54px 0;
}

.ws-about-story__heading {
  display: grid;
  grid-template-columns: 0.72fr 1.25fr 0.88fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.ws-about-story__heading h2 {
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.06;
  font-weight: 560;
  letter-spacing: -0.052em;
}

.ws-about-story__heading p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 15px;
  line-height: 1.72;
}

.ws-about-story__journey {
  position: relative;
  padding-top: 164px;
}

.ws-about-story-flight {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  overflow: visible;
  pointer-events: none;
}

.ws-about-story-flight--mobile {
  display: none;
}

.ws-about-story-flight__path {
  fill: none;
  stroke: rgba(13, 38, 150, 0.28);
  stroke-width: 2;
  stroke-dasharray: 7 10;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.ws-about-story-flight__ball-static {
  display: none;
}

.ws-about-story__cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ws-about-story-card {
  position: relative;
  overflow: hidden;
  min-height: 264px;
  padding: 34px 30px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 26px;
  background:
    radial-gradient(circle at 96% 0%, rgba(83, 70, 255, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 54px rgba(31, 42, 68, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ws-about-story-card:nth-child(2) {
  background:
    radial-gradient(circle at 96% 0%, rgba(242, 140, 59, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.94);
}

.ws-about-story-card:nth-child(3) {
  background:
    radial-gradient(circle at 96% 0%, rgba(113, 125, 185, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.94);
}

.ws-about-story-card:hover {
  border-color: rgba(13, 38, 150, 0.2);
  box-shadow: 0 26px 64px rgba(31, 42, 68, 0.1);
  transform: translateY(-4px);
}

.ws-about-story-card__index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 999px;
  color: var(--ws-blue);
  background: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-about-story-card h3 {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  color: var(--ws-ink);
  font-size: 23px;
  line-height: 1.12;
  font-weight: 660;
  letter-spacing: -0.04em;
}

.ws-about-story-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: var(--ws-muted);
  font-size: 14px;
  line-height: 1.68;
}

@media (prefers-reduced-motion: reduce) {
  .ws-about-story-flight__ball {
    display: none;
  }

  .ws-about-story-flight__ball-static {
    display: block;
  }

  .ws-about-story-card {
    transition: none;
  }

  .ws-about-story-card:hover {
    transform: none;
  }
}

.ws-about-principles__panel {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border: 1px solid rgba(113, 125, 185, 0.22);
  border-radius: 40px;
  background:
    radial-gradient(circle at 88% 10%, rgba(242, 140, 59, 0.1), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(83, 70, 255, 0.08), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 255, 0.95));
  box-shadow: 0 30px 84px rgba(31, 42, 68, 0.1);
}

.ws-about-principles {
  padding: 70px 0 118px;
}

.ws-about-principles__panel::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 38, 150, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.54), transparent 68%);
  pointer-events: none;
}

.ws-about-principles__panel::after {
  position: absolute;
  top: -430px;
  right: -330px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(13, 38, 150, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(13, 38, 150, 0.024),
    0 0 0 144px rgba(13, 38, 150, 0.018);
  content: "";
  pointer-events: none;
}

.ws-about-principles__panel > * {
  position: relative;
  z-index: 1;
}

.ws-about-principles__heading {
  display: grid;
  grid-template-columns: 0.58fr minmax(0, 1.55fr) minmax(240px, 0.72fr);
  gap: 38px;
  align-items: start;
}

.ws-about-principles__heading .ws-section-kicker {
  margin-top: 8px;
  color: var(--ws-blue);
}

.ws-about-principles__heading h2 {
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(44px, 4.6vw, 66px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.ws-about-principles__heading h2 span {
  position: relative;
  display: inline;
  color: var(--ws-ink);
}

.ws-about-principles__heading h2 span::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 1%;
  height: 8px;
  border-top: 2px solid #f5a14e;
  border-radius: 50%;
  content: "";
  transform: rotate(-1deg);
}

.ws-about-principles__heading > p {
  margin: 8px 0 0;
  color: var(--ws-muted);
  font-size: 15px;
  font-weight: 560;
  line-height: 1.75;
}

.ws-about-principles__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 68px 0 0;
  padding: 0;
  list-style: none;
}

.ws-about-principles__grid::before {
  position: absolute;
  top: 31px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, #f5a14e, rgba(83, 70, 255, 0.46) 48%, rgba(13, 38, 150, 0.22));
  content: "";
}

.ws-about-principles__grid li {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 0 22px;
  text-align: center;
}

.ws-about-principles__grid li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(13, 38, 150, 0.15);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(242, 140, 59, 0.2), transparent 42%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(31, 42, 68, 0.1);
  color: var(--ws-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.ws-about-principles__grid li:nth-child(2n) > span {
  background:
    radial-gradient(circle at 34% 28%, rgba(83, 70, 255, 0.16), transparent 44%),
    rgba(255, 255, 255, 0.94);
}

.ws-about-principles__grid li div {
  margin-top: 28px;
}

.ws-about-principles__grid h3 {
  margin: 0;
  color: var(--ws-ink);
  font-size: 21px;
  font-weight: 680;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.ws-about-principles__grid p {
  margin: 13px 0 0;
  color: #687189;
  font-size: 13px;
  font-weight: 560;
  line-height: 1.68;
}

.ws-about-principles__trail {
  display: grid;
  grid-template-columns: auto minmax(30px, 1fr) auto minmax(30px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 58px;
  padding-top: 28px;
  border-top: 1px solid rgba(13, 38, 150, 0.1);
}

.ws-about-principles__trail span,
.ws-about-principles__trail strong {
  color: #687189;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ws-about-principles__trail strong {
  padding: 8px 12px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ws-blue);
  text-align: center;
}

.ws-about-principles__trail i {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 140, 59, 0.38), rgba(13, 38, 150, 0.16));
}

.ws-about-principles__trail i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5a14e;
  content: "";
}

/* WindSketch contact page */
.ws-contact-page {
  overflow: hidden;
  background: var(--ws-page-background);
}

.ws-contact-hero {
  padding: 164px 0 86px;
}

.ws-contact-hero__grid {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.62fr);
  gap: 44px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(83, 70, 255, 0.07), transparent 30%),
    radial-gradient(circle at 90% 86%, rgba(242, 140, 59, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.92));
  box-shadow: 0 28px 84px rgba(31, 42, 68, 0.08);
}

.ws-contact-hero__grid::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 38, 150, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 66%);
  pointer-events: none;
}

.ws-contact-hero__copy,
.ws-contact-form-card {
  position: relative;
  z-index: 1;
}

.ws-contact-hero__copy h1 {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--ws-ink);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 560;
  letter-spacing: -0.06em;
}

.ws-contact-hero__copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ws-muted);
  font-size: 16px;
  line-height: 1.75;
}

.ws-contact-hero__copy ul {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
}

.ws-contact-hero__copy li {
  position: relative;
  min-height: 34px;
  padding: 8px 14px 8px 38px;
  border: 1px solid rgba(224, 228, 240, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #59647a;
  font-size: 13px;
  font-weight: 740;
  line-height: 1.3;
}

.ws-contact-hero__copy li::before {
  position: absolute;
  left: 12px;
  top: 8px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(83, 70, 255, 0.1);
  color: var(--ws-blue);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.ws-contact-form-card {
  padding: 26px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 54px rgba(31, 42, 68, 0.11);
}

.ws-contact-form-card__heading {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(224, 228, 240, 0.92);
}

.ws-contact-form-card__heading strong,
.ws-contact-form-card__heading span {
  display: block;
}

.ws-contact-form-card__heading strong {
  color: var(--ws-ink);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.ws-contact-form-card__heading span {
  margin-top: 7px;
  color: var(--ws-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

.ws-contact-form {
  min-height: 370px;
}

/* WindSketch HubSpot demo */
.ws-hubspot-demo {
  padding: 24px 0 92px;
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      rgba(255, 255, 255, 0) 12%,
      rgba(255, 255, 255, 0) 88%,
      #fff 100%
    ),
    radial-gradient(circle at 13% 28%, rgba(242, 140, 59, 0.08), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(83, 70, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.86), #fff 100%);
}

.ws-hubspot-demo__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: 44px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 34px;
  background:
    radial-gradient(circle at 14% 16%, rgba(83, 70, 255, 0.07), transparent 30%),
    radial-gradient(circle at 90% 86%, rgba(242, 140, 59, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 255, 0.92));
  box-shadow: 0 28px 84px rgba(31, 42, 68, 0.08);
}

.ws-hubspot-demo__panel::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13, 38, 150, 0.1) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 66%);
  pointer-events: none;
}

.ws-hubspot-demo__copy,
.ws-hubspot-demo__form-card {
  position: relative;
  z-index: 1;
}

.ws-hubspot-demo__copy h2 {
  max-width: 720px;
  margin: 34px 0 0;
  color: var(--ws-ink);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.04;
  font-weight: 560;
  letter-spacing: -0.056em;
}

.ws-hubspot-demo__copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ws-muted);
  font-size: 16px;
  line-height: 1.75;
}

.ws-hubspot-demo__copy ul {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
}

.ws-hubspot-demo__copy li {
  position: relative;
  min-height: 34px;
  padding: 8px 14px 8px 38px;
  border: 1px solid rgba(224, 228, 240, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #59647a;
  font-size: 13px;
  font-weight: 740;
  line-height: 1.3;
}

.ws-hubspot-demo__copy li::before {
  position: absolute;
  left: 12px;
  top: 8px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: rgba(83, 70, 255, 0.1);
  color: var(--ws-blue);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.ws-hubspot-demo__form-card {
  padding: 26px;
  border: 1px solid rgba(224, 228, 240, 0.96);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 54px rgba(31, 42, 68, 0.11);
}

.ws-hubspot-demo__form-heading {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(224, 228, 240, 0.92);
}

.ws-hubspot-demo__form-heading strong,
.ws-hubspot-demo__form-heading span {
  display: block;
}

.ws-hubspot-demo__form-heading strong {
  color: var(--ws-ink);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.ws-hubspot-demo__form-heading span {
  margin-top: 7px;
  color: var(--ws-muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

.ws-hubspot-demo__form {
  min-height: 306px;
}

.ws-hubspot-demo__loading {
  display: grid;
  min-height: 220px;
  place-items: center;
  border: 1px dashed rgba(83, 70, 255, 0.22);
  border-radius: 20px;
  background: rgba(250, 251, 255, 0.74);
  color: #7b8498;
  font-size: 13px;
  font-weight: 700;
}

.ws-hubspot-demo__form form {
  display: grid;
  gap: 13px;
  margin: 0;
}

.ws-hubspot-demo__form .hs-form-field {
  margin: 0 !important;
}

.ws-hubspot-demo__form label {
  display: block;
  margin: 0 0 6px;
  color: #59647a;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.3;
}

.ws-hubspot-demo__form input,
.ws-hubspot-demo__form select,
.ws-hubspot-demo__form textarea {
  width: 100% !important;
  min-height: 46px;
  padding: 0 14px !important;
  border: 1px solid rgba(224, 228, 240, 0.96) !important;
  border-radius: 14px !important;
  background: rgba(250, 251, 255, 0.88) !important;
  color: var(--ws-ink) !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

.ws-hubspot-demo__form textarea {
  min-height: 96px;
  padding-top: 12px !important;
}

.ws-hubspot-demo__form input:focus,
.ws-hubspot-demo__form select:focus,
.ws-hubspot-demo__form textarea:focus {
  border-color: rgba(83, 70, 255, 0.42) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(83, 70, 255, 0.08) !important;
}

.ws-hubspot-demo__form .hs-error-msgs {
  margin-top: 6px;
  color: #ed3324;
  font-size: 11px;
  font-weight: 700;
}

.ws-hubspot-demo__form .hs_submit,
.ws-hubspot-demo__form .actions {
  margin: 0 !important;
  padding: 0 !important;
}

.ws-hubspot-demo__form input[type="submit"],
.ws-hubspot-demo__form .hs-button {
  display: inline-flex !important;
  width: 100% !important;
  min-height: 52px !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, #5a16f3 0%, #21008d 100%) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 850 !important;
  box-shadow: 0 18px 32px rgba(49, 16, 180, 0.2) !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.ws-hubspot-demo__form input[type="submit"]:hover,
.ws-hubspot-demo__form .hs-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 38px rgba(49, 16, 180, 0.26) !important;
}

/* Cookie consent and tracking preferences */
.ws-cookie-consent {
  position: fixed;
  z-index: 2147483000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(83, 70, 255, 0.35), transparent 34%),
    #080d27;
  color: #fff;
  box-shadow: 0 24px 70px rgba(8, 13, 39, 0.32);
}

body.ws-cookie-consent-open #hubspot-messages-iframe-container {
  z-index: 2147481000 !important;
  pointer-events: none !important;
}

.ws-cookie-consent__copy {
  max-width: 680px;
}

.ws-cookie-consent__copy strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.ws-cookie-consent__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.55;
}

.ws-cookie-consent__copy a {
  color: #fff;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ws-cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.ws-cookie-consent__button {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ws-cookie-consent__button:hover {
  transform: translateY(-1px);
}

.ws-cookie-consent__button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.ws-cookie-consent__button--secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.ws-cookie-consent__button--primary {
  border: 1px solid #f28c3b;
  background: #f28c3b;
  color: #080d27;
}

.ws-cookie-consent__button--primary:hover {
  border-color: #ff9e54;
  background: #ff9e54;
}

.ws-cookie-settings {
  position: fixed;
  z-index: 2147482000;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  min-height: 42px;
  padding: 0 14px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(8, 13, 39, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #080d27;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(8, 13, 39, 0.16);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ws-cookie-settings:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(8, 13, 39, 0.2);
}

.ws-cookie-settings svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 820px) {
  .ws-cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    border-radius: 18px;
  }

  .ws-cookie-consent__actions {
    width: 100%;
  }

  .ws-cookie-consent__button {
    flex: 1 1 0;
  }
}

@media (max-width: 520px) {
  .ws-cookie-consent__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .ws-cookie-consent__button {
    width: 100%;
  }

  .ws-cookie-settings {
    bottom: 12px;
    left: 12px;
  }
}

/* WindSketch footer */
.ws-footer {
  position: relative;
  padding: 74px 0 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(242, 140, 59, 0.1), transparent 26%),
    radial-gradient(circle at 86% 10%, rgba(13, 38, 150, 0.11), transparent 30%),
    linear-gradient(180deg, #f7f8ff 0%, #ffffff 100%);
}

.ws-footer--with-characters {
  z-index: 200;
  isolation: isolate;
  overflow: visible;
}

.ws-footer__character-stage {
  position: relative;
  z-index: 210;
  height: 284px;
  margin-top: -74px;
  margin-bottom: 42px;
  overflow: visible;
  pointer-events: none;
  user-select: none;
}

.ws-footer__character-stage::before {
  position: absolute;
  inset: 0 0 auto;
  height: 198px;
  border-bottom: 1px solid rgba(13, 38, 150, 0.12);
  background: #fff;
  box-shadow: 0 22px 48px rgba(13, 38, 150, 0.035);
  content: "";
}

.ws-footer__character-stage-inner {
  position: relative;
  z-index: 211;
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
}

.ws-footer__character {
  position: absolute;
  z-index: 212;
  display: block;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 14px 20px rgba(13, 38, 150, 0.055));
}

.ws-footer__photo-subject {
  position: absolute;
  top: -75px;
  left: min(-24px, calc((1180px - 100vw) / 2));
  z-index: 211;
  width: 75px;
  height: 273px;
  border-right: 1px solid rgba(13, 38, 150, 0.5);
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 17px,
      rgba(13, 38, 150, 0.36) 17px 18px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 27px,
      rgba(13, 38, 150, 0.28) 27px 28px,
      transparent 28px 55px
    );
  opacity: 0.78;
}

.ws-footer__photo-subject::before {
  position: absolute;
  inset: 9px 0 0 14px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 27px,
    rgba(13, 38, 150, 0.26) 27px 28px,
    transparent 28px 55px
  );
  content: "";
}

.ws-footer__photo-subject-window {
  position: absolute;
  top: 65px;
  left: 9px;
  z-index: 1;
  width: 42px;
  height: 113px;
  border: 2px solid rgba(13, 38, 150, 0.82);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 4px #fff,
    inset 0 0 0 5px rgba(13, 38, 150, 0.72);
}

.ws-footer__photo-subject-window::before,
.ws-footer__photo-subject-window::after {
  position: absolute;
  background: rgba(13, 38, 150, 0.64);
  content: "";
}

.ws-footer__photo-subject-window::before {
  inset: 50% 5px auto;
  height: 1px;
}

.ws-footer__photo-subject-window::after {
  inset: 5px auto 5px 50%;
  width: 1px;
}

.ws-footer__character--photographer {
  top: -9px;
  left: min(-24px, calc((1180px - 100vw) / 2));
  height: 217px;
  transform: none;
}

.ws-footer__character--smartphone {
  top: 76px;
  left: 28%;
  z-index: 213;
  height: 190px;
  transform: translateX(-50%);
}

.ws-footer__character--discussion {
  top: -2px;
  left: 54%;
  z-index: 250;
  height: 208px;
  transform: translateX(-50%);
}

.ws-footer__character--reviewer {
  top: -28px;
  right: clamp(9%, calc(19% - 18.4375vw + 236px), 19%);
  z-index: 250;
  height: 235px;
}

.ws-footer__character--measurer {
  top: -20px;
  right: min(-24px, calc((1180px - 100vw) / 2));
  z-index: 245;
  height: 222px;
}

.ws-footer__shell {
  position: relative;
  overflow: visible;
  width: 100%;
  max-width: 1100px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ws-footer__glow {
  position: absolute;
  z-index: 0;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.22;
  pointer-events: none;
}

.ws-footer__glow--blue {
  right: 7%;
  top: -74px;
  background: var(--ws-blue);
}

.ws-footer__glow--orange {
  left: 8%;
  bottom: -88px;
  background: var(--ws-orange);
}

.ws-footer__top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1.28fr) repeat(3, minmax(140px, 0.55fr));
  gap: 40px;
}

.ws-footer__brand {
  max-width: 475px;
}

.ws-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
}

.ws-footer__logo img {
  width: 184px;
  height: auto;
}

.ws-footer__brand p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
}

.ws-footer__column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.ws-footer__column span {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 7px;
  color: var(--ws-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.ws-footer__column span::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ws-orange), rgba(242, 140, 59, 0.2));
  content: "";
}

.ws-footer__column a {
  width: fit-content;
  color: #596379;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
  transition: color 0.18s ease, transform 0.18s ease;
}

.ws-footer__column a:hover {
  color: var(--ws-blue);
  transform: translateX(2px);
}

.ws-footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 8px;
}

.ws-footer__bottom p {
  margin: 0;
  color: #737d92;
  font-size: 13px;
  font-weight: 700;
}

.ws-footer__socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ws-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(218, 223, 239, 0.94);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ws-blue);
  font-size: 14px;
  box-shadow: 0 12px 24px rgba(20, 25, 50, 0.06);
  transition: all 0.2s ease;
}

.ws-footer__socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.ws-footer__socials a:hover {
  border-color: rgba(242, 140, 59, 0.46);
  background: #fff;
  color: var(--ws-orange);
  transform: translateY(-2px);
}

.ws-footer__signature {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 34px auto 0;
  padding-top: 6px;
  pointer-events: none;
  user-select: none;
}

.ws-footer__signature img {
  display: block;
  width: min(1040px, 82vw);
  height: auto;
  opacity: 0.08;
  transform: translateY(10px);
}

@media (max-width: 1199px) {
  .ws-about-hero__grid {
    grid-template-columns: 1fr;
  }

  .ws-about-principles__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ws-about-principles__heading h2 {
    max-width: 900px;
  }

  .ws-about-principles__heading > p {
    max-width: 720px;
  }

  .ws-contact-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ws-hubspot-demo__panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ws-mobile-apps__panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

  .ws-blog-detail__layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 28px;
  }

  .ws-footer__shell {
    padding: 0;
  }

  .ws-footer__character-stage {
    height: 260px;
    margin-bottom: 36px;
  }

  .ws-footer__character-stage::before {
    height: 180px;
  }

  .ws-footer__character-stage-inner {
    width: min(940px, calc(100% - 40px));
  }

  .ws-footer__photo-subject,
  .ws-footer__character--photographer {
    display: none;
  }

  .ws-footer__character--smartphone {
    top: 75px;
    left: 22%;
    height: 165px;
  }

  .ws-footer__character--discussion {
    top: 4px;
    left: 64%;
    height: 183px;
  }

  .ws-footer__character--reviewer,
  .ws-footer__character--measurer {
    display: none;
  }

  .ws-footer__top {
    grid-template-columns: minmax(260px, 1fr) repeat(3, minmax(130px, 0.5fr));
    gap: 28px;
  }

  .ws-estimating__panel {
    grid-template-columns: minmax(230px, 0.38fr) minmax(0, 0.62fr);
  }

  .ws-estimating-logo {
    width: 158px;
  }

  .ws-pricing-card {
    padding: 28px;
  }

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

  .ws-impact-stat:nth-child(2n) {
    border-right: 0;
  }

  .ws-impact-stat:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(13, 38, 150, 0.1);
  }

  .ws-project-execution__layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.6fr);
  }

  .ws-execution-card {
    padding: 24px;
  }

  .ws-field-ops__layout {
    grid-template-columns: minmax(255px, .62fr) minmax(0, 1.38fr);
    gap: 28px;
    padding: 38px;
  }

  .ws-field-dashboard {
    left: 0;
  }

  .ws-field-phone {
    right: -28px;
    transform: scale(.92);
    transform-origin: bottom right;
  }
}

@media (max-width: 991px) {
  .ws-about-hero {
    padding: 142px 0 48px;
  }

  .ws-about-principles__panel {
    padding: 56px;
  }

  .ws-about-story__heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .ws-about-story__cards {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 20px;
  }

  .ws-about-story__journey {
    padding-top: 0;
  }

  .ws-about-story-flight--desktop {
    display: none;
  }

  .ws-about-story-flight--mobile {
    display: block;
    width: 90px;
    height: 100%;
  }

  .ws-about-story-card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: center;
    padding: 32px 28px 32px 104px;
  }

  .ws-about-principles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 20px;
  }

  .ws-about-principles__grid::before {
    display: none;
  }

  .ws-contact-hero {
    padding: 142px 0 74px;
  }

  .ws-contact-hero__grid {
    padding: 42px;
  }

  .ws-hubspot-demo {
    padding-bottom: 76px;
  }

  .ws-hubspot-demo__panel {
    padding: 42px;
  }

  .ws-mobile-apps {
    padding-bottom: 88px;
  }

  .ws-mobile-apps__panel {
    padding: 42px;
  }

  .ws-mobile-device {
    width: min(100%, 284px);
  }

  .ws-blog-highlights__heading,
  .ws-blog-hero__inner,
  .ws-blog-related__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ws-blog-hero {
    padding: 148px 0 48px;
  }

  .ws-blog-card--featured,
  .ws-blog-detail__layout {
    grid-template-columns: 1fr;
  }

  .ws-blog-card--featured .ws-blog-card__media {
    min-height: 300px;
  }

  .ws-blog-author-card {
    position: static;
  }

  .ws-footer {
    padding-top: 62px;
  }

  .ws-footer__character-stage {
    height: 250px;
    margin-top: -62px;
  }

  .ws-footer__character-stage::before {
    height: 172px;
  }

  .ws-footer__character--photographer {
    display: none;
  }

  .ws-footer__character--smartphone {
    top: 73px;
    left: 20%;
    height: 155px;
  }

  .ws-footer__character--discussion {
    top: 11px;
    left: 62%;
    height: 167px;
  }

  .ws-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }

  .ws-footer__brand {
    grid-column: 1 / -1;
    max-width: 640px;
  }

  .ws-footer__bottom {
    align-items: flex-start;
  }

  .ws-footer__signature img {
    width: min(820px, 88vw);
  }

  .ws-estimating {
    padding: 76px 0 18px;
  }

  .ws-estimating__heading {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .ws-estimating__panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ws-estimating__summary h3 {
    max-width: 560px;
  }

  .ws-pricing {
    padding: 96px 0 104px;
  }

  .ws-pricing__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ws-pricing__grid {
    grid-template-columns: 1fr;
  }

  .ws-pricing-card,
  .ws-pricing-card.is-featured {
    min-height: 0;
    transform: none;
  }

  .ws-pricing-card__top {
    min-height: 0;
  }

  .ws-impact-stats {
    padding-bottom: 48px;
  }

  .ws-impact-stats__intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ws-project-execution {
    padding: 34px 0 14px;
  }

  .ws-project-execution__heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ws-project-execution__heading p {
    margin: 0;
  }

  .ws-project-execution__layout {
    grid-template-columns: 1fr;
  }

  .ws-execution-visual {
    min-height: 0;
  }

  .ws-field-ops {
    padding: 100px 0;
  }

  .ws-field-ops__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ws-field-ops__heading > p {
    margin: 0;
  }

  .ws-field-ops__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ws-field-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .ws-field-benefit,
  .ws-field-benefit:first-child,
  .ws-field-benefit:last-child {
    grid-template-columns: 42px 1fr;
    padding: 0 16px 0 0;
    border: 0;
    border-right: 1px solid #dddfe9;
  }

  .ws-field-benefit:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .ws-field-benefit__index {
    display: none;
  }

  .ws-field-visual {
    min-height: 650px;
  }

  .ws-field-dashboard {
    inset: 20px 7% 0 0;
  }

  .ws-field-phone {
    right: 0;
    transform: scale(.94);
    transform-origin: bottom right;
  }
}

@media (max-width: 767px) {
  .ws-about-hero {
    padding: 118px 0 44px;
  }

  .ws-about-principles__panel {
    padding: 40px 22px;
    border-radius: 28px;
  }

  .ws-about-hero__copy h1 {
    margin-top: 28px;
    font-size: 42px;
  }

  .ws-about-hero__copy p {
    font-size: 16px;
  }

  .ws-about-story,
  .ws-about-principles {
    padding: 38px 0;
  }

  .ws-about-story__heading h2 {
    font-size: 36px;
  }

  .ws-about-story-card {
    min-height: 220px;
    padding: 28px 20px 28px 96px;
  }

  .ws-about-principles {
    padding-bottom: 86px;
  }

  .ws-about-principles__heading h2 {
    font-size: 38px;
  }

  .ws-about-principles__heading > p {
    margin-top: 0;
    font-size: 14px;
  }

  .ws-about-principles__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 46px;
  }

  .ws-about-principles__grid::before {
    display: block;
    top: 31px;
    bottom: 31px;
    left: 31px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, #f5a14e, #7f6cff 52%, rgba(13, 38, 150, 0.24));
  }

  .ws-about-principles__grid li {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 18px;
    justify-items: initial;
    padding: 0;
    text-align: left;
  }

  .ws-about-principles__grid li div {
    margin-top: 5px;
  }

  .ws-about-principles__trail {
    position: relative;
    grid-template-columns: auto minmax(20px, 1fr) auto;
    gap: 14px 10px;
    margin-top: 44px;
  }

  .ws-about-principles__trail::after {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    height: 1px;
    background: linear-gradient(90deg, #f5a14e, rgba(13, 38, 150, 0.22));
    content: "";
  }

  .ws-about-principles__trail i {
    display: none;
  }

  .ws-about-principles__trail strong {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .ws-about-principles__trail span {
    grid-row: 2;
    white-space: nowrap;
  }

  .ws-about-principles__trail span:last-child {
    grid-column: 3;
    text-align: right;
  }

  .ws-contact-hero {
    padding: 118px 0 58px;
  }

  .ws-contact-hero__grid {
    padding: 28px 18px;
    border-radius: 26px;
  }

  .ws-contact-hero__copy h1 {
    margin-top: 26px;
    font-size: 40px;
  }

  .ws-contact-hero__copy ul {
    margin-top: 22px;
  }

  .ws-contact-hero__copy li {
    border-radius: 18px;
  }

  .ws-contact-form-card {
    padding: 18px;
    border-radius: 22px;
  }

  .ws-hubspot-demo {
    padding: 12px 0 64px;
  }

  .ws-hubspot-demo__panel {
    padding: 28px 18px;
    border-radius: 26px;
  }

  .ws-hubspot-demo__copy h2 {
    margin-top: 26px;
    font-size: 36px;
  }

  .ws-hubspot-demo__copy ul {
    margin-top: 22px;
  }

  .ws-hubspot-demo__copy li {
    border-radius: 18px;
  }

  .ws-hubspot-demo__form-card {
    padding: 18px;
    border-radius: 22px;
  }

  .ws-mobile-apps {
    padding: 16px 0 70px;
  }

  .ws-mobile-apps__panel {
    padding: 28px 18px;
    border-radius: 26px;
  }

  .ws-mobile-apps__copy h2 {
    margin-top: 26px;
    font-size: 36px;
  }

  .ws-mobile-apps__actions {
    display: grid;
  }

  .ws-mobile-apps__actions a {
    width: 100%;
  }

  .ws-mobile-device {
    min-height: 0;
    border-width: 6px;
    border-radius: 34px;
  }

  .ws-blog-highlights {
    padding: 56px 0 72px;
  }

  .ws-blog-carousel {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .ws-blog-hero {
    padding: 124px 0 38px;
  }

  .ws-blog-highlights__heading h2,
  .ws-blog-hero__inner h1,
  .ws-blog-related__heading h2 {
    font-size: 36px;
  }

  .ws-blog-grid {
    grid-template-columns: 1fr;
  }

  .ws-blog-card__body,
  .ws-blog-card--featured .ws-blog-card__body {
    padding: 22px;
  }

  .ws-blog-card--featured h3,
  .ws-blog-card h3 {
    font-size: 24px;
    line-height: 1.12;
  }

  .ws-blog-pagination {
    flex-wrap: wrap;
  }

  .ws-blog-detail {
    padding: 126px 0 64px;
  }

  .ws-blog-detail__header h1 {
    font-size: 38px;
  }

  .ws-blog-detail__header p,
  .ws-blog-richtext {
    font-size: 16px;
  }

  .ws-blog-richtext h2 {
    font-size: 30px;
  }

  .ws-blog-richtext > .ws-blog-demo-cta {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 36px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .ws-blog-demo-cta > div > strong {
    font-size: 21px;
  }

  .ws-blog-richtext .ws-blog-demo-cta__button {
    width: 100%;
  }

  .ws-blog-richtext > .ws-blog-share {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .ws-blog-share__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .ws-blog-richtext .ws-blog-share__actions a {
    width: 100%;
  }

  .ws-footer {
    padding: 54px 0 28px;
  }

  .ws-footer__character-stage {
    display: block;
    height: 158px;
    margin-top: -54px;
    margin-bottom: 24px;
    overflow: hidden;
  }

  .ws-footer__character-stage::before {
    height: 118px;
  }

  .ws-footer__character-stage-inner {
    width: 100%;
    overflow: hidden;
  }

  .ws-footer__photo-subject,
  .ws-footer__character--photographer,
  .ws-footer__character--measurer {
    display: none;
  }

  .ws-footer__character--smartphone {
    top: 59px;
    left: 16%;
    height: 92px;
  }

  .ws-footer__character--discussion {
    top: 20px;
    left: 51%;
    height: 102px;
  }

  .ws-footer__character--reviewer {
    top: 17px;
    right: 3%;
    display: block;
    height: 105px;
  }

  .ws-footer__shell {
    padding: 0;
    border-radius: 0;
  }

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

  .ws-footer__column {
    min-width: 0;
  }

  .ws-footer__column--legal {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .ws-footer__column--legal > span {
    grid-column: 1 / -1;
  }

  .ws-footer__logo {
    margin-bottom: 16px;
  }

  .ws-footer__logo img {
    width: 164px;
  }

  .ws-footer__brand p {
    font-size: 14px;
  }

  .ws-footer__bottom {
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
  }

  .ws-footer__signature {
    margin-top: 24px;
  }

  .ws-footer__signature img {
    width: 92vw;
    opacity: 0.065;
  }

  .ws-demo-modal {
    padding: 12px;
  }

  .ws-demo-modal__shell,
  .ws-demo-modal__grid {
    max-height: 92vh;
  }

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

  .ws-demo-modal__intro {
    padding: 34px 24px 26px;
  }

  .ws-demo-modal__intro h2 {
    font-size: 32px;
  }

  .ws-demo-modal__content,
  .ws-demo-success {
    padding: 24px 18px;
  }

  .ws-demo-calendar__top {
    grid-template-columns: 76px 1fr 76px;
    gap: 8px;
  }

  .ws-demo-date-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .ws-demo-time-grid,
  .ws-demo-form,
  .ws-demo-interests > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ws-demo-date-grid button,
  .ws-demo-time-grid button {
    min-height: 44px;
    padding: 0 6px;
    border-radius: 14px;
    font-size: 11px;
  }

  .ws-demo-times,
  .ws-demo-form {
    margin-top: 20px;
  }

  .ws-demo-form input {
    height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 12px;
  }

  .ws-demo-interests {
    margin-top: 18px;
  }

  .ws-demo-interests button {
    min-height: 46px;
    gap: 8px;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 11px;
  }

  .ws-estimating {
    padding: 64px 0 12px;
  }

  .ws-estimating__heading h2 {
    font-size: 36px;
  }

  .ws-estimating__panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .ws-estimating__chips {
    gap: 7px;
  }

  .ws-estimating-logo {
    width: 138px;
    height: 78px;
    padding: 16px 18px;
    border-radius: 18px;
  }

  .ws-pricing {
    padding: 78px 0 86px;
  }

  .ws-pricing__heading h2 {
    font-size: 36px;
  }

  .ws-pricing__billing {
    width: 100%;
  }

  .ws-pricing__billing button {
    min-width: 0;
    flex: 1;
  }

  .ws-pricing-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .ws-impact-stats {
    padding-bottom: 38px;
  }

  .ws-impact-stats__inner {
    padding: 8px 20px;
    border-radius: 22px;
  }

  .ws-impact-stats__intro h2 {
    font-size: 34px;
  }

  .ws-impact-stats__grid {
    grid-template-columns: 1fr;
  }

  .ws-project-execution {
    padding: 28px 0 8px;
  }

  .ws-project-execution__heading h2 {
    font-size: 36px;
  }

  .ws-project-execution__cards {
    grid-template-columns: 1fr;
  }

  .ws-execution-card {
    min-height: 0;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .ws-execution-card h3 {
    font-size: 23px;
  }

  .ws-execution-visual {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .ws-execution-visual__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .ws-impact-stat,
  .ws-impact-stat:nth-child(2n),
  .ws-impact-stat:last-child {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 38, 150, 0.1);
  }

  .ws-impact-stat:last-child {
    border-bottom: 0;
  }

  .ws-field-ops {
    padding: 82px 0;
  }

  .ws-field-ops__heading {
    margin-bottom: 36px;
  }

  .ws-field-ops__heading h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .ws-field-ops__layout {
    padding: 30px 20px 24px;
    border-radius: 26px;
  }

  .ws-field-benefits {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ws-field-benefit,
  .ws-field-benefit:first-child,
  .ws-field-benefit:last-child {
    grid-template-columns: 42px 1fr;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid #dddfe9;
  }

  .ws-field-benefit:first-child {
    padding-top: 0;
  }

  .ws-field-benefit:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .ws-field-visual {
    min-height: 830px;
  }

  .ws-field-dashboard {
    inset: 10px 0 auto 0;
    height: 550px;
    padding: 17px;
  }

  .ws-field-media,
  .ws-field-gallery-card,
  .ws-field-progress,
  .ws-field-gallery {
    width: 100%;
    min-width: 0;
  }

  .ws-field-phone {
    right: -8px;
    bottom: -6px;
    width: 264px;
    height: 520px;
    transform: scale(.84);
    transform-origin: bottom right;
    animation: none;
  }

  .ws-field-floating-card--sync {
    top: -8px;
    right: 10px;
  }
}

@media (max-width: 359px) {
  .ws-footer__character--reviewer {
    display: none;
  }

  .ws-footer__character--smartphone {
    left: 20%;
  }

  .ws-footer__character--discussion {
    left: 66%;
    height: 100px;
  }

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

  .ws-demo-form,
  .ws-demo-interests > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .ws-field-dashboard__topbar > div span:last-child,
  .ws-field-activity__item time {
    display: none;
  }

  .ws-field-phone {
    right: -10px;
    transform: scale(.76);
  }

}

@media (prefers-reduced-motion: reduce) {
  .ws-live-status i,
  .ws-field-progress span,
  .ws-field-phone,
  .ws-field-floating-card,
  .ws-estimating__track {
    animation: none;
  }

  .ws-footer__character-stage {
    display: none;
  }

}

/* Features page */
.ws-features-page {
  position: relative;
  overflow: hidden;
  background: var(--ws-page-background);
}

.ws-features-hero {
  padding: 168px 0 94px;
}

.ws-features-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  align-items: center;
  justify-items: center;
}

.ws-features-hero__copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.ws-features-hero__copy h1 {
  max-width: 1040px;
  margin: 34px 0 24px;
  color: var(--ws-ink);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.ws-features-hero__copy p {
  max-width: 760px;
  margin: 0;
  color: var(--ws-muted);
  font-size: 18px;
  font-weight: 520;
  line-height: 1.75;
}

.ws-features-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.ws-features-hero__actions a,
.ws-features-cta__panel a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(13, 38, 150, 0.14);
  color: var(--ws-ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 780;
  box-shadow: 0 18px 44px rgba(31, 42, 68, 0.08);
}

.ws-features-hero__actions a:first-child,
.ws-features-cta__panel a {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #5d28ff, var(--ws-blue-dark));
}

.ws-features-preview {
  position: relative;
  width: min(100%, 1120px);
  border: 1px solid rgba(113, 125, 185, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(31, 42, 68, 0.12);
  overflow: hidden;
}

.ws-features-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(113, 125, 185, 0.2) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.ws-features-preview > * {
  position: relative;
  z-index: 1;
}

.ws-features-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.18);
  background: rgba(255, 255, 255, 0.84);
}

.ws-features-preview__top > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
}

.ws-features-preview__logo {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--ws-orange), var(--ws-blue));
  font-weight: 900;
}

.ws-features-preview__top strong,
.ws-features-preview__context h3 {
  color: var(--ws-ink);
  line-height: 1.15;
}

.ws-features-preview__top em,
.ws-features-preview__top > span,
.ws-features-preview__context p,
.ws-features-preview__activity p {
  color: #737b92;
  font-style: normal;
  font-size: 12px;
  font-weight: 640;
}

.ws-features-preview__top > span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(94, 177, 111, 0.12);
  color: #4f9560;
}

.ws-features-preview__body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 260px;
  gap: 18px;
  padding: 22px;
}

.ws-features-preview__plan {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 360px;
  padding: 0;
  border: 1px solid rgba(113, 125, 185, 0.2);
  border-radius: 24px;
  background: var(--ws-canvas);
  overflow: hidden;
}

.ws-features-preview__rail {
  min-height: 360px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.64);
}

.ws-features-preview__rail::before {
  width: 46px;
  height: 318px;
}

.ws-features-preview__rail button {
  width: 36px;
  height: 36px;
}

.ws-features-preview__rail img {
  width: 19px;
  height: 19px;
}

.ws-features-preview__drawing {
  position: relative;
  min-height: 360px;
  border-radius: 0 24px 24px 0;
  background-color: var(--ws-canvas);
  background-image: radial-gradient(circle, rgba(122, 122, 122, 0.72) 1.35px, transparent 1.45px);
  background-size: 30px 30px;
  overflow: hidden;
}

.ws-features-preview__tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 6;
  padding: 10px 14px;
  border: 1px solid rgba(113, 125, 185, 0.2);
  border-radius: 12px;
  background: #fff;
  color: #68718a;
  font-size: 12px;
  font-weight: 780;
}

.ws-features-preview__actionbar {
  top: 14px;
  right: 16px;
  z-index: 7;
  transform: scale(0.88);
  transform-origin: top right;
}

.ws-features-preview__drawing > svg {
  position: absolute;
  left: 50%;
  top: 86px;
  width: min(78%, 640px);
  height: auto;
  overflow: visible;
  border-radius: 0;
  filter: drop-shadow(0 14px 22px rgba(31, 42, 68, 0.08));
  transform: translateX(-50%);
}

.ws-features-preview__marker {
  position: absolute;
  left: 15%;
  bottom: 56px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(113, 125, 185, 0.22);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(31, 42, 68, 0.14);
}

.ws-features-preview__marker svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.ws-features-preview__marker svg .is-primary {
  stroke: #0d2696;
}

.ws-features-preview__marker svg .is-accent {
  stroke: var(--ws-orange);
}

.ws-features-preview__marker em {
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--ws-orange);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.ws-features-preview__context {
  align-self: stretch;
  padding: 24px;
  border: 1px solid rgba(113, 125, 185, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.ws-features-preview__context > span {
  color: var(--ws-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-features-preview__context h3 {
  margin: 14px 0 12px;
  font-size: 24px;
}

.ws-features-preview__activity {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(113, 125, 185, 0.18);
}

.ws-features-preview__activity div {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  align-items: baseline;
}

.ws-features-preview__activity i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.ws-features-preview__activity .is-1 { background: var(--ws-blue); }
.ws-features-preview__activity .is-2 { background: var(--ws-orange); }
.ws-features-preview__activity .is-3 { background: #5eb16f; }

.ws-features-workspace {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.ws-features-workspace__body {
  min-height: 520px;
}

.ws-features-workspace__drawing {
  top: 92px;
  width: min(78%, 620px);
  aspect-ratio: 420 / 250;
}

.ws-features-workspace__marker {
  top: 423px;
  left: 44%;
  bottom: auto;
}

.ws-features-workspace__context-copy {
  margin: 14px 0 0;
  color: var(--ws-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.65;
}

.ws-features-workspace__context .ws-activity {
  margin-top: 26px;
}

.ws-features-workspace__context .ws-context-thread {
  margin-top: 24px;
}

.ws-features-workspace__door-thread {
  position: absolute;
  top: 410px;
  left: 61%;
  z-index: 4;
  display: grid;
  gap: 7px;
  width: 260px;
  padding: 10px;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(31, 42, 68, 0.13);
}

.ws-features-workspace__door-message {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: start;
}

.ws-features-workspace__door-message .ws-avatar {
  width: 26px;
  height: 26px;
  margin: 0;
  font-size: 8px;
  transform: translateY(1px);
}

.ws-features-workspace__door-avatar {
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 13px rgba(31, 42, 68, 0.12);
  transform: translateY(1px);
}

.ws-features-workspace__door-message p {
  margin: 0;
  color: #5f687c;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.45;
}

.ws-features-workspace__door-message strong {
  color: var(--ws-ink);
}

.ws-features-workspace__door-message.is-resolved {
  padding-top: 7px;
  border-top: 1px solid rgba(113, 125, 185, 0.16);
}

.ws-features-workspace__door-photo {
  position: relative;
  width: 112px;
  height: 72px;
  margin: 7px 0 0;
  overflow: hidden;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 12px;
  background: #f3f4f7;
}

.ws-features-workspace__door-photo img {
  object-fit: cover;
}

.ws-features-workspace__door-photo figcaption {
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 1;
  display: inline-flex;
  height: 15px;
  align-items: center;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: #252b3d;
  font-size: 6.5px;
  font-weight: 800;
  line-height: 1;
}

.ws-features-workspace-switcher {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.ws-features-workspace-switcher__tabs {
  display: flex;
  width: fit-content;
  align-items: center;
  margin: 0 auto 24px;
  padding: 5px;
  border: 1px solid rgba(224, 228, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(31, 42, 68, 0.06);
}

.ws-features-workspace-switcher__tabs button {
  display: inline-flex;
  min-width: 112px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #697287;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.ws-features-workspace-switcher__tabs button:last-child {
  min-width: 170px;
}

.ws-features-workspace-switcher__tabs button:hover {
  color: var(--ws-blue);
}

.ws-features-workspace-switcher__tabs button.is-active {
  color: var(--ws-blue);
  background: rgba(83, 70, 255, 0.1);
}

.ws-features-workspace-switcher__viewport {
  height: 710px;
}

.ws-features-workspace-switcher__panel,
.ws-features-workspace-switcher__panel > .ws-workspace {
  width: 100%;
  height: 100%;
}

.ws-features-workspace-switcher__panel[hidden] {
  display: none;
}

.ws-features-workspace-switcher__panel > .ws-workspace {
  margin-top: 0;
}

.ws-features-workspace-switcher__viewport .ws-features-workspace__body {
  height: calc(100% - 74px);
  min-height: 0;
}

.ws-features-filesystem {
  color: var(--ws-ink);
}

.ws-features-filesystem button {
  font-family: inherit;
}

.ws-features-filesystem__topbar {
  display: grid;
  height: 74px;
  grid-template-columns: 210px minmax(220px, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.18);
  background: rgba(255, 255, 255, 0.98);
}

.ws-features-filesystem__brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.ws-features-filesystem__brand > img {
  display: block;
  width: 168px;
  height: auto;
}

.ws-features-filesystem__brand > span {
  display: grid;
  gap: 3px;
  width: 17px;
}

.ws-features-filesystem__brand > span i {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--ws-blue);
}

.ws-features-filesystem__search {
  position: relative;
  display: block;
  width: min(100%, 320px);
  justify-self: center;
}

.ws-features-filesystem__search input {
  width: 100%;
  height: 38px;
  padding: 0 40px 0 15px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 10px;
  outline: none;
  background: #fff;
  color: var(--ws-ink);
  font-size: 11px;
  font-weight: 600;
}

.ws-features-filesystem__search input::placeholder {
  color: #8c94a7;
}

.ws-features-filesystem__search > i {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 11px;
  height: 11px;
  border: 1.8px solid var(--ws-blue);
  border-radius: 50%;
  transform: translateY(-55%);
}

.ws-features-filesystem__search > i::after {
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 5px;
  height: 1.8px;
  border-radius: 99px;
  background: var(--ws-blue);
  content: "";
  transform: rotate(45deg);
}

.ws-features-filesystem__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.ws-features-filesystem__actions > button:not(.ws-features-filesystem__create) {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.ws-features-filesystem__actions > button:not(.ws-features-filesystem__create):hover {
  background: rgba(83, 70, 255, 0.08);
}

.ws-features-filesystem__actions button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.ws-features-filesystem__actions .ws-features-filesystem__create {
  height: 36px;
  padding: 0 15px;
  border: 0;
  border-radius: 8px;
  background: var(--ws-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 760;
  box-shadow: 0 8px 18px rgba(13, 38, 150, 0.18);
}

.ws-features-filesystem__profile {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.ws-features-filesystem__body {
  display: grid;
  height: calc(100% - 74px);
  grid-template-columns: 210px minmax(0, 1fr);
  background: #f8f9fc;
}

.ws-features-filesystem__sidebar {
  overflow: hidden;
  padding: 11px 10px 12px;
  border-right: 1px solid rgba(113, 125, 185, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.ws-features-filesystem__nav-group {
  padding: 6px 0;
  border-bottom: 1px solid rgba(113, 125, 185, 0.11);
}

.ws-features-filesystem__nav-group:last-child {
  border-bottom: 0;
}

.ws-features-filesystem__nav-group > span {
  display: block;
  margin: 0 9px 3px;
  color: #a0a8b8;
  font-size: 7.6px;
  font-weight: 820;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ws-features-filesystem__nav-group button {
  position: relative;
  display: grid;
  width: 100%;
  height: 28px;
  grid-template-columns: 21px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #657087;
  text-align: left;
}

.ws-features-filesystem__nav-group button::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  border-radius: 99px;
  background: var(--ws-blue);
  content: "";
  opacity: 0;
}

.ws-features-filesystem__nav-group button:hover {
  background: rgba(83, 70, 255, 0.055);
}

.ws-features-filesystem__nav-group button.is-active {
  background: transparent;
  color: #2d3648;
}

.ws-features-filesystem__nav-group button.is-active::before {
  opacity: 1;
}

.ws-features-filesystem__nav-group button img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.ws-features-filesystem__nav-group button strong {
  overflow: hidden;
  font-size: 10px;
  font-weight: 690;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-features-filesystem__content {
  min-width: 0;
  overflow: hidden;
  padding: 13px 16px 16px;
}

.ws-features-filesystem__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6f788c;
  font-size: 9px;
  font-weight: 650;
}

.ws-features-filesystem__breadcrumb span {
  color: var(--ws-blue);
}

.ws-features-filesystem__breadcrumb i {
  color: #a6adbb;
  font-size: 14px;
  font-style: normal;
}

.ws-features-filesystem__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 7px;
}

.ws-features-filesystem__heading h3 {
  margin: 0;
  color: #293247;
  font-size: 21px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.ws-features-filesystem__heading p {
  margin: 4px 0 0;
  color: #7a8498;
  font-size: 9px;
  font-weight: 560;
}

.ws-features-filesystem__heading > button {
  display: inline-flex;
  height: 31px;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 8px;
  background: #fff;
  color: #6b7488;
  font-size: 9px;
  font-weight: 700;
}

.ws-features-filesystem__heading > button span {
  color: var(--ws-orange);
  font-size: 12px;
}

.ws-features-filesystem__columns-labels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 218px;
  gap: 14px;
  margin-top: 12px;
}

.ws-features-filesystem__columns-labels strong {
  padding-bottom: 7px;
  border-bottom: 2px solid var(--ws-blue);
  color: var(--ws-blue);
  font-size: 9px;
  text-align: center;
}

.ws-features-filesystem__columns-labels strong:last-child {
  border-bottom-color: rgba(113, 125, 185, 0.2);
  color: #7d8493;
}

.ws-features-filesystem__workspace {
  display: grid;
  height: calc(100% - 103px);
  grid-template-columns: minmax(0, 1fr) 218px;
  gap: 14px;
  padding-top: 8px;
}

.ws-features-filesystem__files {
  min-width: 0;
}

.ws-features-filesystem__folder-row {
  display: flex;
  height: 18px;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}

.ws-features-filesystem__folder-row span {
  flex: 0 0 auto;
  padding: 2px 12px;
  border-radius: 999px;
  background: var(--ws-blue);
  color: #fff;
  font-size: 8px;
  font-weight: 780;
  line-height: 1.25;
}

.ws-features-filesystem__folder-row i {
  height: 1px;
  flex: 1;
  background: rgba(83, 70, 255, 0.28);
}

.ws-features-filesystem__folder-row em {
  display: grid;
  width: 21px;
  height: 18px;
  place-items: center;
  border-radius: 99px;
  background: rgba(83, 70, 255, 0.08);
  color: var(--ws-blue);
  font-size: 7px;
  font-style: normal;
  font-weight: 780;
}

.ws-features-filesystem__file-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.ws-features-file {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(113, 125, 185, 0.14);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 16px rgba(31, 42, 68, 0.08);
}

.ws-features-file__preview {
  position: relative;
  height: 94px;
  overflow: hidden;
  border-bottom: 1px solid rgba(113, 125, 185, 0.12);
  background:
    linear-gradient(rgba(126, 145, 244, 0.05), rgba(126, 145, 244, 0.02)),
    #fff;
}

.ws-features-file__preview img {
  padding: 5px;
  object-fit: contain;
}

.ws-features-file.is-pdf .ws-features-file__preview img {
  object-position: center 8%;
}

.ws-features-file__preview > span {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 1;
  display: grid;
  height: 17px;
  place-items: center;
  padding: 0 5px;
  border-radius: 5px;
  background: #e94343;
  color: #fff;
  font-size: 6.5px;
  font-weight: 850;
  box-shadow: 0 4px 10px rgba(205, 37, 37, 0.18);
}

.ws-features-file__details {
  padding: 7px 8px 8px;
}

.ws-features-file__details > strong {
  display: block;
  overflow: hidden;
  color: #3d4659;
  font-size: 8.4px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-features-file__details > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 5px;
  color: #8b93a3;
  font-size: 6.8px;
  font-weight: 600;
}

.ws-features-file__details time,
.ws-features-file__details em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ws-features-filesystem__upload {
  display: flex;
  height: 340px;
  min-height: 0;
  align-self: start;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  border: 1.5px dashed rgba(113, 125, 185, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.ws-features-filesystem__upload-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  background: rgba(83, 70, 255, 0.08);
}

.ws-features-filesystem__upload-icon img {
  width: 30px;
  height: 30px;
}

.ws-features-filesystem__upload > strong {
  max-width: 165px;
  color: #4e5668;
  font-size: 14px;
  line-height: 1.35;
}

.ws-features-filesystem__upload > p {
  max-width: 170px;
  margin: 9px 0 0;
  color: #818a9d;
  font-size: 8px;
  font-weight: 570;
  line-height: 1.55;
}

.ws-features-discussions {
  position: relative;
  overflow: hidden;
}

.ws-features-discussions__content {
  background: #f8f9fc;
}

.ws-features-discussions__heading {
  margin-top: 10px;
}

.ws-features-discussions__count {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 48px 0 54px 8px;
  color: #374052;
  font-size: 10px;
  font-weight: 700;
}

.ws-features-discussions__count span {
  color: var(--ws-blue);
  font-size: 12px;
}

.ws-features-discussions__summary {
  padding: 0 8px;
}

.ws-features-discussions__project-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ws-features-discussions__project-row span {
  flex: 0 0 auto;
  padding: 2px 12px;
  border-radius: 999px;
  background: var(--ws-blue);
  color: #fff;
  font-size: 8px;
  font-weight: 780;
  line-height: 1.25;
}

.ws-features-discussions__project-row i {
  height: 1px;
  flex: 1;
  background: rgba(83, 70, 255, 0.42);
}

.ws-features-discussions__summary article {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 17px 6px 0;
  padding: 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.76);
}

.ws-features-discussions__summary article > img {
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(83, 70, 255, 0.08);
}

.ws-features-discussions__summary article strong {
  display: block;
  color: #374052;
  font-size: 11px;
}

.ws-features-discussions__summary article p {
  margin: 3px 0 0;
  color: #7a8498;
  font-size: 9px;
}

.ws-features-discussions__summary article p b {
  color: #586277;
}

.ws-features-discussions__scrim {
  position: absolute;
  z-index: 3;
  inset: 0;
  background: rgba(25, 29, 38, 0.48);
}

.ws-features-discussions__drawer {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 47%;
  min-width: 470px;
  flex-direction: column;
  background: #fff;
  box-shadow: -18px 0 44px rgba(22, 28, 48, 0.18);
}

.ws-features-discussions__drawer > header {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.18);
}

.ws-features-discussions__drawer > header div {
  display: grid;
  gap: 4px;
}

.ws-features-discussions__drawer > header strong {
  color: #30384a;
  font-size: 13px;
}

.ws-features-discussions__drawer > header span {
  color: #7c8598;
  font-size: 9px;
}

.ws-features-discussions__drawer > header button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7d8491;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.ws-features-discussions__activity-bar {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.18);
}

.ws-features-discussions__activity-bar > strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #41495b;
  font-size: 11px;
}

.ws-features-discussions__activity-bar > strong > span {
  font-size: 12px;
}

.ws-features-discussions__activity-bar em {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: #eeeaff;
  color: var(--ws-blue);
  font-size: 8px;
  font-style: normal;
}

.ws-features-discussions__activity-bar > i {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--ws-blue);
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.ws-features-discussions__thread {
  min-height: 0;
  flex: 1;
  overflow: hidden;
}

.ws-features-discussions__message {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 6px 15px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.13);
}

.ws-features-discussions__message > img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.ws-features-discussions__message p {
  margin: 2px 0 0;
  color: #313a4d;
  font-size: 9.5px;
  font-weight: 570;
  line-height: 1.42;
}

.ws-features-discussions__message p b {
  color: var(--ws-blue);
}

.ws-features-discussions__message .ws-features-discussions__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  line-height: 1.2;
}

.ws-features-discussions__meta strong {
  color: #30384a;
  font-size: 10px;
}

.ws-features-discussions__meta time {
  color: #858da0;
  font-size: 8px;
}

.ws-features-discussions__meta span {
  padding: 2px 5px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 4px;
  color: #788196;
  font-size: 7px;
  font-weight: 750;
}

.ws-features-discussions__image-card {
  width: min(100%, 300px);
  margin: 8px 0 0;
  overflow: hidden;
  border: 1px solid rgba(113, 125, 185, 0.2);
  border-radius: 10px;
  background: #fff;
}

.ws-features-discussions__image-card > div {
  position: relative;
  height: 88px;
  background: #fafafa;
}

.ws-features-discussions__image-card img {
  padding: 5px;
  object-fit: contain;
}

.ws-features-discussions__image-card figcaption {
  display: grid;
  gap: 1px;
  padding: 6px 9px 7px;
}

.ws-features-discussions__image-card figcaption strong {
  color: #182033;
  font-size: 9px;
}

.ws-features-discussions__image-card figcaption span {
  color: #7d8597;
  font-size: 7px;
}

.ws-features-discussions__unread {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
}

.ws-features-discussions__unread i {
  height: 1px;
  flex: 1;
  background: #e43965;
}

.ws-features-discussions__unread strong {
  color: #e43965;
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-features-discussions__pdf-card {
  display: flex;
  width: min(100%, 300px);
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  padding: 7px;
  border: 1px solid rgba(113, 125, 185, 0.2);
  border-radius: 9px;
}

.ws-features-discussions__pdf-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  background: #eeeaff;
  color: var(--ws-blue);
  font-size: 7px;
  font-weight: 850;
}

.ws-features-discussions__pdf-card > div {
  display: grid;
  gap: 2px;
}

.ws-features-discussions__pdf-card strong {
  color: #182033;
  font-size: 9px;
}

.ws-features-discussions__pdf-card small {
  color: #7d8597;
  font-size: 7px;
}

.ws-features-discussions__composer {
  flex: 0 0 auto;
  margin: 8px 12px 12px;
  overflow: hidden;
  border: 1px solid rgba(113, 125, 185, 0.24);
  border-radius: 9px;
  background: #fff;
}

.ws-features-discussions__composer > div {
  min-height: 58px;
  padding: 12px;
  color: #727b8f;
  font-size: 10px;
}

.ws-features-discussions__composer > div span {
  color: #8d95a6;
}

.ws-features-discussions__composer footer {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  padding: 0 9px;
  border-top: 1px solid rgba(113, 125, 185, 0.18);
  color: #737c8f;
  font-size: 11px;
}

.ws-features-discussions__composer footer em {
  font-family: serif;
}

.ws-features-discussions__composer footer strong {
  margin-left: auto;
  font-size: 8px;
}

.ws-features-discussions__composer footer button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #747d91;
  font-size: 14px;
}

.ws-features-discussions__composer footer button:last-child {
  background: rgba(83, 70, 255, 0.55);
  color: #fff;
}

@media (max-width: 991px) {
  .ws-features-filesystem__topbar {
    grid-template-columns: 190px minmax(180px, 1fr) auto;
    gap: 10px;
  }

  .ws-features-filesystem__brand > img {
    width: 150px;
  }

  .ws-features-filesystem__actions .ws-features-filesystem__create {
    display: none;
  }

  .ws-features-filesystem__body {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .ws-features-filesystem__columns-labels,
  .ws-features-filesystem__workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-features-filesystem__columns-labels strong:last-child,
  .ws-features-filesystem__upload {
    display: none;
  }

  .ws-features-discussions__drawer {
    width: 56%;
    min-width: 430px;
  }
}

@media (max-width: 767px) {
  .ws-features-workspace-switcher__tabs {
    margin-bottom: 14px;
  }

  .ws-features-workspace-switcher__tabs button {
    min-width: 94px;
    padding: 0 10px;
    font-size: 9px;
  }

  .ws-features-workspace-switcher__tabs button:last-child {
    min-width: 142px;
  }

  .ws-features-workspace-switcher__viewport {
    height: 586px;
  }

  .ws-features-workspace-switcher__viewport .ws-features-workspace__body {
    height: calc(100% - 64px);
  }

  .ws-features-filesystem__topbar {
    height: 64px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0 12px;
  }

  .ws-features-filesystem__brand > img {
    width: 135px;
  }

  .ws-features-filesystem__brand > span,
  .ws-features-filesystem__search,
  .ws-features-filesystem__actions > button {
    display: none;
  }

  .ws-features-filesystem__body {
    height: calc(100% - 64px);
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-features-filesystem__sidebar {
    display: none;
  }

  .ws-features-filesystem__content {
    padding: 12px;
  }

  .ws-features-filesystem__heading h3 {
    font-size: 19px;
  }

  .ws-features-filesystem__heading p {
    max-width: 290px;
  }

  .ws-features-filesystem__heading > button {
    display: none;
  }

  .ws-features-filesystem__file-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ws-features-file__preview {
    height: 78px;
  }

  .ws-features-discussions__drawer {
    width: 100%;
    min-width: 0;
  }
}

.ws-features-workflow,
.ws-features-workspace-section,
.ws-features-pillars,
.ws-features-directory,
.ws-features-modules,
.ws-features-roles,
.ws-features-cta {
  padding: 74px 0;
}

.ws-features-workspace-section {
  padding-top: 36px;
}

.ws-features-section-heading {
  display: grid;
  grid-template-columns: 0.64fr 1.45fr 0.9fr;
  gap: 38px;
  align-items: start;
  margin-bottom: 42px;
}

.ws-features-section-heading h2 {
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 590;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.ws-features-section-heading p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.75;
}

.ws-features-workflow__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(113, 125, 185, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(31, 42, 68, 0.08);
  overflow: hidden;
}

.ws-features-workflow__step {
  min-height: 260px;
  padding: 32px 26px;
  border-right: 1px solid rgba(113, 125, 185, 0.18);
}

.ws-features-workflow__step:last-child {
  border-right: 0;
}

.ws-features-workflow__step span,
.ws-features-role__label {
  display: inline-grid;
  place-items: center;
  color: var(--ws-blue);
  background: var(--ws-blue-soft);
  font-weight: 850;
}

.ws-features-workflow__step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.ws-features-workflow__step h3,
.ws-features-pillar h3,
.ws-features-modules__grid h3 {
  margin: 28px 0 12px;
  color: var(--ws-ink);
  font-size: 24px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.ws-features-workflow__step p,
.ws-features-pillar p,
.ws-features-modules__grid li,
.ws-features-roles__grid article p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.68;
}

.ws-features-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ws-features-pillar,
.ws-features-modules__grid article,
.ws-features-roles__grid article {
  border: 1px solid rgba(113, 125, 185, 0.22);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(31, 42, 68, 0.06);
}

.ws-features-pillar {
  position: relative;
  isolation: isolate;
  min-height: 270px;
  padding: 30px 28px 26px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 100%, rgba(83, 70, 255, 0.075), transparent 42%),
    rgba(255, 255, 255, 0.84);
}

.ws-features-pillar__icon {
  --ws-feature-glyph-size: 136px;
  position: absolute;
  right: -18px;
  bottom: -14px;
  z-index: -1;
  width: 156px;
  height: 156px;
  margin: 0;
  opacity: 0.1;
  transform: rotate(-4deg);
  transform-origin: center;
  pointer-events: none;
}

.ws-features-pillar:nth-child(even) .ws-features-pillar__icon {
  right: -10px;
  bottom: -22px;
  transform: rotate(4deg);
}

.ws-features-pillar h3,
.ws-features-pillar p,
.ws-features-pillar ul {
  position: relative;
  z-index: 1;
}

.ws-features-pillar h3 {
  margin: 0 0 12px;
  max-width: 82%;
}

.ws-features-pillar p {
  max-width: 92%;
}

.ws-features-pillar ul,
.ws-features-modules__grid ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ws-features-pillar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
  max-width: 88%;
}

.ws-features-pillar li {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 999px;
  color: #5e667d;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 740;
  line-height: 1.25;
}

.ws-features-directory {
  padding-top: 36px;
}

.ws-features-directory__panel {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(113, 125, 185, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 12%, rgba(83, 70, 255, 0.07), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(242, 140, 59, 0.12), transparent 25%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 70px rgba(31, 42, 68, 0.07);
}

.ws-features-directory__group {
  padding-top: 34px;
  border-top: 1px solid rgba(113, 125, 185, 0.16);
}

.ws-features-directory__group + .ws-features-directory__group {
  margin-top: 36px;
}

.ws-features-directory__group h3 {
  display: inline-block;
  margin: 0 0 20px;
  color: var(--ws-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-features-directory__group h3::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: var(--ws-orange);
  content: "";
}

.ws-features-directory__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ws-features-directory-card {
  position: relative;
  min-height: 260px;
  scroll-margin-top: 130px;
  padding: 26px;
  border: 1px solid rgba(113, 125, 185, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(31, 42, 68, 0.055);
}

.ws-features-directory-card:target {
  border-color: rgba(83, 70, 255, 0.42);
  box-shadow: 0 22px 58px rgba(83, 70, 255, 0.13);
}

.ws-features-directory-card__mark {
  --ws-feature-glyph-size: 32px;
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
}

.ws-features-directory-card__mark::after {
  display: none;
}

.ws-features-directory-card h4 {
  margin: 0 0 12px;
  color: var(--ws-ink);
  font-size: 22px;
  font-weight: 640;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.ws-features-directory-card p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 14px;
  font-weight: 520;
  line-height: 1.65;
}

.ws-features-directory-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ws-features-directory-card li {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 999px;
  color: #5e667d;
  background: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 650;
  line-height: 1;
}

.ws-features-modules__panel,
.ws-features-cta__panel {
  position: relative;
  padding: 42px;
  border: 1px solid rgba(113, 125, 185, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 8% 20%, rgba(83, 70, 255, 0.09), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(242, 140, 59, 0.12), transparent 24%);
  box-shadow: 0 30px 80px rgba(31, 42, 68, 0.08);
  overflow: hidden;
}

.ws-features-modules__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(113, 125, 185, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 62%);
  pointer-events: none;
}

.ws-features-modules__panel > * {
  position: relative;
  z-index: 1;
}

.ws-features-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ws-features-modules__grid article {
  padding: 24px;
  border-radius: 22px;
}

.ws-features-modules__grid h3 {
  margin-top: 0;
  font-size: 20px;
}

.ws-features-modules__grid li {
  position: relative;
  padding-left: 18px;
}

.ws-features-modules__grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ws-orange);
}

.ws-features-roles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ws-features-roles__grid article {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  padding: 26px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 100%, rgba(83, 70, 255, 0.075), transparent 46%),
    rgba(255, 255, 255, 0.84);
}

.ws-features-role__icon {
  --ws-feature-glyph-size: 116px;
  position: absolute;
  right: -10px;
  bottom: -16px;
  z-index: -1;
  width: 136px;
  height: 136px;
  opacity: 0.1;
  transform: rotate(-4deg);
  transform-origin: center;
  pointer-events: none;
}

.ws-features-roles__grid article:nth-child(even) .ws-features-role__icon {
  right: -4px;
  bottom: -22px;
  transform: rotate(4deg);
}

.ws-features-role__label,
.ws-features-roles__grid article p {
  position: relative;
  z-index: 1;
}

.ws-features-role__label {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ws-features-roles__grid article p {
  margin-top: 24px;
  max-width: 92%;
  color: var(--ws-muted);
  font-size: 16px;
  font-weight: 560;
}

.ws-features-cta {
  padding-bottom: 120px;
}

.ws-features-cta__panel {
  display: grid;
  justify-items: center;
  text-align: center;
}

.ws-features-cta__panel h2 {
  max-width: 860px;
  margin: 32px auto 18px;
  color: var(--ws-ink);
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 590;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.ws-features-cta__panel p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: var(--ws-muted);
  font-size: 17px;
  font-weight: 560;
  line-height: 1.75;
}

@media (max-width: 1199px) {
  .ws-features-hero__grid,
  .ws-features-section-heading {
    grid-template-columns: 1fr;
  }

  .ws-features-hero__grid {
    gap: 34px;
  }

  .ws-features-workflow__track,
  .ws-features-pillars__grid,
  .ws-features-directory__grid,
  .ws-features-modules__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ws-features-workflow__step {
    border-right: 1px solid rgba(113, 125, 185, 0.18);
    border-bottom: 1px solid rgba(113, 125, 185, 0.18);
  }

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

@media (max-width: 767px) {
  .ws-features-hero {
    padding: 118px 0 44px;
  }

  .ws-features-hero__copy h1 {
    margin-top: 28px;
    font-size: 48px;
  }

  .ws-features-hero__copy p {
    font-size: 16px;
  }

  .ws-features-preview__body,
  .ws-features-workflow__track,
  .ws-features-pillars__grid,
  .ws-features-directory__grid,
  .ws-features-modules__grid,
  .ws-features-roles__grid {
    grid-template-columns: 1fr;
  }

  .ws-features-preview__body {
    padding: 14px;
  }

  .ws-features-preview__plan {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 320px;
  }

  .ws-features-preview__rail {
    min-height: 320px;
  }

  .ws-features-preview__rail::before {
    width: 38px;
    height: 270px;
  }

  .ws-features-preview__rail button {
    width: 32px;
    height: 32px;
  }

  .ws-features-preview__rail img {
    width: 17px;
    height: 17px;
  }

  .ws-features-preview__drawing {
    min-height: 320px;
  }

  .ws-features-preview__actionbar {
    display: none;
  }

  .ws-features-preview__drawing > svg {
    top: 92px;
    width: 92%;
  }

  .ws-features-preview__marker {
    left: 18%;
    bottom: 44px;
  }

  .ws-features-workspace__drawing {
    top: 92px;
    width: 88%;
  }

  .ws-features-workspace__marker {
    top: 310px;
    left: 44%;
  }

  .ws-features-workspace__door-thread {
    display: none;
  }

  .ws-features-preview__context {
    padding: 20px;
  }

  .ws-features-workflow,
  .ws-features-workspace-section,
  .ws-features-pillars,
  .ws-features-directory,
  .ws-features-modules,
  .ws-features-roles,
  .ws-features-cta {
    padding: 48px 0;
  }

  .ws-features-section-heading {
    gap: 22px;
    margin-bottom: 30px;
  }

  .ws-features-section-heading h2,
  .ws-features-cta__panel h2 {
    font-size: 38px;
  }

  .ws-features-directory__panel,
  .ws-features-modules__panel,
  .ws-features-cta__panel {
    padding: 26px;
    border-radius: 24px;
  }
}

/* Windows & Doors page */
.ws-wd-page {
  position: relative;
  overflow: hidden;
  background: var(--ws-page-background);
}

.ws-wd-hero {
  padding: 152px 0 78px;
}

.ws-wd-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 54px;
  align-items: center;
}

.ws-wd-hero__copy h1 {
  max-width: 760px;
  margin: 34px 0 24px;
  color: var(--ws-ink);
  font-size: clamp(54px, 5.4vw, 86px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.ws-wd-hero__copy p {
  max-width: 650px;
  margin: 0;
  color: var(--ws-muted);
  font-size: 18px;
  font-weight: 520;
  line-height: 1.75;
}

.ws-wd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ws-wd-hero__actions a {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid rgba(13, 38, 150, 0.14);
  border-radius: 999px;
  color: var(--ws-ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 780;
  box-shadow: 0 18px 44px rgba(31, 42, 68, 0.08);
}

.ws-wd-hero__actions a:first-child {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #5d28ff, var(--ws-blue-dark));
}

.ws-wd-hero-visual,
.ws-wd-proof__panel,
.ws-wd-cta .ws-features-cta__panel {
  border: 1px solid rgba(113, 125, 185, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 8% 20%, rgba(83, 70, 255, 0.09), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(242, 140, 59, 0.13), transparent 24%);
  box-shadow: 0 30px 80px rgba(31, 42, 68, 0.1);
}

.ws-wd-hero-visual {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 30px;
}

.ws-wd-hero-visual::before,
.ws-wd-proof__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(113, 125, 185, 0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
  pointer-events: none;
}

.ws-wd-hero-visual > *,
.ws-wd-proof__panel > * {
  position: relative;
  z-index: 1;
}

.ws-wd-hero-visual__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.ws-wd-hero-visual__header div {
  display: grid;
  gap: 5px;
}

.ws-wd-hero-visual__header span,
.ws-wd-hero-visual__header em,
.ws-wd-plan-card > span,
.ws-wd-estimate-card > span,
.ws-wd-proof-card > span {
  color: var(--ws-blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-wd-hero-visual__header strong {
  color: var(--ws-ink);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.ws-wd-hero-visual__header em {
  padding: 8px 12px;
  border-radius: 999px;
  color: #4f9560;
  background: rgba(94, 177, 111, 0.12);
  letter-spacing: 0;
  text-transform: none;
}

.ws-wd-pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.ws-wd-pipeline__step {
  display: grid;
  gap: 7px;
  min-height: 86px;
  padding: 14px 12px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.ws-wd-pipeline__step span,
.ws-wd-workflow__track article span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ws-blue);
  background: var(--ws-blue-soft);
  font-size: 11px;
  font-weight: 850;
}

.ws-wd-pipeline__step strong {
  color: var(--ws-ink);
  font-size: 13px;
}

.ws-wd-hero-visual__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, 0.85fr);
  gap: 14px;
}

.ws-wd-plan-card,
.ws-wd-estimate-card,
.ws-wd-proof-card,
.ws-wd-doc-list,
.ws-wd-capabilities__grid article {
  border: 1px solid rgba(113, 125, 185, 0.2);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(31, 42, 68, 0.06);
}

.ws-wd-plan-card {
  position: relative;
  min-height: 245px;
  padding: 18px;
  border-radius: 22px;
}

.ws-wd-plan-card svg {
  display: block;
  width: 100%;
  height: 190px;
  margin-top: 10px;
  overflow: visible;
  filter: drop-shadow(0 14px 22px rgba(31, 42, 68, 0.08));
}

.ws-shutters-plan-card svg {
  height: 200px;
}

.ws-shutter-symbol {
  color: #252525;
}

.ws-shutter-symbol__ends,
.ws-shutter-symbol__frame,
.ws-shutter-symbol__zigzag {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.ws-shutter-symbol__ends {
  stroke-width: 3.8;
}

.ws-shutter-symbol__frame {
  stroke-width: 2.8;
}

.ws-shutter-symbol__zigzag {
  stroke-width: 3;
}

.ws-shutter-symbol text {
  fill: currentColor;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.ws-floor-plans-card svg {
  height: 200px;
}

.ws-floor-plan-room {
  fill: none;
  stroke: rgba(13, 38, 150, 0.2);
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.ws-floor-plan-labels text {
  fill: rgba(31, 42, 68, 0.56);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.ws-dp-plan-card {
  overflow: hidden;
}

.ws-dp-plan-card svg {
  height: 200px;
}

.ws-dp-zone-lines path {
  fill: none;
  stroke: rgba(31, 42, 68, 0.62);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 4 4;
}

.ws-dp-zone-marker {
  color: #1f2a44;
}

.ws-dp-zone-marker circle,
.ws-dp-zone-marker path {
  fill: rgba(255, 255, 255, 0.76);
  stroke: currentColor;
  stroke-width: 2;
}

.ws-dp-zone-marker text {
  fill: var(--ws-blue);
  font-size: 14px;
  font-weight: 850;
  text-anchor: middle;
}

.ws-dp-zone-marker--5 text {
  fill: var(--ws-blue-dark);
}

.ws-dp-distance-tag rect {
  fill: rgba(219, 151, 55, 0.92);
  stroke: rgba(130, 91, 25, 0.5);
  stroke-width: 1;
}

.ws-dp-distance-tag text {
  fill: #fff;
  font-size: 10px;
  font-weight: 850;
  text-anchor: middle;
}

.ws-dp-report-card strong {
  font-size: 42px;
}

.ws-ai-visual {
  overflow: visible;
  min-height: 520px;
  background:
    radial-gradient(circle at 16% 18%, rgba(13, 38, 150, 0.13), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(242, 140, 59, 0.14), transparent 25%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.82));
}

.ws-ai-website-card {
  position: relative;
  z-index: 1;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(113, 125, 185, 0.22);
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 24px 60px rgba(31, 42, 68, 0.12);
}

.ws-ai-website-card__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.2)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.28), transparent 12%),
    linear-gradient(135deg, #263b2f 0%, #586c4d 42%, #d8ddd2 100%);
}

.ws-ai-website-card__media::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 34%;
  height: 74%;
  border: 8px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  box-shadow:
    -34px 0 0 -25px rgba(255, 255, 255, 0.76),
    34px 0 0 -25px rgba(255, 255, 255, 0.76);
}

.ws-ai-website-card__content {
  position: relative;
  z-index: 1;
  max-width: 292px;
  padding: 22px;
}

.ws-ai-website-card__content span,
.ws-ai-mode-row span {
  color: #d9dcff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ws-ai-website-card__content strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 20px;
  font-weight: 760;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.ws-ai-website-card__content p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 560;
  line-height: 1.55;
}

.ws-ai-welcome-bubble {
  position: absolute;
  right: 24px;
  bottom: 98px;
  z-index: 4;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 14px;
  gap: 12px;
  align-items: center;
  width: min(315px, calc(100% - 40px));
  padding: 10px 12px;
  border-radius: 8px;
  color: #32394d;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
  animation: wsAiBubblePop 14s ease-in-out infinite;
}

.ws-ai-welcome-bubble::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -12px;
  border-width: 12px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.ws-ai-avatar,
.ws-ai-agent-avatar {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #f28c3b, #1f1684);
  font-size: 14px;
  font-weight: 850;
}

.ws-ai-avatar img,
.ws-ai-agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-ai-welcome-bubble p {
  margin: 0;
  color: #3f4658;
  font-size: 13px;
  font-weight: 560;
  line-height: 1.45;
}

.ws-ai-welcome-bubble i {
  color: #1f2635;
  font-size: 18px;
  font-style: normal;
}

.ws-ai-launcher {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #ed1c24;
  box-shadow: 0 18px 40px rgba(237, 28, 36, 0.28);
  animation: wsAiLauncherPulse 14s ease-in-out infinite;
}

.ws-ai-launcher svg {
  width: 28px;
  height: 28px;
}

.ws-ai-launcher path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ws-ai-chat-card {
  position: absolute;
  right: 24px;
  bottom: 148px;
  z-index: 20;
  width: min(375px, calc(100% - 48px));
  height: 392px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #171347;
  box-shadow: 0 30px 80px rgba(31, 42, 68, 0.22);
  animation: wsAiChatOpen 14s ease-in-out infinite;
}

.ws-ai-chat-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px 8px;
  color: #fff;
}

.ws-ai-agent-avatar {
  width: 34px;
  height: 34px;
  font-size: 13px;
}

.ws-ai-chat-card__header div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.ws-ai-chat-card__header strong {
  color: #fff;
  font-size: 16px;
  font-weight: 760;
}

.ws-ai-chat-card__header i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: transparent;
  background: #62bd80;
}

.ws-ai-chat-card__header em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-style: normal;
}

.ws-ai-mode-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 13px 7px;
}

.ws-ai-mode-row span {
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d7d9ff;
  background: rgba(255, 255, 255, 0.07);
  letter-spacing: 0;
  text-transform: none;
}

.ws-ai-chat-thread {
  position: relative;
  height: 244px;
  overflow: hidden;
  padding: 5px 13px 10px;
}

.ws-ai-chat-stream {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  animation: wsAiConversationScroll 14s ease-in-out infinite;
}

.ws-ai-message,
.ws-ai-product-card {
  width: fit-content;
  max-width: 82%;
  margin: 0;
  border-radius: 8px;
  opacity: 1;
  transform: none;
}

.ws-ai-message {
  padding: 6px 8px;
  font-size: 10.5px;
  font-weight: 540;
  line-height: 1.38;
}

.ws-ai-message--agent {
  align-self: flex-start;
  color: #07133a;
  background: #fff;
}

.ws-ai-message--client {
  align-self: flex-end;
  color: #fff;
  background: #ed1c24;
}

.ws-ai-product-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-self: flex-start;
  max-width: 86%;
  overflow: hidden;
  color: #111735;
  background: #f7f8fb;
  border: 1px solid rgba(113, 125, 185, 0.24);
  font-size: 11px;
}

.ws-ai-product-card > div {
  display: grid;
  gap: 6px;
  padding: 7px;
  border-right: 1px solid rgba(113, 125, 185, 0.18);
}

.ws-ai-product-card > div:last-child {
  border-right: 0;
}

.ws-ai-product-card span {
  color: #171347;
  font-size: 10px;
  font-weight: 820;
}

.ws-ai-product-card img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 5px;
  background: #eceef3;
}

.ws-ai-product-card strong {
  display: block;
  color: #171347;
  font-size: 11px;
  font-weight: 820;
  line-height: 1.15;
}

.ws-ai-product-card p {
  margin: 0;
  color: #30374d;
  font-size: 9.5px;
  font-weight: 560;
  line-height: 1.25;
}

.ws-ai-chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 13px 13px;
  padding: 7px 7px 7px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.ws-ai-chat-input span {
  font-size: 13px;
}

.ws-ai-chat-input strong {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #ed1c24;
}

@keyframes wsAiBubblePop {
  0%, 8% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  13%, 31% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  38%, 100% {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
}

@keyframes wsAiLauncherPulse {
  0%, 100% {
    transform: scale(1);
  }
  30%, 42% {
    transform: scale(1.08);
  }
}

@keyframes wsAiChatOpen {
  0%, 32% {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  40%, 96% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
}

@keyframes wsAiConversationScroll {
  0%, 39% {
    opacity: 0;
    transform: translateY(14px);
  }
  43%, 52% {
    opacity: 1;
    transform: translateY(0);
  }
  63% {
    opacity: 1;
    transform: translateY(-30px);
  }
  76% {
    opacity: 1;
    transform: translateY(-58px);
  }
  88%, 96% {
    opacity: 1;
    transform: translateY(-78px);
  }
  100% {
    opacity: 0;
    transform: translateY(-78px);
  }
}

.ws-wd-estimate-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border-radius: 22px;
}

.ws-wd-estimate-card strong {
  margin-top: 16px;
  color: var(--ws-ink);
  font-size: 48px;
  font-weight: 650;
  letter-spacing: -0.06em;
}

.ws-wd-estimate-card p {
  margin: 10px 0 22px;
  color: var(--ws-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.ws-wd-estimate-card div {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(113, 125, 185, 0.16);
}

.ws-wd-estimate-card i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5d28ff, #8e6cff);
}

.ws-wd-workflow,
.ws-wd-capabilities,
.ws-wd-proof,
.ws-solution-continuity,
.ws-wd-cta {
  padding: 74px 0;
}

.ws-wd-workflow__track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(113, 125, 185, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(31, 42, 68, 0.08);
  overflow: hidden;
}

.ws-wd-workflow__track article {
  min-height: 280px;
  padding: 30px 24px;
  border-right: 1px solid rgba(113, 125, 185, 0.18);
}

.ws-wd-workflow__track article:last-child {
  border-right: 0;
}

.ws-wd-workflow__track h3,
.ws-wd-capabilities__grid h3,
.ws-wd-proof-card h3 {
  margin: 26px 0 12px;
  color: var(--ws-ink);
  font-size: 23px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.ws-wd-workflow__track p,
.ws-wd-capabilities__grid p,
.ws-wd-proof-card p {
  margin: 0;
  color: var(--ws-muted);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.68;
}

.ws-wd-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ws-wd-capabilities__grid article {
  min-height: 350px;
  padding: 28px;
  border-radius: 24px;
}

.ws-wd-capabilities__grid article > div {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  color: var(--ws-blue);
  background: var(--ws-blue-soft);
}

.ws-wd-capabilities__grid article > div span {
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 7px;
  box-shadow: 10px 8px 0 rgba(242, 140, 59, 0.5);
}

.ws-wd-capabilities__grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ws-wd-capabilities__grid li {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 999px;
  color: #5e667d;
  background: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 740;
  line-height: 1.25;
}

.ws-wd-proof__panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 30px;
}

.ws-wd-proof__content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.ws-wd-doc-list {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 24px;
}

.ws-wd-doc-list div {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--ws-ink);
  font-size: 14px;
  font-weight: 720;
}

.ws-wd-doc-list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ws-orange);
}

.ws-wd-proof-card {
  padding: 32px;
  border-radius: 24px;
}

.ws-wd-proof-card h3 {
  margin-top: 18px;
  font-size: 34px;
}

.ws-wd-proof-card__files {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.ws-wd-proof-card__files span {
  padding: 4px 10px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 999px;
  color: #5e667d;
  background: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 740;
  line-height: 1.25;
}

.ws-solution-continuity__panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.ws-solution-continuity__main,
.ws-solution-continuity__grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(113, 125, 185, 0.2);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 60px rgba(31, 42, 68, 0.07);
}

.ws-solution-continuity__main {
  min-height: 420px;
  padding: 34px;
  border-radius: 30px;
}

.ws-solution-continuity__main::before,
.ws-solution-continuity__grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(91, 70, 245, 0.1), transparent 30%),
    radial-gradient(circle at 96% 10%, rgba(242, 140, 59, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 255, 0.68));
  pointer-events: none;
}

.ws-solution-continuity__main > *,
.ws-solution-continuity__grid article > * {
  position: relative;
  z-index: 1;
}

.ws-solution-continuity__main > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(91, 70, 245, 0.18);
  border-radius: 999px;
  color: var(--ws-blue);
  background: rgba(91, 70, 245, 0.07);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-solution-continuity__main h3 {
  max-width: 520px;
  margin: 0;
  color: var(--ws-ink);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 640;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.ws-solution-continuity__main p,
.ws-solution-continuity__grid p {
  margin: 18px 0 0;
  color: var(--ws-muted);
  font-size: 14px;
  font-weight: 560;
  line-height: 1.68;
}

.ws-solution-continuity__flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.ws-solution-continuity__flow i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 38, 150, 0.12), rgba(91, 70, 245, 0.75));
}

.ws-solution-continuity__flow i:nth-child(2) {
  background: linear-gradient(90deg, rgba(91, 70, 245, 0.16), rgba(242, 140, 59, 0.8));
}

.ws-solution-continuity__flow i:nth-child(3) {
  background: linear-gradient(90deg, rgba(242, 140, 59, 0.18), rgba(13, 38, 150, 0.86));
}

.ws-solution-continuity__tags,
.ws-solution-continuity__grid article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.ws-solution-continuity__tags em,
.ws-solution-continuity__grid span {
  display: inline-flex;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(113, 125, 185, 0.18);
  border-radius: 999px;
  color: #5e667d;
  background: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-style: normal;
  font-weight: 740;
  line-height: 1.25;
}

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

.ws-solution-continuity__grid article {
  min-height: 200px;
  padding: 26px;
  border-radius: 24px;
}

.ws-solution-continuity__grid h3 {
  margin: 0;
  color: var(--ws-ink);
  font-size: 21px;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.ws-wd-cta {
  padding-bottom: 120px;
}

.ws-legal-page {
  overflow: hidden;
  background: var(--ws-page-bg);
}

.ws-legal-hero {
  padding: 150px 0 34px;
}

.ws-legal-hero__grid {
  display: block;
}

.ws-legal-hero h1 {
  margin: 28px 0 0;
  max-width: none;
  color: var(--ws-ink);
  font-size: clamp(54px, 7vw, 94px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.ws-legal-content {
  padding: 20px 0 110px;
}

.ws-legal-document {
  width: 100%;
  margin: 0;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(113, 125, 185, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 0%, rgba(13, 38, 150, 0.06), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(242, 140, 59, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 30px 90px rgba(31, 42, 68, 0.08);
}

.ws-legal-intro,
.ws-legal-section p {
  color: #626a80;
  font-size: 16px;
  font-weight: 560;
  line-height: 1.85;
}

.ws-legal-intro {
  margin: 0 0 38px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(113, 125, 185, 0.18);
}

.ws-legal-intro--meta {
  margin-bottom: 12px;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--ws-blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ws-legal-section {
  padding: 30px 0;
  border-bottom: 1px solid rgba(113, 125, 185, 0.14);
}

.ws-legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ws-legal-section h2 {
  margin: 0 0 16px;
  color: var(--ws-ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.ws-legal-section p {
  margin: 12px 0 0;
}

.ws-legal-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.ws-legal-section li {
  position: relative;
  padding-left: 18px;
  color: #626a80;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.55;
}

.ws-legal-section li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ws-orange);
}

.ws-legal-section strong {
  color: var(--ws-blue);
  font-weight: 850;
}

.ws-legal-document a {
  color: var(--ws-blue);
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 0.22em;
}

.ws-legal-document a:hover {
  text-decoration: underline;
}

.ws-faq-page {
  overflow: hidden;
  background: var(--ws-page-bg);
}

.ws-faq-hero {
  padding: 150px 0 46px;
}

.ws-faq-hero__content {
  max-width: 980px;
}

.ws-faq-hero h1 {
  margin: 28px 0 0;
  color: var(--ws-ink);
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: -0.078em;
}

.ws-faq-hero p {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--ws-muted);
  font-size: 18px;
  font-weight: 620;
  line-height: 1.75;
}

.ws-faq-list {
  padding: 18px 0 112px;
}

.ws-faq-list__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.ws-faq-item {
  border: 1px solid rgba(113, 125, 185, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(13, 38, 150, 0.055), transparent 28%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(31, 42, 68, 0.06);
}

.ws-faq-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 24px 26px;
  color: var(--ws-ink);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.32;
  letter-spacing: -0.025em;
  cursor: pointer;
  list-style: none;
}

.ws-faq-item summary::-webkit-details-marker {
  display: none;
}

.ws-faq-item summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-top: -3px;
  border-radius: 50%;
  color: var(--ws-blue);
  background: rgba(93, 40, 255, 0.08);
  font-size: 20px;
  font-weight: 760;
}

.ws-faq-item[open] summary::after {
  content: "–";
}

.ws-faq-item summary span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--ws-blue);
  background: rgba(93, 40, 255, 0.08);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.ws-faq-item p {
  margin: 0;
  padding: 0 26px 26px 78px;
  color: #626a80;
  font-size: 15px;
  font-weight: 560;
  line-height: 1.78;
}

@media (max-width: 1199px) {
  .ws-wd-hero__grid,
  .ws-wd-proof__content,
  .ws-solution-continuity__panel {
    grid-template-columns: 1fr;
  }

  .ws-wd-workflow__track,
  .ws-wd-capabilities__grid,
  .ws-solution-continuity__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ws-wd-workflow__track article {
    border-right: 1px solid rgba(113, 125, 185, 0.18);
    border-bottom: 1px solid rgba(113, 125, 185, 0.18);
  }

  .ws-faq-list__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ws-wd-hero {
    padding: 118px 0 48px;
  }

  .ws-wd-hero__copy h1 {
    margin-top: 28px;
    font-size: 48px;
  }

  .ws-wd-hero__copy p {
    font-size: 16px;
  }

  .ws-wd-hero__actions {
    flex-direction: column;
  }

  .ws-wd-hero__actions a {
    width: min(100%, 300px);
  }

  .ws-wd-hero-visual,
  .ws-wd-proof__panel {
    padding: 18px;
    border-radius: 24px;
  }

  .ws-wd-pipeline,
  .ws-wd-hero-visual__body,
  .ws-wd-workflow__track,
  .ws-wd-capabilities__grid,
  .ws-solution-continuity__grid {
    grid-template-columns: 1fr;
  }

  .ws-wd-plan-card svg {
    height: 170px;
  }

  .ws-wd-workflow,
  .ws-wd-capabilities,
  .ws-wd-proof,
  .ws-solution-continuity,
  .ws-wd-cta {
    padding: 48px 0;
  }

  .ws-solution-continuity__main {
    min-height: 0;
    padding: 26px;
    border-radius: 24px;
  }

  .ws-solution-continuity__grid article {
    min-height: 0;
    padding: 24px;
  }

  .ws-wd-proof-card h3 {
    font-size: 30px;
  }

  .ws-legal-hero {
    padding: 118px 0 34px;
  }

  .ws-legal-hero h1 {
    font-size: 52px;
    white-space: normal;
  }

  .ws-legal-content {
    padding-bottom: 64px;
  }

  .ws-legal-document {
    border-radius: 24px;
  }

  .ws-faq-hero {
    padding: 118px 0 34px;
  }

  .ws-faq-hero h1 {
    font-size: 52px;
  }

  .ws-faq-hero p {
    font-size: 16px;
  }

  .ws-faq-list {
    padding-bottom: 64px;
  }

  .ws-faq-item summary {
    grid-template-columns: 1fr auto;
    padding: 22px;
  }

  .ws-faq-item summary span {
    grid-column: 1 / -1;
  }

  .ws-faq-item p {
    padding: 0 22px 24px;
  }
}

/* Typography weight test: lighter editorial direction for main landing titles. */
.ws-main-hero .sec-title .title,
.ws-main-hero .heroTitleUp,
.ws-wd-hero__copy h1,
.ws-features-hero__copy h1,
.ws-about-hero__copy h1,
.ws-contact-hero__copy h1,
.ws-blog-hero__inner h1,
.ws-blog-detail__header h1,
.ws-legal-hero h1,
.ws-faq-hero h1 {
  font-weight: 480 !important;
}

.ws-capabilities__intro h2,
.ws-impact-stats__intro h2,
.ws-project-execution__heading h2,
.ws-field-ops__heading h2,
.ws-estimating__heading h2,
.ws-pricing__heading h2,
.ws-blog-highlights__heading h2,
.ws-blog-related__heading h2,
.ws-mobile-apps__copy h2,
.ws-about-story__heading h2,
.ws-about-principles__heading h2,
.ws-hubspot-demo__copy h2,
.ws-features-section-heading h2,
.ws-features-cta__panel h2,
.ws-wd-workflow h2,
.ws-wd-capabilities h2,
.ws-wd-proof h2,
.ws-wd-cta h2,
.ws-legal-section h2 {
  font-weight: 500 !important;
}

.ws-section-kicker,
.ws-legal-intro--meta {
  font-weight: 620 !important;
  letter-spacing: 0.075em;
}

.ws-title-accent,
.ws-hero-title-blue {
  font-weight: inherit !important;
}

.ws-faq-item summary,
.ws-wd-hero__actions a,
.ws-hero-btns .desk-btn,
.ws-secondary-btn {
  font-weight: 650 !important;
}

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .ws-main-hero-preview__pipeline .ws-wd-pipeline__step.is-active .ws-main-hero-step-ring__value {
    animation: none;
    stroke-dashoffset: 0;
  }

  .ws-main-hero-mobile-step-label {
    animation: none;
  }

  .ws-addon-option.is-active .ws-addon-option__ring-value {
    animation: none;
    stroke-dashoffset: 0;
  }
}
