:root {
  color-scheme: light;
  --teal: #00c7b1;
  --teal-dark: #00aa9b;
  --ink: #28292b;
  --muted: #5d6269;
  --soft: #f1f1f1;
  --panel: #ffffff;
  --accent: #a7b8ff;
  --shadow: 0 12px 28px rgba(34, 43, 50, 0.12);
  --radius: 8px;
  --page: min(1120px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--soft);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0 42px 0 58px;
  background: #fff;
  border-bottom-left-radius: 96px;
  box-shadow: 0 1px 0 rgba(40, 41, 43, 0.04);
}

.brand-logo {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
}

.nav-links,
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  font-size: 13px;
}

.nav-links a,
.site-footer nav a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
}

.nav-links a:hover::after,
.site-footer nav a:hover::after {
  transform: scaleX(1);
}

.demo-button,
.contact-form button {
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 199, 177, 0.26);
}

.demo-button {
  padding: 0 24px;
  font-size: 13px;
}

.demo-button:hover,
.contact-form button:hover {
  background: var(--teal-dark);
  box-shadow: 0 12px 22px rgba(0, 170, 155, 0.28);
}

.hero {
  --hero-shape-x: 96px;
  --hero-shape-y: -58px;
  position: relative;
  min-height: clamp(704px, calc(var(--hero-dynamic-shape-width, 1730px) * 0.42 + 90px), 900px);
  overflow-x: clip;
  overflow-y: visible;
  background: #fff;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(800px, calc(100vw - 48px));
  margin: 0 auto;
  padding-top: 76px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 4vw, 38px);
  line-height: 1.05;
  font-weight: 950;
}

.hero h1 span:not(.hero-title-rest),
.section-heading h2,
.contact-copy h2 span {
  color: var(--teal);
}

.hero p {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
}

.hero-loop {
  position: absolute;
  top: 28px;
  bottom: auto;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: min(1440px, 100%);
  overflow: visible;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-shape {
  display: block;
  flex: 0 0 auto;
  width: var(--hero-dynamic-shape-width, calc(100vw + 290px)) !important;
  max-width: none;
  height: auto;
  aspect-ratio: 1730 / 720;
  transform: translate(var(--hero-shape-x), var(--hero-shape-y));
}

.section-band {
  width: 100%;
  padding: 52px max(24px, calc((100vw - 1120px) / 2));
}

.content-container {
  width: min(1080px, calc(100% - 144px));
  margin-inline: auto;
}

.benefits.section-band,
.integrations.section-band,
.contact.section-band {
  padding-inline: 0;
}

.section-heading {
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.1;
  font-weight: 950;
}

.section-heading p {
  margin: 14px auto 0;
  color: var(--ink);
  font-size: 15px;
}

.lifecycle {
  padding-top: 58px;
  border-top-left-radius: 110px;
}

.lifecycle-heading {
  margin-bottom: 34px;
}

.lifecycle-graphic-shell {
  width: min(1153px, calc(100vw - 48px));
  margin: 0 auto;
}

.lifecycle-graphic {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.lifecycle-graphic text {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.lifecycle-link {
  fill: none;
  stroke: var(--teal);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 12;
}

.card-shadow {
  fill: rgba(40, 41, 43, 0.12);
  transform: translate(0, 3px);
}

.card-bg {
  fill: #fff;
}

.step-badge {
  fill: var(--teal);
}

.badge-text {
  fill: #fff;
  font-size: 30px;
  font-weight: 950;
  text-anchor: middle;
  dominant-baseline: middle;
}

.lifecycle-graphic .badge-text {
  alignment-baseline: central;
}

.card-title {
  fill: var(--accent);
  font-size: 18px;
  font-weight: 950;
  text-anchor: middle;
}

.card-body {
  fill: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-anchor: middle;
}

.capability-shell {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 18px;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.carousel-arrow {
  position: relative;
  z-index: 3;
  width: 48px;
  height: 64px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 70px;
  font-weight: 300;
  line-height: 0.6;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: var(--teal);
  outline: none;
}

.capability-stage {
  position: relative;
  display: grid;
  width: min(1133px, 100%);
  margin: 0 auto;
  aspect-ratio: 1133 / 830;
  min-height: 0;
}

.capability-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 4px rgba(40, 41, 43, 0.15));
}

.mock-window,
.capability-copy {
  position: absolute;
  z-index: 1;
}

.mock-window {
  overflow: hidden;
  padding: 0;
  border-radius: 24px;
  background: #f7f7f8;
  box-shadow: none;
}

.window-main {
  top: 2.7%;
  left: 2.4%;
  width: 51.9%;
  height: 37.4%;
}

.window-secondary {
  top: 58.7%;
  left: 45.5%;
  width: 51.9%;
  height: 37.4%;
}

.capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.copy-top {
  top: 17%;
  left: 65.6%;
  width: 27.2%;
  height: 22%;
}

.copy-bottom {
  top: 63.2%;
  left: 7.4%;
  width: 29.5%;
  height: 25%;
}

.capability-copy h3 {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  white-space: pre-line;
}

.capability-copy p {
  margin: 0;
  color: var(--ink);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

@media (max-width: 1180px) and (min-width: 721px) {
  .copy-top {
    left: 64.4%;
    width: 29%;
  }

  .copy-bottom {
    left: 6.8%;
    width: 31.2%;
  }

  .capability-copy h3 {
    margin-bottom: clamp(6px, 0.75vw, 10px);
    font-size: clamp(13px, 1.45vw, 18px);
    line-height: 1.12;
  }

  .capability-copy p {
    font-size: clamp(9px, 1.05vw, 13px);
    line-height: 1.22;
  }
}

@media (max-width: 980px) and (min-width: 721px) {
  .copy-top {
    top: 15.8%;
    width: 30%;
  }

  .copy-bottom {
    top: 61.5%;
    width: 32%;
  }

  .capability-copy h3 {
    font-size: clamp(12px, 1.45vw, 15px);
  }

  .capability-copy p {
    font-size: clamp(8px, 1.05vw, 11px);
    line-height: 1.18;
  }
}

.capability-image {
  display: block;
  width: 100%;
  height: 100%;
  background: #f7f7f8;
  object-fit: contain;
  object-position: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid var(--teal);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--teal);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 44px;
}

.benefit-grid p {
  display: grid;
  min-height: 80px;
  margin: 0;
  place-items: center;
  padding: 16px;
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 9px 14px rgba(0, 199, 177, 0.14);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.integration-map {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1128 / 654;
  min-height: 0;
}

.integration-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.integration-card {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 17.85%;
  height: 41.05%;
  padding: 0 1.5%;
  background: transparent;
  text-align: center;
}

.integration-card h3 {
  margin: 0 0 8px;
  font-size: clamp(10px, 1.18vw, 13px);
  line-height: 1.25;
}

.integration-card p {
  margin: 0;
  font-size: clamp(8px, 0.98vw, 11px);
  line-height: 1.45;
}

.infra {
  top: 19.95%;
  left: 0.76%;
}

.ot {
  top: 57.03%;
  left: 21.29%;
}

.auto {
  top: 19.97%;
  left: 40.25%;
}

.itsm {
  top: 57.03%;
  left: 62.42%;
}

.notify {
  top: 19.93%;
  left: 82.13%;
}

.contact {
  padding-bottom: 78px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(56px, 8vw, 96px);
  align-items: center;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.18;
  font-weight: 950;
}

.contact-copy h2 span {
  display: block;
}

.contact-copy p {
  max-width: 350px;
  margin: 24px 0 34px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
}

.contact-copy a {
  display: inline-flex;
  max-width: 100%;
  gap: 12px;
  align-items: center;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-copy a::before {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  content: "@";
}

.contact-form {
  display: grid;
  justify-self: end;
  width: 100%;
  max-width: 520px;
  gap: 18px;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.field-title {
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
}

.required-star {
  display: none;
  color: #d93025;
  font-weight: 950;
}

.contact-form label.is-invalid .required-star {
  display: inline;
}

.contact-form label.is-invalid input,
.contact-form label.is-invalid textarea {
  border-color: #d93025;
}

.field-error {
  min-height: 16px;
  color: #d93025;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--teal);
  border-radius: 7px;
  outline: none;
  padding: 11px 12px;
  color: var(--ink);
  font-weight: 600;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  min-height: 42px;
}

.form-note {
  min-height: 18px;
  margin: -5px 0 0;
  color: var(--teal-dark);
  font-size: 12px;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 270px 1fr 270px;
  gap: 20px;
  align-items: center;
  min-height: 220px;
  padding: 36px 58px;
  background: #fff;
}

.footer-logo {
  width: 215px;
}

.footer-policies {
  grid-column: 1;
  display: flex;
  gap: 14px;
  align-self: end;
}

.footer-policies a {
  padding: 3px 9px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 10px;
}

.site-footer p {
  grid-column: 3;
  align-self: end;
  margin: 0;
  color: var(--teal);
  font-size: 12px;
  text-align: right;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


@media (max-width: 1050px) and (min-width: 721px) {
  .contact-layout {
    grid-template-columns: minmax(190px, 0.82fr) minmax(330px, 1.18fr);
    gap: 34px;
  }

  .contact-copy a {
    gap: 9px;
    font-size: clamp(9px, 1.15vw, 12px);
  }

  .contact-copy a::before {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1199px) and (min-width: 721px) {
  .content-container {
    width: calc(100% - 80px);
  }

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

@media (max-width: 920px) {
  :root {
    --page: min(100vw - 32px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 14px 18px;
    border-bottom-left-radius: 44px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .demo-button {
    padding: 0 14px;
  }

  .hero {
    --hero-shape-x: -46vw;
    --hero-shape-y: -42px;
    min-height: max(650px, calc(113px + 104vw));
  }

  .hero-copy {
    padding-top: 52px;
  }

  .hero-loop {
    top: 155px;
    right: 0;
    bottom: -20px;
    left: 0;
    width: auto;
    transform: none;
  }

  .hero-shape {
    width: 250vw;
  }

  .lifecycle-graphic-shell {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .lifecycle-graphic {
    width: max(760px, 100%);
  }

  .capability-shell {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
    overflow: visible;
    padding-bottom: 0;
  }

  .carousel-arrow {
    display: block;
    width: 32px;
    height: 46px;
    font-size: 52px;
  }

  .capability-stage {
    width: 100%;
    max-width: 900px;
  }

  .mock-window {
    min-height: 0;
  }

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

  .content-container {
    width: calc(100% - 80px);
  }

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

  .site-footer {
    padding: 34px 24px;
  }

  .site-footer .brand-logo {
    justify-self: start;
  }

  .site-footer nav,
  .footer-policies {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .footer-policies,
  .site-footer p {
    grid-column: auto;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .content-container {
    width: calc(100% - 32px);
  }

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

  .integration-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    aspect-ratio: auto;
  }

  .integration-shape {
    display: none;
  }

  .integration-card,
  .notify {
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    padding: 24px 20px;
    border: 2px solid var(--teal);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .integration-card h3 {
    margin-bottom: 10px;
    font-size: clamp(15px, 4.3vw, 19px);
  }

  .integration-card p {
    font-size: clamp(12px, 3.6vw, 15px);
    line-height: 1.45;
  }

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

  .contact-form {
    justify-self: stretch;
    max-width: none;
  }

  .capability-shell {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .carousel-arrow {
    width: 30px;
    height: 44px;
    font-size: 48px;
  }

  .capability-stage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    max-width: none;
    aspect-ratio: auto;
  }

  .capability-stage::before,
  .capability-stage::after,
  .capability-frame {
    display: none;
  }

  .mock-window,
  .capability-copy {
    position: static;
    width: 100%;
    height: auto;
  }

  .window-main {
    order: 1;
  }

  .copy-top {
    order: 2;
  }

  .window-secondary {
    order: 3;
  }

  .copy-bottom {
    order: 4;
  }

  .mock-window {
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .capability-copy {
    display: block;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .capability-copy h3 {
    margin-bottom: 10px;
    font-size: clamp(16px, 4.2vw, 20px);
  }

  .capability-copy p {
    font-size: clamp(12px, 3.35vw, 14px);
    line-height: 1.35;
  }

  .carousel-dots {
    margin-top: 16px;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 124px;
  }

  .footer-logo {
    width: 170px;
  }

  .site-header {
    align-items: start;
  }

  .nav-links {
    gap: 12px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .section-band {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .capability-copy,
  .contact-form {
    padding: 24px;
  }
}
