@font-face {
  font-family: "Brockmann";
  src:
    url("../fonts/brockmann-medium-webfont.woff") format("woff"),
    url("../fonts/brockmann-medium-webfont.ttf") format("truetype"),
    url("../fonts/brockmann-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --page-black: #000;
  --text-white: #fff;
}

html {
  min-height: 100%;
  background: var(--page-black);
}

body {
  min-height: 100%;
  margin: 0;
  background-color: var(--page-black);
  color: var(--text-white);
  font-family: "Brockmann", "Segoe UI", Arial, sans-serif !important;
  font-weight: 500;
}

a{text-decoration: none;font-family: "Brockmann", "Segoe UI", Arial, sans-serif !important;cursor: pointer;}
a:hover {color: #000;text-decoration: none !important;}
button,
input,
span,
textarea,
select {
  font: inherit;
}

main {
  min-height: 100vh;
}

.workspace-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: clamp(132px, 17vh, 230px) 24px 110px;
  background: #050000;
}

.workspace-hero::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/bg-banner.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 1.25s ease,
    transform 1.8s ease;
  will-change: opacity, transform;
}

.workspace-hero.is-bg-visible::before {
  opacity: 1;
  transform: scale(1);
}

.workspace-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 230px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000 86%);
  z-index: 1;
}

.workspace-hero__content {
  position: relative;
  z-index: 2;
  width: min(1220px, 100%);
  text-align: center;
}

.workspace-hero__pill {
  width: fit-content;
  margin: 0 auto 38px;
  padding: 11px 28px 12px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    0 12px 32px rgba(0, 0, 0, .22);
  color: rgba(255, 255, 255, .96);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.workspace-hero__title {
  max-width: 1180px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(44px, 4.85vw, 92px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-wrap: balance;
}

.workspace-hero__copy {
  max-width: 1030px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(14px, 1.02vw, 17px);
  font-weight: 500;
  line-height: 1.55;
}

.workspace-showcase {
  position: relative;
  z-index: 2;
  padding: 1px 24px 96px;
  background: #000;
}

.workspace-showcase__inner {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding-top: 1px;
  text-align: center;
}

.workspace-showcase__preview {
  width: min(1040px, 100%);
  margin: -105px auto 0;
}

.workspace-showcase__preview img {
  display: block;
  width: 100%;
  height: auto;
}

.workspace-showcase__description {
  max-width: 680px;
  margin: 46px auto 0;
  color: #fff;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .58);
}

.workspace-showcase__description p {
  margin: 0;
}

.workspace-showcase__description p + p {
  margin-top: 30px;
}

.exceptionalities {
  background: #000;
  color: #fff;
  padding: 0 0 6px;
}

.exceptionalities__inner {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.exceptionalities__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, .96);
  font-size: clamp(22px, 1.9vw, 24px);
  font-weight: 500;
  line-height: .95;
  text-transform: uppercase;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.exceptionalities__title {
  max-width: 860px;
  margin: 23px 0 62px;
  color: #fff;
  font-size: clamp(34px, 3.05vw, 36px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

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

.exception-card {
  position: relative;
  height: 496px;
  overflow: hidden;
  border-radius: 32px;
  background: #050505;
}

.exception-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exception-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .4)),
    radial-gradient(90% 68% at 50% 100%, rgba(0, 0, 0, .55), transparent 62%);
}

.exception-card__content {
  position: absolute;
  right: 33px;
  bottom: 20px;
  left: 33px;
  min-height: 120px;
  padding: 15px 27px 19px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 18px;
  background: rgba(196, 196, 196, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);


}

.exception-card__content h3,
.operations-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 1.9vw, 24px);
  font-weight: 500;
  line-height: 1.1;
}

.exception-card__content p,
.operations-card p {
  max-width: 560px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, .93);
  font-size: clamp(16px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.18;
}

.operations-card {
  min-height: 192px;
  margin-top: 58px;
  padding: 51px 71px;
  border: 0.25px solid rgba(255, 24, 24, .85);
  border-radius: 34px;
  background: #070707;
}

.operations-card p {
  max-width: 590px;
  font-weight:400;
  color: rgba(255, 255, 255, .64);
}

.what-good {
  background: #000;
  color: #fff;
  overflow: visible;
  padding: 120px 24px 80px;
}

.what-good__inner {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.what-good__eyebrow {
  margin: 0;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .96);
  font-size: clamp(22px, 1.9vw, 24px);
  font-weight: 500;
  line-height: .95;
  text-transform: uppercase;
}

.what-good__intro {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 380px);
  justify-content: space-between;
  gap: 48px;
  margin: 23px 0 48px;
}

.what-good__intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 3.05vw, 40px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.what-good__intro p {
  max-width: 330px;
  margin: 2px 16px 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.what-good__body {
  display: grid;
  grid-template-columns: 293px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

.what-good__nav {
  position: sticky;
  top: 24px;
  z-index: 5;
  align-self: start;
  background: #000;
}

.what-good__nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 66px;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  color: rgba(255, 255, 255, .68);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  --line-progress: 0;
  transition: color .2s ease;
}

.what-good__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #BFD200 0%, #A19ACF 100%);
  transform: scaleX(var(--line-progress));
  transform-origin: left center;
}

.what-good__nav a.is-active {
  color: #fff;
}

.what-good__nav img,
.what-good__nav svg,
.good-card__chips img,
.good-card__chips svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.what-good__cards {
  display: grid;
  gap: 38px;
  position: relative;
  overflow: visible;
}

.good-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(255, 0, 32, .96);
  border-radius: 38px;
  background: #030303;
  will-change: transform;
}

.good-card::before,
.good-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.good-card::before {
  /* background-image:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .98) 31%, rgba(0, 0, 0, .77) 48%, rgba(5, 6, 17, .5) 68%, rgba(4, 6, 22, .26) 100%),
    url("../images/main.png"); */
  background-repeat: no-repeat;
  background-size: cover, 980px auto;
  background-position: center, right -56px top -18px;
  /* opacity: .84; */
}

/* .good-card::after {
  background:
    radial-gradient(34% 58% at 74% 32%, rgba(137, 104, 255, .34), transparent 70%),
    radial-gradient(26% 50% at 80% 76%, rgba(242, 74, 109, .26), transparent 78%),
    linear-gradient(90deg, #000 0 44%, transparent 78%);
} */

.good-card--employee::before {
  background-image: url("../images/employee-workspace.png");
  background-size: cover, cover;
  background-position: center, right center;
}

.good-card__content {
  position: relative;
  z-index: 1;
  width: min(510px, 58%);
  min-height: 368px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 0 42px 54px;
}

.good-card__content h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.good-card__content p {
  max-width: 405px;
  margin: 42px 0 0;
  color: rgba(225, 230, 246, .92);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.good-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 29px 23px;
  margin-top: 58px;
}

.good-card__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 111px;
  height: 43px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 6px;
  background: rgba(0, 0, 0, .26);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.good-card__chips--two-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px 22px;
  width: min(430px, 100%);
}

.good-card__chips--two-row span {
  min-width: 0;
  width: 100%;
}

.good-card__chips--two-row span:nth-child(1),
.good-card__chips--two-row span:nth-child(2) {
  grid-column: span 3;
}

.good-card__chips--two-row span:nth-child(3),
.good-card__chips--two-row span:nth-child(4),
.good-card__chips--two-row span:nth-child(5) {
  grid-column: span 2;
}

.good-card--people::before {
  background-image:url("../images/people-operations.png");
  background-size: cover, cover;
  background-position: center, right center;
}

.good-card--projects::before {
  background-image:url("../images/projects-delivery.png");
  background-size: cover, cover;
  background-position: center, right center;
}

.good-card--communication::before {
  background-image: url("../images/communication-planning.png");
  background-size: cover, cover;
  background-position: center, right center;
}

.good-card--reporting::before {
  background-image:url("../images/reporting-control.png");
  background-size: cover, cover;
  background-position: center, right center;
}

.good-card--production::before {
  background-image:url("../images/production-workspace.png");
  background-size: cover, cover;
  background-position: center, right center;
}

.audience {
  background: #000;
  color: #fff;
  padding: 50px 24px 96px;
}

.audience__inner {
  width: min(1260px, 100%);
  margin: 0 auto;
}

.audience__eyebrow {
  margin: 0;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .96);
  font-size: clamp(22px, 1.9vw, 24px);
  font-weight: 500;
  line-height: .95;
  text-transform: uppercase;
}

.audience__layout {
  display: grid;
  grid-template-columns: minmax(0, 524px) minmax(420px, 534px);
  justify-content: space-between;
  gap: 72px;
  margin-top: 23px;
  align-items: start;
}

.audience__copy h2 {
  max-width: 530px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 3.35vw, 45px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.audience-list {
  display: grid;
  gap: 28px;
  margin-top: 76px;
  padding-left: 39px;
}

.audience-card {
  min-height: 122px;
  padding: 18px 17px;
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 11px;
  background: #000;
}

.audience-card__heading {
  display: flex;
  align-items: center;
  gap: 24px;
}

.audience-card__icon {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.audience-card__icon--founder {
  width: 14px;
  height: 14px;
  flex-basis: 14px;
}

.audience-card h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
}

.audience-card p {
  max-width: 445px;
  margin: 25px 0 0;
  color: rgba(225, 230, 246, .92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.22;
}

.audience__visual {
  margin: 8px 0 0;
}

.audience__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.ecosystem-section {
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 60px 46px 0;
}

.ecosystem-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(0, 916px);
  align-items: stretch;
  justify-content: space-between;
  gap: 32px;
  width: min(1596px, 100%);
  margin: 0 auto;
}

.ecosystem-section__content {
  position: relative;
  z-index: 2;
}

.ecosystem-section__eyebrow {
  margin: 0;
  padding-bottom: 21px;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  color: rgba(255, 255, 255, .96);
  font-size: clamp(22px, 1.9vw, 24px);
  font-weight: 500;
  line-height: .95;
  text-transform: uppercase;
}

.ecosystem-section h2 {
  max-width: 680px;
  margin: 23px 0 0;
  color: #fff;
  font-size: clamp(38px, 3.35vw, 45px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.ecosystem-section__lead {
  max-width: 560px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, .94);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.ecosystem-list {
  display: grid;
  gap: 14px;
  width: min(478px, 100%);
  margin-top: 32px;
}

.ecosystem-list__item {
  display: flex;
  align-items: center;
  min-height: 55px;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 11px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.ecosystem-list__icon {
  width: 17px;
  height: 17px;
  margin-right: 17px;
  flex: 0 0 17px;
  color: #fff;
}

.ecosystem-section__visual {
  position: relative;
  width: min(916px, 100%);
  min-height: 100%;
  justify-self: end;
  margin-top: -8px;
}

.ecosystem-section__visual svg {
  display: block;
  width: 100%;
  height: 100%;
}

.demo-cta {
  position: relative;
  display: grid;
  place-items: start center;
  min-height: 720px;
  overflow: hidden;
  padding: 215px 24px 120px;
  background: #050000;
  color: #fff;
  text-align: center;
}

.demo-cta::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../images/demo-cta-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  opacity: 0;
  transform: scale(1.015);
  transition:
    opacity 1.25s ease,
    transform 1.8s ease;
  will-change: opacity, transform;
}

.demo-cta.is-bg-visible::before {
  opacity: 1;
  transform: scale(1);
}

.demo-cta__content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.demo-cta h2 {
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(42px, 3.3vw, 56px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.demo-cta p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.demo-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 296px;
  min-height: 53px;
  margin-top: 34px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: rgba(34, 21, 20, .9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 18px 38px rgba(0, 0, 0, .24);
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.demo-cta__button:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 296px;
  min-height: 53px;
  margin-top: 34px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
  background: rgba(34, 21, 20, .9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 18px 38px rgba(0, 0, 0, .24);
  color: rgba(255, 255, 255, .92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}



@media (max-width: 1180px) {
  .what-good__body {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 36px;
  }

  .what-good__nav a {
    gap: 16px;
    font-size: 18px;
  }

  .good-card__content {
    width: min(500px, 68%);
    padding-left: 40px;
  }

  .audience__layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 48%);
    gap: 40px;
  }

  .audience-list {
    padding-left: 0;
  }

  .ecosystem-section__inner {
    grid-template-columns: minmax(0, 480px) minmax(420px, 1fr);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .workspace-hero {
    min-height: 560px;
    padding-top: 92px;
    padding-bottom: 98px;
  }

  .workspace-hero__pill {
    margin-bottom: 32px;
    font-size: 15px;
  }

  .workspace-hero__copy {
    max-width: 680px;
  }

  .workspace-showcase {
    padding-bottom: 78px;
  }

  .workspace-showcase__preview {
    margin-top: -72px;
  }

  .workspace-showcase__description {
    margin-top: 38px;
    max-width: 620px;
  }

  .exceptionalities {
    padding: 0 18px 88px;
  }

  .exceptionalities__title {
    margin: 34px 0 38px;
  }

  .exceptionalities__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .exception-card {
    height: 430px;
  }

  .operations-card {
    margin-top: 28px;
    padding: 38px 34px;
  }

  .what-good {
    padding: 90px 18px 72px;
  }

  .what-good__intro {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 34px;
  }

  .what-good__intro p {
    max-width: 520px;
    margin-right: 0;
  }

  .what-good__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .what-good__nav {
    position: sticky;
    top: 14px;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 22px;
    background: #000;
  }

  .good-card__content {
    width: min(560px, 74%);
  }

  .audience {
    padding: 0 18px 78px;
  }

  .audience__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .audience-list {
    margin-top: 42px;
  }

  .audience__visual {
    max-width: 560px;
    margin: 0 auto;
  }

  .ecosystem-section {
    padding: 0 18px 82px;
  }

  .ecosystem-section__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .ecosystem-section__visual {
    max-width: 620px;
    margin: 0 auto;
  }

  .demo-cta {
    min-height: 620px;
    padding-top: 170px;
    background-position: center top;
  }

  .good-card__chips--two-row {
    display: flex;
    width: auto;
  }

  .good-card__chips--two-row span:nth-child(1),
  .good-card__chips--two-row span:nth-child(2),
  .good-card__chips--two-row span:nth-child(3),
  .good-card__chips--two-row span:nth-child(4),
  .good-card__chips--two-row span:nth-child(5) {
    grid-column: auto;
    width: auto;
  }

  .what-good__cards {
    padding-bottom: 0;
  }

  .good-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .workspace-hero {
    min-height: 520px;
    padding: 72px 18px 58px;
  }

  .workspace-hero__pill {
    padding: 10px 18px;
    font-size: 14px;
  }

  .workspace-hero__title {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.12;
  }

  .workspace-hero__copy {
    margin-top: 24px;
  }

  .workspace-showcase {
    padding: 1px 18px 58px;
  }

  .workspace-showcase__preview {
    margin-top: -44px;
    width: min(760px, 118vw);
    transform: translateX(-7.5vw);
  }

  .workspace-showcase__description {
    margin-top: 40px;
    font-size: 17px;
    line-height: 1.22;
  }

  .exceptionalities {
    padding: 0 18px 64px;
  }

  .exceptionalities__title {
    font-size: 32px;
  }

  .exception-card {
    height: 360px;
    border-radius: 24px;
  }

  .exception-card__content {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 16px 18px 18px;
    border-radius: 16px;
  }

  .exception-card__content p,
  .operations-card p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.22;
  }

  .operations-card {
    min-height: 180px;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .what-good {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .what-good__intro h2 {
    font-size: 32px;
  }

  .what-good__nav {
    grid-template-columns: 1fr;
  }

  .what-good__nav a {
    min-height: 58px;
    gap: 16px;
    font-size: 17px;
  }

  .good-card {
    min-height: 470px;
    border-radius: 28px;
  }

  .good-card::before {
    background-size: cover, 760px auto;
    background-position: center, right -250px top 0;
  }

  .good-card__content {
    width: 100%;
    min-height: 470px;
    justify-content: flex-end;
    padding: 30px 24px;
  }

  .good-card__content h3 {
    font-size: 24px;
  }

  .good-card__content p {
    margin-top: 24px;
    font-size: 15px;
  }

  .good-card__chips {
    gap: 14px 10px;
    margin-top: 34px;
  }

  .good-card__chips span {
    min-width: 0;
    height: 40px;
    padding: 0 13px;
    font-size: 14px;
  }

  .audience {
    padding-bottom: 58px;
  }

  .audience__copy h2 {
    font-size: 34px;
  }

  .audience-card {
    padding: 17px 16px;
  }

  .audience-card__heading {
    gap: 16px;
  }

  .audience-card p {
    margin-top: 20px;
    font-size: 15px;
  }

  .ecosystem-section {
    padding-bottom: 64px;
  }

  .ecosystem-section h2 {
    font-size: 34px;
  }

  .ecosystem-list {
    margin-top: 28px;
  }

  .ecosystem-list__item {
    min-height: 52px;
  }

  .demo-cta {
    min-height: 540px;
    padding: 132px 18px 90px;
  }

  .demo-cta h2 {
    font-size: 38px;
    line-height: 1.18;
  }

  .demo-cta p {
    margin-top: 20px;
    font-size: 15px;
  }

  .demo-cta__button {
    min-width: 240px;
    min-height: 50px;
    margin-top: 28px;
    font-size: 15px;
  }
}

/* Responsive polish pass */
html,
body {
  overflow-x: hidden;
}

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

@media (max-width: 1320px) {
  .exceptionalities {
    padding-right: 24px;
    padding-left: 24px;
  }

  .what-good,
  .audience,
  .ecosystem-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .ecosystem-section__inner {
    width: min(1180px, 100%);
    grid-template-columns: minmax(0, 500px) minmax(0, 620px);
    gap: 40px;
  }

  .ecosystem-section__visual {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .workspace-hero {
    min-height: 610px;
  }

  .workspace-showcase__preview {
    width: min(960px, 100%);
  }

  .exception-card {
    height: 430px;
  }

  .operations-card {
    margin-top: 42px;
    padding: 42px 48px;
  }

  .what-good__body {
    grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
    gap: 30px;
  }

  .good-card {
    min-height: 350px;
    border-radius: 32px;
  }

  .good-card__content {
    width: min(470px, 68%);
    min-height: 348px;
    padding: 34px 0 34px 34px;
  }

  .good-card__chips {
    gap: 18px 14px;
    margin-top: 38px;
  }

  .good-card__chips span {
    height: 41px;
    padding: 0 14px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .workspace-hero {
    min-height: 570px;
    padding-top: 108px;
  }

  .workspace-hero__title {
    max-width: 860px;
  }

  .workspace-showcase__preview {
    margin-top: -82px;
  }

  .exception-card {
    height: 390px;
  }

  .exception-card__content {
    right: 22px;
    bottom: 18px;
    left: 22px;
    padding: 16px 20px 18px;
  }

  .what-good__intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .what-good__intro p {
    max-width: 520px;
    margin-right: 0;
  }

  .what-good__nav a {
    gap: 14px;
    min-height: 60px;
    font-size: 16px;
  }

  .audience__layout {
    gap: 34px;
  }

  .ecosystem-section__inner {
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    gap: 28px;
  }

  .ecosystem-section h2 {
    font-size: 38px;
  }

  .ecosystem-list {
    width: min(430px, 100%);
  }
}

@media (max-width: 900px) {
  .workspace-hero__title,
  .exceptionalities__title,
  .what-good__intro h2,
  .audience__copy h2,
  .ecosystem-section h2,
  .demo-cta h2 {
    text-wrap: balance;
  }

  .workspace-showcase__preview {
    width: min(820px, 100%);
  }

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

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

  .what-good__nav a {
    min-height: 56px;
  }

  .good-card {
    min-height: 430px;
  }

  .good-card::before {
    background-position: center, right -120px center;
  }

  .good-card__content {
    width: min(520px, 70%);
    min-height: 430px;
    padding: 32px 0 32px 34px;
  }

  .audience-list {
    width: min(540px, 100%);
  }

  .ecosystem-section__inner {
    align-items: start;
  }

  .ecosystem-section__visual {
    width: min(620px, 100%);
    min-height: auto;
  }

  .ecosystem-section__visual svg {
    height: auto;
  }
}

@media (max-width: 768px) {
  .what-good__nav {
    top: 10px;
    max-height: calc(100svh - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .workspace-hero {
    min-height: 540px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .workspace-showcase__description {
    max-width: 560px;
    font-size: 18px;
  }

  .exceptionalities,
  .what-good,
  .audience,
  .ecosystem-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .exception-card {
    height: 380px;
  }

  .operations-card {
    padding: 34px 28px;
  }

  .what-good__nav {
    grid-template-columns: 1fr;
  }

  .good-card {
    min-height: 500px;
  }

  .good-card::before {
    background-size: cover;
    background-position: right -210px center;
  }

  .good-card__content {
    width: 100%;
    min-height: 500px;
    justify-content: flex-end;
    padding: 34px 28px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .94) 0 48%, rgba(0, 0, 0, .68) 78%, rgba(0, 0, 0, .22));
  }

  .good-card__content p {
    max-width: 410px;
    margin-top: 22px;
  }

  .good-card__chips {
    width: min(460px, 100%);
    margin-top: 28px;
  }

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

  .ecosystem-section h2 br {
    display: none;
  }

  .ecosystem-list {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .workspace-hero,
  .workspace-showcase,
  .exceptionalities,
  .what-good,
  .audience,
  .ecosystem-section,
  .demo-cta {
    max-width: 100vw;
    overflow: hidden;
  }

  .workspace-hero__content,
  .workspace-showcase__inner {
    width: 100%;
    max-width: 100%;
  }

  .workspace-hero__title {
    max-width: min(340px, calc(100vw - 36px));
    font-size: clamp(32px, 8.7vw, 42px);
    line-height: 1.13;
    text-wrap: wrap;
  }

  .workspace-hero__copy {
    max-width: min(350px, calc(100vw - 36px));
    margin-right: auto;
    margin-left: auto;
  }

  .workspace-showcase__preview {
    width: 100%;
    margin-top: -38px;
    transform: none;
  }

  .workspace-showcase__description {
    max-width: min(350px, calc(100vw - 36px));
    overflow-wrap: break-word;
    text-wrap: wrap;
  }

  .exceptionalities__eyebrow,
  .what-good__eyebrow,
  .audience__eyebrow,
  .ecosystem-section__eyebrow {
    font-size: 20px;
    line-height: 1.05;
  }

  .exception-card {
    height: 340px;
    border-radius: 24px;
  }

  .exception-card__content {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: auto;
  }

  .operations-card {
    border-radius: 24px;
  }

  .what-good__intro h2,
  .audience__copy h2 {
    font-size: 31px;
  }

  .good-card {
    min-height: 520px;
    border-radius: 26px;
  }

  .good-card::before {
    background-position: right -280px center;
  }

  .good-card__content {
    min-height: 520px;
    padding: 30px 22px;
  }

  .good-card__chips {
    gap: 12px;
  }

  .good-card__chips span {
    min-width: 0;
    flex: 1 1 calc(50% - 8px);
    justify-content: flex-start;
    height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .audience-list {
    gap: 18px;
  }

  .audience-card h3 {
    font-size: 17px;
  }

  .ecosystem-section h2 {
    font-size: 31px;
  }

  .ecosystem-list__item {
    min-height: 50px;
  }

  .demo-cta {
    background-position: center top;
  }
}

@media (max-width: 420px) {
  .workspace-hero {
    min-height: 500px;
    padding-top: 66px;
  }

  .workspace-hero__content,
  .workspace-showcase__inner {
    width: 100%;
    max-width: 100%;
  }

  .workspace-hero__pill {
    white-space: normal;
    line-height: 1.18;
  }

  .workspace-hero__title {
    max-width: 330px;
    font-size: 34px;
    line-height: 1.12;
    text-wrap: wrap;
  }

  .workspace-hero__copy {
    max-width: 330px;
    line-height: 1.45;
  }

  .workspace-showcase__description {
    max-width: 330px;
    overflow-wrap: break-word;
    text-wrap: wrap;
  }

  .workspace-hero__copy,
  .workspace-showcase__description,
  .exception-card__content p,
  .operations-card p,
  .what-good__intro p,
  .good-card__content p,
  .audience-card p,
  .ecosystem-section__lead,
  .demo-cta p {
    font-size: 14px;
  }

  .workspace-showcase__description {
    line-height: 1.35;
  }

  .exceptionalities__title,
  .what-good__intro h2,
  .audience__copy h2,
  .ecosystem-section h2 {
    font-size: 28px;
  }

  .exception-card {
    height: 310px;
  }

  .operations-card {
    padding: 28px 20px;
  }

  .what-good__nav a {
    min-height: 52px;
    font-size: 16px;
  }

  .good-card {
    min-height: 560px;
  }

  .good-card::before {
    background-position: right -360px center;
  }

  .good-card__content {
    min-height: 560px;
    padding: 28px 18px;
  }

  .good-card__chips span {
    flex-basis: 100%;
    justify-content: center;
  }

  .audience-card__heading {
    align-items: flex-start;
  }

  .audience__visual {
    width: 100%;
  }

  .ecosystem-section__visual {
    width: 118%;
    transform: translateX(-8%);
  }

  .demo-cta h2 {
    font-size: 31px;
  }

  .demo-cta__button {
    width: 100%;
    min-width: 0;
  }
}

/* Feature cards mobile-only fix */
@media (max-width: 768px) {
  .what-good {
    overflow: hidden;
  }

  .what-good__body {
    grid-template-columns: 1fr;
  }

  .what-good__cards {
    width: 100%;
    gap: 28px;
  }

  .good-card {
    width: 100%;
    min-height: 0;
    border-radius: 24px;
  }

  .good-card::before {
    background-size: cover;
    background-position: center right;
  }

  .good-card__content {
    width: 100%;
    min-height: 430px;
    justify-content: flex-end;
    padding: 30px 22px;
    background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .9) 42%, rgba(0, 0, 0, .55) 78%, rgba(0, 0, 0, .22) 100%);
  }

  .good-card__content h3 {
    max-width: 100%;
    font-size: 25px;
  }

  .good-card__content p {
    max-width: min(420px, 100%);
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.35;
  }

  .good-card__chips,
  .good-card__chips--two-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(430px, 100%);
    gap: 12px;
    margin-top: 28px;
  }

  .good-card__chips span,
  .good-card__chips--two-row span,
  .good-card__chips--two-row span:nth-child(1),
  .good-card__chips--two-row span:nth-child(2),
  .good-card__chips--two-row span:nth-child(3),
  .good-card__chips--two-row span:nth-child(4),
  .good-card__chips--two-row span:nth-child(5) {
    grid-column: auto;
    width: 100%;
    min-width: 0;
    justify-content: center;
    height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .what-good {
    padding-right: 16px;
    padding-left: 16px;
  }

  .good-card {
    border-radius: 22px;
  }

  .good-card::before {
    background-position: center right -210px;
  }

  .good-card__content {
    min-height: 470px;
    padding: 28px 18px;
    background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .96) 54%, rgba(0, 0, 0, .72) 82%, rgba(0, 0, 0, .34) 100%);
  }

  .good-card__chips,
  .good-card__chips--two-row {
    grid-template-columns: 1fr;
  }
}

/* header css */
.heard-head{position: relative;top: 0;left: 0;right: 0;margin: 0 auto;z-index: 999;width: 100%;display: flex;align-items: center;justify-content: space-between;padding: 25px 80px;}
.heard-head .main-logo{padding: 10px;background: #fff;border-radius: 26px;width: 114px;height: 53px;text-align: center;}

.heard-head .header_right{display: flex;}
.heard-head .header_right .btn{font-style: normal;font-weight: 600;font-size: 16px;line-height: 19px;color: #1C1C1C;text-transform: uppercase;text-align: center; padding: 28px;   width: 222px;height: 72px;background: #fff;border-radius: 49px;}
.heard-head .header_right .btn:hover{font-style: normal;font-weight: 600;font-size: 16px;line-height: 19px;color: #1C1C1C;text-transform: uppercase;text-align: center; padding: 28px;   width: 222px;height: 72px;background: #fff;border-radius: 49px;}

.menu-toggle{position: relative;margin-left: 30px;width: 76px;height: 76px;background:#fff;border-radius:24px;display:flex;
align-items:center;justify-content:center;cursor:pointer;overflow:hidden;transition:width .45s cubic-bezier(.22,1,.36,1),background .45s cubic-bezier(.22,1,.36,1),transform .45s cubic-bezier(.22,1,.36,1);}

.menu-toggle:hover{background:#fff;transform:translateY(-2px);}
.menu-toggle .icon{position: absolute;width:28px;transition:all .35s cubic-bezier(.22,1,.36,1);}
.icon-default{opacity:1;transform:scale(1) rotate(0deg);}
.icon-hover{opacity:0;transform:scale(.7) rotate(-15deg);}
.icon-close{opacity:0;transform:scale(.7) rotate(90deg);}
.menu-toggle:hover .icon-default{opacity:0;transform:scale(.7) rotate(15deg);}
.menu-toggle:hover .icon-hover{opacity:1;transform:scale(1) rotate(0);}
.menu-toggle.active{background:#fff;}

.menu-toggle.active .icon-hover,
.menu-toggle.active .icon-default{opacity:0;transform:scale(.6);}
.menu-toggle.active .icon-close{opacity:1;transform:scale(1) rotate(0);}

.menu-overlay{position:fixed;top: 0 !important; inset:0;background:#000;z-index:999;opacity:0;visibility:hidden;transition:.45s;padding-top: 128px;}
.menu-overlay.active{opacity:1;visibility:visible;}
.menu-grid{max-width:1180px ;margin:auto;display:grid;grid-template-columns:repeat(2,1fr);gap:14px;}

.menu-box{position:relative;height:125px;background:#1c1c1c;border-radius:14px;display:flex;justify-content:center;align-items:center;overflow:hidden;text-decoration:none;transform:translateY(70px);opacity:0;
transition:transform .6s cubic-bezier(.22,1,.36,1),opacity .6s cubic-bezier(.22,1,.36,1),background .35s;}

.menu-overlay.active .menu-box{transform:translateY(0);opacity:1;}

.menu-box:nth-child(1){transition-delay:.05s;}
.menu-box:nth-child(2){transition-delay:.1s;}
.menu-box:nth-child(3){transition-delay:.15s;}
.menu-box:nth-child(4){transition-delay:.2s;}
.menu-box:nth-child(5){transition-delay:.25s;}
.menu-box:nth-child(6){transition-delay:.3s;}
.menu-box:nth-child(7){transition-delay:.35s;}

.menu-box span{font-weight: 500;font-size: 52px;line-height: 77px;color:transparent;-webkit-text-stroke:1px rgba(255,255,255,.45);transition:.35s;}

.menu-box:hover{background:#262626;}
.menu-box:hover span{color:#fff;-webkit-text-stroke:0;}

/* .contact-box{width:52%;margin:0 auto;grid-column:1/3;}  */
.has-arrow{gap:10px;}
.menu-arrow{color:#d8ff19;font-size:28px;transform:translateY(3px);}

/* header css */


/* footer css */

.heard-ftr{padding: 40px 55px;position: absolute;}
.heard-ftr .main-ftr{display: flex;}
.heard-ftr .ftr-img{display: flex;align-items: center;justify-content: center;text-align: center;width: 90px;height: 90px;background: #1C1C1C;border-radius: 50px;}
.heard-ftr .ftr-cont{padding-left: 15px;}
.heard-ftr .ftr-cont ul{display: flex;justify-content: center;align-items: center; width: auto;padding: 15px 20px; height: 93px;background: #1C1C1C;border-radius: 20px;text-align: center;}
.heard-ftr .ftr-cont ul li{padding: 0 20px;display: inline-block;}
.heard-ftr .ftr-cont ul li a{font-weight: 500;font-size: 16px;line-height: 19px;color: #FFFFFF;}

.heard-ftr .ftr-social{padding-left: 15px;}
.heard-ftr .ftr-social ul{display: flex;justify-content: center;align-items: center; width: auto;padding: 20px 18px; height: 93px;background: #1C1C1C;border-radius: 50px;text-align: center;}
.heard-ftr .ftr-social ul li{padding: 0 14px;display: inline-block;}
.heard-ftr .ftr-social ul li a{font-weight: 500;line-height: 19px;color: #FFFFFF;font-size: 20px;}

.heard-ftr .ftr-para{padding-left: 12px;}
.heard-ftr .ftr-para ul{display: flex;justify-content: center;align-items: center; width: auto;padding: 20px 15px; height: 93px;background: #1C1C1C;border-radius: 20px;text-align: center;}
.heard-ftr .ftr-para ul li{padding: 0 14px;display: inline-block;}
.heard-ftr .ftr-para ul li a{font-weight: 500;font-size: 16px;line-height: 22px;color: #FFFFFF;}

/* footer css */


@media (max-width: 1920px) {
.heard-ftr {padding: 40px 0;width: 100%;}
.heard-ftr .main-ftr {align-items: center;justify-content: center;}


}

@media (max-width: 824px){
.heard-ftr {padding: 0 ;}
.heard-ftr .main-ftr{display: block;}
.heard-ftr .ftr-cont {padding-left: 0;padding-bottom: 15px;}
.heard-ftr .ftr-social {padding-left: 0;padding-bottom: 15px;}
.heard-ftr .ftr-para {padding-left: 0;padding-bottom: 15px;}
.heard-ftr .ftr-cont ul {width: auto;height: 70px;}
.heard-ftr .ftr-social ul {width: auto;height: 70px;border-radius: 20px;}
.heard-ftr .ftr-para ul {display: block; width: auto;height: 70px;padding: 14px 0;}
.heard-ftr .ftr-img {margin: auto;margin-bottom: 15px;}
.heard-ftr .ftr-cont ul li {padding: 0 12px;}
.menu-grid {padding: 0 15px;}
.menu-box{height: auto;}
.menu-box span {font-size: 26px;line-height: 66px;}
.menu-toggle {margin-left: 15px;width: 62px;height: 62px;}

.heard-head {padding: 15px;}
.heard-head .header_right .btn {padding: 22px;width: 162px;height: 62px;margin-left: 15px;}
.heard-head .header_right .btn:hover{padding: 22px;width: 162px;height: 62px;margin-left: 15px;}
.heard-head .main-logo {padding: 16px 10px;width: 114px;height: 62px;}

}