:root {
  color-scheme: light;
  --site-bg: #f7fbf3;
  --site-surface: #ffffff;
  --site-surface-soft: rgba(255, 255, 255, 0.78);
  --site-line: rgba(14, 30, 12, 0.08);
  --site-ink: #0f1720;
  --site-ink-soft: #60706b;
  --site-primary: #5fc930;
  --site-primary-deep: #4aaa24;
  --site-primary-soft: rgba(95, 201, 48, 0.12);
  --site-dark: #0f1711;
  --site-shadow: 0 24px 60px rgba(15, 23, 17, 0.08);
  --site-radius-xl: 30px;
  --site-radius-lg: 22px;
  --site-radius-md: 16px;
  --site-width: min(1240px, calc(100% - 32px));
  --site-font-body: "Avenir Next", "Segoe UI", sans-serif;
  --site-font-display: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(95, 201, 48, 0.13), transparent 24%),
    linear-gradient(180deg, #fcfefb 0%, var(--site-bg) 100%);
  color: var(--site-ink);
  font-family: var(--site-font-body);
}

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

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

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

.marketing-shell {
  min-height: 100vh;
  overflow-x: clip;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 54px, 0);
  transition:
    opacity 820ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.marketing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid rgba(14, 30, 12, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.marketing-header__inner {
  width: var(--site-width);
  margin: 0 auto;
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.marketing-header__mobile-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.marketing-brand img {
  width: auto;
  height: 55px;
  object-fit: contain;
}

.marketing-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 28px;
}

.marketing-nav a {
  color: var(--site-ink);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 140ms ease;
}

.marketing-nav a:hover,
.marketing-nav a:focus-visible {
  color: var(--site-ink);
}

.marketing-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marketing-header__mobile-tools {
  display: none;
}

.marketing-header__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: transparent;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.marketing-header__icon-link:hover,
.marketing-header__icon-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(95, 201, 48, 0.14);
}

.marketing-header__icon-link img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.marketing-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.marketing-nav-toggle img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.marketing-nav-toggle:hover,
.marketing-nav-toggle:focus-visible {
  transform: translateY(-1px);
}

.marketing-header__mobile {
  display: none;
}

.language-dropdown {
  position: relative;
  display: inline-flex;
}

.language-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0px solid var(--site-line);
  border-radius: 999px;
  background:none !important;
  /*background: #ffffff;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.06);*/
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.language-dropdown__trigger:hover,
.language-dropdown__trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(95, 201, 48, 0.34);
  box-shadow: 0 16px 30px rgba(95, 201, 48, 0.14);
}

.language-dropdown__trigger img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.language-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 188px;
  padding: 10px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 44px rgba(17, 24, 39, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  z-index: 20;
}

.language-dropdown--open .language-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-dropdown--open .language-dropdown__trigger {
  border-color: rgba(95, 201, 48, 0.34);
  box-shadow: 0 16px 30px rgba(95, 201, 48, 0.14);
}

.language-dropdown__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--site-ink);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 700;
  text-align: left;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.language-dropdown__option:hover,
.language-dropdown__option:focus-visible {
  background: rgba(137, 137, 137, 0.1);
  color: #000;
}

.language-dropdown__option-dot {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: transparent center / 14px 14px no-repeat;
  transition: transform 140ms ease, opacity 140ms ease;
}

.language-dropdown__option--active {
  /*background: rgba(95, 201, 48, 0.14);*/
  color:var(--site-primary);
}

.language-dropdown__option--active .language-dropdown__option-dot {
  background-image: url("/assets/icons/tick_icon.svg");
  background-size:24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--site-primary);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(95, 201, 48, 0.28);
}

.button--secondary,
.button--ghost {
  background: #ffffff;
  color: var(--site-ink);
  border-color: var(--site-line);
}

.button--block {
  width: 100%;
}

.marketing-main {
  width: var(--site-width);
  margin: 0 auto;
  padding: 0 0 84px;
}

.hero-banner,
.marketing-section,
.page-hero {
  margin-top: 26px;
}

.marketing-section {
  margin-top: 86px;
}

.hero-banner,
.marketing-section,
.page-hero,
.legal-card {
  background: var(--site-surface);
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-xl);
  box-shadow: var(--site-shadow);
}

.hero-banner,
.marketing-section,
.page-hero,
.legal-card {
  padding: 32px;
}

.hero-banner {
  position: relative;
  margin-top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: calc(100vh - 88px);
  min-height: calc(100dvh - 88px);
  display: flex;
  align-items: center;
  padding: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--hero-banner-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.08);
  transform-origin: center;
  animation: hero-banner-zoom 2.2s ease-out forwards;
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding-block: 88px;
}

.hero-copy {
  width: min(1240px, 100%);
  border:0px #000 solid;
}

.hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  animation: hero-copy-rise 920ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  max-width:740px;
}

.hero-copy > *:nth-child(1) {
  animation-delay: 160ms;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 280ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 420ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 560ms;
}

.hero-copy__eyebrow,
.section-intro__eyebrow,
.cta-strip__eyebrow {
  margin: 0;
  color: var(--site-primary-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-intro h2,
.cta-strip h2 {
  margin: 0;
  font-family: var(--site-font-display);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.hero-copy__description,
.section-intro p,
.feature-card__body p,
.industry-card p,
.about-layout__list li,
.contact-layout__card span,
.pricing-card__summary,
.pricing-card__features li,
.pricing-card__note,
.legal-card p,
.marketing-footer__brand p {
  color: var(--site-ink-soft);
  line-height: 1.72;
}

.hero-copy__description {
  margin: 18px 0 0;
  max-width: 56ch;
  font-size: 1.02rem;
  color: #cacaca;
}

.hero-banner-iconset
{
  margin-top:10px; 
}

.hero-banner-iconset span{
  display:inline-block;
  height:50px;
  width:50px;
  margin:10px 15px 0px 0px;
  background:#fff;
  border-radius: 999px;
  padding:9px;
  text-align: center;
  vertical-align: middle;
}
.hero-banner-iconset img
{
  display:inline-block;
  height:32px;
  width:32px;
}

.hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@keyframes hero-banner-zoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@keyframes hero-copy-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes product-demo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes product-demo-drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  28% {
    transform: translate3d(-8px, -10px, 0) rotate(-3deg);
  }

  62% {
    transform: translate3d(10px, 8px, 0) rotate(2deg);
  }
}

@keyframes product-demo-drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  34% {
    transform: translate3d(12px, -8px, 0) rotate(4deg);
  }

  70% {
    transform: translate3d(-6px, 10px, 0) rotate(-2deg);
  }
}

@keyframes product-demo-drift-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  24% {
    transform: translate3d(-10px, 6px, 0) rotate(-2deg);
  }

  58% {
    transform: translate3d(8px, -12px, 0) rotate(3deg);
  }

  82% {
    transform: translate3d(4px, 4px, 0) rotate(1deg);
  }
}

@keyframes product-connector-flow {
  0% {
    stroke-dashoffset: 118;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
.about-layout__media,
.contact-layout__media,
.feature-card__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section-intro {
  max-width: 62ch;
}

.section-intro--centered {
  margin: 0 auto;
  text-align: center;
}

.section-intro--centered .section-intro__meta {
  justify-content: center;
}

.section-intro--clean .section-intro__eyebrow {
  display: block;
  margin-bottom: 18px;
}

.section-intro__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-intro__number {
  color: var(--site-primary);
  font-size: 1.05rem;
  font-weight: 800;
}

.section-intro__line {
  width: 52px;
  height: 1px;
  background: rgba(14, 30, 12, 0.16);
}

.section-intro h2,
.cta-strip h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.section-intro p {
  margin-top: 16px;
}

.feature-grid,
.industry-grid,
.pricing-grid,
.legal-grid,
.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

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

.product-demo {
  margin-top: 42px;
}

.product-demo__stage {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 24px 124px;
}

.product-demo__frame-shell {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
}

.product-demo__frame {
  width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 30px 60px rgba(17, 24, 39, 0.12),
    0 0 0 1px rgba(17, 24, 39, 0.06);
}

.product-demo__anchor {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #eefbe7);
  border: 2px solid rgba(176, 0, 235, 0.78);
  box-shadow:
    0 0 0 12px rgba(165, 48, 201, 0.08),
    0 10px 22px rgba(178, 48, 201, 0.18);
  transform: translateX(-50%);
}

.product-demo__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.product-demo__channel {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 22px 40px rgba(17, 24, 39, 0.1),
    0 0 0 1px rgba(17, 24, 39, 0.06);
  animation-name: var(--float-animation, product-demo-float);
  animation-duration: var(--float-duration, 5.8s);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: var(--float-delay, 0s);
  will-change: transform;
}

.product-demo__channel img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.product-demo__channel--left {
  left: 8px;
}

.product-demo__channel--right {
  right: 8px;
}

.product-demo__channel--1 {
  top: 38px;
}

.product-demo__channel--2 {
  top: calc(50% - 36px);
}

.product-demo__channel--3 {
  bottom: 38px;
}

.product-demo__channel--left.product-demo__channel--1 {
  --float-animation: product-demo-drift-a;
  --float-duration: 5.2s;
}

.product-demo__channel--left.product-demo__channel--2 {
  --float-animation: product-demo-drift-c;
  --float-duration: 6.6s;
}

.product-demo__channel--left.product-demo__channel--3 {
  --float-animation: product-demo-drift-b;
  --float-duration: 5.7s;
}

.product-demo__channel--right.product-demo__channel--1 {
  --float-animation: product-demo-drift-b;
  --float-duration: 6.1s;
}

.product-demo__channel--right.product-demo__channel--2 {
  --float-animation: product-demo-drift-a;
  --float-duration: 5.5s;
}

.product-demo__channel--right.product-demo__channel--3 {
  --float-animation: product-demo-drift-c;
  --float-duration: 6.9s;
}

.product-connectors {
  width: min(980px, 100%);
  margin: 8px auto 12px;
  pointer-events: none;
}

.product-connectors__svg {
  display: block;
  width: 100%;
  height: 156px;
  overflow: visible;
}

.product-connectors__path,
.product-connectors__glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-connectors__path {
  stroke: rgba(31, 42, 46, 0.12);
  stroke-width: 4;
}

.product-connectors__glow {
  stroke: rgba(177, 32, 255, 0.829);
  stroke-width: 5;
  stroke-dasharray: 18 82;
  filter: drop-shadow(0 0 10px rgba(95, 201, 48, 0.36));
  animation: product-connector-flow 3.8s linear infinite;
}

.product-connectors__glow--left {
  animation-delay: -0.2s;
}

.product-connectors__glow--center {
  animation-delay: -1.15s;
}

.product-connectors__glow--right {
  animation-delay: -2.05s;
}

.feature-grid--products {
  width: min(980px, 100%);
  margin: 0 auto;
}

.feature-card--product {
  position: relative;
  margin-top:-20px;
}

.feature-card--product::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #eefbe7);
  border: 2px solid rgba(95, 201, 48, 0.5);
  box-shadow:
    0 0 0 9px rgba(95, 201, 48, 0.06),
    0 0 18px rgba(95, 201, 48, 0.2);
  transform: translateX(-50%);
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

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

.feature-card,
.industry-card,
.contact-layout__card,
.pricing-card,
.legal-card {
  background: #ffffff;
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius-lg);
}

.feature-card {
  overflow: hidden;
}

.feature-card__image {
  min-height: 220px;
}

.feature-card__body {
  padding: 22px;
}

.feature-card__status,
.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card__status {
  background: var(--site-primary-soft);
  color: #3d8e1e;
}

.feature-card__body h3,
.industry-card h3,
.pricing-card h3,
.legal-card h2 {
  margin: 16px 0 0;
  font-size: 1.24rem;
}

.marketing-section--dark {
  background:
    radial-gradient(circle at top right, rgba(95, 201, 48, 0.15), transparent 28%),
    linear-gradient(180deg, #141c15 0%, #0e140f 100%);
  border-color: rgba(95, 201, 48, 0.16);
}

.marketing-section--products {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-hero--plain,
.marketing-section--legal-plain,
.legal-card--plain {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-hero--plain,
.marketing-section--legal-plain {
  padding: 0;
}

.page-hero--about,
.marketing-section--about-page {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.page-hero--about,
.marketing-section--about-page {
  padding: 0;
}

.about-page-hero {
  width: min(860px, 100%);
  margin: 48px auto 0;
  text-align: center;
}

.about-page-hero .section-intro__meta {
  justify-content: center;
}

.about-page-hero h1 {
  margin: 0;
  font-family: var(--site-font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.about-page-hero p {
  margin: 20px auto 0;
  max-width: 62ch;
  color: var(--site-ink-soft);
}

.about-page-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-page-stat {
  padding: 20px 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.08);
}

.about-page-stat strong {
  display: block;
  font-family: var(--site-font-display);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.about-page-stat span {
  display: block;
  margin-top: 8px;
  color: var(--site-ink-soft);
  font-size: 0.95rem;
}

.page-hero--pricing
{
  padding: 32px;
  text-align: center;
  margin-top:40px;
}

.page-hero--pricing .section-pageview
{
  display:block;
  width: min(760px, 100%);
  text-align: center;
  margin:0 auto !important;
  max-width: 760px;
}

.page-hero--pricing .section-pageview h2,
.page-hero--pricing .section-pageview p
{
  text-align: center;
}

.legal-intro {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: left;
  margin-bottom:20px;
  margin-top:80px;
}

.legal-intro h1 {
  margin: 0;
  text-align: left;
  font-family: var(--site-font-display);
  font-size: clamp(1.4rem, 4.6vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.legal-intro p {
  margin: 18px 0 0;
  color: var(--site-ink-soft);
  line-height: 1.78;
}

.legal-grid--plain {
  width: min(860px, 100%);
  margin-inline: auto;
  gap: 10px;
  margin-top: 0;
}

.legal-card--plain {
  padding: 0;
}

.legal-card--plain h2 {
  margin: 0 0 14px;
}

.legal-card--plain p {
  margin: 0;
}

.legal-card--plain p + p {
  margin-top: 12px;
}

.about-story {
  display: grid;
  gap: 74px;
}

.about-story__row {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: 64px;
  align-items: center;
}

.about-story__row--reverse .about-story__media {
  order: 2;
}

.about-story__row--reverse .about-story__copy {
  order: 1;
}

.about-story__media {
  min-height: 430px;
  border-radius: 28px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 28px 52px rgba(17, 24, 39, 0.12);
}

.about-story__copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.about-story__index {
  color: var(--site-primary);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story__copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.about-story__copy p {
  margin: 0;
  color: var(--site-ink-soft);
  line-height: 1.78;
}

.about-story__list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: grid;
  gap: 12px;
}

.about-story__list li {
  position: relative;
  padding-left: 28px;
}

.about-story__list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--site-primary);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.marketing-section--why-us {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.marketing-section--dark .section-intro__number,
.marketing-section--dark .section-intro__eyebrow {
  color: var(--site-primary);
}

.marketing-section--dark .section-intro__line {
  background: rgba(255, 255, 255, 0.16);
}

.marketing-section--dark .section-intro h2 {
  color: #ffffff;
}

.marketing-section--dark .section-intro p,
.marketing-section--dark .industry-card p {
  color: rgba(255, 255, 255, 0.72);
}

.marketing-section--dark .industry-card p {
  font-size:0.9rem;
}

.industry-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.industry-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.industry-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.industry-card h3 {
  margin-top: 18px;
  color: #ffffff;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
  gap: 64px;
  align-items: stretch;
}

.about-layout__media,
.contact-layout__media {
  position: relative;
  min-height: 480px;
  border-radius: 26px;
  overflow: hidden;
}

.about-layout__badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(95, 201, 48, 0.14);
}

.about-layout__badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--site-font-display);
}

.about-layout__badge span {
  display: block;
  margin-top: 6px;
  color: var(--site-ink-soft);
}

.about-layout__copy,
.contact-layout__copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.about-layout__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.about-layout__list li {
  position: relative;
  padding-left: 28px;
}

.about-layout__list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--site-primary);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.marketing-section--cta {
  background:
    radial-gradient(circle at top right, rgba(95, 201, 48, 0.13), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fcf5 100%);
}

.marketing-section--home-pricing, .marketing-section--pageview-pricing {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-layout__cards {
  display: grid;
  gap: 14px;
}

.contact-layout__card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 20px;
}

.contact-layout__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 16px;
  background: #f1f1f1;
}

.contact-layout__card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-layout__card-body span {
  display: block;
  margin-bottom: 10px;
}

.contact-layout__card-link {
  display: block;
  margin-bottom: 10px;
  color: inherit;
}

.contact-layout__card-body strong {
  font-size: 1.05rem;
  line-height: 1.54;
}

.page-hero__controls {
  margin-top: 24px;
  text-align: center;
}

.pricing-section__controls {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pricing-toggle {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: rgba(14, 30, 12, 0.03);
}

.pricing-toggle__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px 10px 18px;
  background: transparent;
  color: var(--site-ink-soft);
  cursor: pointer;
  font-weight: 600;
}

.pricing-toggle__button--active {
  background: #1f2a2e;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 17, 0.08);
}

.pricing-toggle__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #a400c9;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  box-shadow: none;
}

.faq-list {
  grid-template-columns: 1fr;
  gap: 0;
  padding-top:25px;
}

.marketing-section--faq {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-inline: 0;
}

.faq-shell {
  width: min(660px, 100%);
  margin: 0 auto;
}

.marketing-section--faq .section-intro {
  margin: 0 auto;
  text-align: center;
}

.marketing-section--faq .section-intro__meta {
  justify-content: center;
}

.faq-item {
  border-bottom: 1px solid var(--site-line);
}

.faq-item:first-child {
  border-top: 1px solid var(--site-line);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 0 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item__question {
  display: flex;
  align-items: start;
  gap: 16px;
}

.faq-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--site-primary-soft);
  color: var(--site-primary-deep);
  font-weight: 800;
}

.faq-item h3 {
  margin: 6px 0 0;
  font-size: 1.08rem;
}

.faq-item__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 10px;
  transition: transform 180ms ease;
}

.faq-item__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.faq-item__icon--open {
  transform: rotate(45deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 180ms ease;
}

.faq-item__answer--open {
  grid-template-rows: 1fr;
}

.faq-item__answer p {
  overflow: hidden;
  margin: 0 0 0 58px;
  padding: 0 0 14px 0;
  color: var(--site-ink-soft);
  line-height: 1.72;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.faq-item__answer--open p {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card--featured {
  border: 1px solid #a400c9;
  /*box-shadow: 0 18px 38px rgba(214, 47, 203, 0.14);*/
}

.pricing-card__badge {
  position: absolute;
  top: 0px;
  left: 0px;
  width:100%;
  padding:5px 10px;
  background:#a400c9;
  border-radius: 0px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0px 10px 25px -10px #e570ff;
  color: #ffffff;
  text-align:center;
  display: block;
  font-weight:700;
  font-size:0.80rem;
}

.pricing-card__summary {
  margin: 12px 0 0;
  border:0px #000 solid;
  height:70px;
  line-height: 1.4;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 24px;
  min-height: 66px;
}

.pricing-card__price strong {
  font-size: 2.5rem;
  font-family: var(--site-font-display);
  letter-spacing: -0.04em;
}

.pricing-card__price span {
  color: var(--site-ink-soft);
  font-weight: 700;
}

.pricing-card__cta {
  margin-top: 22px;
  background: #1f2a2e;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(31, 42, 46, 0.22);
}

.pricing-card__cta:hover,
.pricing-card__cta:focus-visible {
  background: #162024;
}

.pricing-card--featured .pricing-card__cta {
  background: #a400c9;
  color:#ffffff;
  /*box-shadow: 0 8px 18px rgba(201, 48, 188, 0.38);*/
}

.pricing-card--featured .pricing-card__cta:hover,
.pricing-card--featured .pricing-card__cta:focus-visible {
  background: #8a00a9;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.pricing-card__features li {
  position: relative;
  padding-left: 30px;
}

.pricing-card__features li::before {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0;
  width: 20px;
  height: 20px;
  background: url("/assets/icons/tick_icon.svg") center / contain no-repeat;
}

.pricing-card__note {
  margin: 22px 0 0;
}

.pricing-card__note--centered {
  text-align: center;
}

.pricing-home__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

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

.legal-card {
  padding: 16px 0px;
}
.legal-card p, .legal-intro p
{
  line-height:1.5;
}

.marketing-footer {
  margin-top: 28px;
  padding: 72px 0 28px;
  background: #1f2a2e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.marketing-footer__grid,
.marketing-footer__bottom {
  width: var(--site-width);
  margin: 0 auto;
}

.marketing-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin-bottom:40px;
}

.marketing-footer__brand img {
  width: 142px;
  height: auto;
}

.marketing-footer__brand strong {
  display: inline-block;
  margin-top: 12px;
  color: #ffffff;
}

.marketing-footer__brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size:0.9rem;
  padding-right:30px;
}

.marketing-footer__links {
  display: grid;
  gap: 10px;
}

.marketing-footer__links--contact {
  align-content: start;
}

.marketing-footer__links--contact span
{
  margin-bottom:15px;
}

.marketing-footer__links span {
  color: var(--site-primary);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-footer__links a {
  color: #ffffff;
}

.marketing-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.marketing-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: none;
  transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

.marketing-footer__social-link:hover,
.marketing-footer__social-link:focus-visible {
  transform: translateY(-1px);
}

.marketing-footer__social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.marketing-footer__bottom {
  display: flex;
  justify-content: center;
  padding-top: 48px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-banner::before,
  .hero-copy > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .product-demo__channel,
  .product-connectors__glow {
    animation: none;
  }
}

@media (max-width: 1140px) {
  .marketing-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .marketing-nav,
  .marketing-header__actions {
    display: none;
  }

  .marketing-header__mobile-tools {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 4px;
  }

  .marketing-nav-toggle {
    display: inline-flex;
    margin-left: 0;
  }

  .marketing-header__mobile {
    display: none;
    width: var(--site-width);
    margin: 0 auto;
    padding: 0 0 18px;
  }

  .marketing-header__mobile--open {
    display: block;
  }

  .marketing-nav--mobile,
  .marketing-header__mobile-actions {
    display: grid;
    gap: 12px;
    padding-top: 16px;
  }

  .about-layout,
  .contact-layout,
  .about-story__row,
  .marketing-footer__grid {
    grid-template-columns: 1fr;
  }

  .about-story__row--reverse .about-story__media,
  .about-story__row--reverse .about-story__copy {
    order: initial;
  }

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

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

  .product-demo__stage {
    padding-inline: 96px;
  }

  .product-demo__channel {
    width: 62px;
    height: 62px;
    border-radius: 20px;
  }

  .product-demo__channel img {
    width: 30px;
    height: 30px;
  }

  .product-connectors,
  .product-demo__anchor {
    display: none;
  }

  .feature-grid--products {
    margin-top: 34px;
  }

  .feature-card--product::before {
    display: none;
  }

  .legal-grid--three-up {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .marketing-main {
    width: min(100%, calc(100% - 20px));
    padding-top: 0px;
  }

  .marketing-header__inner,
  .marketing-header__mobile,
  .marketing-footer__grid,
  .marketing-footer__bottom {
    width: min(100%, calc(100% - 20px));
  }

  .marketing-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 6px;
    min-height:62px;
  }

  .marketing-header__mobile-left {
    gap: 10px;
  }

  .marketing-brand img {
    height: 42px;
    margin-left:10px;
  }

  .marketing-header__mobile-tools {
    justify-self: end;
    gap: 2px;
  }

  .hero-banner,
  .marketing-section,
  .page-hero,
  .legal-card,
  .marketing-footer__grid {
    padding: 22px;
  }

  .marketing-section--faq {
    padding-inline: 0;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 3.5rem);
  }

  .hero-banner-iconset span{
    display:inline-block;
    height:30px;
    width:30px;
    margin:6px 6px 0px 0px;
    background:#fff;
    border-radius: 999px;
    padding:6px;
    text-align: center;
    vertical-align: middle;
  }
  .hero-banner-iconset img
  {
    display:inline-block;
    height:18px;
    width:18px;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-card {
    padding: 18px;
  }

  .industry-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .industry-card__icon img {
    width: 18px;
    height: 18px;
  }

  .industry-card h3 {
    margin-top: 14px;
    font-size: 0.98rem;
  }

  .marketing-section--dark .industry-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .product-demo {
    margin-top: 34px;
  }

  .product-demo__stage {
    width: min(760px, 100%);
    padding: 0;
  }

  .product-demo__frame-shell {
    width: min(760px, 100%);
  }

  .product-demo__channel {
    display: none;
  }

  .feature-card--product {
    margin-top:0px;
  }

  .hero-banner {
    min-height: calc(100vh - 62px);
    min-height: calc(100dvh - 62px);
  }

  .hero-banner__content {
    padding-block: 56px;
  }

  .faq-item__trigger {
    padding-block: 22px;
  }

  .faq-item h3 {
    margin-top: 2px;
    font-size: 1rem;
  }

  .faq-item__answer p {
    margin-left: 0;
    padding-bottom: 20px;
  }

  .about-layout__media,
  .contact-layout__media,
  .about-story__media {
    min-height: 320px;
  }

  .about-page-hero {
    margin-top: 12px;
  }

  .about-page-hero__stats {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .marketing-footer__bottom {
    text-align: center;
    padding-inline: 16px;
  }

  
  .legal-intro {
    margin-bottom:10px;
    margin-top:0px;
  }
}
